diff --git a/.github/workflows/auto-close-duplicates.yml b/.github/workflows/auto-close-duplicates.yml index 6612c98a03..21f95896b8 100644 --- a/.github/workflows/auto-close-duplicates.yml +++ b/.github/workflows/auto-close-duplicates.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Bun uses: oven-sh/setup-bun@v2 diff --git a/.github/workflows/backfill-duplicate-comments.yml b/.github/workflows/backfill-duplicate-comments.yml index a4253e8ae0..118e619369 100644 --- a/.github/workflows/backfill-duplicate-comments.yml +++ b/.github/workflows/backfill-duplicate-comments.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Bun uses: oven-sh/setup-bun@v2 diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 4792c59fb7..376ef74b1f 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -131,7 +131,7 @@ jobs: if: ${{ !cancelled() && success() }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: sparse-checkout: | .github @@ -204,7 +204,7 @@ jobs: - name: "Remove unneeded stuff to free disk space" run: rm -rf /usr/local/lib/android/* /usr/share/dotnet/* /opt/ghc1/* "/usr/local/share/boost1/*" /opt/hostedtoolcache1/* - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Get the version and date run: | ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2) @@ -223,14 +223,14 @@ jobs: # Manage flatpak-builder cache externally so PRs restore but never upload - name: Restore flatpak-builder cache if: github.event_name == 'pull_request' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: .flatpak-builder key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.event.pull_request.base.sha }} restore-keys: flatpak-builder-${{ matrix.variant.arch }}- - name: Save/restore flatpak-builder cache if: github.event_name != 'pull_request' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .flatpak-builder key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }} diff --git a/.github/workflows/build_check_cache.yml b/.github/workflows/build_check_cache.yml index 646a02dbf0..b5c5b28b95 100644 --- a/.github/workflows/build_check_cache.yml +++ b/.github/workflows/build_check_cache.yml @@ -26,7 +26,7 @@ jobs: valid-cache: ${{ steps.cache_deps.outputs.cache-hit }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: 'false' @@ -46,7 +46,7 @@ jobs: - name: load cache id: cache_deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.set_outputs.outputs.cache-path }} key: ${{ steps.set_outputs.outputs.cache-key }} diff --git a/.github/workflows/build_deps.yml b/.github/workflows/build_deps.yml index 8b476c9290..9927f5bef6 100644 --- a/.github/workflows/build_deps.yml +++ b/.github/workflows/build_deps.yml @@ -34,12 +34,12 @@ jobs: # Setup the environment - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: 'false' - name: load cached deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ inputs.cache-path }} key: ${{ inputs.cache-key }} diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml index e58e6a530c..76c1265faf 100644 --- a/.github/workflows/build_orca.yml +++ b/.github/workflows/build_orca.yml @@ -37,13 +37,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: 'false' - name: load cached deps if: ${{ !(runner.os == 'macOS' && inputs.macos-combine-only) }} - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ inputs.cache-path }} key: ${{ inputs.cache-key }} diff --git a/.github/workflows/check_locale.yml b/.github/workflows/check_locale.yml index f248ced29c..fabca4bc37 100644 --- a/.github/workflows/check_locale.yml +++ b/.github/workflows/check_locale.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install gettext run: | diff --git a/.github/workflows/check_profiles.yml b/.github/workflows/check_profiles.yml index 9a5272a314..5f8f3d9e07 100644 --- a/.github/workflows/check_profiles.yml +++ b/.github/workflows/check_profiles.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run extra JSON check id: extra_json_check @@ -41,7 +41,7 @@ jobs: curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly chmod +x ./OrcaSlicer_profile_validator - # validate profiles + # Validate all system profiles. - name: validate system profiles id: validate_system continue-on-error: true @@ -63,11 +63,101 @@ jobs: continue-on-error: true working-directory: ${{ github.workspace }} run: | - set +e - curl -LJO https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/orca_custom_preset_tests.zip - unzip -q ./orca_custom_preset_tests.zip -d ${{ github.workspace }}/resources/profiles - ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log - exit ${PIPESTATUS[0]} + fixtures_dir="${{ runner.temp }}/profile-fixtures" + output_dir="${{ runner.temp }}/custom-preset-validation" + combined_log="${{ runner.temp }}/validate_custom.log" + summary="${output_dir}/summary.md" + release_url="https://github.com/OrcaSlicer/OrcaSlicer-profile-validator/releases/download/fixture-archive" + + rm -rf "${fixtures_dir}" "${output_dir}" + mkdir -p "${fixtures_dir}" "${output_dir}" + + curl -fsSL -o "${fixtures_dir}/manifest.json" "${release_url}/manifest.json" + + MANIFEST_PATH="${fixtures_dir}/manifest.json" python3 <<'PY' > "${fixtures_dir}/fixtures.tsv" + import json + import os + + with open(os.environ["MANIFEST_PATH"], encoding="utf-8") as fh: + manifest = json.load(fh) + + if isinstance(manifest, dict): + entries = manifest.get("fixtures", []) + else: + entries = manifest + + for entry in entries: + version = entry.get("version", "") + asset = entry.get("asset", "") + sha256 = entry.get("asset_sha256", "") + if not version or not asset: + continue + print(f"{version}\t{asset}\t{sha256}") + PY + + if [ ! -s "${fixtures_dir}/fixtures.tsv" ]; then + echo "No custom preset fixtures found in ${release_url}/manifest.json" | tee "${combined_log}" + exit 1 + fi + + { + echo "## Custom Preset Fixture Validation" + echo "" + echo "| Version | Status | Log |" + echo "| --- | --- | --- |" + } > "${summary}" + + status=0 + failed_logs=() + + while IFS=$'\t' read -r version asset expected_sha256; do + fixture_zip="${fixtures_dir}/${asset}" + asset_url_name="$(python3 -c 'import sys, urllib.parse; print(urllib.parse.quote(sys.argv[1], safe=""))' "${asset}")" + profile_tree="${output_dir}/profiles-${version}" + log_path="${output_dir}/${version}.log" + + curl -fsSL -o "${fixture_zip}" "${release_url}/${asset_url_name}" + + if [ -n "${expected_sha256}" ] && [ "${expected_sha256}" != "" ]; then + echo "${expected_sha256} ${fixture_zip}" | sha256sum -c - + fi + + rm -rf "${profile_tree}" + mkdir -p "${profile_tree}" + cp -a "${{ github.workspace }}/resources/profiles/." "${profile_tree}/" + rm -rf "${profile_tree}/user" + unzip -q "${fixture_zip}" -d "${profile_tree}" + + set +e + ./OrcaSlicer_profile_validator -p "${profile_tree}" -l 2 > "${log_path}" 2>&1 + result=$? + set -e + + if [ "${result}" -eq 0 ]; then + echo "| ${version} | PASS | ${version}.log |" >> "${summary}" + else + echo "| ${version} | FAIL | ${version}.log |" >> "${summary}" + failed_logs+=("${log_path}") + status=1 + fi + done < "${fixtures_dir}/fixtures.tsv" + + { + cat "${summary}" + if [ "${#failed_logs[@]}" -gt 0 ]; then + echo "" + echo "## Failed Fixture Logs" + for log_path in "${failed_logs[@]}"; do + echo "" + echo "### $(basename "${log_path}" .log)" + echo '```' + head -c 12000 "${log_path}" || echo "No output captured" + echo '```' + done + fi + } | tee "${combined_log}" + + exit "${status}" - name: Prepare PR number for comment workflow if: ${{ always() && github.event_name == 'pull_request' }} diff --git a/.github/workflows/dedupe-issues.yml b/.github/workflows/dedupe-issues.yml index abaf978d27..cb0a9c0931 100644 --- a/.github/workflows/dedupe-issues.yml +++ b/.github/workflows/dedupe-issues.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run Claude Code slash command uses: anthropics/claude-code-base-action@beta diff --git a/.github/workflows/doxygen-docs.yml b/.github/workflows/doxygen-docs.yml index f30c3e0d0e..6af7255fa3 100644 --- a/.github/workflows/doxygen-docs.yml +++ b/.github/workflows/doxygen-docs.yml @@ -26,7 +26,7 @@ jobs: remove-existing-swap-files: true - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Doxygen and Graphviz run: | diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index d5fe5a35d2..bd6b4e985e 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Cache shellcheck download id: cache-shellcheck-v0_11 - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/shellcheck key: ${{ runner.os }}-shellcheck-v0_11 @@ -36,7 +36,7 @@ jobs: tar -xvf ~/sc.tar.xz -C ~ mv ~/shellcheck-"${INPUT_VERSION}"/shellcheck ~/shellcheck - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 diff --git a/.github/workflows/update-translation.yml b/.github/workflows/update-translation.yml index 983e418b5b..674b6bfc50 100644 --- a/.github/workflows/update-translation.yml +++ b/.github/workflows/update-translation.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v6 diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 1a3777dd88..1b48f523ed 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5046,7 +5046,7 @@ msgstr "" msgid "Size:" msgstr "" -#, possible-c-format, possible-boost-format +#, possible-boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "" @@ -7518,6 +7518,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "" @@ -7572,12 +7611,6 @@ msgstr "" msgid "Show the splash screen during startup." msgstr "" -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7608,6 +7641,12 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "" + msgid "Maximum recent files" msgstr "" @@ -7626,10 +7665,16 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" +msgid "Quality level for Draco export" msgstr "" -msgid "Backup your project periodically to help with restoring from an occasional crash." +msgid "bits" +msgstr "" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." msgstr "" msgid "Preset" @@ -7662,6 +7707,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "" @@ -7674,18 +7725,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "" @@ -7910,18 +7949,6 @@ msgstr "" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" -msgid "Update built-in presets automatically." -msgstr "" - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -7934,6 +7961,15 @@ msgstr "" msgid "Color only" msgstr "" +msgid "Update built-in presets automatically." +msgstr "" + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -7946,30 +7982,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, possible-c-format, possible-boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "" @@ -8012,7 +8024,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8020,12 +8041,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8052,24 +8067,6 @@ msgstr "" msgid "trace" msgstr "" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "" @@ -8085,24 +8082,6 @@ msgstr "" msgid "Preferences sync" msgstr "" -msgid "View control settings" -msgstr "" - -msgid "Rotate view" -msgstr "" - -msgid "Pan view" -msgstr "" - -msgid "Zoom view" -msgstr "" - -msgid "Other" -msgstr "" - -msgid "Reverse scroll direction while zooming" -msgstr "" - msgid "Enable SSL(MQTT)" msgstr "" @@ -12442,6 +12421,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -14188,6 +14178,9 @@ msgstr "" msgid "Slicing Mode" msgstr "" +msgid "Other" +msgstr "" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" @@ -17018,6 +17011,132 @@ msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, possible-c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17100,6 +17219,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 141839e4a5..88a0255733 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2025-03-15 10:55+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -5310,7 +5310,7 @@ msgid "Size:" msgstr "Mida:" # TODO: Review, changed by lang refactor. PR 14254 -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "S'han trobat conflictes de rutes gcode a la capa %d, Z = %.2lfmm. Si us plau, separeu els objectes conflictius més lluny ( %s <-> %s )." @@ -7903,6 +7903,50 @@ msgstr "Trieu la carpeta per als elements descarregats" msgid "Choose Download Directory" msgstr "Triar el Directori de Descàrrega" +msgid "(Latest)" +msgstr "(Última)" + +msgid "Network plug-in switched successfully." +msgstr "Connector de xarxa canviat correctament." + +msgid "Success" +msgstr "Èxit" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Heu seleccionat la versió %s del connector de xarxa.\n" +"\n" +"Voleu descarregar i instal·lar aquesta versió ara?\n" +"\n" +"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació." + +msgid "Download Network Plug-in" +msgstr "Descarrega el connector de xarxa" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació" + +msgid "Network plug-in reloaded successfully." +msgstr "Connector de xarxa recarregat correctament." + +msgid "Reload" +msgstr "Recarrega" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació." + +msgid "Reload Failed" +msgstr "La recàrrega ha fallat" + msgid "Associate" msgstr "Associar" @@ -7958,12 +8002,6 @@ msgstr "Mostrar pantalla de presentació" msgid "Show the splash screen during startup." msgstr "Mostra la pantalla de presentació durant l'inici." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7994,6 +8032,13 @@ msgstr "Carregar comportament" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "S'ha de carregar la configuració de la impressora/filament/procés en obrir un .3mf?" +msgid "Auto backup" +msgstr "Còpia de seguretat automàtica" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional." + msgid "Maximum recent files" msgstr "Nombre màxim de fitxers recents" @@ -8012,12 +8057,20 @@ msgstr "Mostra opcions en importar fitxers STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Si s'activa, apareixerà un diàleg de configuració de paràmetres durant la importació de fitxers STEP." -msgid "Auto backup" -msgstr "Còpia de seguretat automàtica" +msgid "Quality level for Draco export" +msgstr "Nivell de qualitat per a l'exportació Draco" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n" +"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n" +"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans." msgid "Preset" msgstr "Perfil" @@ -8049,6 +8102,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimitza l'alçada màxima de l'àrea de filaments segons el nombre de filaments triat." +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "Funcionalitats" @@ -8061,21 +8120,6 @@ msgstr "Amb aquesta opció habilitada, podeu enviar una tasca a diversos disposi msgid "Pop up to select filament grouping mode" msgstr "Finestra emergent per seleccionar el mode d'agrupació de filaments" -msgid "Quality level for Draco export" -msgstr "Nivell de qualitat per a l'exportació Draco" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n" -"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n" -"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans." - msgid "Behaviour" msgstr "Comportament" @@ -8303,19 +8347,6 @@ msgstr "Comprovar només si hi ha actualitzacions estables" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronització automàtica dels perfils de l'usuari ( Impressora/Filament/Processament )" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Actualitzar els perfils de fàbrica automàticament." - -msgid "Use encrypted file for token storage" -msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)" - -msgid "Filament Sync Options" -msgstr "Opcions de sincronització de filament" - msgid "Filament sync mode" msgstr "Mode de sincronització de filament" @@ -8328,6 +8359,16 @@ msgstr "Filament i color" msgid "Color only" msgstr "Només color" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Actualitzar els perfils de fàbrica automàticament." + +msgid "Use encrypted file for token storage" +msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)" + msgid "Bambu network plug-in" msgstr "" @@ -8340,35 +8381,6 @@ msgstr "Versió del connector de xarxa" msgid "Select the network plug-in version to use" msgstr "Seleccioneu la versió del connector de xarxa a utilitzar" -msgid "(Latest)" -msgstr "(Última)" - -msgid "Network plug-in switched successfully." -msgstr "Connector de xarxa canviat correctament." - -msgid "Success" -msgstr "Èxit" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Heu seleccionat la versió %s del connector de xarxa.\n" -"\n" -"Voleu descarregar i instal·lar aquesta versió ara?\n" -"\n" -"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació." - -msgid "Download Network Plug-in" -msgstr "Descarrega el connector de xarxa" - msgid "Associate files to OrcaSlicer" msgstr "Associar fitxers a OrcaSlicer" @@ -8417,7 +8429,16 @@ msgstr "Desenvolupador" msgid "Skip AMS blacklist check" msgstr "Omet la comprovació de la llista negra AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8425,12 +8446,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "Permet emmagatzematge anormal" @@ -8459,24 +8474,6 @@ msgstr "depurar" msgid "trace" msgstr "traça" -msgid "Network plug-in" -msgstr "Connector de xarxa" - -msgid "Reload" -msgstr "Recarrega" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació" - -msgid "Network plug-in reloaded successfully." -msgstr "Connector de xarxa recarregat correctament." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació." - -msgid "Reload Failed" -msgstr "La recàrrega ha fallat" - msgid "Debug" msgstr "Depuració" @@ -8492,25 +8489,6 @@ msgstr "Sincronització de perfil" msgid "Preferences sync" msgstr "Sincronització de preferències" -msgid "View control settings" -msgstr "Veure la configuració del control" - -msgid "Rotate view" -msgstr "Rotar la vista" - -msgid "Pan view" -msgstr "Vista Panoràmica" - -msgid "Zoom view" -msgstr "Vista amb Zoom" - -msgid "Other" -msgstr "Altre" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "La roda del ratolí s'inverteix quan es fa zoom" - msgid "Enable SSL(MQTT)" msgstr "Habilitar SSL ( MQTT )" @@ -13216,6 +13194,17 @@ msgstr "La velocitat del ventilador augmentarà linealment de zero a la capa \"c msgid "layer" msgstr "capa" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Velocitat del ventilador a la interfície de suport" @@ -15104,6 +15093,9 @@ msgstr "Les esquerdes de menys de dues vegades el radi de tancament de buits s'o msgid "Slicing Mode" msgstr "Mode de laminat" +msgid "Other" +msgstr "Altre" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Utilitzeu \"Parell-imparell\" per als models d'avió 3DLabPrint. Utilitzeu \"Tancar forats\" per tancar tots els forats del model." @@ -18182,6 +18174,132 @@ msgstr "Iniciar Sessió/Provar" msgid "Connection to printers connected via the print host failed." msgstr "No s'ha pogut connectar a les impressores connectades mitjançant l'amfitrió( host ) d'impressió especificat." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18264,6 +18382,19 @@ msgstr "La connexió amb MKS funciona correctament." msgid "Could not connect to MKS" msgstr "No s'ha pogut connectar amb MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "La connexió amb OctoPrint funciona correctament." @@ -19420,6 +19551,28 @@ msgstr "" "Evitar la deformació( warping )\n" "Sabíeu que quan imprimiu materials propensos a deformar-se, com ara l'ABS, augmentar adequadament la temperatura del llit pot reduir la probabilitat de deformació?" +#~ msgid "Filament Sync Options" +#~ msgstr "Opcions de sincronització de filament" + +#~ msgid "Network plug-in" +#~ msgstr "Connector de xarxa" + +#~ msgid "View control settings" +#~ msgstr "Veure la configuració del control" + +#~ msgid "Rotate view" +#~ msgstr "Rotar la vista" + +#~ msgid "Pan view" +#~ msgstr "Vista Panoràmica" + +#~ msgid "Zoom view" +#~ msgstr "Vista amb Zoom" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "La roda del ratolí s'inverteix quan es fa zoom" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Esquerra: %s" diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index ee9b623484..c0dfb069d3 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: Jakub Hencl\n" "Language-Team: \n" @@ -5306,7 +5306,7 @@ msgstr "Objem:" msgid "Size:" msgstr "Velikost:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Byly nalezeny konflikty drah G-kódu ve vrstvě %d, Z = %.2lf mm. Oddělte prosím konfliktní objekty více od sebe (%s <-> %s)." @@ -7900,6 +7900,50 @@ msgstr "Vyberte složku pro stažené položky" msgid "Choose Download Directory" msgstr "Vyberte adresář pro stažení" +msgid "(Latest)" +msgstr "(Nejnovější)" + +msgid "Network plug-in switched successfully." +msgstr "Síťový plugin byl úspěšně přepnut." + +msgid "Success" +msgstr "Úspěch" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Vybrali jste verzi síťového pluginu %s.\n" +"\n" +"Chcete tuto verzi nyní stáhnout a nainstalovat?\n" +"\n" +"Poznámka: Po instalaci může být nutné restartovat aplikaci." + +msgid "Download Network Plug-in" +msgstr "Stáhnout síťový plugin" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Znovu načíst síťový plugin bez restartu aplikace" + +msgid "Network plug-in reloaded successfully." +msgstr "Síťový plugin byl úspěšně znovu načten." + +msgid "Reload" +msgstr "Znovu načíst" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci." + +msgid "Reload Failed" +msgstr "Znovunačtení selhalo" + msgid "Associate" msgstr "Přiřadit" @@ -7955,12 +7999,6 @@ msgstr "Zobrazit úvodní obrazovku" msgid "Show the splash screen during startup." msgstr "Zobrazit úvodní obrazovku při spuštění." -msgid "Show shared profiles notification" -msgstr "Zobrazit upozornění na sdílené profily" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily." - msgid "Use window buttons on left side" msgstr "Používat tlačítka okna na levé straně" @@ -7991,6 +8029,13 @@ msgstr "Chování při načítání" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Mají se při otevření souboru 3MF načíst nastavení tiskárny/filamentu/procesu?" +msgid "Auto backup" +msgstr "Automatické zálohování" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu." + msgid "Maximum recent files" msgstr "Maximální počet nedávných souborů" @@ -8009,12 +8054,20 @@ msgstr "Zobrazit možnosti při importu souboru STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Pokud je povoleno, během importu souboru STEP se zobrazí dialog nastavení parametrů." -msgid "Auto backup" -msgstr "Automatické zálohování" +msgid "Quality level for Draco export" +msgstr "Úroveň kvality pro export Draco" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu." +msgid "bits" +msgstr "bitů" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n" +"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n" +"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů." msgid "Preset" msgstr "Předvolba" @@ -8046,6 +8099,12 @@ msgstr "filamenty" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimalizuje maximální výšku oblasti filamentů podle zvoleného počtu filamentů." +msgid "Show shared profiles notification" +msgstr "Zobrazit upozornění na sdílené profily" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily." + msgid "Features" msgstr "Funkce" @@ -8058,21 +8117,6 @@ msgstr "Pokud je tato volba povolena, můžete odeslat úlohu na více zařízen msgid "Pop up to select filament grouping mode" msgstr "Zobrazit dialog pro výběr režimu seskupení filamentů" -msgid "Quality level for Draco export" -msgstr "Úroveň kvality pro export Draco" - -msgid "bits" -msgstr "bitů" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n" -"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n" -"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů." - msgid "Behaviour" msgstr "Chování" @@ -8300,19 +8344,6 @@ msgstr "Kontrolovat pouze stabilní aktualizace" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Automatická synchronizace uživatelských předvoleb (tiskárna/filament/proces)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Automaticky aktualizovat vestavěné předvolby." - -msgid "Use encrypted file for token storage" -msgstr "Použít šifrovaný soubor pro ukládání tokenů" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)" - -msgid "Filament Sync Options" -msgstr "Možnosti synchronizace filamentů" - msgid "Filament sync mode" msgstr "Režim synchronizace filamentů" @@ -8325,6 +8356,16 @@ msgstr "Filament a barva" msgid "Color only" msgstr "Pouze barva" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Automaticky aktualizovat vestavěné předvolby." + +msgid "Use encrypted file for token storage" +msgstr "Použít šifrovaný soubor pro ukládání tokenů" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)" + msgid "Bambu network plug-in" msgstr "" @@ -8337,35 +8378,6 @@ msgstr "Verze síťového pluginu" msgid "Select the network plug-in version to use" msgstr "Vyberte verzi síťového pluginu" -msgid "(Latest)" -msgstr "(Nejnovější)" - -msgid "Network plug-in switched successfully." -msgstr "Síťový plugin byl úspěšně přepnut." - -msgid "Success" -msgstr "Úspěch" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Vybrali jste verzi síťového pluginu %s.\n" -"\n" -"Chcete tuto verzi nyní stáhnout a nainstalovat?\n" -"\n" -"Poznámka: Po instalaci může být nutné restartovat aplikaci." - -msgid "Download Network Plug-in" -msgstr "Stáhnout síťový plugin" - msgid "Associate files to OrcaSlicer" msgstr "Přiřadit soubory k OrcaSliceru" @@ -8411,7 +8423,16 @@ msgstr "Vývojář" msgid "Skip AMS blacklist check" msgstr "Přeskočit kontrolu blacklistu AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8419,12 +8440,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "Povolit neobvyklé úložiště" @@ -8453,24 +8468,6 @@ msgstr "ladění" msgid "trace" msgstr "trasování" -msgid "Network plug-in" -msgstr "Síťový plugin" - -msgid "Reload" -msgstr "Znovu načíst" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Znovu načíst síťový plugin bez restartu aplikace" - -msgid "Network plug-in reloaded successfully." -msgstr "Síťový plugin byl úspěšně znovu načten." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci." - -msgid "Reload Failed" -msgstr "Znovunačtení selhalo" - msgid "Debug" msgstr "Ladění" @@ -8486,25 +8483,6 @@ msgstr "Synchronizace předvoleb" msgid "Preferences sync" msgstr "Synchronizace předvoleb" -msgid "View control settings" -msgstr "Zobrazit nastavení ovládání" - -msgid "Rotate view" -msgstr "Otočit pohled" - -msgid "Pan view" -msgstr "Posouvat pohled" - -msgid "Zoom view" -msgstr "Přiblížení zobrazení" - -msgid "Other" -msgstr "Ostatní" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Kolečko myši se při přiblížení otáčí opačně" - msgid "Enable SSL(MQTT)" msgstr "Povolit SSL (MQTT)" @@ -13224,6 +13202,17 @@ msgstr "Rychlost ventilátoru bude lineárně zvyšována od nuly na vrstvě \"z msgid "layer" msgstr "vrstva" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Rychlost ventilátoru rozhraní podpory" @@ -15153,6 +15142,9 @@ msgstr "Trhliny menší než 2x poloměr uzavření mezery jsou při řezání t msgid "Slicing Mode" msgstr "Režim slicingu" +msgid "Other" +msgstr "Ostatní" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít díry\" pro uzavření všech otvorů v modelu." @@ -18217,6 +18209,132 @@ msgstr "Přihlášení/Test" msgid "Connection to printers connected via the print host failed." msgstr "Připojení k tiskárnám připojeným přes hostitele tisku se nezdařilo." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18299,6 +18417,19 @@ msgstr "Připojení k MKS funguje správně." msgid "Could not connect to MKS" msgstr "Nepodařilo se připojit k MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Připojení k OctoPrint funguje správně." @@ -19454,6 +19585,28 @@ msgstr "" "Zamezte kroucení\n" "Víte, že při tisku materiálů náchylných ke kroucení, jako je ABS, může vhodné zvýšení teploty vyhřívané desky snížit pravděpodobnost kroucení?" +#~ msgid "Filament Sync Options" +#~ msgstr "Možnosti synchronizace filamentů" + +#~ msgid "Network plug-in" +#~ msgstr "Síťový plugin" + +#~ msgid "View control settings" +#~ msgstr "Zobrazit nastavení ovládání" + +#~ msgid "Rotate view" +#~ msgstr "Otočit pohled" + +#~ msgid "Pan view" +#~ msgstr "Posouvat pohled" + +#~ msgid "Zoom view" +#~ msgstr "Přiblížení zobrazení" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Kolečko myši se při přiblížení otáčí opačně" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Vlevo: %s" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index c12beb0e17..6c3443011f 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -5318,7 +5318,7 @@ msgstr "Volumen:" msgid "Size:" msgstr "Größe:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Konflikte von G-Code-Pfaden wurden bei Layer %d, Z = %.2lf mm gefunden.Bitte trennen Sie die konfliktbehafteten Objekte weiter voneinander (%s <-> %s)." @@ -7915,6 +7915,50 @@ msgstr "Wählen Sie den Ordner für heruntergeladene Elemente" msgid "Choose Download Directory" msgstr "Wählen Sie das Download-Verzeichnis" +msgid "(Latest)" +msgstr "(Neueste)" + +msgid "Network plug-in switched successfully." +msgstr "Netzwerk-Plugin erfolgreich gewechselt." + +msgid "Success" +msgstr "Erfolgreich" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n" +"\n" +"Möchten Sie diese Version jetzt herunterladen und installieren?\n" +"\n" +"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden." + +msgid "Download Network Plug-in" +msgstr "Netzwerk-Plugin herunterladen" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten" + +msgid "Network plug-in reloaded successfully." +msgstr "Netzwerk-Plugin erfolgreich neu geladen." + +msgid "Reload" +msgstr "Neu laden" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu." + +msgid "Reload Failed" +msgstr "Neuladen fehlgeschlagen" + msgid "Associate" msgstr "Zuordnen" @@ -7970,12 +8014,6 @@ msgstr "Splash-Screen anzeigen" msgid "Show the splash screen during startup." msgstr "Zeige den Splash-Screen beim Start." -msgid "Show shared profiles notification" -msgstr "Benachrichtigung für geteilte Profile anzeigen" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird." - msgid "Use window buttons on left side" msgstr "Windows Taste auf der linken Seite verwenden" @@ -8006,6 +8044,13 @@ msgstr "Ladeverhalten" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "sollen Drucker/Filament/Prozess Einstellungen geladen werden beim Öffnen einer .3mf?" +msgid "Auto backup" +msgstr "Automatische Datensicherung" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können." + msgid "Maximum recent files" msgstr "Maximum zuletzt verwendeter Dateien" @@ -8024,12 +8069,20 @@ msgstr "Optionen beim Importieren von STEP-Dateien anzeigen" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Wenn aktiviert, wird während des Imports von STEP-Dateien ein Dialogfeld " -msgid "Auto backup" -msgstr "Automatische Datensicherung" +msgid "Quality level for Draco export" +msgstr "Qualitätsstufe für den Draco-Export" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können." +msgid "bits" +msgstr "Bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n" +"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n" +"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien." msgid "Preset" msgstr "Profil" @@ -8061,6 +8114,12 @@ msgstr "Filamente" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimiert die maximale Höhe des Filamentbereichs anhand der gewählten Filamentanzahl." +msgid "Show shared profiles notification" +msgstr "Benachrichtigung für geteilte Profile anzeigen" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird." + msgid "Features" msgstr "Funktionen" @@ -8073,21 +8132,6 @@ msgstr "Wenn diese Option aktiviert ist, können Sie eine Aufgabe gleichzeitig a msgid "Pop up to select filament grouping mode" msgstr "Popup zum Auswählen des Filament-Gruppierungsmodus" -msgid "Quality level for Draco export" -msgstr "Qualitätsstufe für den Draco-Export" - -msgid "bits" -msgstr "Bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n" -"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n" -"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien." - msgid "Behaviour" msgstr "Verhalten" @@ -8332,19 +8376,6 @@ msgstr "Nur nach stabilen Updates suchen" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Aktualisiere integrierte Profile automatisch." - -msgid "Use encrypted file for token storage" -msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)" - -msgid "Filament Sync Options" -msgstr "Filament-Synchronisierungsoptionen" - msgid "Filament sync mode" msgstr "Filament-Synchronisierungsmodus" @@ -8357,6 +8388,16 @@ msgstr "Filament und Farbe" msgid "Color only" msgstr "Nur Farbe" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Aktualisiere integrierte Profile automatisch." + +msgid "Use encrypted file for token storage" +msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)" + msgid "Bambu network plug-in" msgstr "Bambu Netzwerk-Plugin" @@ -8369,35 +8410,6 @@ msgstr "Netzwerk-Plugin-Version" msgid "Select the network plug-in version to use" msgstr "Wählen Sie die zu verwendende Version des Netzwerk-Plugins aus" -msgid "(Latest)" -msgstr "(Neueste)" - -msgid "Network plug-in switched successfully." -msgstr "Netzwerk-Plugin erfolgreich gewechselt." - -msgid "Success" -msgstr "Erfolgreich" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n" -"\n" -"Möchten Sie diese Version jetzt herunterladen und installieren?\n" -"\n" -"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden." - -msgid "Download Network Plug-in" -msgstr "Netzwerk-Plugin herunterladen" - msgid "Associate files to OrcaSlicer" msgstr "Dateien mit OrcaSlicer verknüpfen" @@ -8446,8 +8458,17 @@ msgstr "Entwickler" msgid "Skip AMS blacklist check" msgstr "Überspringen der AMS Blacklist-Prüfung" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei" +msgid "Show unsupported presets" +msgstr "Nicht unterstützte Profile anzeigen" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Zeigt inkompatible/nicht unterstützte Profile in den Dropdown-Listen für Drucker und Filament an. Diese Profile können nicht ausgewählt werden." + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" +msgstr "" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" @@ -8456,12 +8477,6 @@ msgstr "" "Versuchen Sie, bemalte Funktionen (Farbe/Naht/Stütze/unscharf usw.) nach Änderung des Objekt-Meshs (z. B. schneiden/neu laden von der Festplatte/vereinfachen/reparieren usw.) beizubehalten\n" "Sehr experimentell! Langsam und kann Artefakte erzeugen." -msgid "Show unsupported presets" -msgstr "Nicht unterstützte Profile anzeigen" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "Zeigt inkompatible/nicht unterstützte Profile in den Dropdown-Listen für Drucker und Filament an. Diese Profile können nicht ausgewählt werden." - msgid "Allow Abnormal Storage" msgstr "Fehlerhaften Speicher zulassen" @@ -8490,24 +8505,6 @@ msgstr "Fehlersuche" msgid "trace" msgstr "Spurensuche" -msgid "Network plug-in" -msgstr "Netzwerk-Plugin" - -msgid "Reload" -msgstr "Neu laden" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten" - -msgid "Network plug-in reloaded successfully." -msgstr "Netzwerk-Plugin erfolgreich neu geladen." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu." - -msgid "Reload Failed" -msgstr "Neuladen fehlgeschlagen" - msgid "Debug" msgstr "Fehlersuche" @@ -8523,25 +8520,6 @@ msgstr "Profil Synchronisation" msgid "Preferences sync" msgstr "Synchronisierung der Einstellungen" -msgid "View control settings" -msgstr "Ansicht-Steuerungseinstellungen" - -msgid "Rotate view" -msgstr "Drehen der Ansicht" - -msgid "Pan view" -msgstr "Pan-Ansicht" - -msgid "Zoom view" -msgstr "Ansicht zoomen" - -msgid "Other" -msgstr "Sonstiges" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Scrollrichtung beim Zoomen umkehren" - msgid "Enable SSL(MQTT)" msgstr "SSL aktivieren (MQTT)" @@ -13341,6 +13319,17 @@ msgstr "Die Lüftergeschwindigkeit wird linear von Null bei der Schicht\"close_f msgid "layer" msgstr "Schicht" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Stützstruktur-Schnittstelle" @@ -15282,6 +15271,9 @@ msgstr "Risse, die kleiner als das 2-fache des Lückenschlussradius sind, werden msgid "Slicing Mode" msgstr "Slicing-Modus" +msgid "Other" +msgstr "Sonstiges" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Verwenden Sie \"Gerade-ungerade\" für 3DLabPrint-Flugzeugmodelle. Verwenden Sie \"Löcher schließen\", um alle Löcher im Modell zu schließen." @@ -18363,6 +18355,132 @@ msgstr "Anmelden/Testen" msgid "Connection to printers connected via the print host failed." msgstr "Die Verbindung zu den über den Druck-Host verbundenen Druckern ist fehlgeschlagen." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "3DPrinterOS Cloud-Upload-Optionen" @@ -18445,6 +18563,19 @@ msgstr "Verbindung zu MKS funktioniert korrekt." msgid "Could not connect to MKS" msgstr "Konnte keine Verbindung zu MKS herstellen" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Verbindung zu OctoPrint funktioniert korrekt." @@ -19605,6 +19736,31 @@ msgstr "" "Verwerfungen vermeiden\n" "Wussten Sie, dass beim Drucken von Materialien, die zu Verwerfungen neigen, wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die Wahrscheinlichkeit von Verwerfungen verringert werden kann?" +#~ msgid "Filament Sync Options" +#~ msgstr "Filament-Synchronisierungsoptionen" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei" + +#~ msgid "Network plug-in" +#~ msgstr "Netzwerk-Plugin" + +#~ msgid "View control settings" +#~ msgstr "Ansicht-Steuerungseinstellungen" + +#~ msgid "Rotate view" +#~ msgstr "Drehen der Ansicht" + +#~ msgid "Pan view" +#~ msgstr "Pan-Ansicht" + +#~ msgid "Zoom view" +#~ msgstr "Ansicht zoomen" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Scrollrichtung beim Zoomen umkehren" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Links: %s" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 74db477487..cffba27747 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2026-06-17 15:44-0300\n" "Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: \n" @@ -5042,7 +5042,7 @@ msgstr "" msgid "Size:" msgstr "" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "" @@ -7514,6 +7514,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "" @@ -7568,12 +7607,6 @@ msgstr "" msgid "Show the splash screen during startup." msgstr "" -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7604,6 +7637,12 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "" + msgid "Maximum recent files" msgstr "" @@ -7622,10 +7661,16 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" +msgid "Quality level for Draco export" msgstr "" -msgid "Backup your project periodically to help with restoring from an occasional crash." +msgid "bits" +msgstr "" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." msgstr "" msgid "Preset" @@ -7658,6 +7703,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "" @@ -7670,18 +7721,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "" @@ -7906,18 +7945,6 @@ msgstr "" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" -msgid "Update built-in presets automatically." -msgstr "" - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -7930,6 +7957,15 @@ msgstr "" msgid "Color only" msgstr "" +msgid "Update built-in presets automatically." +msgstr "" + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -7942,30 +7978,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "" @@ -8008,7 +8020,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8016,12 +8037,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8048,24 +8063,6 @@ msgstr "" msgid "trace" msgstr "" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "" @@ -8081,24 +8078,6 @@ msgstr "" msgid "Preferences sync" msgstr "" -msgid "View control settings" -msgstr "" - -msgid "Rotate view" -msgstr "" - -msgid "Pan view" -msgstr "" - -msgid "Zoom view" -msgstr "" - -msgid "Other" -msgstr "" - -msgid "Reverse scroll direction while zooming" -msgstr "" - msgid "Enable SSL(MQTT)" msgstr "" @@ -12438,6 +12417,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -14184,6 +14174,9 @@ msgstr "" msgid "Slicing Mode" msgstr "" +msgid "Other" +msgstr "" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" @@ -17014,6 +17007,132 @@ msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17096,6 +17215,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 862630a6cc..f4c84ac2f8 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: Ian A. Bassi <>\n" "Language-Team: \n" @@ -5197,7 +5197,7 @@ msgstr "Volumen:" msgid "Size:" msgstr "Tamaño:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Se han encontrado conflictos de rutas G-Code en la capa %d, Z = %.2lfmm. Por favor, separe más los objetos en conflicto (%s <-> %s)." @@ -7736,6 +7736,50 @@ msgstr "Elegir carpeta para elementos descargados" msgid "Choose Download Directory" msgstr "Elegir Directorio de Descarga" +msgid "(Latest)" +msgstr "(Última)" + +msgid "Network plug-in switched successfully." +msgstr "Plugin de red cambiado con éxito." + +msgid "Success" +msgstr "Éxito" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Error al cargar el plugin de red. Por favor, reinicie la aplicación." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Ha seleccionado la versión %s del plugin de red.\n" +"\n" +"¿Desea descargar e instalar esta versión ahora?\n" +"\n" +"Nota: La aplicación puede necesitar reiniciarse después de la instalación." + +msgid "Download Network Plug-in" +msgstr "Descargar plugin de red" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recargar el plugin de red sin reiniciar la aplicación" + +msgid "Network plug-in reloaded successfully." +msgstr "Plugin de red recargado con éxito." + +msgid "Reload" +msgstr "Recargar" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Error al recargar el plugin de red. Por favor, reinicie la aplicación." + +msgid "Reload Failed" +msgstr "Error al recargar" + msgid "Associate" msgstr "Asociar" @@ -7790,12 +7834,6 @@ msgstr "Mostrar pantalla de inicio" msgid "Show the splash screen during startup." msgstr "Muestra la página de bienvenida al iniciar." -msgid "Show shared profiles notification" -msgstr "Mostrar notificaciones de perfiles compartidos" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Mostrar una notificación con un enlace para consultar los perfiles compartidos cuando se cambie la impresora seleccionada." - msgid "Use window buttons on left side" msgstr "Utiliza los botones de la ventana situados a la izquierda" @@ -7826,6 +7864,12 @@ msgstr "Comportamiento de carga" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "¿Deben cargarse los ajustes de impresora/filamento/proceso al abrir un archivo 3MF?" +msgid "Auto backup" +msgstr "Copia de seguridad automática" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Haga copia de seguridad periódicamente para restaurar en caso de fallo ocasional." + msgid "Maximum recent files" msgstr "Máximo de archivos recientes" @@ -7844,11 +7888,20 @@ msgstr "Mostrar opciones al importar archivos STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Si está activado, aparecerá un diálogo de configuración de parámetros durante la importación de archivos STEP." -msgid "Auto backup" -msgstr "Copia de seguridad automática" +msgid "Quality level for Draco export" +msgstr "Nivel de calidad para exportación Draco" -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Haga copia de seguridad periódicamente para restaurar en caso de fallo ocasional." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Controla la profundidad de bits de cuantificación utilizada al comprimir la malla al formato Draco.\n" +"0 = compresión sin pérdidas (la geometría se conserva con total precisión). Los valores válidos con pérdidas oscilan entre 8 y 30.\n" +"Los valores más bajos producen archivos más pequeños, pero pierden más detalles geométricos; los valores más altos conservan más detalles a costa de archivos más grandes." msgid "Preset" msgstr "Perfil" @@ -7880,6 +7933,12 @@ msgstr "filamentos" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimiza la altura máxima del área del filamento según el número de filamentos seleccionado." +msgid "Show shared profiles notification" +msgstr "Mostrar notificaciones de perfiles compartidos" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Mostrar una notificación con un enlace para consultar los perfiles compartidos cuando se cambie la impresora seleccionada." + msgid "Features" msgstr "Características" @@ -7892,21 +7951,6 @@ msgstr "Con esta opción activada, puede enviar una tarea a varios dispositivos msgid "Pop up to select filament grouping mode" msgstr "Ventana emergente para seleccionar el modo de agrupación de filamentos" -msgid "Quality level for Draco export" -msgstr "Nivel de calidad para exportación Draco" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Controla la profundidad de bits de cuantificación utilizada al comprimir la malla al formato Draco.\n" -"0 = compresión sin pérdidas (la geometría se conserva con total precisión). Los valores válidos con pérdidas oscilan entre 8 y 30.\n" -"Los valores más bajos producen archivos más pequeños, pero pierden más detalles geométricos; los valores más altos conservan más detalles a costa de archivos más grandes." - msgid "Behaviour" msgstr "Comportamiento" @@ -8151,18 +8195,6 @@ msgstr "Buscar sólo actualizaciones estables" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronización automática de los perfiles del usuario (Impresora/Filamento/Proceso)" -msgid "Update built-in presets automatically." -msgstr "Actualizar perfiles integrados automáticamente." - -msgid "Use encrypted file for token storage" -msgstr "Usar archivo cifrado para almacenar tokens" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Almacenar tokens de autenticación en un archivo cifrado en lugar del llavero del sistema. (Requiere reinicio)" - -msgid "Filament Sync Options" -msgstr "Opciones de sincronización de filamento" - msgid "Filament sync mode" msgstr "Modo de sincronización de filamento" @@ -8175,6 +8207,15 @@ msgstr "Filamento y color" msgid "Color only" msgstr "Solo color" +msgid "Update built-in presets automatically." +msgstr "Actualizar perfiles integrados automáticamente." + +msgid "Use encrypted file for token storage" +msgstr "Usar archivo cifrado para almacenar tokens" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Almacenar tokens de autenticación en un archivo cifrado en lugar del llavero del sistema. (Requiere reinicio)" + msgid "Bambu network plug-in" msgstr "Plug-in de red de Bambu" @@ -8187,35 +8228,6 @@ msgstr "Versión del plugin de red" msgid "Select the network plug-in version to use" msgstr "Seleccione la versión del plugin de red a usar" -msgid "(Latest)" -msgstr "(Última)" - -msgid "Network plug-in switched successfully." -msgstr "Plugin de red cambiado con éxito." - -msgid "Success" -msgstr "Éxito" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Error al cargar el plugin de red. Por favor, reinicie la aplicación." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Ha seleccionado la versión %s del plugin de red.\n" -"\n" -"¿Desea descargar e instalar esta versión ahora?\n" -"\n" -"Nota: La aplicación puede necesitar reiniciarse después de la instalación." - -msgid "Download Network Plug-in" -msgstr "Descargar plugin de red" - msgid "Associate files to OrcaSlicer" msgstr "Asociar archivos a OrcaSlicer" @@ -8258,8 +8270,17 @@ msgstr "Desarrollador" msgid "Skip AMS blacklist check" msgstr "Evitar la comprobación de lista negra de AMS" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(Experimental) Mantener el elemento pintado tras un cambio de malla" +msgid "Show unsupported presets" +msgstr "Mostrar ajustes preestablecidos no compatibles" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Mostrar los ajustes preestablecidos incompatibles o no compatibles en los menús desplegables de impresoras y filamentos. Estos ajustes preestablecidos no se pueden seleccionar." + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" +msgstr "" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" @@ -8268,12 +8289,6 @@ msgstr "" "Intenta conservar las característica pintadas (color, costuras, soportes, piel difusa, etc.) tras modificar la malla del objeto (por ejemplo, al cortar, volver a cargar desde el disco, simplificar, corregir, etc.).\n" "¡Muy experimental! Es lento y puede generar artefactos." -msgid "Show unsupported presets" -msgstr "Mostrar ajustes preestablecidos no compatibles" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "Mostrar los ajustes preestablecidos incompatibles o no compatibles en los menús desplegables de impresoras y filamentos. Estos ajustes preestablecidos no se pueden seleccionar." - msgid "Allow Abnormal Storage" msgstr "Permitir almacenamiento anómalo" @@ -8302,24 +8317,6 @@ msgstr "depurar" msgid "trace" msgstr "traza" -msgid "Network plug-in" -msgstr "Plugin de red" - -msgid "Reload" -msgstr "Recargar" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recargar el plugin de red sin reiniciar la aplicación" - -msgid "Network plug-in reloaded successfully." -msgstr "Plugin de red recargado con éxito." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Error al recargar el plugin de red. Por favor, reinicie la aplicación." - -msgid "Reload Failed" -msgstr "Error al recargar" - msgid "Debug" msgstr "Depurar" @@ -8335,24 +8332,6 @@ msgstr "Sincronización de perfil" msgid "Preferences sync" msgstr "Sincronización de preferencias" -msgid "View control settings" -msgstr "Ver los ajustes del control" - -msgid "Rotate view" -msgstr "Rotar Vista" - -msgid "Pan view" -msgstr "Desplazar vista" - -msgid "Zoom view" -msgstr "Hacer Zoom" - -msgid "Other" -msgstr "Otro" - -msgid "Reverse scroll direction while zooming" -msgstr "La rueda del ratón se invierte al hacer zoom" - msgid "Enable SSL(MQTT)" msgstr "Habilitar SSL (MQTT)" @@ -13031,6 +13010,17 @@ msgstr "La velocidad de ventilador se incrementará linealmente de cero desde la msgid "layer" msgstr "capa" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Velocidad de ventilador en la interfaz de los soportes" @@ -14920,6 +14910,9 @@ msgstr "Las grietas más pequeñas que 2x el radio de cierre se rellenan durante msgid "Slicing Mode" msgstr "Modo de laminado" +msgid "Other" +msgstr "Otro" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Utilice \"Par-impar\" para los modelos de avión de 3DLabPrint. Utilice \"Cerrar orificios\" para cerrar todos los orificios del modelo." @@ -17936,6 +17929,132 @@ msgstr "Inicio de sesión/Prueba" msgid "Connection to printers connected via the print host failed." msgstr "Ha fallado la conexión a impresoras conectadas a través del host de impresión." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "Limpiar" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "Opciones de carga en la nube de 3DPrinterOS" @@ -18018,6 +18137,19 @@ msgstr "La conexión con MKS funciona correctamente." msgid "Could not connect to MKS" msgstr "No se ha podido conectar con MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "La conexión con OctoPrint funciona correctamente." @@ -19168,6 +19300,30 @@ msgstr "" "Evita la deformación\n" "¿Sabías que al imprimir materiales propensos a la deformación como el ABS, aumentar adecuadamente la temperatura de la cama térmica puede reducir la probabilidad de deformaciones?" +#~ msgid "Filament Sync Options" +#~ msgstr "Opciones de sincronización de filamento" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Experimental) Mantener el elemento pintado tras un cambio de malla" + +#~ msgid "Network plug-in" +#~ msgstr "Plugin de red" + +#~ msgid "View control settings" +#~ msgstr "Ver los ajustes del control" + +#~ msgid "Rotate view" +#~ msgstr "Rotar Vista" + +#~ msgid "Pan view" +#~ msgstr "Desplazar vista" + +#~ msgid "Zoom view" +#~ msgstr "Hacer Zoom" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "La rueda del ratón se invierte al hacer zoom" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Izquierda: %s" @@ -22228,9 +22384,6 @@ msgstr "" #~ msgid "Choose save directory" #~ msgstr "Elija directorio de guardado" -#~ msgid "Clean" -#~ msgstr "Limpiar" - #~ msgid "Clipping of view" #~ msgstr "Recorte de vista" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 3e64b3c5b9..ee0313fe81 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -1709,10 +1709,10 @@ msgstr "" "Si vous n'utilisiez pas Bambu Cloud pour synchroniser vos profils, ce changement ne vous concerne pas et vous pouvez ignorer ce message." msgid "Profile syncing change" -msgstr "" +msgstr "Modification de la synchronisation des profils" msgid "Learn more" -msgstr "" +msgstr "En savoir plus" msgid "Reloading network plug-in..." msgstr "Rechargement du plug-in réseau…" @@ -1748,6 +1748,9 @@ msgid "" "Some features, including the setup wizard, may appear blank until it is installed.\n" "Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." msgstr "" +"Le runtime Microsoft WebView2 n’a pas pu être installé.\n" +"Certaines fonctionnalités, dont l’assistant de configuration, peuvent apparaître vides tant qu’il n’est pas installé.\n" +"Veuillez l’installer manuellement depuis https://developer.microsoft.com/microsoft-edge/webview2/ et redémarrer Orca Slicer." #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" @@ -3998,7 +4001,7 @@ msgid "The recommended nozzle temperature for this filament type is [%d, %d] deg msgstr "La température de buse recommandée pour ce type de filament est de [%d, %d] degrés Celsius." msgid "Adaptive Pressure Advance model validation failed:\n" -msgstr "" +msgstr "Échec de la validation du modèle d’avance de pression adaptative :\n" msgid "" "Too small max volumetric speed.\n" @@ -4013,7 +4016,7 @@ msgstr "La température actuelle du caisson est supérieure à la température d #, c-format, boost-format msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." -msgstr "" +msgstr "La température minimale du caisson (%d℃) est supérieure à la température cible du caisson (%d℃). La valeur minimale est le seuil à partir duquel l’impression démarre tandis que le caisson continue de chauffer vers la cible ; elle ne doit donc pas la dépasser. Elle sera limitée à la cible." msgid "" "Layer height too small\n" @@ -5122,7 +5125,7 @@ msgid "Slice" msgstr "Découper" msgid "Review" -msgstr "" +msgstr "Examiner" msgid "Assembly Return" msgstr "Retour d'assemblage" @@ -5190,7 +5193,7 @@ msgstr "Volume :" msgid "Size:" msgstr "Taille :" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Des conflits de chemins G-code ont été trouvés au niveau de la couche %d, z = %.2lfmm. Veuillez séparer davantage les objets en conflit (%s <-> %s)." @@ -7727,6 +7730,50 @@ msgstr "Choisir le dossier pour les éléments téléchargés" msgid "Choose Download Directory" msgstr "Choisissez le répertoire de téléchargement" +msgid "(Latest)" +msgstr "(Dernière)" + +msgid "Network plug-in switched successfully." +msgstr "Plug-in réseau changé avec succès." + +msgid "Success" +msgstr "Succès" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Échec du chargement du plug-in réseau. Veuillez redémarrer l'application." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Vous avez sélectionné la version %s du plug-in réseau.\n" +"\n" +"Souhaitez-vous télécharger et installer cette version maintenant ?\n" +"\n" +"Note : L'application devra peut-être redémarrer après l'installation." + +msgid "Download Network Plug-in" +msgstr "Télécharger le plug-in réseau" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recharger le plug-in réseau sans redémarrer l'application" + +msgid "Network plug-in reloaded successfully." +msgstr "Plug-in réseau rechargé avec succès." + +msgid "Reload" +msgstr "Recharger" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Échec du rechargement du plug-in réseau. Veuillez redémarrer l'application." + +msgid "Reload Failed" +msgstr "Échec du rechargement" + msgid "Associate" msgstr "Associer" @@ -7781,12 +7828,6 @@ msgstr "Afficher l'écran de démarrage" msgid "Show the splash screen during startup." msgstr "Afficher l’écran de démarrage au démarrage." -msgid "Show shared profiles notification" -msgstr "Afficher la notification de profils partagés" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Afficher une notification avec un lien pour parcourir les profils partagés lorsque l’imprimante sélectionnée change." - msgid "Use window buttons on left side" msgstr "Placer les boutons de fenêtre à gauche" @@ -7817,6 +7858,12 @@ msgstr "Comportement du chargement" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Les paramètres d'imprimante/filament/processus doivent-ils être chargés à l'ouverture d'un fichier 3MF ?" +msgid "Auto backup" +msgstr "Sauvegarde automatique" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Sauvegardez votre projet périodiquement pour faciliter la restauration après un plantage occasionnel." + msgid "Maximum recent files" msgstr "Nombre maximum de fichiers récents" @@ -7835,11 +7882,20 @@ msgstr "Afficher les options lors de l'importation d'un fichier STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Si activé, une boîte de dialogue de paramètres apparaîtra lors de l'importation d'un fichier STEP." -msgid "Auto backup" -msgstr "Sauvegarde automatique" +msgid "Quality level for Draco export" +msgstr "Niveau de qualité pour l'exportation Draco" -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Sauvegardez votre projet périodiquement pour faciliter la restauration après un plantage occasionnel." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Contrôle la profondeur de bits de quantification utilisée lors de la compression du maillage au format Draco.\n" +"0 = compression sans perte (la géométrie est préservée en pleine précision). Les valeurs avec perte valides vont de 8 à 30.\n" +"Des valeurs plus basses produisent des fichiers plus petits mais perdent plus de détails géométriques ; des valeurs plus élevées préservent plus de détails au prix de fichiers plus volumineux." msgid "Preset" msgstr "Préréglage" @@ -7871,6 +7927,12 @@ msgstr "filaments" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimise la hauteur maximale de la zone de filaments selon le nombre de filaments choisi." +msgid "Show shared profiles notification" +msgstr "Afficher la notification de profils partagés" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Afficher une notification avec un lien pour parcourir les profils partagés lorsque l’imprimante sélectionnée change." + msgid "Features" msgstr "Fonctionnalités" @@ -7883,21 +7945,6 @@ msgstr "Si cette option est activée, vous pouvez envoyer une tâche à plusieur msgid "Pop up to select filament grouping mode" msgstr "Fenêtre contextuelle pour sélectionner le mode de regroupement des filaments" -msgid "Quality level for Draco export" -msgstr "Niveau de qualité pour l'exportation Draco" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Contrôle la profondeur de bits de quantification utilisée lors de la compression du maillage au format Draco.\n" -"0 = compression sans perte (la géométrie est préservée en pleine précision). Les valeurs avec perte valides vont de 8 à 30.\n" -"Des valeurs plus basses produisent des fichiers plus petits mais perdent plus de détails géométriques ; des valeurs plus élevées préservent plus de détails au prix de fichiers plus volumineux." - msgid "Behaviour" msgstr "Comportement" @@ -8142,18 +8189,6 @@ msgstr "Vérifier les mises à jour stables uniquement" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Synchronisation automatique des pré-réglages utilisateur (Imprimante/Filament/Traitement)" -msgid "Update built-in presets automatically." -msgstr "Mettre à jour automatiquement les préréglages intégrés." - -msgid "Use encrypted file for token storage" -msgstr "Utiliser un fichier chiffré pour le stockage des jetons" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Stocker les jetons d'authentification dans un fichier chiffré au lieu du trousseau système. (Nécessite un redémarrage)" - -msgid "Filament Sync Options" -msgstr "Options de synchronisation des filaments" - msgid "Filament sync mode" msgstr "Mode de synchronisation des filaments" @@ -8166,6 +8201,15 @@ msgstr "Filament et couleur" msgid "Color only" msgstr "Couleur uniquement" +msgid "Update built-in presets automatically." +msgstr "Mettre à jour automatiquement les préréglages intégrés." + +msgid "Use encrypted file for token storage" +msgstr "Utiliser un fichier chiffré pour le stockage des jetons" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Stocker les jetons d'authentification dans un fichier chiffré au lieu du trousseau système. (Nécessite un redémarrage)" + msgid "Bambu network plug-in" msgstr "Plug-in réseau Bambu" @@ -8178,35 +8222,6 @@ msgstr "Version du plug-in réseau" msgid "Select the network plug-in version to use" msgstr "Sélectionner la version du plug-in réseau à utiliser" -msgid "(Latest)" -msgstr "(Dernière)" - -msgid "Network plug-in switched successfully." -msgstr "Plug-in réseau changé avec succès." - -msgid "Success" -msgstr "Succès" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Échec du chargement du plug-in réseau. Veuillez redémarrer l'application." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Vous avez sélectionné la version %s du plug-in réseau.\n" -"\n" -"Souhaitez-vous télécharger et installer cette version maintenant ?\n" -"\n" -"Note : L'application devra peut-être redémarrer après l'installation." - -msgid "Download Network Plug-in" -msgstr "Télécharger le plug-in réseau" - msgid "Associate files to OrcaSlicer" msgstr "Associer des fichiers à Orca Slicer" @@ -8249,8 +8264,17 @@ msgstr "Développeur" msgid "Skip AMS blacklist check" msgstr "Ignorer la vérification de la liste noire AMS" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(Expérimental) Conserver les éléments peints après une modification du maillage" +msgid "Show unsupported presets" +msgstr "Afficher les préréglages non pris en charge" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Affiche les préréglages incompatibles ou non pris en charge dans les listes déroulantes d’imprimantes et de filaments. Ces préréglages ne peuvent pas être sélectionnés." + +msgid "Experimental Features" +msgstr "Fonctionnalités expérimentales" + +msgid "Keep painted feature after mesh change" +msgstr "Conserver les zones peintes après modification du maillage" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" @@ -8259,12 +8283,6 @@ msgstr "" "Tente de conserver les éléments peints (couleur/couture/support/surface irrégulière, etc.) après une modification du maillage de l’objet (découpe/rechargement depuis le disque/simplification/réparation, etc.)\n" "Hautement expérimental ! Lent et susceptible de créer des artefacts." -msgid "Show unsupported presets" -msgstr "Afficher les préréglages non pris en charge" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "Affiche les préréglages incompatibles ou non pris en charge dans les listes déroulantes d’imprimantes et de filaments. Ces préréglages ne peuvent pas être sélectionnés." - msgid "Allow Abnormal Storage" msgstr "Autoriser le stockage anormal" @@ -8293,24 +8311,6 @@ msgstr "débogage" msgid "trace" msgstr "trace" -msgid "Network plug-in" -msgstr "Plug-in réseau" - -msgid "Reload" -msgstr "Recharger" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recharger le plug-in réseau sans redémarrer l'application" - -msgid "Network plug-in reloaded successfully." -msgstr "Plug-in réseau rechargé avec succès." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Échec du rechargement du plug-in réseau. Veuillez redémarrer l'application." - -msgid "Reload Failed" -msgstr "Échec du rechargement" - msgid "Debug" msgstr "Débogage" @@ -8326,24 +8326,6 @@ msgstr "Synchronisation préréglée" msgid "Preferences sync" msgstr "Synchronisation des préférences" -msgid "View control settings" -msgstr "Afficher les paramètres de contrôle" - -msgid "Rotate view" -msgstr "Rotation de la vue" - -msgid "Pan view" -msgstr "Déplacement de la vue" - -msgid "Zoom view" -msgstr "Zoom de la vue" - -msgid "Other" -msgstr "Autre" - -msgid "Reverse scroll direction while zooming" -msgstr "La molette de la souris s'inverse lors du zoom" - msgid "Enable SSL(MQTT)" msgstr "Activer SSL (MQTT)" @@ -9038,10 +9020,10 @@ msgid "Search in preset" msgstr "Rechercher dans le préréglage" msgid "Synchronization of different extruder drives or nozzle volume types is not supported." -msgstr "" +msgstr "La synchronisation entre des entraînements d’extrudeur ou des types de volume de buse différents n’est pas prise en charge." msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." -msgstr "" +msgstr "Synchroniser la modification des paramètres avec les paramètres correspondants d’un autre extrudeur." msgid "Click to reset all settings to the last saved preset." msgstr "Cliquez pour rétablir tous les paramètres au dernier préréglage enregistré." @@ -9333,13 +9315,13 @@ msgid "Chamber temperature" msgstr "Température du caisson" msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" -msgstr "" +msgstr "Température cible du caisson, et température minimale du caisson à partir de laquelle l’impression doit démarrer" msgid "Target" -msgstr "" +msgstr "Cible" msgid "Minimal" -msgstr "" +msgstr "Minimale" msgid "Print temperature" msgstr "Température d'impression" @@ -9669,21 +9651,21 @@ msgstr "Ne plus avertir pour ce préréglage" #, c-format, boost-format msgid "%s: %s" -msgstr "" +msgstr "%s : %s" msgid "No modifications need to be copied." -msgstr "" +msgstr "Aucune modification à copier." msgid "Copy paramters" -msgstr "" +msgstr "Copier les paramètres" #, c-format, boost-format msgid "Modify paramters of %s" -msgstr "" +msgstr "Modifier les paramètres de %s" #, c-format, boost-format msgid "Do you want to modify the following parameters of the %s to that of the %s?" -msgstr "" +msgstr "Voulez-vous modifier les paramètres suivants de %s pour correspondre à ceux de %s ?" msgid "Click to reset current value and attach to the global value." msgstr "Cliquez pour réinitialiser la valeur actuelle et l'attacher à la valeur globale." @@ -9833,10 +9815,10 @@ msgid "Capabilities" msgstr "Fonctionnalités" msgid "Left: " -msgstr "" +msgstr "Gauche : " msgid "Right: " -msgstr "" +msgstr "Droite : " msgid "Show all presets (including incompatible)" msgstr "Afficher tous les préréglages (y compris incompatibles)" @@ -11046,7 +11028,7 @@ msgid "The precise wall option will be ignored for outer-inner or inner-outer-in msgstr "L'option de paroi précise sera ignorée pour les séquences de parois extérieure-intérieure ou intérieure-extérieure-intérieure." msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." -msgstr "" +msgstr "Le modèle d’avance de pression adaptative d’un ou plusieurs extrudeurs peut contenir des valeurs non valides." msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." msgstr "Le rétrécissement du filament ne sera pas utilisé car le rétrécissement des filaments utilisés ne correspond pas." @@ -11059,6 +11041,9 @@ msgid "" "\n" "Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." msgstr "" +"Les jupes par objet ne peuvent pas tenir entre les objets dans la séquence d’impression Par objet.\n" +"\n" +"Éloignez les objets, réduisez la taille de la bordure/jupe, passez le type de jupe à Combiné, ou passez la séquence d’impression à Par couche." msgid "Exporting G-code" msgstr "Exportation du G-code" @@ -13028,6 +13013,17 @@ msgstr "La vitesse du ventilateur augmentera de manière linéaire à partir de msgid "layer" msgstr "couche" +msgid "First layer fan speed" +msgstr "Vitesse du ventilateur de la première couche" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "Définit une vitesse de ventilateur exacte pour la première couche, remplaçant tous les autres réglages de refroidissement. Utile pour protéger les pièces de tête d’impression imprimées en 3D (par exemple les conduits ABS/ASA de type Voron) d’un plateau chaud. Un léger flux d’air refroidit les conduits, sans recourir au refroidissement complet qui, dans certaines conditions, peut nuire à l’adhérence de la première couche.\nÀ partir de la deuxième couche, le refroidissement normal reprend.\nSi « Ventilateur à pleine vitesse à la couche » est également défini, le ventilateur monte progressivement de cette valeur sur la première couche jusqu’à votre cible à la couche choisie.\nDisponible uniquement lorsque « Pas de refroidissement pour » est à 0.\nRéglez sur -1 pour le désactiver." + msgid "Support interface fan speed" msgstr "Vitesse du ventilateur" @@ -14921,6 +14917,9 @@ msgstr "Les fissures plus petites que 2x le rayon de fermeture de l’espace son msgid "Slicing Mode" msgstr "Mode de découpe" +msgid "Other" +msgstr "Autre" + 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." @@ -15293,9 +15292,14 @@ msgid "" "\n" "Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." msgstr "" +"Il s’agit de la température du caisson à laquelle l’impression doit démarrer, tandis que le caisson continue de chauffer vers la température « Cible » du caisson. Par exemple, réglez la Cible sur 60 et la Minimale sur 50 pour commencer à imprimer dès que le caisson atteint 50 °C, sans attendre les 60 °C complets.\n" +"\n" +"Elle définit une variable G-code nommée chamber_minimal_temperature, qui peut être transmise à votre macro de démarrage d’impression ou à une macro de préchauffage, comme ceci : PRINT_START (autres variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Contrairement à la température « Cible » du caisson, cette option n’émet aucune commande M141/M191 ; elle expose seulement la valeur à votre G-code personnalisé. Elle ne doit pas dépasser la température « Cible » du caisson." msgid "Chamber minimal temperature" -msgstr "" +msgstr "Température minimale du caisson" msgid "Nozzle temperature after the first layer" msgstr "Température de la buse pour les couches après la première" @@ -17929,6 +17933,132 @@ msgstr "Connexion/Test" msgid "Connection to printers connected via the print host failed." msgstr "La connexion aux imprimantes connectées via l’hôte d’impression a échoué." +msgid "Detect Creality K-series printer" +msgstr "Détecter une imprimante Creality série K" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "Cliquez sur Scan pour rechercher des imprimantes série K sur votre réseau." + +msgid "Use Selected" +msgstr "Utiliser la sélection" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "Recherche d’imprimantes série K sur le réseau local… cela prend quelques secondes." + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "Aucune imprimante série K trouvée. Assurez-vous que l’imprimante est sur le même réseau et qu’elle n’est pas bloquée par l’isolation des clients Wi-Fi, puis cliquez à nouveau sur Scan." + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "%zu imprimante(s) Creality trouvée(s). Sélectionnez-en une et cliquez sur Utiliser la sélection." + +msgid "Active" +msgstr "Actif" + +msgid "Printers" +msgstr "Imprimantes" + +msgid "Processes" +msgstr "Traitements" + +msgid "Show/Hide system information" +msgstr "Afficher/Masquer les informations système" + +msgid "Copy system information to clipboard" +msgstr "Copier les informations système dans le presse-papiers" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "Nous avons besoin d’informations pour diagnostiquer l’origine du problème. Consultez la page wiki pour un guide détaillé." + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "Le bouton Compresser rassemble le fichier de projet et les journaux de la session actuelle dans un fichier ZIP." + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "Tout exemple visuel supplémentaire, comme des images ou des enregistrements d’écran, peut être utile pour signaler le problème." + +msgid "Report issue" +msgstr "Signaler un problème" + +msgid "Pack" +msgstr "Compresser" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "Nettoie et reconstruit le cache des profils système au prochain démarrage" + +msgid "Clean system profiles cache" +msgstr "Nettoyer le cache des profils système" + +msgid "Clean" +msgstr "Nettoyer" + +msgid "Loaded profiles overview" +msgstr "Aperçu des profils chargés" + +msgid "This section shows information for loaded profiles" +msgstr "Cette section affiche les informations des profils chargés" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "Exporte un aperçu détaillé des profils chargés au format JSON" + +msgid "Configurations folder" +msgstr "Dossier des configurations" + +msgid "Opens configurations folder" +msgstr "Ouvre le dossier des configurations" + +msgid "Log level" +msgstr "Niveau de journalisation" + +msgid "Stored logs" +msgstr "Journaux stockés" + +msgid "Packs all stored logs onto a zip file." +msgstr "Compresse tous les journaux stockés dans un fichier ZIP." + +msgid "Profiles" +msgstr "Profils" + +msgid "Select NO to close dialog and review project" +msgstr "Sélectionnez Non pour fermer la fenêtre et revoir le projet" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "Aucun fichier de projet dans la session actuelle. Seuls les journaux seront inclus dans le paquet" + +msgid "Select NO to close dialog and review project." +msgstr "Sélectionnez Non pour fermer la fenêtre et revoir le projet." + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "Veuillez vous assurer qu’aucune instance d’OrcaSlicer n’est en cours d’exécution" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "Le dossier système ne peut pas être supprimé car certains fichiers sont utilisés par une autre application. Veuillez fermer toute application utilisant ces fichiers et réessayer." + +msgid "Failed to delete system folder..." +msgstr "Échec de la suppression du dossier système…" + +msgid "Failed to determine executable path." +msgstr "Impossible de déterminer le chemin de l’exécutable." + +msgid "Failed to launch a new instance." +msgstr "Échec du lancement d’une nouvelle instance." + +msgid "log(s)" +msgstr "journal(aux)" + +msgid "Choose where to save the exported JSON file" +msgstr "Choisissez où enregistrer le fichier JSON exporté" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "Échec de l’exportation\nVeuillez vérifier les autorisations d’écriture ou si le fichier est utilisé par une autre application" + +msgid "Choose where to save the exported ZIP file" +msgstr "Choisissez où enregistrer le fichier ZIP exporté" + +msgid "File already exists. Overwrite?" +msgstr "Le fichier existe déjà. L’écraser ?" + msgid "3DPrinterOS Cloud upload options" msgstr "Options de téléversement vers 3DPrinterOS Cloud" @@ -18011,6 +18141,19 @@ msgstr "La connexion à MKS fonctionne correctement." msgid "Could not connect to MKS" msgstr "Impossible de se connecter à MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "La connexion à Moonraker fonctionne correctement." + +msgid "Could not connect to Moonraker" +msgstr "Impossible de se connecter à Moonraker" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "L’hôte a répondu mais ne semble pas être Moonraker (result.klippy_state manquant)." + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "Impossible d’analyser la réponse du serveur Moonraker : %s" + msgid "Connection to OctoPrint is working correctly." msgstr "La connexion à OctoPrint fonctionne correctement." @@ -19161,6 +19304,30 @@ msgstr "" "Éviter la déformation\n" "Saviez-vous que lors de l’impression de matériaux susceptibles de se 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 "Filament Sync Options" +#~ msgstr "Options de synchronisation des filaments" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Expérimental) Conserver les éléments peints après une modification du maillage" + +#~ msgid "Network plug-in" +#~ msgstr "Plug-in réseau" + +#~ msgid "View control settings" +#~ msgstr "Afficher les paramètres de contrôle" + +#~ msgid "Rotate view" +#~ msgstr "Rotation de la vue" + +#~ msgid "Pan view" +#~ msgstr "Déplacement de la vue" + +#~ msgid "Zoom view" +#~ msgstr "Zoom de la vue" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "La molette de la souris s'inverse lors du zoom" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Gauche : %s" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index 4851112a7e..bfcc3ae297 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -5300,7 +5300,7 @@ msgstr "Térfogat:" msgid "Size:" msgstr "Méret:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "G-kód útvonalütközés található a(z) %d. rétegen, Z = %.2lfmm. Helyezd távolabb egymástól az ütköző objektumokat (%s <-> %s)." @@ -7886,6 +7886,50 @@ msgstr "Mappa kiválasztása a letöltött elemekhez" msgid "Choose Download Directory" msgstr "Válassz letöltési mappát" +msgid "(Latest)" +msgstr "(Legfrissebb)" + +msgid "Network plug-in switched successfully." +msgstr "A hálózati bővítmény sikeresen átváltva." + +msgid "Success" +msgstr "Sikeres" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"A(z) %s hálózati bővítmény verziót választottad.\n" +"\n" +"Szeretnéd most letölteni és telepíteni ezt a verziót?\n" +"\n" +"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása." + +msgid "Download Network Plug-in" +msgstr "Hálózati bővítmény letöltése" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül" + +msgid "Network plug-in reloaded successfully." +msgstr "A hálózati bővítmény újratöltése sikerült." + +msgid "Reload" +msgstr "Újratöltés" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást." + +msgid "Reload Failed" +msgstr "Sikertelen újratöltés" + msgid "Associate" msgstr "Társítás" @@ -7941,12 +7985,6 @@ msgstr "Splash screen meglenítése" msgid "Show the splash screen during startup." msgstr "Indításkor nyitókép megjelenítése." -msgid "Show shared profiles notification" -msgstr "Megosztott profilok értesítésének megjelenítése" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik." - msgid "Use window buttons on left side" msgstr "Használd a bal oldalon lévő ablakgombokat" @@ -7977,6 +8015,13 @@ msgstr "Betöltési viselkedés" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Betöltődjenek-e a nyomtató/filament/folyamat beállítások 3MF fájl megnyitásakor?" +msgid "Auto backup" +msgstr "Automatikus biztonsági mentés" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz." + msgid "Maximum recent files" msgstr "Legutóbbi fájlok maximális száma" @@ -7995,12 +8040,20 @@ msgstr "Beállítások megjelenítése STEP fájl importálásakor" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Ha engedélyezve van, STEP fájl importálásakor paraméterbeállítási párbeszédablak jelenik meg." -msgid "Auto backup" -msgstr "Automatikus biztonsági mentés" +msgid "Quality level for Draco export" +msgstr "Minőségi szint Draco exporthoz" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz." +msgid "bits" +msgstr "bit" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n" +"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n" +"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán." msgid "Preset" msgstr "Beállítás" @@ -8032,6 +8085,12 @@ msgstr "filamentek" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "A filamentterület maximális magasságát optimalizálja a kiválasztott filamentek száma alapján." +msgid "Show shared profiles notification" +msgstr "Megosztott profilok értesítésének megjelenítése" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik." + msgid "Features" msgstr "Funkciók" @@ -8044,21 +8103,6 @@ msgstr "Ezzel az opcióval egyszerre több eszközre küldhetsz feladatot és t msgid "Pop up to select filament grouping mode" msgstr "Felugró ablak a filamentcsoportosítási mód kiválasztásához" -msgid "Quality level for Draco export" -msgstr "Minőségi szint Draco exporthoz" - -msgid "bits" -msgstr "bit" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n" -"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n" -"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán." - msgid "Behaviour" msgstr "Viselkedés" @@ -8298,19 +8342,6 @@ msgstr "Csak stabil frissítések keresése" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/Folyamat)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Beépített beállítások automatikus frissítése." - -msgid "Use encrypted file for token storage" -msgstr "Titkosított fájl használata token tároláshoz" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)" - -msgid "Filament Sync Options" -msgstr "Filament szinkronizálási opciók" - msgid "Filament sync mode" msgstr "Filament szinkronizálási mód" @@ -8323,6 +8354,16 @@ msgstr "Filament és szín" msgid "Color only" msgstr "Csak szín" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Beépített beállítások automatikus frissítése." + +msgid "Use encrypted file for token storage" +msgstr "Titkosított fájl használata token tároláshoz" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)" + msgid "Bambu network plug-in" msgstr "" @@ -8335,35 +8376,6 @@ msgstr "Hálózati bővítmény verzió" msgid "Select the network plug-in version to use" msgstr "A használandó hálózati bővítmény verzió kiválasztása" -msgid "(Latest)" -msgstr "(Legfrissebb)" - -msgid "Network plug-in switched successfully." -msgstr "A hálózati bővítmény sikeresen átváltva." - -msgid "Success" -msgstr "Sikeres" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"A(z) %s hálózati bővítmény verziót választottad.\n" -"\n" -"Szeretnéd most letölteni és telepíteni ezt a verziót?\n" -"\n" -"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása." - -msgid "Download Network Plug-in" -msgstr "Hálózati bővítmény letöltése" - msgid "Associate files to OrcaSlicer" msgstr "Fájlok társítása a OrcaSlicerhoz" @@ -8412,8 +8424,17 @@ msgstr "Fejlesztő" msgid "Skip AMS blacklist check" msgstr "AMS tiltólista ellenőrzés kihagyása" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" +msgstr "" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" @@ -8422,12 +8443,6 @@ msgstr "" "Megpróbálja tartani a festett jellemzőket (szín/varrat/támasz/fuzzy stb.) az objektumháló megváltoztatása után (például kivágás/újratöltés lemezről/egyszerűsítés/javítás stb.)\n" "Kísérletei szint! Lassú és hibákat hozhat létre." -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "Rendellenes tároló engedélyezése" @@ -8456,24 +8471,6 @@ msgstr "" msgid "trace" msgstr "követés" -msgid "Network plug-in" -msgstr "Hálózati bővítmény" - -msgid "Reload" -msgstr "Újratöltés" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül" - -msgid "Network plug-in reloaded successfully." -msgstr "A hálózati bővítmény újratöltése sikerült." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást." - -msgid "Reload Failed" -msgstr "Sikertelen újratöltés" - msgid "Debug" msgstr "Hibakeresés" @@ -8489,25 +8486,6 @@ msgstr "Beállítások szinkronizálása" msgid "Preferences sync" msgstr "Beállítások szinkronizálása" -msgid "View control settings" -msgstr "Vezérlési beállítások megtekintése" - -msgid "Rotate view" -msgstr "Nézet elforgatása" - -msgid "Pan view" -msgstr "Pásztázó nézet" - -msgid "Zoom view" -msgstr "Nagyítás nézet" - -msgid "Other" -msgstr "Egyéb" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Görgetési irány megfordítása nagyítás közben" - msgid "Enable SSL(MQTT)" msgstr "SSL engedélyezése (MQTT)" @@ -13242,6 +13220,17 @@ msgstr "A ventilátor fordulatszáma lineárisan nő nulláról a \"close_fan_th msgid "layer" msgstr "réteg" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Támasz érintkező felület ventilátorsebessége" @@ -15182,6 +15171,9 @@ msgstr "A háromszögháló szeletelés során a szeletelési hézag lezárási msgid "Slicing Mode" msgstr "Szeletelési mód" +msgid "Other" +msgstr "Egyéb" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Használd a \"Páros-páratlan\" opciót a 3DLabPrint repülőgépmodellekhez. Használd a \"Hézagok lezárása\" lehetőséget a modell összes házagának lezárásához." @@ -18245,6 +18237,132 @@ msgstr "Bejelentkezés/Teszt" msgid "Connection to printers connected via the print host failed." msgstr "A nyomtatóállomáson keresztül csatlakoztatott nyomtatókhoz való csatlakozás sikertelen." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18327,6 +18445,19 @@ msgstr "Az MKS kapcsolata megfelelően működik." msgid "Could not connect to MKS" msgstr "Nem sikerült csatlakozni az MKS-hez" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Az OctoPrint kapcsolata megfelelően működik." @@ -19485,6 +19616,31 @@ msgstr "" "Kunkorodás elkerülése\n" "Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor a tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?" +#~ msgid "Filament Sync Options" +#~ msgstr "Filament szinkronizálási opciók" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után" + +#~ msgid "Network plug-in" +#~ msgstr "Hálózati bővítmény" + +#~ msgid "View control settings" +#~ msgstr "Vezérlési beállítások megtekintése" + +#~ msgid "Rotate view" +#~ msgstr "Nézet elforgatása" + +#~ msgid "Pan view" +#~ msgstr "Pásztázó nézet" + +#~ msgid "Zoom view" +#~ msgstr "Nagyítás nézet" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Görgetési irány megfordítása nagyítás közben" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Bal: %s" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index 607afd4169..ad627fba67 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -5301,7 +5301,7 @@ msgstr "" msgid "Size:" msgstr "Dimensione:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Sono stati trovati conflitti di percorsi nel G-code sullo strato %d, Z = %.2lfmm. Si prega di separare gli oggetti in conflitto (%s <-> %s)." @@ -7893,6 +7893,50 @@ msgstr "Scegli la cartella per gli elementi scaricati" msgid "Choose Download Directory" msgstr "Scegliere la directory di download" +msgid "(Latest)" +msgstr "(Ultima)" + +msgid "Network plug-in switched successfully." +msgstr "Modulo di rete cambiato con successo." + +msgid "Success" +msgstr "Successo" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Hai selezionato la versione %s del modulo di rete.\n" +"\n" +"Vuoi scaricare e installare questa versione ora?\n" +"\n" +"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione." + +msgid "Download Network Plug-in" +msgstr "Scarica modulo di rete" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Ricarica il modulo di rete senza riavviare l'applicazione" + +msgid "Network plug-in reloaded successfully." +msgstr "Modulo di rete ricaricato con successo." + +msgid "Reload" +msgstr "Ricarica" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione." + +msgid "Reload Failed" +msgstr "Ricaricamento fallito" + msgid "Associate" msgstr "Associa" @@ -7948,12 +7992,6 @@ msgstr "Mostra schermata iniziale" msgid "Show the splash screen during startup." msgstr "Mostra la schermata iniziale durante l'avvio." -msgid "Show shared profiles notification" -msgstr "Mostra notifica profili condivisi" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi." - msgid "Use window buttons on left side" msgstr "Utilizza i pulsanti della finestra sul lato sinistro" @@ -7984,6 +8022,13 @@ msgstr "Comportamento di caricamento" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Quando si apre un file 3MF, è necessario caricare le impostazioni della stampante/filamento/processo?" +msgid "Auto backup" +msgstr "Backup automatico" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo." + msgid "Maximum recent files" msgstr "Numero massimo file recenti" @@ -8002,12 +8047,20 @@ msgstr "Mostra opzioni durante l'importazione di file STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Se abilitato, una finestra di dialogo per le impostazioni dei parametri apparirà durante l'importazione di file STEP." -msgid "Auto backup" -msgstr "Backup automatico" +msgid "Quality level for Draco export" +msgstr "Livello di qualità per l'esportazione Draco" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo." +msgid "bits" +msgstr "bit" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n" +"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n" +"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi." msgid "Preset" msgstr "Profilo" @@ -8039,6 +8092,12 @@ msgstr "filamenti" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Ottimizza l'altezza massima dell'area filamenti in base al numero di filamenti selezionato." +msgid "Show shared profiles notification" +msgstr "Mostra notifica profili condivisi" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi." + msgid "Features" msgstr "Funzionalità" @@ -8051,21 +8110,6 @@ msgstr "Abilitando questa opzione, puoi inviare un'attività a più dispositivi msgid "Pop up to select filament grouping mode" msgstr "Popup per selezionare la modalità di raggruppamento filamenti" -msgid "Quality level for Draco export" -msgstr "Livello di qualità per l'esportazione Draco" - -msgid "bits" -msgstr "bit" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n" -"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n" -"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi." - msgid "Behaviour" msgstr "Comportamento" @@ -8293,19 +8337,6 @@ msgstr "Verifica solo la disponibilità di aggiornamenti stabili" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronizzazione automatica profili utente (stampante/filamento/processo)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Aggiorna automaticamente i profili." - -msgid "Use encrypted file for token storage" -msgstr "Usa file crittografato per l'archiviazione dei token" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)" - -msgid "Filament Sync Options" -msgstr "Opzioni sincronizzazione filamento" - msgid "Filament sync mode" msgstr "Modalità sincronizzazione filamento" @@ -8318,6 +8349,16 @@ msgstr "Filamento e colore" msgid "Color only" msgstr "Solo colore" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Aggiorna automaticamente i profili." + +msgid "Use encrypted file for token storage" +msgstr "Usa file crittografato per l'archiviazione dei token" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)" + msgid "Bambu network plug-in" msgstr "" @@ -8330,35 +8371,6 @@ msgstr "Versione modulo di rete" msgid "Select the network plug-in version to use" msgstr "Seleziona la versione del modulo di rete da utilizzare" -msgid "(Latest)" -msgstr "(Ultima)" - -msgid "Network plug-in switched successfully." -msgstr "Modulo di rete cambiato con successo." - -msgid "Success" -msgstr "Successo" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Hai selezionato la versione %s del modulo di rete.\n" -"\n" -"Vuoi scaricare e installare questa versione ora?\n" -"\n" -"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione." - -msgid "Download Network Plug-in" -msgstr "Scarica modulo di rete" - msgid "Associate files to OrcaSlicer" msgstr "Associa i file ad OrcaSlicer" @@ -8404,7 +8416,16 @@ msgstr "Sviluppatore" msgid "Skip AMS blacklist check" msgstr "Salta il controllo della lista nera dell'AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8412,12 +8433,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "Consenti memoria anomala" @@ -8446,24 +8461,6 @@ msgstr "" msgid "trace" msgstr "traccia" -msgid "Network plug-in" -msgstr "Modulo di rete" - -msgid "Reload" -msgstr "Ricarica" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Ricarica il modulo di rete senza riavviare l'applicazione" - -msgid "Network plug-in reloaded successfully." -msgstr "Modulo di rete ricaricato con successo." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione." - -msgid "Reload Failed" -msgstr "Ricaricamento fallito" - msgid "Debug" msgstr "" @@ -8479,25 +8476,6 @@ msgstr "Sincronizzazione profili" msgid "Preferences sync" msgstr "Sincronizzazione preferenze" -msgid "View control settings" -msgstr "Visualizza impostazioni di controllo" - -msgid "Rotate view" -msgstr "Ruota vista" - -msgid "Pan view" -msgstr "Vista panoramica" - -msgid "Zoom view" -msgstr "Ingrandimento vista" - -msgid "Other" -msgstr "Altro" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Lo zoom tramitie rotellina del mouse è invertito" - msgid "Enable SSL(MQTT)" msgstr "Abilita SSL (MQTT)" @@ -13224,6 +13202,17 @@ msgstr "La velocità della ventola aumenterà in modo lineare da zero nello stra msgid "layer" msgstr "strato" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Velocità ventola interfaccia di supporto" @@ -15152,6 +15141,9 @@ msgstr "Le fessure più piccole di 2 volte il raggio di chiusura degli spazi vuo msgid "Slicing Mode" msgstr "Modalità elaborazione" +msgid "Other" +msgstr "Altro" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Usa \"Pari-dispari\" per modelli di aeroplano 3DLabPrint. Utilizza \"Chiudi fori\" per chiudere tutti i fori del modello." @@ -18227,6 +18219,132 @@ msgstr "Accesso/Test" msgid "Connection to printers connected via the print host failed." msgstr "Connessione alle stampanti collegate tramite l'host di stampa non riuscita." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18309,6 +18427,19 @@ msgstr "La connessione a MKS funziona correttamente." msgid "Could not connect to MKS" msgstr "Impossibile connettersi a MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "La connessione con OctoPrint funziona correttamente." @@ -19465,6 +19596,28 @@ msgstr "" "Evita le deformazioni\n" "Sapevi che quando si stampano materiali soggetti a deformazioni come l'ABS, aumentare in modo appropriato la temperatura del piano riscaldato può ridurre la probabilità di deformazione?" +#~ msgid "Filament Sync Options" +#~ msgstr "Opzioni sincronizzazione filamento" + +#~ msgid "Network plug-in" +#~ msgstr "Modulo di rete" + +#~ msgid "View control settings" +#~ msgstr "Visualizza impostazioni di controllo" + +#~ msgid "Rotate view" +#~ msgstr "Ruota vista" + +#~ msgid "Pan view" +#~ msgstr "Vista panoramica" + +#~ msgid "Zoom view" +#~ msgstr "Ingrandimento vista" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Lo zoom tramitie rotellina del mouse è invertito" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Sinistra: %s" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 0a58b4384c..047ad30074 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -5274,7 +5274,7 @@ msgstr "ボリューム" msgid "Size:" msgstr "サイズ:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "レイヤー%d、Z = %.2lfmmでG-codeパスの衝突が検出されました。衝突するオブジェクトをもっと離してください(%s <-> %s)。" @@ -7851,6 +7851,50 @@ msgstr "ダウンロードアイテムのフォルダを選択" msgid "Choose Download Directory" msgstr "ダウンロードフォルドを選択" +msgid "(Latest)" +msgstr "(最新)" + +msgid "Network plug-in switched successfully." +msgstr "ネットワークプラグインの切り替えに成功しました。" + +msgid "Success" +msgstr "成功" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "ネットワークプラグインの読み込みに失敗しました。アプリケーションを再起動してください。" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"ネットワークプラグインバージョン%sを選択しました。\n" +"\n" +"このバージョンをダウンロードしてインストールしますか?\n" +"\n" +"注意: インストール後にアプリケーションの再起動が必要な場合があります。" + +msgid "Download Network Plug-in" +msgstr "ネットワークプラグインをダウンロード" + +msgid "Reload the network plug-in without restarting the application" +msgstr "アプリケーションを再起動せずにネットワークプラグインを再読み込みします" + +msgid "Network plug-in reloaded successfully." +msgstr "ネットワークプラグインの再読み込みに成功しました。" + +msgid "Reload" +msgstr "再読み込み" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "ネットワークプラグインの再読み込みに失敗しました。アプリケーションを再起動してください。" + +msgid "Reload Failed" +msgstr "再読み込み失敗" + msgid "Associate" msgstr "関連付け" @@ -7906,12 +7950,6 @@ msgstr "スプラッシュ画面を表示する" msgid "Show the splash screen during startup." msgstr "起動時にスプラッシュスクリーンを表示します。" -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7942,6 +7980,13 @@ msgstr "ロード動作" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "3MFファイルを開く時にプリンター/フィラメント/プロセス設定をロードしますか?" +msgid "Auto backup" +msgstr "自動バックアップ" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。" + msgid "Maximum recent files" msgstr "最大最近のファイル数" @@ -7960,12 +8005,20 @@ msgstr "STEPファイルインポート時にオプションを表示" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "有効にすると、STEPファイルインポート時にパラメータ設定ダイアログが表示されます。" -msgid "Auto backup" -msgstr "自動バックアップ" +msgid "Quality level for Draco export" +msgstr "Dracoエクスポートの品質レベル" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。" +msgid "bits" +msgstr "ビット" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n" +"0 = 可逆圧縮(ジオメトリは完全な精度で保持されます)。有効な非可逆値の範囲は8〜30です。\n" +"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。" msgid "Preset" msgstr "プリセット" @@ -7997,6 +8050,12 @@ msgstr "フィラメント" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "選択したフィラメント数に応じてフィラメントエリアの最大高さを最適化します。" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "機能" @@ -8009,21 +8068,6 @@ msgstr "このオプションを有効にすると、複数のデバイスに同 msgid "Pop up to select filament grouping mode" msgstr "フィラメントグルーピングモード選択のポップアップ" -msgid "Quality level for Draco export" -msgstr "Dracoエクスポートの品質レベル" - -msgid "bits" -msgstr "ビット" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n" -"0 = 可逆圧縮(ジオメトリは完全な精度で保持されます)。有効な非可逆値の範囲は8〜30です。\n" -"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。" - msgid "Behaviour" msgstr "動作" @@ -8251,19 +8295,6 @@ msgstr "安定版アップデートのみ確認" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "組み込みプリセットを自動更新します。" - -msgid "Use encrypted file for token storage" -msgstr "トークン保存に暗号化ファイルを使用" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "認証トークンをシステムキーチェーンの代わりに暗号化ファイルに保存します。(再起動が必要)" - -msgid "Filament Sync Options" -msgstr "フィラメント同期オプション" - msgid "Filament sync mode" msgstr "フィラメント同期モード" @@ -8276,6 +8307,16 @@ msgstr "フィラメントと色" msgid "Color only" msgstr "色のみ" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "組み込みプリセットを自動更新します。" + +msgid "Use encrypted file for token storage" +msgstr "トークン保存に暗号化ファイルを使用" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "認証トークンをシステムキーチェーンの代わりに暗号化ファイルに保存します。(再起動が必要)" + msgid "Bambu network plug-in" msgstr "" @@ -8288,35 +8329,6 @@ msgstr "ネットワークプラグインのバージョン" msgid "Select the network plug-in version to use" msgstr "使用するネットワークプラグインのバージョンを選択" -msgid "(Latest)" -msgstr "(最新)" - -msgid "Network plug-in switched successfully." -msgstr "ネットワークプラグインの切り替えに成功しました。" - -msgid "Success" -msgstr "成功" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "ネットワークプラグインの読み込みに失敗しました。アプリケーションを再起動してください。" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"ネットワークプラグインバージョン%sを選択しました。\n" -"\n" -"このバージョンをダウンロードしてインストールしますか?\n" -"\n" -"注意: インストール後にアプリケーションの再起動が必要な場合があります。" - -msgid "Download Network Plug-in" -msgstr "ネットワークプラグインをダウンロード" - msgid "Associate files to OrcaSlicer" msgstr "ファイルをOrca Slicerに関連付ける" @@ -8365,7 +8377,16 @@ msgstr "開発者" msgid "Skip AMS blacklist check" msgstr "AMSブラックリストチェックをスキップ" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8373,12 +8394,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "異常なストレージを許可" @@ -8407,24 +8422,6 @@ msgstr "デバッグ" msgid "trace" msgstr "トレース" -msgid "Network plug-in" -msgstr "ネットワークプラグイン" - -msgid "Reload" -msgstr "再読み込み" - -msgid "Reload the network plug-in without restarting the application" -msgstr "アプリケーションを再起動せずにネットワークプラグインを再読み込みします" - -msgid "Network plug-in reloaded successfully." -msgstr "ネットワークプラグインの再読み込みに成功しました。" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "ネットワークプラグインの再読み込みに失敗しました。アプリケーションを再起動してください。" - -msgid "Reload Failed" -msgstr "再読み込み失敗" - msgid "Debug" msgstr "デバッグ" @@ -8440,25 +8437,6 @@ msgstr "プリセット同期" msgid "Preferences sync" msgstr "設定を同期" -msgid "View control settings" -msgstr "表示設定" - -msgid "Rotate view" -msgstr "回転" - -msgid "Pan view" -msgstr "移動" - -msgid "Zoom view" -msgstr "ズーム" - -msgid "Other" -msgstr "その他" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "ズーム中にスクロール方向を反転させる" - msgid "Enable SSL(MQTT)" msgstr "SSL(MQTT)を有効にする" @@ -12980,6 +12958,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -14779,6 +14768,9 @@ msgstr "" msgid "Slicing Mode" msgstr "スライシングモード" +msgid "Other" +msgstr "その他" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" @@ -17715,6 +17707,132 @@ msgstr "ログイン/テスト" msgid "Connection to printers connected via the print host failed." msgstr "印刷ホスト経由のプリンターへの接続に失敗しました。" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17797,6 +17915,19 @@ msgstr "MKSへの接続は正常に動作しています。" msgid "Could not connect to MKS" msgstr "MKSに接続できませんでした" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrintへの接続は正常に動作しています。" @@ -18930,6 +19061,28 @@ msgstr "" "反りを避ける\n" "ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか?" +#~ msgid "Filament Sync Options" +#~ msgstr "フィラメント同期オプション" + +#~ msgid "Network plug-in" +#~ msgstr "ネットワークプラグイン" + +#~ msgid "View control settings" +#~ msgstr "表示設定" + +#~ msgid "Rotate view" +#~ msgstr "回転" + +#~ msgid "Pan view" +#~ msgstr "移動" + +#~ msgid "Zoom view" +#~ msgstr "ズーム" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "ズーム中にスクロール方向を反転させる" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "左: %s" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index dc7de03c68..37c7a5b9d6 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2025-06-02 17:12+0900\n" "Last-Translator: crwusiz \n" "Language-Team: \n" @@ -5300,7 +5300,7 @@ msgstr "용량:" msgid "Size:" msgstr "크기:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "레이어 %d, Z = %.2lf mm에서 Gcode 경로 충돌이 발견되었습니다. 충돌하는 객체를 더 멀리 분리하세요 (%s <-> %s)." @@ -7883,6 +7883,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "다운로드 폴더 선택" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "링크" @@ -7938,12 +7977,6 @@ msgstr "시작 화면 표시" msgid "Show the splash screen during startup." msgstr "시작 화면을 표시합니다." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7974,6 +8007,13 @@ msgstr "행동 로드" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr ".3mf를 열 때 프린터/필라멘트/프로세스 설정이 로드되어야 합니까?" +msgid "Auto backup" +msgstr "자동 백업" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요." + msgid "Maximum recent files" msgstr "" @@ -7992,12 +8032,17 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "자동 백업" +msgid "Quality level for Draco export" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" msgid "Preset" msgstr "사전 설정" @@ -8029,6 +8074,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "" @@ -8041,18 +8092,6 @@ msgstr "활성화하면 여러 장치에 동시에 작업을 보내고 여러 msgid "Pop up to select filament grouping mode" msgstr "필라멘트 그룹화 모드를 선택하기 위한 팝업" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "" @@ -8280,19 +8319,6 @@ msgstr "안정적인 업데이트만 확인" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "사용자 사전 설정 자동 동기화(프린터/필라멘트/프로세스)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "기본 제공 사전 설정을 자동으로 업데이트합니다." - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -8305,6 +8331,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "기본 제공 사전 설정을 자동으로 업데이트합니다." + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -8317,30 +8353,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "파일을 OrcaSlicer에 연결" @@ -8389,7 +8401,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "AMS 블랙리스트 확인 건너뛰기" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8397,12 +8418,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8429,24 +8444,6 @@ msgstr "디버그" msgid "trace" msgstr "추적" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "" @@ -8462,25 +8459,6 @@ msgstr "사전 설정 동기화" msgid "Preferences sync" msgstr "기본 설정 동기화" -msgid "View control settings" -msgstr "시점 컨트롤 설정" - -msgid "Rotate view" -msgstr "시점 회전" - -msgid "Pan view" -msgstr "시점 이동" - -msgid "Zoom view" -msgstr "시점 확대/축소" - -msgid "Other" -msgstr "기타" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "확대/축소 시 마우스 휠이 반전됩니다" - msgid "Enable SSL(MQTT)" msgstr "SSL(MQTT) 활성화" @@ -13137,6 +13115,17 @@ msgstr "팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_sp msgid "layer" msgstr "레이어" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "서포트 접점 팬 속도" @@ -15020,6 +15009,9 @@ msgstr "간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메시 슬 msgid "Slicing Mode" msgstr "슬라이싱 모드" +msgid "Other" +msgstr "기타" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "3DLabPrint 비행기 모델에는 \"짝수-홀수\"를 사용하세요. \"구멍 닫기\"를 사용하여 모델의 모든 구멍을 닫습니다." @@ -18063,6 +18055,132 @@ msgstr "로그인/테스트" msgid "Connection to printers connected via the print host failed." msgstr "출력 호스트를 통해 연결된 프린터에 연결하지 못했습니다." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18145,6 +18263,19 @@ msgstr "MKS에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to MKS" msgstr "MKS에 연결할 수 없습니다" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrint에 대한 연결이 올바르게 작동합니다." @@ -19301,6 +19432,22 @@ msgstr "" "뒤틀림 방지\n" "ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?" +#~ msgid "View control settings" +#~ msgstr "시점 컨트롤 설정" + +#~ msgid "Rotate view" +#~ msgstr "시점 회전" + +#~ msgid "Pan view" +#~ msgstr "시점 이동" + +#~ msgid "Zoom view" +#~ msgstr "시점 확대/축소" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "확대/축소 시 마우스 휠이 반전됩니다" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "왼쪽: %s" diff --git a/localization/i18n/list.txt b/localization/i18n/list.txt index 7d4516cc26..d968cd5322 100644 --- a/localization/i18n/list.txt +++ b/localization/i18n/list.txt @@ -227,11 +227,14 @@ src/slic3r/GUI/CreatePresetsDialog.cpp src/slic3r/GUI/DailyTips.cpp src/slic3r/Utils/CalibUtils.cpp src/slic3r/GUI/PhysicalPrinterDialog.cpp +src/slic3r/GUI/CrealityDiscoveryDialog.cpp +src/slic3r/GUI/TroubleshootDialog.cpp src/slic3r/Utils/3DPrinterOS.cpp src/slic3r/Utils/AstroBox.cpp src/slic3r/Utils/Duet.cpp src/slic3r/Utils/FlashAir.cpp src/slic3r/Utils/MKS.cpp +src/slic3r/Utils/Moonraker.cpp src/slic3r/Utils/OctoPrint.cpp src/slic3r/Utils/Repetier.cpp src/slic3r/Utils/ProfileDescription.hpp diff --git a/localization/i18n/lt/OrcaSlicer_lt.po b/localization/i18n/lt/OrcaSlicer_lt.po index 9d52118072..6b9965b15e 100644 --- a/localization/i18n/lt/OrcaSlicer_lt.po +++ b/localization/i18n/lt/OrcaSlicer_lt.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -# TODO: Review, changed by lang refactor. PR 14254 +#, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" -"PO-Revision-Date: 2025-10-25 23:01+0300\n" +"POT-Creation-Date: 2026-06-26 11:35+0800\n" +"PO-Revision-Date: 2026-07-02 14:13+0300\n" "Last-Translator: Gintaras Kučinskas \n" "Language-Team: \n" "Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : " +"n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n" "X-Generator: Poedit 3.6\n" msgid "right" @@ -38,32 +39,55 @@ msgid "TPU is not supported by AMS." msgstr "AMS nepalaiko TPU." msgid "AMS does not support 'Bambu Lab PET-CF'." -msgstr "" +msgstr "AMS nepalaiko „Bambu Lab PET-CF“." -msgid "Please cold pull before printing TPU to avoid clogging. You may use cold pull maintenance on the printer." +msgid "" +"Please cold pull before printing TPU to avoid clogging. You may use cold " +"pull maintenance on the printer." msgstr "" +"Prieš spausdindami TPU, atlikite valymą traukiant atvėsusią giją („cold " +"pull“), kad išvengtumėte užsikimšimo. Galite naudoti spausdintuvo techninės " +"priežiūros funkciją." -msgid "Damp PVA will become flexible and get stuck inside AMS, please take care to dry it before use." -msgstr "Drėgnas PVA taps lankstus ir gali įstrigti AMS. Prieš naudojimą būtinai jį išdžiovinkite." +msgid "" +"Damp PVA will become flexible and get stuck inside AMS, please take care to " +"dry it before use." +msgstr "" +"Drėgnas PVA taps lankstus ir gali įstrigti AMS. Prieš naudojimą būtinai jį " +"išdžiovinkite." msgid "Damp PVA is flexible and may get stuck in extruder. Dry it before use." msgstr "" +"Drėgnas PVA yra lankstus ir gali įstrigti ekstruderyje. Prieš naudojimą jį " +"išdžiovinkite." -msgid "The rough surface of PLA Glow can accelerate wear on the AMS system, particularly on the internal components of the AMS Lite." +msgid "" +"The rough surface of PLA Glow can accelerate wear on the AMS system, " +"particularly on the internal components of the AMS Lite." msgstr "" +"Šiurkštus „PLA Glow“ paviršius gali pagreitinti AMS sistemos, ypač „AMS " +"Lite“ vidinių komponentų, nusidėvėjimą." -msgid "CF/GF filaments are hard and brittle, it's easy to break or get stuck in AMS, please use with caution." -msgstr "Pastaba: CF/GF gijos yra kietos ir trapios. Jas lengva nulaužti arba jos gali įstrigti AMS. Naudokite atsargiai." +msgid "" +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " +"AMS, please use with caution." +msgstr "" +"Pastaba: CF/GF gijos yra kietos ir trapios. Jas lengva nulaužti arba jos " +"gali įstrigti AMS. Naudokite atsargiai." msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead." msgstr "" +"PPS-CF yra trapus ir gali lūžti sulenktoje PTFE tūtelėje virš spausdinimo " +"galvutės." msgid "PPA-CF is brittle and could break in bended PTFE tube above Toolhead." msgstr "" +"PPA-CF yra trapus ir gali lūžti sulenktoje PTFE tūtelėje virš spausdinimo " +"galvutės." #, c-format, boost-format msgid "%s is not supported by %s extruder." -msgstr "" +msgstr "%2$s ekstruderis nepalaiko %1$s." msgid "Current AMS humidity" msgstr "Dabartinė AMS drėgmė" @@ -75,13 +99,13 @@ msgid "Temperature" msgstr "Temperatūra" msgid "Left Time" -msgstr "Likęs laikas" +msgstr "Liko laiko" msgid "Drying" msgstr "Džiovinimas" msgid "Idle" -msgstr "Tuščias" +msgstr "Laukia" msgid "Model:" msgstr "Modelis:" @@ -93,24 +117,21 @@ msgid "Version:" msgstr "Versija:" msgid "Latest version" -msgstr "Paskutinė versija" +msgstr "Naujausia versija" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support Painting" -msgstr "Palaiko piešimą" +msgstr "Atramų piešimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Apply" -msgstr "Taikyti" +msgid "Perform" +msgstr "Atlikti" msgid "On highlighted overhangs only" -msgstr "Tik paryškintiems kabantiems" +msgstr "Tik paryškintoms iškyšoms" msgid "Erase all" -msgstr "" +msgstr "Išvalyti viską" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Highlight overhangs" +msgid "Highlight overhang areas" msgstr "Paryškinti kabančias vietas" msgid "Tool type" @@ -123,7 +144,7 @@ msgid "Reset direction" msgstr "Atstatyti kryptį" msgid "Section view" -msgstr "Sekcijų peržiūra" +msgstr "Pjūvio peržiūra" msgid "Brush size" msgstr "Teptuko dydis" @@ -135,19 +156,19 @@ msgid "Gap area" msgstr "Plyšio vieta" msgid "Left mouse button" -msgstr "Kairys pelės mygtukas" +msgstr "Kairysis pelės mygtukas" msgid "Enforce supports" msgstr "Priverstinės atramos" msgid "Right mouse button" -msgstr "Dešinys pelės mygtukas" +msgstr "Dešinysis pelės mygtukas" msgid "Block supports" msgstr "Blokuoti atramas" msgid "Erase" -msgstr "Ištrinti" +msgstr "Trinti" msgid "Mouse wheel" msgstr "Pelės ratukas" @@ -169,7 +190,7 @@ msgstr "Plyšių užpildymas" #, boost-format msgid "Allows painting only on facets selected by: \"%1%\"" -msgstr "Leidžia piešti tik tuos aspektus, kuriuos pasirinko: „%1%“" +msgstr "Leidžia piešti tik ant paviršių, kuriuos pasirinko: „%1%“" msgid "Highlight faces according to overhang angle." msgstr "Paryškinti paviršius pagal iškyšos kampą." @@ -180,31 +201,32 @@ msgstr "Nenaudoti automatinių atramų" msgid "Done" msgstr "Atlikta" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Support generated" +msgid "Support Generated" msgstr "Atramos sugeneruotos" msgid "Entering Paint-on supports" -msgstr "" +msgstr "Įjungiamas pieštų atramų režimas" msgid "Leaving Paint-on supports" -msgstr "" +msgstr "Išjungiamas pieštų atramų režimas" msgid "Paint-on supports editing" -msgstr "" +msgstr "Pieštų atramų redagavimas" msgid "Gizmo-Place on Face" -msgstr "Gizmo-Patalpinti ant paviršiaus" +msgstr "Manipuliatorius – Pridėti prie paviršiaus" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Lay on Face" +msgid "Lay on face" msgstr "Paguldyti ant paviršiaus" #, boost-format -msgid "Filament count exceeds the maximum number that painting tool supports. Only the first %1% filaments will be available in painting tool." -msgstr "Gijų skaičius viršija didžiausią palaikomą piešimo įrankio. Piešimo įrankyje bus pasiekiami tik pirmosios %1% gijos." +msgid "" +"Filament count exceeds the maximum number that painting tool supports. Only " +"the first %1% filaments will be available in painting tool." +msgstr "" +"Gijų skaičius viršija didžiausią piešimo įrankio palaikomą skaičių. Piešimo " +"įrankyje bus prieinamos tik pirmosios %1% gijos." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Color Painting" msgstr "Spalvotas piešimas" @@ -233,19 +255,19 @@ msgid "Smart fill" msgstr "Išmanus užpildymas" msgid "Bucket fill" -msgstr "Kibiro užpildymas" +msgstr "Užpildymas liejant" msgid "Height range" msgstr "Aukščio diapazonas" msgid "Toggle Wireframe" -msgstr "Perjungti \"vielinį\" vaizdą" +msgstr "Perjungti karkasinį vaizdą" msgid "Remap filaments" -msgstr "Perplanuoti gijas" +msgstr "Priskirti gijas iš naujo" msgid "Remap" -msgstr "Perplanuoti" +msgstr "Priskirti iš naujo" msgid "Reset" msgstr "Nustatyti iš naujo" @@ -276,43 +298,46 @@ msgid "Painted using: Filament %1%" msgstr "Piešta naudojant: Gija %1%" msgid "To:" -msgstr "" +msgstr "Iki:" msgid "Entering color painting" -msgstr "" +msgstr "Įjungiamas spalvų piešimas" msgid "Leaving color painting" -msgstr "" +msgstr "Išjungiamas spalvų piešimas" msgid "Color painting editing" -msgstr "" +msgstr "Spalvų piešimo redagavimas" msgid "Paint-on fuzzy skin" msgstr "Piešti grublėtą paviršių" msgid "Add fuzzy skin" -msgstr "" +msgstr "Pridėti grublėtą paviršių" msgid "Remove fuzzy skin" -msgstr "" +msgstr "Pašalinti grublėtą paviršių" msgid "Reset selection" -msgstr "" +msgstr "Atstatyti parinktį" -msgid "Warning: Fuzzy skin is disabled, painted fuzzy skin will not take effect!" +msgid "" +"Warning: Fuzzy skin is disabled, painted fuzzy skin will not take effect!" msgstr "" +"Įspėjimas: grublėtas paviršius išjungtas, užpieštas grublėtas paviršius " +"neturės įtakos!" msgid "Enable painted fuzzy skin for this object" -msgstr "" +msgstr "Įjungti užpieštą grublėtą paviršių šiam objektui" msgid "Entering Paint-on fuzzy skin" -msgstr "" +msgstr "Įjungiamas grublėto paviršiaus piešimas" msgid "Leaving Paint-on fuzzy skin" -msgstr "" +msgstr "Išjungiamas grublėto paviršiaus piešimas" msgid "Paint-on fuzzy skin editing" -msgstr "" +msgstr "Grublėto paviršiaus piešimo redagavimas" msgid "Move" msgstr "Perkelti" @@ -321,31 +346,34 @@ msgid "Please select at least one object." msgstr "Pasirinkite bent vieną objektą." msgid "Gizmo-Move" -msgstr "Gizmo-Judėjimas" +msgstr "Manipuliatorius – Perkėlimas" msgid "Rotate" msgstr "Pasukti" msgid "Gizmo-Rotate" -msgstr "Gizmo-Pasukimas" +msgstr "Manipuliatorius – Pasukimas" msgid "Optimize orientation" msgstr "Optimizuoti orientaciją" +msgid "Apply" +msgstr "Taikyti" + msgid "Scale" msgstr "Mastelis" msgid "Gizmo-Scale" -msgstr "Gizmo-Skalė" +msgstr "Manipuliatorius – Mastelio keitimas" msgid "Error: Please close all toolbar menus first" msgstr "Klaida: Prašome pirmiau uždaryti visus įrankių juostos meniu" msgid "in" -msgstr "in" +msgstr "col." msgid "mm" -msgstr "mm" +msgstr "mm." msgid "Part selection" msgstr "Detalių pasirinkimas" @@ -354,10 +382,10 @@ msgid "Fixed step drag" msgstr "Vilkimas fiksuotu žingsniu" msgid "Context Menu" -msgstr "" +msgstr "Kontekstinis meniu" msgid "Toggle Auto-Drop" -msgstr "" +msgstr "Įjungti / išjungti automatinį nuleidimą" msgid "Single sided scaling" msgstr "Vienpusis mastelio keitimas" @@ -369,38 +397,31 @@ msgid "Rotate (relative)" msgstr "Pasukti (santykinai)" msgid "Scale ratios" -msgstr "Mastelis" +msgstr "Mastelio koeficientai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Object operations" +msgid "Object Operations" msgstr "Objekto veiksmai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Volume operations" +msgid "Volume Operations" msgstr "Tūrio veiksmai" msgid "Translate" -msgstr "Išversti" +msgstr "Slinkti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Group operations" +msgid "Group Operations" msgstr "Grupės veiksmai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Set orientation" +msgid "Set Orientation" msgstr "Nustatyti orientaciją" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Set scale" +msgid "Set Scale" msgstr "Nustatyti mastelį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reset position" +msgid "Reset Position" msgstr "Atstatyti padėtį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reset rotation" -msgstr "Iš naujo nustatyti sukimąsi" +msgid "Reset Rotation" +msgstr "Iš naujo nustatyti pasukimą" msgid "Object coordinates" msgstr "Objekto koordinatės" @@ -409,10 +430,11 @@ msgid "World coordinates" msgstr "Pasaulio koordinatės" msgid "Translate(Relative)" -msgstr "" +msgstr "Slinkti (santykinai)" msgid "Reset current rotation to the value when open the rotation tool." -msgstr "Atkurti dabartinį pasukimą iki vertės, buvusios atidarius pasukimo įrankį." +msgstr "" +"Atkurti dabartinį pasukimą iki vertės, buvusios atidarius pasukimo įrankį." msgid "Rotate (absolute)" msgstr "Pasukti (absoliučiai)" @@ -428,13 +450,13 @@ msgid "Size" msgstr "Dydis" msgid "Uniform scale" -msgstr "vienoda skalė" +msgstr "Vienodas mastelis" msgid "Planar" -msgstr "Planarinis" +msgstr "Plokštuminis" msgid "Dovetail" -msgstr "Šakinis sujungimas" +msgstr "Kregždės uodega" msgid "Auto" msgstr "Automatiškai" @@ -449,7 +471,7 @@ msgid "Dowel" msgstr "Kaištis" msgid "Snap" -msgstr "Snapelis" +msgstr "Fiksatorius" msgid "Prism" msgstr "Prizmė" @@ -482,13 +504,13 @@ msgid "Style" msgstr "Stilius" msgid "Shape" -msgstr "Figūra" +msgstr "Forma" #. TRN - Input label. Be short as possible #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "Gyliai" +msgstr "Gylis" #. TRN - Input label. Be short as possible #. Angle between Y axis and text line direction. @@ -518,10 +540,10 @@ msgid "Multiple" msgstr "Keli" msgid "Count" -msgstr "" +msgstr "Kiekis" msgid "Gap" -msgstr "" +msgstr "Tarpas" msgid "Spacing" msgstr "Tarpai" @@ -558,13 +580,13 @@ msgid "Change cut mode" msgstr "Keisti pjūvio režimą" msgid "Tolerance" -msgstr "Paklaidos" +msgstr "Tolerancija" msgid "Drag" msgstr "Vilkti" msgid "Move cut line" -msgstr "" +msgstr "Perkelti pjovimo liniją" msgid "Draw cut line" msgstr "Brėžti pjūvio liniją" @@ -579,16 +601,16 @@ msgid "Move connector" msgstr "Perkelti jungtį" msgid "Add connector to selection" -msgstr "Įtraukti jungtį į pasirinktą" +msgstr "Pridėti jungtį prie parinkties" msgid "Remove connector from selection" -msgstr "Pašalinti jungtį iš pasirinkto" +msgstr "Pašalinti jungtį iš parinkties" msgid "Select all connectors" msgstr "Pasirinkti visas jungtis" msgid "Cut" -msgstr "Pjauti" +msgstr "Iškirpti" msgid "Rotate cut plane" msgstr "Sukti pjovimo plokštumą" @@ -603,7 +625,7 @@ msgid "Bulge proportion related to radius" msgstr "Iškilimo proporcija spindulio atžvilgiu" msgid "Space" -msgstr "Tarpas" +msgstr "Intervalas" msgid "Space proportion related to radius" msgstr "Tarpo proporcija spindulio atžvilgiu" @@ -640,7 +662,7 @@ msgid "Lower part" msgstr "Apatinė dalis" msgid "Keep" -msgstr "Laikyti" +msgstr "Palikti" msgid "Flip" msgstr "Apversti" @@ -649,7 +671,7 @@ msgid "After cut" msgstr "Po pjovimo" msgid "Cut to parts" -msgstr "Supjaustyti į dalis" +msgstr "Supjaustyti į detales" msgid "Reset cutting plane and remove connectors" msgstr "Atstatyti pjovimo plokštumą ir pašalinti jungtis" @@ -684,7 +706,7 @@ msgid "Select at least one object to keep after cutting." msgstr "Pasirinkite bent vieną objektą, kurį norite išlaikyti po pjūvio." msgid "Cut plane is placed out of object" -msgstr "Pjovimo plokštuma nesiekia objekto" +msgstr "Pjovimo plokštuma yra už objekto ribų" msgid "Cut plane with groove is invalid" msgstr "Neteisinga pjovimo plokštuma su grioveliu" @@ -693,11 +715,12 @@ msgid "Connector" msgstr "Jungtis" msgid "Cut by Plane" -msgstr "Iškirpti su plokštuma" +msgstr "Pjovimas plokštuma" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Non-manifold edges be caused by cut tool: do you want to fix now?" -msgstr "netinkami kraštai atsirado dėl pjovimo įrankio. Ar norite sutvarkyti dabar?" +msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?" +msgstr "" +"Pjovimo įrankis suformavo nesandarias (non-manifold) briaunas. Ar norite jas " +"sutvarkyti dabar?" msgid "Repairing model object" msgstr "Taisomas modelio objektas" @@ -709,26 +732,30 @@ msgid "Delete connector" msgstr "Ištrinti jungtį" msgid "Entering Cut gizmo" -msgstr "" +msgstr "Įjungiamas pjovimo manipuliatorius" msgid "Leaving Cut gizmo" -msgstr "" +msgstr "Išjungiamas pjovimo manipuliatorius" msgid "Cut gizmo editing" -msgstr "" +msgstr "Pjovimo manipuliatoriaus redagavimas" msgid "Mesh name" -msgstr "Figūros pavadinimas" +msgstr "Poligoninio tinklo pavadinimas" msgid "Detail level" msgstr "Detalių lygis" msgid "Decimate ratio" -msgstr "Dešimtainis santykis" +msgstr "Retinimo koeficientas" #, boost-format -msgid "Processing model '%1%' with more than 1M triangles could be slow. It is highly recommended to simplify the model." -msgstr "Modelio „%1%“ apdorojimas su daugiau nei 1 milijonu trikampių gali būti lėtas. Labai rekomenduojama supaprastinti modelį." +msgid "" +"Processing model '%1%' with more than 1M triangles could be slow. It is " +"highly recommended to simplify the model." +msgstr "" +"Modelio „%1%“ apdorojimas su daugiau nei 1 milijonu trikampių gali būti " +"lėtas. Labai rekomenduojama supaprastinti modelį." msgid "Simplify model" msgstr "Supaprastinti modelį" @@ -737,13 +764,14 @@ msgid "Simplify" msgstr "Supaprastinti" msgid "Simplification is currently only allowed when a single part is selected" -msgstr "Šiuo metu supaprastinimas leidžiamas tik tada, kai pasirenkama viena dalis" +msgstr "" +"Šiuo metu supaprastinimas leidžiamas tik tada, kai pasirenkama viena dalis" msgid "Error" msgstr "Klaida" msgid "Extra high" -msgstr "Papildomas aukštis" +msgstr "Labai aukštas" msgid "High" msgstr "Aukštas" @@ -755,18 +783,17 @@ msgid "Low" msgstr "Žemas" msgid "Extra low" -msgstr "Itin žemas" +msgstr "Labai žemas" #, c-format, boost-format msgid "%d triangles" msgstr "%d trikampiai" msgid "Show wireframe" -msgstr "Rodyti vielinį rėmą" +msgstr "Rodyti karkasinį vaizdą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Unable to apply when processing preview" -msgstr "Negalima taikyti, kai atliekama proceso peržiūra." +msgid "Can't apply when processing preview." +msgstr "Negalima taikyti atliekant sluoksniavimo (preview) apdorojimą." msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operacija jau atšaukiama. Palaukite kelias sekundes." @@ -789,8 +816,7 @@ msgstr "Siūlių piešimas" msgid "Remove selection" msgstr "Pašalinti pasirinkimą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Entering seam painting" +msgid "Entering Seam painting" msgstr "Įjungiamas siūlių piešimas" msgid "Leaving Seam painting" @@ -808,13 +834,14 @@ msgid "Thickness" msgstr "Storis" msgid "Text Gap" -msgstr "Teksto plyšiai" +msgstr "Tarpas tarp simbolių" msgid "Angle" msgstr "Kampas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Embedded depth" +msgid "" +"Embedded\n" +"depth" msgstr "" "Įspaudimo\n" "gylis" @@ -838,7 +865,7 @@ msgid "Rotate text" msgstr "Sukti tekstą" msgid "Text shape" -msgstr "Formuoti tekstą" +msgstr "Teksto forma" #. TRN - Title in Undo/Redo stack after rotate with text around emboss axe msgid "Text rotate" @@ -855,19 +882,19 @@ msgid "Embossed text" msgstr "Iškilus tekstas" msgid "Enter emboss gizmo" -msgstr "Įjungti iškilimo įrankį" +msgstr "Įjungti teksto (emboss) manipuliatorių" msgid "Leave emboss gizmo" -msgstr "Palikti reljefinio rašto įrankį" +msgstr "Išjungti teksto (emboss) manipuliatorių" msgid "Embossing actions" -msgstr "Reljefiniai veiksmai" +msgstr "Teksto (emboss) veiksmai" msgid "Position on surface" -msgstr "" +msgstr "Padėtis ant paviršiaus" msgid "Emboss" -msgstr "Iškelti" +msgstr "Tekstas (Emboss)" msgid "NORMAL" msgstr "ĮPRASTAS" @@ -879,7 +906,7 @@ msgid "ITALIC" msgstr "KURSYVAS" msgid "SWISS" -msgstr "KLASIKINIS" +msgstr "SWISS" msgid "MODERN" msgstr "MODERNUS" @@ -891,19 +918,21 @@ msgid "Default font" msgstr "Numatytasis šriftas" msgid "Advanced" -msgstr "Plačiau" +msgstr "Išplėstiniai" msgid "Reset all options except the text and operation" -msgstr "" +msgstr "Atstatyti visus parametrus, išskyrus tekstą ir operaciją" -msgid "The text cannot be written using the selected font. Please try choosing a different font." +msgid "" +"The text cannot be written using the selected font. Please try choosing a " +"different font." msgstr "Pasirinktu šriftu negalima rašyti teksto. Pasirinkite kitą šriftą." msgid "Embossed text cannot contain only white spaces." msgstr "Reljefinis tekstas negali būti sudarytas vien iš tarpų." msgid "Text contains character glyph (represented by '?') unknown by font." -msgstr "Texte yra simbolių (žymimi '?' ), kurių šriftas neatpažįsta." +msgstr "Tekste yra simbolių (žymimi „?“), kurių šriftas neatpažįsta." msgid "Text input doesn't show font skew." msgstr "Teksto įvestis nerodo šrifto pasvirimo." @@ -928,7 +957,7 @@ msgstr "Grąžinti šriftą į pradinę būseną." #, boost-format msgid "Font \"%1%\" can't be selected." -msgstr "Nepavyksta pasirinkti \"%1%\" šrifto." +msgstr "Nepavyksta pasirinkti šrifto „%1%“." msgid "Operation" msgstr "Operacija" @@ -936,7 +965,7 @@ msgstr "Operacija" #. TRN EmbossOperation #. ORCA msgid "Join" -msgstr "Sulieti" +msgstr "Sujungti" msgid "Click to change text into object part." msgstr "Spustelėkite, kad tekstas taptų objekto dalimi." @@ -1015,27 +1044,27 @@ msgstr "Negalima pašalinti paskutinio stiliaus." #, boost-format msgid "Are you sure you want to permanently remove the \"%1%\" style?" -msgstr "Ar tikrai norite visiškai pašalinti \"%1%\" stilių?" +msgstr "Ar tikrai norite visam laikui pašalinti stilių „%1%“?" #, boost-format msgid "Delete \"%1%\" style." -msgstr "Ištrinti \"%1%\" stilių." +msgstr "Ištrinti stilių „%1%“." #, boost-format msgid "Can't delete \"%1%\". It is last style." -msgstr "Negalima ištrinti \"%1%\" stiliaus, nes jis yra paskutinis." +msgstr "Negalima ištrinti „%1%“. Tai yra paskutinis stilius." #, boost-format msgid "Can't delete temporary style \"%1%\"." -msgstr "Negalima pašalinti laikino \"%1%\" stiliaus." +msgstr "Negalima ištrinti laikino stiliaus „%1%“." #, boost-format msgid "Modified style \"%1%\"" -msgstr "Pakeistas \"%1%\" stilius" +msgstr "Modifikuotas stilius „%1%“" #, boost-format msgid "Current style is \"%1%\"" -msgstr "Dabartinis stilius yra \"%1%\"" +msgstr "Dabartinis stilius yra „%1%“" #, boost-format msgid "" @@ -1043,7 +1072,8 @@ msgid "" "\n" "Would you like to continue anyway?" msgstr "" -"Stilius bus pakeistas į \"%1%“. Dėl to bus panaikinti visi dabartinio stiliaus pakeitimai.\n" +"Keičiant stilių į „%1%“, visi dabartinio stiliaus modifikavimai bus " +"atmesti.\n" "\n" "Ar vis tiek norite tęsti?" @@ -1052,7 +1082,7 @@ msgstr "Netinkamas stilius." #, boost-format msgid "Style \"%1%\" can't be used and will be removed from a list." -msgstr "\"%1%\" stilius negali būti naudojimas, todėl bus pašalintas iš sąrašo." +msgstr "Stiliaus „%1%“ naudoti negalima, todėl jis bus pašalintas iš sąrašo." msgid "Unset italic" msgstr "Išjungti kursyvą" @@ -1083,7 +1113,7 @@ msgid "Revert using of model surface." msgstr "Atstatyti modelio paviršiaus naudojimą." msgid "Revert Transformation per glyph." -msgstr "Atstatyti simbolio pakeitimus." +msgstr "Atstatyti kiekvieno simbolio transformaciją." msgid "Set global orientation for whole text." msgstr "Nustatyti viso teksto bendrą orientaciją." @@ -1093,27 +1123,27 @@ msgstr "Nustatyti kiekvieno simbolio atskirą poziciją ir orientaciją." msgctxt "Alignment" msgid "Left" -msgstr "Kairė" +msgstr "Kairėje" msgctxt "Alignment" msgid "Center" -msgstr "Centras" +msgstr "Centre" msgctxt "Alignment" msgid "Right" -msgstr "Dešinė" +msgstr "Dešinėje" msgctxt "Alignment" msgid "Top" -msgstr "Viršutinis" +msgstr "Viršuje" msgctxt "Alignment" msgid "Middle" -msgstr "Vidurys" +msgstr "Viduryje" msgctxt "Alignment" msgid "Bottom" -msgstr "Apatinis" +msgstr "Apačioje" msgid "Revert alignment." msgstr "Atstatyti lygiavimą." @@ -1147,7 +1177,7 @@ msgid "Italic strength ratio" msgstr "Kursyvo pasvirimo kampas" msgid "Undo translation" -msgstr "Panaikinti vertimą" +msgstr "Panaikinti slinkimą" msgid "Distance of the center of the text to the model surface." msgstr "Atstumas nuo teksto centro iki modelio paviršiaus." @@ -1168,7 +1198,7 @@ msgid "Select from True Type Collection." msgstr "Pasirinkti iš TrueType rinkinio." msgid "Set text to face camera" -msgstr "Pasukti tekstą taip, kad jis žiūrėtų į kamerą" +msgstr "Nukreipti tekstą į kamerą" msgid "Orient the text towards the camera." msgstr "Pasukti tekstą į kameros pusę." @@ -1178,8 +1208,12 @@ msgid "Font \"%1%\" can't be used. Please select another." msgstr "Šrifto „%1%“ negalima naudoti. Pasirinkite kitą." #, boost-format -msgid "Can't load exactly same font (\"%1%\"). Application selected a similar one (\"%2%\"). You have to specify font for enable edit text." -msgstr "Negalima įkelti lygiai tokio paties šrifto (\"%1%\"). Programa pasirinko panašų šriftą(\"%2%\"). Turite nurodyti šriftą, kad būtų galima redaguoti tekstą." +msgid "" +"Can't load exactly same font (\"%1%\"). Application selected a similar one " +"(\"%2%\"). You have to specify font for enable edit text." +msgstr "" +"Nepavyko įkelti lygiai tokio paties šrifto („%1%“). Programa parinko panašų " +"šriftą („%2%“). Norėdami redaguoti tekstą, turite nurodyti šriftą." msgid "No symbol" msgstr "Nėra simbolio" @@ -1222,7 +1256,7 @@ msgstr "Tarpas tarp eilučių" #. TRN - Input label. Be short as possible msgid "Boldness" -msgstr "Pastorintas" +msgstr "Storis" #. TRN - Input label. Be short as possible #. Like Font italic @@ -1240,7 +1274,7 @@ msgstr "Nuo paviršiaus" #. TRN - Input label. Be short as possible #. Keep vector from bottom to top of text aligned with printer Y axis msgid "Keep up" -msgstr "Laikyti viršun" +msgstr "Išlaikyti vertikalumą" #. TRN - Input label. Be short as possible. #. Some Font file contain multiple fonts inside and @@ -1254,13 +1288,13 @@ msgstr "SVG sukimas" #. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface msgid "SVG move" -msgstr "SVG perkėlimas" +msgstr "SVG slinkimas" msgid "Enter SVG gizmo" -msgstr "Pasirinkti SVG įrankį" +msgstr "Įjungti SVG manipuliatorių" msgid "Leave SVG gizmo" -msgstr "Išeiti iš SVG įrankio" +msgstr "Išjungti SVG manipuliatorių" msgid "SVG actions" msgstr "SVG veiksmai" @@ -1270,7 +1304,7 @@ msgstr "SVG" #, boost-format msgid "Opacity (%1%)" -msgstr "Permatomumas (%1%)" +msgstr "Neskaidrumas (%1%)" #, boost-format msgid "Color gradient (%1%)" @@ -1283,39 +1317,45 @@ msgid "Linear gradient" msgstr "Linijinis gradientas" msgid "Radial gradient" -msgstr "Centrinis gradientas" +msgstr "Radialinis gradientas" msgid "Open filled path" -msgstr "Atidaryti uždarą kontūrą" +msgstr "Atviras užpildytas kontūras" msgid "Undefined stroke type" msgstr "Nenustatytas brūkšnio stilius" msgid "Path can't be healed from self-intersection and multiple points." -msgstr "Kelias negali būti sutvarkytas dėl savaiminio susikirtimo ir kelių taškų." +msgstr "" +"Kontūro (kelio) nepavyko sutvarkyti dėl savaiminio susikirtimo ar " +"besidubliuojančių taškų." -msgid "Final shape contains self-intersection or multiple points with same coordinate." -msgstr "Galutinėje formoje yra savaiminė sankirta arba keli taškai su tomis pačiomis koordinatėmis." +msgid "" +"Final shape contains self-intersection or multiple points with same " +"coordinate." +msgstr "" +"Galutinėje formoje yra savaiminių susikirtimų arba keli taškai su ta pačia " +"koordinate." #, boost-format msgid "Shape is marked as invisible (%1%)." -msgstr "Figūra pažymėta kaip nematoma (%1%)." +msgstr "Forma pažymėta kaip nematoma (%1%)." #. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." -msgstr "Figūros %1% užpildas turi nepalaikomą %2%." +msgstr "Formos (%1%) užpilde yra nepalaikomų elementų: %2%." #, boost-format msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)." -msgstr "Figūros (%1%) brūkšnys per plonas (minimalus plotis - %2% mm)." +msgstr "Formos (%1%) kontūras yra per plonas (minimalus plotis – %2% mm)." #, boost-format msgid "Stroke of shape (%1%) contains unsupported: %2%." -msgstr "Figūros (%1%) brūkšnys turi nepalaikomą %2%." +msgstr "Formos (%1%) kontūre yra nepalaikomų elementų: %2%." msgid "Face the camera" -msgstr "Pasukti į kamerą" +msgstr "Nukreipti į kamerą" #. TRN - Preview of filename after clear local filepath. msgid "Unknown filename" @@ -1323,7 +1363,7 @@ msgstr "Nežinomas failo pavadinimas" #, boost-format msgid "SVG file path is \"%1%\"" -msgstr "SVG failo kelias yra \"%1%\"" +msgstr "SVG failo kelias yra „%1%“" msgid "Reload SVG file from disk." msgstr "Pakartotinai įkelti SVG failą iš disko." @@ -1331,9 +1371,8 @@ msgstr "Pakartotinai įkelti SVG failą iš disko." msgid "Change file" msgstr "Pakeisti failą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Change to another SVG file." -msgstr "Pakeisti į kitą .svg failą" +msgstr "Pakeisti į kitą SVG failą." msgid "Forget the file path" msgstr "Pamiršti failo kelią" @@ -1347,11 +1386,11 @@ msgstr "" #. TRN: An menu option to convert the SVG into an unmodifiable model part. msgid "Bake" -msgstr "Perkelti detales" +msgstr "Sujungti negrįžtamai" #. TRN: Tooltip for the menu item. msgid "Bake into model as uneditable part" -msgstr "Perkelti į modelį kaip netaisomas dalis" +msgstr "Įrašyti į modelį kaip neredaguojamą dalį" msgid "Save as" msgstr "Išsaugoti kaip" @@ -1360,10 +1399,10 @@ msgid "Save SVG file" msgstr "Išsaugoti SVG failą" msgid "Save as SVG file." -msgstr "Išsaugoti kaip \".svg\" failą" +msgstr "Išsaugoti kaip SVG failą." msgid "Size in emboss direction." -msgstr "Išspaudimo aukštis." +msgstr "Dydis išspaudimo kryptimi." #. TRN: The placeholder contains a number. #, boost-format @@ -1377,10 +1416,10 @@ msgid "Height of SVG." msgstr "SVG aukštis." msgid "Lock/unlock the aspect ratio of the SVG." -msgstr "Įjungti / Išjungti SVG proporcijų laikymąsi." +msgstr "Rakinti / atrakinti SVG proporcijas." msgid "Reset scale" -msgstr "Iš naujo nustatyti skalę" +msgstr "Atstatyti mastelį" msgid "Distance of the center of the SVG to the model surface." msgstr "Atstumas nuo SVG centro iki modelio paviršiaus." @@ -1388,8 +1427,11 @@ msgstr "Atstumas nuo SVG centro iki modelio paviršiaus." msgid "Reset distance" msgstr "Atstatyti atstumą į numatytąjį" +msgid "Reset rotation" +msgstr "Iš naujo nustatyti sukimąsi" + msgid "Lock/unlock rotation angle when dragging above the surface." -msgstr "Įjungti / išjungti sukimosi kampą tempiant paviršiumi." +msgstr "Rakinti / atrakinti sukimosi kampą velkant paviršiumi." msgid "Mirror vertically" msgstr "Atspindėti vertikaliai" @@ -1403,7 +1445,7 @@ msgstr "Keisti SVG tipą" #. TRN - Input label. Be short as possible msgid "Mirror" -msgstr "Atspindys" +msgstr "Atspindėti" msgid "Choose SVG file for emboss:" msgstr "Pasirinkti SVG failą išspaudimui:" @@ -1414,7 +1456,7 @@ msgstr "Failas neegzistuoja (%1%)." #, boost-format msgid "Filename has to end with \".svg\" but you selected %1%" -msgstr "Failo pavadinimas turi turėti plėtinį \".svg\", o jūs pasirinkote %1%" +msgstr "Failo pavadinimas turi baigtis „.svg“, bet jūs pasirinkote %1%" #, boost-format msgid "Nano SVG parser can't load from file (%1%)." @@ -1425,7 +1467,7 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "SVG failas NETURI nė vieno kontūro, tinkamo išspaudimui (%1%)." msgid "No feature" -msgstr "Nėra funkcijos" +msgstr "Nėra geometrinio elemento" msgid "Vertex" msgstr "Viršūnė" @@ -1464,23 +1506,26 @@ msgid "Restart selection" msgstr "Pasirinkti iš naujo" msgid "Esc" -msgstr "" +msgstr "Esc" msgid "Cancel a feature until exit" -msgstr "Atšaukti funkciją, kol išeisite" +msgstr "Atmesti elementą iki išėjimo" msgid "Measure" msgstr "Matuoti" -msgid "Please confirm explosion ratio = 1, and please select at least one object." -msgstr "Patvirtinkite išplėtimo koeficientą = 1 ir pasirinkite bent vieną objektą." +msgid "" +"Please confirm explosion ratio = 1, and please select at least one object." +msgstr "" +"Įsitikinkite, kad išskaidymo (explosion) koeficientas = 1, ir pasirinkite " +"bent vieną objektą." msgid "Edit to scale" msgstr "Taisyti masteliui" msgctxt "Verb" msgid "Scale all" -msgstr "Bendras mastelis" +msgstr "Keisti visų mastelį" msgid "None" msgstr "Nieko" @@ -1495,7 +1540,7 @@ msgid "Selection" msgstr "Pasirinkimas" msgid " (Moving)" -msgstr " (Perkėlimas)" +msgstr " (Judantis)" msgid "" "Select 2 faces on objects and \n" @@ -1515,7 +1560,7 @@ msgid "Face" msgstr "Paviršius" msgid " (Fixed)" -msgstr " (Pataisyta)" +msgstr " (Fiksuotas)" msgid "Point" msgstr "Taškas" @@ -1524,8 +1569,8 @@ msgid "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" msgstr "" -"1 funkcija buvo iš naujo nustatyta, \n" -"2 funkcija buvo 1 funkcija" +"1 elementas buvo nustatytas iš naujo, \n" +"2 elementas tapo 1 elementu" msgid "Copy to clipboard" msgstr "Nukopijuoti į iškarpinę" @@ -1564,49 +1609,53 @@ msgid "Flip by Face 2" msgstr "Apversti pagal paviršių 2" msgid "Entering Measure gizmo" -msgstr "" +msgstr "Įjungiamas matavimo manipuliatorius" msgid "Leaving Measure gizmo" -msgstr "" +msgstr "Išjungiamas matavimo manipuliatorius" msgid "Assemble" msgstr "Surinkti" msgid "Please confirm explosion ratio = 1 and select at least two volumes." msgstr "" +"Įsitikinkite, kad išskaidymo koeficientas = 1, ir pasirinkite bent du tūrius." msgid "Please select at least two volumes." -msgstr "" +msgstr "Pasirinkite bent du tūrius." msgid "(Moving)" -msgstr "" +msgstr "(Judantis)" msgid "Point and point assembly" -msgstr "" +msgstr "Sujungimas pagal taškus" msgid "Warning: please select two different meshes." -msgstr "Įspėjimas: pasirinkite dvi skirtingas figūras." +msgstr "Įspėjimas: pasirinkite du skirtingus poligoninius tinklus (meshes)." msgid "Warning: please select Plane's feature." -msgstr "Įspėjimas: pasirinkite Plokštumos funkciją." +msgstr "Įspėjimas: pasirinkite plokštumos elementą." msgid "Warning: please select Point's or Circle's feature." -msgstr "Įspėjimas: pasirinkite Taško arba Apskritimo funkciją." +msgstr "Įspėjimas: pasirinkite taško arba apskritimo elementą." msgid "" "It is recommended to assemble objects first,\n" "because they are restricted to the bed \n" "and only parts can be lifted." msgstr "" +"Rekomenduojama pirmiausia surinkti objektus, \n" +"nes jie yra pritvirtinti prie platformos \n" +"ir pakelti galima tik atskiras dalis." msgid "Face and face assembly" -msgstr "" +msgstr "Sujungimas pagal paviršius" msgid "Entering Assembly gizmo" -msgstr "" +msgstr "Įjungiamas surinkimo manipuliatorius" msgid "Leaving Assembly gizmo" -msgstr "" +msgstr "Išjungiamas surinkimo manipuliatorius" msgid "Ctrl+" msgstr "Ctrl+" @@ -1615,9 +1664,8 @@ msgid "Alt+" msgstr "Alt+" msgid "Notice" -msgstr "Įspėjimas" +msgstr "Pastaba" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Undefined" msgstr "Neapibrėžtas" @@ -1632,117 +1680,139 @@ msgid "Some values have been replaced. Please check them:" msgstr "Kai kurios vertės buvo pakeistos. Prašome jas patikrinti:" msgid "Process" -msgstr "Vykdyti" +msgstr "Procesas" msgid "Filament" msgstr "Gija" msgid "Machine" -msgstr "Įrenginys" +msgstr "Spausdintuvas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The configuration package was loaded, but some values were not recognized." -msgstr "Konfigūracijos paketas buvo įkeltas, tačiau kai kurios reikšmės nebuvo atpažintos." +msgid "Configuration package was loaded, but some values were not recognized." +msgstr "" +"Konfigūracijos paketas buvo įkeltas, tačiau kai kurios reikšmės nebuvo " +"atpažintos." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format -msgid "The configuration file “%1%” was loaded, but some values were not recognized." -msgstr "Konfigūracijos failas „%1%“ buvo įkeltas, tačiau kai kurios reikšmės nebuvo atpažintos." +msgid "" +"Configuration file \"%1%\" was loaded, but some values were not recognized." +msgstr "" +"Konfigūracijos failas „%1%“ buvo įkeltas, tačiau kai kurios reikšmės nebuvo " +"atpažintos." msgid "Loading configuration" msgstr "Įkeliama konfigūracija" msgid "STEP files" -msgstr "" +msgstr "STEP failai" msgid "STL files" -msgstr "" +msgstr "STL failai" msgid "OBJ files" -msgstr "" +msgstr "OBJ failai" msgid "AMF files" -msgstr "" +msgstr "AMF failai" msgid "3MF files" -msgstr "" +msgstr "3MF failai" msgid "G-code 3MF files" -msgstr "" +msgstr "G-code 3MF failai" msgid "G-code files" -msgstr "" +msgstr "G-code failai" msgid "Supported files" -msgstr "" +msgstr "Palaikomi failai" msgid "ZIP files" -msgstr "" +msgstr "ZIP failai" msgid "Project files" -msgstr "" +msgstr "Projekto failai" msgid "Known files" -msgstr "" +msgstr "Žinomi failai" msgid "INI files" -msgstr "" +msgstr "INI failai" msgid "SVG files" -msgstr "" +msgstr "SVG failai" msgid "Texture" msgstr "Tekstūra" msgid "Masked SLA files" -msgstr "" +msgstr "Maskuoti SLA failai" msgid "Draco files" -msgstr "" +msgstr "Draco failai" -msgid "OrcaSlicer will terminate because of running out of memory. It may be a bug. It will be appreciated if you report the issue to our team." -msgstr "OrcaSlicer nenumatytai užsidarys, nes pritrūko atminties. Tai gali būti programinės įrangos klaida. Jei galite, praneškite apie šią problemą mūsų komandai." +msgid "" +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " +"It will be appreciated if you report the issue to our team." +msgstr "" +"„OrcaSlicer“ darbas bus nutrauktas, nes pritrūko atminties. Tai gali būti " +"programos klaida. Būtume dėkingi, jei praneštumėte apie šią problemą mūsų " +"komandai." msgid "Fatal error" msgstr "Lemtinga klaida" -msgid "OrcaSlicer will terminate because of a localization error. It will be appreciated if you report the specific scenario this issue happened." -msgstr "OrcaSlicer užsidarys dėl vertimo klaidos. Būtume dėkingi, jei praneštumėte apie konkrečią situaciją, kai kilo ši problema." +msgid "" +"OrcaSlicer will terminate because of a localization error. It will be " +"appreciated if you report the specific scenario this issue happened." +msgstr "" +"„OrcaSlicer“ darbas bus nutrauktas dėl lokalizacijos (vertimo) klaidos. " +"Būtume dėkingi, jei praneštumėte, kokiomis aplinkybėmis ši problema iškilo." msgid "Critical error" msgstr "Kritinė klaida" #, boost-format msgid "OrcaSlicer got an unhandled exception: %1%" -msgstr "OrcaSlicer susidūrė su neapdorota klaida: %1%" +msgstr "„OrcaSlicer“ gavo neapdorotą išimtį: %1%" msgid "Untitled" msgstr "Be pavadinimo" msgid "" -"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud " +"instead of Bambu Cloud.\n" "\n" -"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be " +"transferred automatically. To learn more about how OrcaSlicer stores and " +"syncs your profiles, or to migrate your presets manually, check out our " +"wiki.\n" "\n" -"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +"If you did not use Bambu Cloud to sync profiles, this change does not affect " +"you and you can safely ignore this message." msgstr "" -"Nuo 2.4.0 versijos OrcaSlicer sinchronizuoja naudotojo profilius per Orca Cloud, o ne Bambu Cloud.\n" +"Nuo 2.4.0 versijos OrcaSlicer sinchronizuoja naudotojo profilius per Orca " +"Cloud, o ne Bambu Cloud.\n" "\n" -"Norėdami perkelti esamus profilius, prisijunkite prie Orca Cloud ir jie bus perkelti automatiškai. Norėdami sužinoti daugiau apie tai, kaip OrcaSlicer saugo ir sinchronizuoja jūsų profilius, arba norėdami perkelti profilius rankiniu būdu, apsilankykite mūsų wiki.\n" +"Norėdami perkelti esamus profilius, prisijunkite prie Orca Cloud ir jie bus " +"perkelti automatiškai. Norėdami sužinoti daugiau apie tai, kaip OrcaSlicer " +"saugo ir sinchronizuoja jūsų profilius, arba norėdami perkelti profilius " +"rankiniu būdu, apsilankykite mūsų wiki.\n" "\n" -"Jei profiliams sinchronizuoti nenaudojote Bambu Cloud, šis pakeitimas jums neaktualus ir šį pranešimą galite ignoruoti." +"Jei profiliams sinchronizuoti nenaudojote Bambu Cloud, šis pakeitimas jums " +"neaktualus ir šį pranešimą galite ignoruoti." msgid "Profile syncing change" -msgstr "" +msgstr "Profilio sinchronizavimo pakeitimas" msgid "Learn more" -msgstr "" +msgstr "Sužinokite daugiau" msgid "Reloading network plug-in..." -msgstr "" +msgstr "Tinklo papildinys įkeliamas iš naujo..." msgid "Downloading Network Plug-in" -msgstr "" +msgstr "Atsisiunčiamas tinklo papildinys" msgid "Downloading Bambu Network Plug-in" msgstr "Siunčiamas Bambu tinklo papildinys" @@ -1758,20 +1828,29 @@ msgid "Connect %s failed! [SN:%s, code=%s]" msgstr "Nepavyko %s prisijungimas! [SN:%s, kodas=%s]" msgid "" -"Orca Slicer requires the Microsoft WebView2 Runtime to operate certain features.\n" +"Orca Slicer requires the Microsoft WebView2 Runtime to operate certain " +"features.\n" "Click Yes to install it now." msgstr "" -"Norint naudoti kai kurias „OrcaSlicer“ funkcijas, reikalinga „Microsoft WebView2 Runtime“.\n" +"Norint naudoti kai kurias „OrcaSlicer“ funkcijas, reikalinga „Microsoft " +"WebView2 Runtime“.\n" "Spustelėkite „Taip“, kad ją įdiegtumėte dabar." msgid "WebView2 Runtime" -msgstr "\"WebView2\" paleidimo terpė" +msgstr "„WebView2“ paleidimo terpė" msgid "" "The Microsoft WebView2 Runtime could not be installed.\n" -"Some features, including the setup wizard, may appear blank until it is installed.\n" -"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +"Some features, including the setup wizard, may appear blank until it is " +"installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-" +"edge/webview2/ and restart Orca Slicer." msgstr "" +"Nepavyko įdiegti „Microsoft WebView2 Runtime“.\n" +"Kol tai nebus įdiegta, kai kurios funkcijos, įskaitant diegimo vedlį, gali " +"būti tuščios.\n" +"Prašome įdiegti rankiniu būdu iš https://developer.microsoft.com/microsoft-" +"edge/webview2/ ir iš naujo paleisti „Orca Slicer“." #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" @@ -1790,44 +1869,47 @@ msgstr "Prisiminti mano pasirinkimą" #, c-format, boost-format msgid "Click to download new version in default browser: %s" -msgstr "Spustelėkite, kad atsisiųstumėte naują versiją numatytoje naršyklėje: %s" +msgstr "" +"Spustelėkite, kad atsisiųstumėte naują versiją numatytoje naršyklėje: %s" -# TODO: Review, changed by lang refactor. PR 14254 msgid "OrcaSlicer needs an update" -msgstr "OrcaSlicer reikia atnaujinti" +msgstr "„OrcaSlicer“ programą reikia atnaujinti" msgid "This is the newest version." msgstr "Čia yra naujausia versija." msgid "Info" -msgstr "" +msgstr "Informacija" msgid "Loading printer & filament profiles" -msgstr "" +msgstr "Įkeliami spausdintuvo ir gijų profiliai" msgid "Creating main window" -msgstr "" +msgstr "Kuriamas pagrindinis langas" msgid "Loading current preset" -msgstr "" +msgstr "Įkeliamas esamas profilis" msgid "Showing main window" -msgstr "" +msgstr "Rodomas pagrindinis langas" msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" -"Please note, application settings will be lost, but printer profiles will not be affected." +"Please note, application settings will be lost, but printer profiles will " +"not be affected." msgstr "" -"OrcaSlicer konfigūracijos failas gali būti sugadintas ir jo negalima apdoroti.\n" -"OrcaSlicer bandė iš naujo sukurti konfigūracijos failą.\n" -"Atkreipkite dėmesį, kad programos nustatymai bus prarasti, tačiau spausdintuvo profiliai neturėtų būti paveikti." +"„OrcaSlicer“ konfigūracijos failas gali būti sugadintas, jo nepavyksta " +"apdoroti.\n" +"„OrcaSlicer“ bandė sukurti konfigūracijos failą iš naujo.\n" +"Atkreipkite dėmesį, kad programos nustatymai bus prarasti, \n" +"tačiau tai neturės įtakos spausdintuvo profiliams." msgid "Rebuild" msgstr "Perkurti" msgid "Loading current presets" -msgstr "Įkeliami dabartiniai nustatymai" +msgstr "Įkeliami esami profiliai" msgid "Loading a mode view" msgstr "Įkeliamas režimo rodinys" @@ -1836,7 +1918,8 @@ msgid "Choose one file (3MF):" msgstr "Pasirinkite vieną failą (3MF):" msgid "Choose one or more files (3MF/STEP/STL/SVG/OBJ/AMF/USD*/ABC/PLY):" -msgstr "Pasirinkite vieną ar kelis failus (3MF/STEP/STL/SVG/OBJ/AMF/USD*/ABC/PLY):" +msgstr "" +"Pasirinkite vieną ar kelis failus (3MF/STEP/STL/SVG/OBJ/AMF/USD*/ABC/PLY):" msgid "Choose one or more files (3MF/STEP/STL/SVG/OBJ/AMF):" msgstr "Pasirinkite vieną ar kelis failus (3MF/STEP/STL/SVG/OBJ/AMF):" @@ -1848,105 +1931,171 @@ msgid "Choose one file (GCODE/3MF):" msgstr "Pasirinkite vieną failą (GCODE/3MF):" msgid "Ext" -msgstr "" +msgstr "Ext" msgid "Some presets are modified." -msgstr "Kai kurie nustatymai pakeisti." +msgstr "Kai kurie profiliai yra modifikuoti." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "You can keep the modified presets for the new project, discard, or save changes as new presets." -msgstr "Pakeistus išankstinius nustatymus galite išsaugoti naujame projekte, išmesti arba išsaugoti pakeitimus kaip naujus išankstinius nustatymus." +msgid "" +"You can keep the modified presets to the new project, discard or save " +"changes as new presets." +msgstr "" +"Modifikuotus profilius galite išlaikyti naujame projekte, atmesti pakeitimus " +"arba išsaugoti juos kaip naujus profilius." msgid "User logged out" msgstr "Naudotojas atsijungė" -msgid "You are currently in Stealth Mode. To log into the Cloud, you need to disable Stealth Mode first." +msgid "" +"You are currently in Stealth Mode. To log into the Cloud, you need to " +"disable Stealth Mode first." msgstr "" +"Šiuo metu esate slaptame („Stealth“) režime. Norėdami prisijungti prie " +"debesies, pirmiausia turite išjungti „Stealth“ režimą." msgid "Stealth Mode" -msgstr "" +msgstr "Slaptasis (Stealth) režimas" msgid "Quit Stealth Mode" -msgstr "" +msgstr "Išjungti „Stealth“ režimą" msgid "new or open project file is not allowed during the slicing process!" -msgstr "negalima kurti ar atidaryti naujo projekto failo, kai vyksta sluoksniavimo procesas!" +msgstr "" +"Kurti ar atidaryti naujo projekto failo sluoksniavimo (slicing) metu " +"negalima!" msgid "Open Project" msgstr "Atidaryti projektą" -msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." -msgstr "OrcaSlicer versija yra pasenusi. Norint naudotis, reikia ją atnaujinti į naujausią versiją." +msgid "" +"The version of Orca Slicer is too low and needs to be updated to the latest " +"version before it can be used normally." +msgstr "" +"OrcaSlicer versija yra pasenusi. Norint naudotis, reikia ją atnaujinti į " +"naujausią versiją." msgid "" "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" -"Pull downloads the cloud copy. Force push overwrites it with your local preset." +"Pull downloads the cloud copy. Force push overwrites it with your local " +"preset." msgstr "" +"Debesų sinchronizavimo konfliktas: „OrcaCloud“ yra naujesnė šio profilio " +"versija.\n" +"Pasirinkus „Pull“ („Parsiųsti\") bus atsisiųsta kopija iš debesies. " +"Pasirinkus \n" +"„Force push“ („Priverstinai įkelti“) debesyje jis bus perrašytas jūsų " +"vietiniu profiliu." msgid "" "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" -"Pull downloads the cloud copy. Force push overwrites it with your local preset." +"Pull downloads the cloud copy. Force push overwrites it with your local " +"preset." msgstr "" +"Debesų sinchronizavimo konfliktas: „OrcaCloud“ jau yra šio profilio su šiuo " +"pavadinimu.\n" +"Pasirinkus „Pull“ („Parsiųsti\") bus atsisiųsta kopija iš debesies. " +"Pasirinkus \n" +"„Force push“ („Priverstinai įkelti“) debesyje jis bus perrašytas jūsų " +"vietiniu profiliu." msgid "" -"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" -"Delete will delete your local preset. Force push overwrites it with your local preset." +"Cloud sync conflict: a preset with the same name was previously deleted from " +"the cloud.\n" +"Delete will delete your local preset. Force push overwrites it with your " +"local preset." msgstr "" +"Debesų sinchronizavimo konfliktas: anksčiau iš debesies buvo ištrintas to " +"paties pavadinimo profilis.\n" +"Pasirinkus „Ištrinti“ bus ištrintas jūsų vietinis profilis. Pasirinkus " +"„Priverstinai įkelti“ \n" +"debesyje jis bus perrašytas jūsų vietiniu profiliu." msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" -"Pull downloads the cloud copy. Force push overwrites it with your local preset." +"Cloud sync conflict: there was an unexpected or unidentified preset " +"conflict.\n" +"Pull downloads the cloud copy. Force push overwrites it with your local " +"preset." msgstr "" +"Debesų sinchronizavimo konfliktas: įvyko netikėtas arba nenustatytas " +"nustatymų konfliktas.\n" +"Pasirinkus „Pull“ („Parsiųsti\") bus atsisiųsta kopija iš debesies. " +"Pasirinkus \n" +"„Force push“ („Priverstinai įkelti“) debesyje jis bus perrašytas jūsų " +"vietiniu profiliu." msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" "Do you want to continue?" msgstr "" +"Naudojant „Force Push“ („Priverstinai įkelti“) funkciją, debesies kopija bus " +"perrašyta jūsų vietiniais profilių pakeitimais.\n" +"Ar norite tęsti?" msgid "Resolve cloud sync conflict" -msgstr "" +msgstr "Išspręsti debesų sinchronizavimo konfliktą" msgid "Retrieving printer information, please try again later." -msgstr "" +msgstr "Gaunama spausdintuvo informacija, bandykite vėliau." msgid "Please try updating OrcaSlicer and then try again." -msgstr "" - -msgid "The certificate has expired. Please check the time settings or update OrcaSlicer and try again." -msgstr "" - -msgid "The certificate is no longer valid and the printing functions are unavailable." -msgstr "" - -msgid "Internal error. Please try upgrading the firmware and OrcaSlicer version. If the issue persists, contact support." -msgstr "" +msgstr "Atnaujinkite „OrcaSlicer“ programą ir bandykite dar kartą." msgid "" -"To use OrcaSlicer with Bambu Lab printers, you need to enable LAN mode and Developer mode on your printer.\n" +"The certificate has expired. Please check the time settings or update " +"OrcaSlicer and try again." +msgstr "" +"Sertifikato galiojimas baigėsi. Patikrinkite laiko nustatymus arba " +"atnaujinkite „OrcaSlicer“ ir bandykite dar kartą." + +msgid "" +"The certificate is no longer valid and the printing functions are " +"unavailable." +msgstr "Sertifikatas nebegalioja, todėl spausdinimo funkcijos neprieinamos." + +msgid "" +"Internal error. Please try upgrading the firmware and OrcaSlicer version. If " +"the issue persists, contact support." +msgstr "" +"Vidinė klaida. Pabandykite atnaujinti aparatinę programinę įrangą (firmware) " +"ir „OrcaSlicer“ versiją. Problemai išlikus, susisiekite su palaikymo komanda." + +msgid "" +"To use OrcaSlicer with Bambu Lab printers, you need to enable LAN mode and " +"Developer mode on your printer.\n" "\n" "Please go to your printer's settings and:\n" "1. Turn on LAN mode\n" "2. Enable Developer mode\n" "\n" -"Developer mode allows the printer to work exclusively through local network access, enabling full functionality with OrcaSlicer." +"Developer mode allows the printer to work exclusively through local network " +"access, enabling full functionality with OrcaSlicer." msgstr "" +"Norėdami naudoti „OrcaSlicer“ su „Bambu Lab“ spausdintuvais, spausdintuve " +"turite įjungti LAN režimą ir kūrėjo (Developer) režimą.\n" +"\n" +"Eikite į spausdintuvo nustatymus ir:\n" +"1. Įjunkite LAN režimą\n" +"2. Įjunkite kūrėjo (Developer) režimą\n" +"\n" +"Kūrėjo režimas leidžia spausdintuvui veikti išskirtinai per vietinį tinklą, " +"užtikrinant visišką funkcionalumą su „OrcaSlicer“." msgid "Network Plug-in Restriction" -msgstr "" +msgstr "Tinklo papildinio ribojimas" msgid "Privacy Policy Update" msgstr "Privatumo politikos atnaujinimas" #, c-format, boost-format msgid "your Orca Cloud profile (user ID: \"%s\")" -msgstr "" +msgstr "jūsų „Orca Cloud“ profilis (vartotojo ID: „%s“)" msgid "your default profile" -msgstr "" +msgstr "jūsų numatytasis profilis" #, c-format, boost-format msgid "a user profile (folder: \"%s\")" -msgstr "" +msgstr "vartotojo profilis (aplankas: „%s“)" #, c-format, boost-format msgid "" @@ -1954,50 +2103,65 @@ msgid "" "Do you want to migrate them to your OrcaCloud profile?\n" "This will copy your presets so they are available under your new account." msgstr "" +"%s rasti esami naudotojo profiliai.\n" +"Ar norite juos perkelti į savo „OrcaCloud“ profilį? \n" +"Tai nukopijuos jūsų profilius, kad jie būtų prieinami jūsų naujoje paskyroje." msgid "Migrate User Presets" -msgstr "" +msgstr "Perkelti naudotojo profilius" #, c-format, boost-format msgid "" "Failed to migrate user presets:\n" "%s" msgstr "" +"Nepavyko perkelti naudotojo profilių:\n" +"%s" -msgid "The number of user presets cached in the cloud has exceeded the upper limit, newly created user presets can only be used locally." -msgstr "Pasiektas debesyje saugomų naudotojo nustatymų limitas. Naujai sukurti naudotojo nustatymai bus prieinami tik šiame įrenginyje." +msgid "" +"The number of user presets cached in the cloud has exceeded the upper limit, " +"newly created user presets can only be used locally." +msgstr "" +"Pasiektas debesyje saugomų naudotojo profilių limitas. Naujai sukurti " +"naudotojo profiliai bus prieinami tik šiame įrenginyje." msgid "Sync user presets" -msgstr "Sinchronizuoti naudotojo nustatymus" +msgstr "Sinchronizuoti naudotojo profilius" -msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." +msgid "" +"The preset content is too large to sync to the cloud (exceeds 1MB). Please " +"reduce the preset size by removing custom configurations or use it locally " +"only." msgstr "" +"Profilio turinys yra per didelis, kad būtų galima sinchronizuoti su debesimi " +"(viršija 1 MB). Prašome sumažinti profilio dydį, pašalinant pasirinktinius " +"nustatymus, arba jį naudoti tik lokaliai." #, c-format, boost-format msgid "%s updated from %s to %s" -msgstr "" +msgstr "%s atnaujinta iš %s į %s" #, c-format, boost-format msgid "%s has been downloaded." -msgstr "" +msgstr "%s buvo atsisiųstas." #, c-format, boost-format msgid "Bundle %s is no longer available." -msgstr "" +msgstr "Rinkinys %s nebeprieinamas." #, c-format, boost-format msgid "Bundle %s access is unauthorized." -msgstr "" +msgstr "Prieiga prie rinkinio %s nesuteikta." msgid "Loading user preset" -msgstr "Įkeliami naudotojo nustatymai" +msgstr "Įkeliamas naudotojo profilis" #, c-format, boost-format msgid "%s has been removed." -msgstr "" +msgstr "%s buvo pašalintas." msgid "Switching application language" -msgstr "Perjungiama programoskalba" +msgstr "Perjungiama programos kalba" msgid "Select the language" msgstr "Pasirinkite kalbą" @@ -2023,8 +2187,12 @@ msgstr "Vykdomi įkėlimai" msgid "Select a G-code file:" msgstr "Pasirinkite G-kodo failą:" -msgid "Could not start URL download. Destination folder is not set. Please choose destination folder in Configuration Wizard." -msgstr "Nepavyko pradėti atsisiuntimo iš interneto adreso. Nėra nurodytas paskirties aplankas. Pasirinkite paskirties aplanką konfigūracijos vedlyje." +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" +"Nepavyko pradėti atsisiuntimo iš interneto adreso. Nėra nurodytas paskirties " +"aplankas. Pasirinkite paskirties aplanką konfigūracijos vedlyje." msgid "Import File" msgstr "Importuoti failą" @@ -2042,12 +2210,11 @@ msgid "Rename" msgstr "Pervardyti" msgid "Orca Slicer GUI initialization failed" -msgstr "OrcaSlicer grafinės vartotojo sąsajos inicijavimas nepavyko" +msgstr "Nepavyko inicijuoti „OrcaSlicer“ grafinės naudotojo sąsajos" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format -msgid "Fatal error, exception: %1%" -msgstr "Fatališka klaida, užfiksuota išimtis: %1%" +msgid "Fatal error, exception caught: %1%" +msgstr "Lemtingoji klaida, sugauta išimtis: %1%" msgid "Quality" msgstr "Kokybė" @@ -2056,13 +2223,13 @@ msgid "Shell" msgstr "Apvalkalas" msgid "Infill" -msgstr "Užpildymas" +msgstr "Užpildas" msgid "Support" msgstr "Atramos" msgid "Flush options" -msgstr "Gijos išleidimo nustatymai" +msgstr "Gijos išvalymo nustatymai" msgid "Speed" msgstr "Greitis" @@ -2070,23 +2237,19 @@ msgstr "Greitis" msgid "Strength" msgstr "Stiprumas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Top solid layers" -msgstr "Viršutiniai vientisi sluoksniai" +msgid "Top Solid Layers" +msgstr "Viršutiniai ištisiniai sluoksniai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Top minimum shell thickness" +msgid "Top Minimum Shell Thickness" msgstr "Mažiausias viršutinio apvalkalo storis" msgid "Top Surface Density" msgstr "Viršutinio paviršiaus tankis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Bottom solid layers" +msgid "Bottom Solid Layers" msgstr "Apatiniai ištisiniai sluoksniai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Bottom minimum shell thickness" +msgid "Bottom Minimum Shell Thickness" msgstr "Mažiausias apatinio apvalkalo storis" msgid "Bottom Surface Density" @@ -2095,15 +2258,13 @@ msgstr "Apatinio paviršiaus tankis" msgid "Ironing" msgstr "Lyginimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Fuzzy skin" +msgid "Fuzzy Skin" msgstr "Grublėtas paviršius" msgid "Extruders" -msgstr "Ekstruderiai" +msgstr "Ekstruderiai (stumtuvai)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Extrusion width" +msgid "Extrusion Width" msgstr "Išspaudimo plotis" msgid "Wipe options" @@ -2112,24 +2273,19 @@ msgstr "Valymo parinktys" msgid "Bed adhesion" msgstr "Sukibimas su pagrindu" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add Part" -msgstr "Pridėti dalį" +msgid "Add part" +msgstr "Pridėti detalę" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add Negative Part" +msgid "Add negative part" msgstr "Pridėti neigiamą elementą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add Modifier" +msgid "Add modifier" msgstr "Pridėti modifikatorių" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add Support Blocker" +msgid "Add support blocker" msgstr "Pridėti atramų blokatorių" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add Support Enforcer" +msgid "Add support enforcer" msgstr "Pridėti priverstines atramas" msgid "Add text" @@ -2142,7 +2298,7 @@ msgid "Add text modifier" msgstr "Pridėti teksto modifikatorių" msgid "Add SVG part" -msgstr "Pridėti SVG dalį" +msgstr "Pridėti SVG detalę" msgid "Add negative SVG" msgstr "Pridėti neigiamą SVG" @@ -2160,13 +2316,13 @@ msgid "Show" msgstr "Rodyti" msgid "Del" -msgstr "" +msgstr "Del" msgid "Delete the selected object" msgstr "Ištrinti pasirinktą objektą" msgid "Backspace" -msgstr "" +msgstr "Backspace" msgid "Load..." msgstr "Įkelti..." @@ -2178,7 +2334,7 @@ msgid "Cylinder" msgstr "Cilindras" msgid "Cone" -msgstr "Konusas" +msgstr "Kūgis" msgid "Disc" msgstr "Diskas" @@ -2190,10 +2346,10 @@ msgid "Orca Cube" msgstr "Orca kubas" msgid "OrcaSliced Combo" -msgstr "" +msgstr "„OrcaSliced“ rinkinys" msgid "Orca Tolerance Test" -msgstr "Orca tolerancijos testas" +msgstr "„Orca“ tarpų (tolerancijos) testas" msgid "3DBenchy" msgstr "3DBenchy" @@ -2214,31 +2370,33 @@ msgid "Orca String Hell" msgstr "Orca stygų testas" msgid "" -"This model features text embossment on the top surface. For optimal results, it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 for the 'Only One Wall on Top Surfaces' to work best.\n" +"This model features text embossment on the top surface. For optimal results, " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " +"for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Šiame modelyje viršutinio paviršiaus tekstas yra išgaubtas. Norint pasiekti optimalų rezultatą, rekomenduojama nustatyti „Vienos sienelės slenkstį (minimalus viršutinio paviršiaus plotis)“ į 0, kad funkcija „Tik viena sienelė viršutiniuose paviršiuose“ veiktų geriausiai.\n" +"Šiame modelyje viršutinio paviršiaus tekstas yra išgaubtas. Norint pasiekti " +"optimalų rezultatą, rekomenduojama nustatyti „Vienos sienelės slenkstį " +"(minimalus viršutinio paviršiaus plotis)“ į 0, kad funkcija „Tik viena " +"sienelė viršutiniuose paviršiuose“ veiktų geriausiai.\n" "\n" "Taip - Pakeisti šiuos nustatymus automatiškai\n" "Ne - Nekeisti šių nustatymų" msgid "Suggestion" -msgstr "" +msgstr "Rekomendacija" msgid "Text" -msgstr "Teskstas" +msgstr "Tesktas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Height Range Modifier" +msgid "Height range Modifier" msgstr "Aukščio diapazono modifikatorius" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add Settings" +msgid "Add settings" msgstr "Pridėti nustatymus" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Change Type" +msgid "Change type" msgstr "Keisti tipą" msgid "Negative Part" @@ -2251,14 +2409,12 @@ msgid "Support Enforcer" msgstr "Priverstinės atramos" msgid "Change part type" -msgstr "" +msgstr "Pakeisti detalės tipą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Set as An Individual Object" +msgid "Set as an individual object" msgstr "Nustatyti kaip atskirą objektą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Set as Individual Objects" +msgid "Set as individual objects" msgstr "Nustatyti kaip atskirus objektus" msgid "Fill bed with copies" @@ -2271,13 +2427,12 @@ msgid "Printable" msgstr "Galima spausdinti" msgid "Auto Drop" -msgstr "" +msgstr "Automatinis nuleidimas" -msgid "Automatically drops the selected object to the build plate." -msgstr "" +msgid "Automatically drops the selected object to the build plate" +msgstr "Automatiškai nuleidžia pasirinktą objektą ant spausdinimo plokštės" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Fix Model" +msgid "Fix model" msgstr "Sutaisyti objektą" msgid "Export as one STL" @@ -2287,28 +2442,28 @@ msgid "Export as STLs" msgstr "Eksportuoti kaip kelis STL" msgid "Export as one DRC" -msgstr "" +msgstr "Eksportuoti kaip vieną DRC" msgid "Export as DRCs" -msgstr "" +msgstr "Eksportuoti kaip DRC failus" msgid "Reload from disk" msgstr "Iš naujo įkelti iš disko" msgid "Reload the selected parts from disk" -msgstr "Iš naujo įkelti pasirinktas dalis iš disko" +msgstr "Iš naujo įkelti pasirinktas detales iš disko" msgid "Replace 3D file" -msgstr "" +msgstr "Pakeisti 3D failą" msgid "Replace the selected part with a new 3D file" -msgstr "" +msgstr "Pakeisti pasirinktą detalę nauju 3D failu" msgid "Replace all with 3D files" -msgstr "" +msgstr "Viską pakeisti 3D failais" msgid "Replace all selected parts with 3D files from folder" -msgstr "" +msgstr "Pakeisti visas pasirinktas detales 3D failais iš aplanko" msgid "Change filament" msgstr "Pakeisti giją" @@ -2317,7 +2472,7 @@ msgid "Set filament for selected items" msgstr "Nustatyti giją pasirinktiems elementams" msgid "Default" -msgstr "Numatytas" +msgstr "Numatytasis" #, c-format, boost-format msgid "Filament %d" @@ -2327,79 +2482,68 @@ msgid "current" msgstr "dabartinė" msgid "Scale to build volume" -msgstr "Mastelis pagal spausdinimo plotą" +msgstr "Keisti mastelį pagal spausdinimo tūrį" msgid "Scale an object to fit the build volume" -msgstr "Pritaikyti objekto dydį spausdintuvui" +msgstr "Keisti objekto mastelį, kad tilptų spausdinimo tūryje" msgid "Flush Options" -msgstr "Gijos išleidimo nustatymai" +msgstr "Gijos išvalymo nustatymai" msgid "Flush into objects' infill" -msgstr "Nuvalyti į objektų užpildą" +msgstr "Išvalyti į objektų užpildą" msgid "Flush into this object" -msgstr "Nuvalyti į šį objektą" +msgstr "Išvalyti į šį objektą" msgid "Flush into objects' support" -msgstr "Nuvalyti į objekto atramas" +msgstr "Išvalyti į objektų atramas" msgid "Edit in Parameter Table" msgstr "Taisyti Parametrų lentelėje" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Convert from Inches" +msgid "Convert from inches" msgstr "Konvertuoti iš colių" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Restore to Inch" +msgid "Restore to inches" msgstr "Grąžinti į colius" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Convert from Meters" +msgid "Convert from meters" msgstr "Konvertuoti iš metrų" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Restore to Meter" +msgid "Restore to meters" msgstr "Grąžinti į metrus" msgid "Assemble the selected objects into an object with multiple parts" -msgstr "Sujungti pasirinktus objektus į daugiadalį objektą" +msgstr "Sujungti pasirinktus objektus į objektą iš kelių detalių" msgid "Assemble the selected objects into an object with single part" -msgstr "Sujungti pasirinktus objektus į vienadalį objektą" +msgstr "Sujungti pasirinktus objektus į objektą iš vienos detalės" msgid "Mesh boolean" -msgstr "Objektų jungimo / atėmimo / susikirtimo įrankiai" +msgstr "Poligoninių tinklų logikos (Boolean) operacijos" msgid "Mesh boolean operations including union and subtraction" -msgstr "Įrankiai modeliams sujungti ir iškirpti" +msgstr "Logikos (Boolean) operacijos, įskaitant sujungimą ir atimtį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Along X Axis" +msgid "Along X axis" msgstr "Išilgai X ašies" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Mirror along the X Axis" +msgid "Mirror along the X axis" msgstr "Atspindėti pagal X ašį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Along Y Axis" +msgid "Along Y axis" msgstr "Išilgai Y ašies" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Mirror along the Y Axis" +msgid "Mirror along the Y axis" msgstr "Atspindėti pagal Y ašį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Along Z Axis" +msgid "Along Z axis" msgstr "Išilgai Z ašies" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Mirror along the Z Axis" +msgid "Mirror along the Z axis" msgstr "Atspindėti pagal Z ašį" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror object" msgstr "Atspindėti objektą" @@ -2416,10 +2560,10 @@ msgid "Change SVG source file, projection, size, ..." msgstr "Keičiamas SVG šaltinis, projekcija, dydis..." msgid "Invalidate cut info" -msgstr "Atnaujinti pjovimo informaciją" +msgstr "Panaikinti pjovimo informacijos galiojimą" msgid "Add Primitive" -msgstr "Pridėti paprastą figūrą" +msgstr "Pridėti primityvą" msgid "Add Handy models" msgstr "Pridėti patogius modelius" @@ -2430,19 +2574,17 @@ msgstr "Pridėti modelius" msgid "Show Labels" msgstr "Rodyti etiketes" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "To Objects" +msgid "To objects" msgstr "Į objektus" msgid "Split the selected object into multiple objects" msgstr "Suskaidyti pasirinktą objektą į kelis objektus" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "To Parts" -msgstr "Į dalis" +msgid "To parts" +msgstr "Paversti detalėmis" msgid "Split the selected object into multiple parts" -msgstr "Suskaidyti pasirinktą objektą į kelias dalis" +msgstr "Skaidyti pasirinktą objektą į kelias detales" msgid "Split" msgstr "Padalinti" @@ -2454,54 +2596,52 @@ msgid "Auto orientation" msgstr "Automatinė padėtis" msgid "Auto orient the object to improve print quality" -msgstr "Automatiškai nustatoma padėtis spausdinimo kokybės pagerinimui." +msgstr "Automatiškai nustatoma padėtis spausdinimo kokybės pagerinimui" msgid "Edit" msgstr "Redaguoti" msgid "Merge with" -msgstr "" +msgstr "Sujungti su" msgid "Delete this filament" -msgstr "" +msgstr "Ištrinti šią giją" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Select All" msgstr "Pasirinkti viską" msgid "Select all objects on the current plate" -msgstr "pasirinkti visus objektus pasirinktoje plokštėje" +msgstr "Pasirinkti visus objektus dabartinėje plokštėje" msgid "Select All Plates" -msgstr "" +msgstr "Pasirinkti visas plokštes" msgid "Select all objects on all plates" -msgstr "" +msgstr "Pasirinkti visus objektus visose plokštėse" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete All" msgstr "Ištrinti visus" msgid "Delete all objects on the current plate" -msgstr "ištrinti visus objektus pasirinktoje plokštėje" +msgstr "Ištrinti visus objektus dabartinėje plokštėje" msgid "Arrange" msgstr "Išdėstyti" msgid "Arrange current plate" -msgstr "išdėstyti dabartinės plokštės objektus" +msgstr "Išdėstyti dabartinės plokštės objektus" msgid "Reload All" -msgstr "Pakartotinai užkrauti viską" +msgstr "Įkelti viską iš naujo" msgid "Reload all from disk" -msgstr "dar kartą užkrauti viską iš disko" +msgstr "Įkelti viską iš naujo iš disko" msgid "Auto Rotate" msgstr "Automatinis pasukimas" msgid "Auto rotate current plate" -msgstr "utomatiškai pasukti dabartinę plokštę" +msgstr "Automatiškai pasukti dabartinę plokštę" msgid "Delete Plate" msgstr "Ištrinti plokštę" @@ -2510,28 +2650,28 @@ msgid "Remove the selected plate" msgstr "Pašalinti pasirinktą plokštę" msgid "Add instance" -msgstr "" +msgstr "Pridėti kopiją (kopiją-atvaizdą)" msgid "Add one more instance of the selected object" -msgstr "" +msgstr "Pridėti dar vieną pasirinkto objekto kopiją" msgid "Remove instance" -msgstr "" +msgstr "Pašalinti kopiją" msgid "Remove one instance of the selected object" -msgstr "" +msgstr "Pašalinti vieną pasirinkto objekto kopiją" msgid "Set number of instances" -msgstr "" +msgstr "Nustatyti kopijų skaičių" msgid "Change the number of instances of the selected object" -msgstr "" +msgstr "Keisti pasirinkto objekto kopijų skaičių" msgid "Fill bed with instances" -msgstr "" +msgstr "Užpildyti pagrindą kopijomis" msgid "Fill the remaining area of bed with instances of the selected object" -msgstr "" +msgstr "Užpildyti likusią pagrindo vietą pasirinkto objekto kopijomis" msgid "Clone" msgstr "Klonuoti" @@ -2540,25 +2680,25 @@ msgid "Simplify Model" msgstr "Supaprastinti modelį" msgid "Subdivision mesh" -msgstr "" +msgstr "Skaidomas paviršius" msgid "(Lost color)" -msgstr "" +msgstr "(Prarasta spalva)" msgid "Center" msgstr "Centras" msgid "Drop" -msgstr "Pamiršti" +msgstr "Nuleisti" msgid "Edit Process Settings" msgstr "Taisyti proceso nustatymus" msgid "Copy Process Settings" -msgstr "" +msgstr "Kopijuoti proceso nustatymus" msgid "Paste Process Settings" -msgstr "" +msgstr "Įklijuoti proceso nustatymus" msgid "Edit print parameters for a single object" msgstr "Taisyti atskiro objekto spausdinimo parametrus" @@ -2567,10 +2707,10 @@ msgid "Change Filament" msgstr "Keisti giją" msgid "Set Filament for selected items" -msgstr "Nsutatyti giją pasirinktiems objektams" +msgstr "Nustatyti giją pasirinktiems elementams" -msgid "Automatically snaps the selected object to the build plate." -msgstr "" +msgid "Automatically snaps the selected object to the build plate" +msgstr "Automatiškai pritraukia pasirinktą objektą prie spausdinimo plokštės" msgid "Unlock" msgstr "Atrakinti" @@ -2585,7 +2725,7 @@ msgid "Name" msgstr "Pavadinimas" msgid "Fila." -msgstr "Gija." +msgstr "Gija" #, c-format, boost-format msgid "%1$d error repaired" @@ -2597,9 +2737,9 @@ msgstr[2] "Ištaisyta %1$d klaidų" #, c-format, boost-format msgid "Error: %1$d non-manifold edge." msgid_plural "Error: %1$d non-manifold edges." -msgstr[0] "Klaida: %1$d neuždara briauna." -msgstr[1] "Klaida: %1$d neuždaros briaunos." -msgstr[2] "Klaida: %1$d neuždarų briaunų." +msgstr[0] "Klaida: %1$d ne daugialypė (non-manifold) briauna." +msgstr[1] "Klaida: %1$d ne daugialypės (non-manifold) briaunos." +msgstr[2] "Klaida: %1$d ne daugialypių (non-manifold) briaunų." msgid "Remaining errors" msgstr "Likusios klaidos" @@ -2607,33 +2747,35 @@ msgstr "Likusios klaidos" #, c-format, boost-format msgid "%1$d non-manifold edge" msgid_plural "%1$d non-manifold edges" -msgstr[0] "%1$d neuždara briauna" -msgstr[1] "%1$d neuždaros briaunos" -msgstr[2] "%1$d neuždarų briaunų" +msgstr[0] "%1$d ne daugialypė (non-manifold) briauna" +msgstr[1] "%1$d ne daugialypės (non-manifold) briaunos" +msgstr[2] "%1$d ne daugialypių (non-manifold) briaunų" msgid "Click the icon to repair model object" msgstr "Spustelėkite piktogramą, kad pataisytumėte modelio objektą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Right click the icon to drop the object settings" -msgstr "Dešiniuoju pelės mygtuku spustelėkite piktogramą, kad išskleistumėte objekto nustatymus" +msgid "Right button click the icon to drop the object settings" +msgstr "" +"Spustelėkite piktogramą dešiniuoju pelės mygtuku, kad atmestumėte objekto " +"nustatymus" msgid "Click the icon to reset all settings of the object" msgstr "Spustelėkite piktogramą, kad atstatytumėte visus objekto nustatymus" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Right click the icon to drop the object printable property" -msgstr "Dešiniuoju pelės mygtuku spustelėkite piktogramą, kad išskleistumėte objekto spausdinimo savybių meniu" +msgid "Right button click the icon to drop the object printable property" +msgstr "" +"Spustelėkite piktogramą dešiniuoju pelės mygtuku, kad panaikintumėte objekto " +"spausdinimo savybę" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Click the icon to toggle printable properties of the object" -msgstr "Spustelėkite piktogramą, kad įjungtumėte / išjungtumėte objekto spausdinimo galimybę" +msgid "Click the icon to toggle printable property of the object" +msgstr "" +"Spustelėkite piktogramą, kad įjungtumėte / išjungtumėte objekto spausdinimo " +"galimybę" msgid "Click the icon to edit support painting of the object" msgstr "Spustelėkite piktogramą, kad redaguotumėte objekto atramų piešimą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Click the icon to edit color painting for the object" +msgid "Click the icon to edit color painting of the object" msgstr "Spustelėkite piktogramą, kad redaguotumėte objekto spalvinimą" msgid "Click the icon to shift this object to the bed" @@ -2651,11 +2793,20 @@ msgstr "Nepavyko gauti modelio duomenų iš dabartinio failo." msgid "Generic" msgstr "Bendras" -msgid "Switch to per-object setting mode to edit modifier settings." -msgstr "Norėdami redaguoti modifikatoriaus nustatymus, persijunkite į objektų atskirų nustatymų režimą." +msgid "Add Modifier" +msgstr "Pridėti modifikatorių" -msgid "Switch to per-object setting mode to edit process settings of selected objects." -msgstr "Norėdami redaguoti pasirinktų objektų spausdinimo parametrus, persijunkite į objektų atskirų nustatymų režimą." +msgid "Switch to per-object setting mode to edit modifier settings." +msgstr "" +"Norėdami redaguoti modifikatoriaus nustatymus, persijunkite į objektų " +"atskirų nustatymų režimą." + +msgid "" +"Switch to per-object setting mode to edit process settings of selected " +"objects." +msgstr "" +"Norėdami redaguoti pasirinktų objektų spausdinimo parametrus, persijunkite į " +"objektų atskirų nustatymų režimą." msgid "Remove paint-on fuzzy skin" msgstr "Pašalinti pieštą grublėtą paviršių" @@ -2664,34 +2815,39 @@ msgid "Delete connector from object which is a part of cut" msgstr "Pašalinkite jungtį nuo objekto, kuris yra pjūvio dalis" msgid "Delete solid part from object which is a part of cut" -msgstr "Ištrinti vientisą objekto dalį, kuri yra pjūvio dalis" +msgstr "Ištrinti geometrinę detalę iš objekto, kuris yra pjūvio dalis" msgid "Delete negative volume from object which is a part of cut" msgstr "Pašalinkite neigiamą tūrį iš pjūvyje esančio objekto" -msgid "To save cut correspondence you can delete all connectors from all related objects." -msgstr "Norėdami nutraukti ryšius, galite ištrinti visus jungtis iš visų susijusių objektų." +msgid "" +"To save cut correspondence you can delete all connectors from all related " +"objects." +msgstr "" +"Norėdami nutraukti ryšius, galite ištrinti visus jungtis iš visų susijusių " +"objektų." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed.\n" +"After that model consistency can't be guaranteed.\n" "\n" -"To manipulate with solid parts or negative volumes you have to invalidate cut information first." +"To manipulate with solid parts or negative volumes you have to invalidate " +"cut information first." msgstr "" -"Šis veiksmas nutrauks sluoksniavimo atitikmenį.\n" -"Po to modelio nuoseklumas negali būti užtikrintas.\n" +"Šis veiksmas nutrauks pjūvių susietumą.\n" +"Po to modelio vientisumas negali būti garantuotas.\n" "\n" -"Norėdami manipuliuoti su vientisomis dalimis arba neigiamais tūriais, pirmiausia turite panaikinti pjūvio informaciją." +"Norėdami manipuliuoti geometrinėmis detalėmis arba neigiamais tūriais, " +"pirmiausia turite panaikinti pjovimo informacijos galiojimą." msgid "Delete all connectors" msgstr "Ištrinti visas jungtis" msgid "Deleting the last solid part is not allowed." -msgstr "Neleidžiama ištrinti paskutinės ištisinės dalies." +msgstr "Neleidžiama ištrinti paskutinės geometrinės detalės." msgid "The target object contains only one part and can not be split." -msgstr "Objektas turi tik vieną dalį ir negali būti padalintas." +msgstr "Tikslinis objektas turi tik vieną detalę ir negali būti išskaidytas." msgid "Assembly" msgstr "Surinkimas" @@ -2705,23 +2861,20 @@ msgstr "Manipuliavimas objektu" msgid "Group manipulation" msgstr "Manipuliavimas grupe" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Object Settings to Modify" +msgid "Object Settings to modify" msgstr "Keičiami objekto parametrai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Part Settings to Modify" -msgstr "Dalies nustatymai keitimui" +msgid "Part Settings to modify" +msgstr "Keičiami detalės parametrai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Layer Range Settings to Modify" +msgid "Layer range Settings to modify" msgstr "Keičiami sluoksnių ribų nustatymai" msgid "Part manipulation" msgstr "Manipuliavimas detale" msgid "Instance manipulation" -msgstr "Manipuliavimas egzemplioriumi" +msgstr "Manipuliavimas kopija" msgid "Height ranges" msgstr "Aukščio diapazonai" @@ -2735,21 +2888,27 @@ msgstr "Sluoksnis" msgid "Selection conflicts" msgstr "Pasirinkimo konfliktai" -msgid "If the first selected item is an object, the second should also be an object." -msgstr "Jei pirmasis pasirinktas elementas yra objektas, tuomet ir antrasis privalo būti objektas." +msgid "" +"If the first selected item is an object, the second should also be an object." +msgstr "" +"Jei pirmasis pasirinktas elementas yra objektas, tuomet ir antrasis privalo " +"būti objektas." -msgid "If the first selected item is a part, the second should be a part in the same object." -msgstr "Jei pirmasis pasirinktas elementas ira dalis, tuomet antrasis taip pat privalo būti to paties objekto dalis." +msgid "" +"If the first selected item is a part, the second should be a part in the " +"same object." +msgstr "" +"Jei pirmasis pasirinktas elementas yra detalė, tuomet antrasis privalo būti " +"to paties objekto detalė." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The type of the last solid object part cannot be changed." -msgstr "Paskutinės vientiso objekto dalies tipas negali būti keičiamas." +msgid "The type of the last solid object part is not to be changed." +msgstr "Paskutinės vientisos objekto detalės tipo keisti negalima." msgid "Type:" msgstr "Tipas:" msgid "Choose part type" -msgstr "Pasirinkite dalies tipą" +msgstr "Pasirinkite detalės tipą" msgid "Enter new name" msgstr "Įvesti naują pavadinimą" @@ -2757,31 +2916,37 @@ msgstr "Įvesti naują pavadinimą" msgid "Renaming" msgstr "Pervadinama" -msgid "The following model object has been repaired" -msgid_plural "The following model objects have been repaired" -msgstr[0] "Šis modelio objektas buvo sutaisytas" -msgstr[1] "Šie modelio objektai buvo sutaisyti" -msgstr[2] "Šių modelio objektų buvo sutaisyta" +msgid "Following model object has been repaired" +msgid_plural "Following model objects have been repaired" +msgstr[0] "Sutaisytas šis modelio objektas" +msgstr[1] "Sutaisyti šie modelio objektai" +msgstr[2] "Sutaisyta šio modelio objektų" -msgid "Failed to repair the following model object" -msgid_plural "Failed to repair the following model objects" -msgstr[0] "Nepavyko pataisyti šio modelio objekto" -msgstr[1] "Nepavyko pataisyti šio modelio objektų" -msgstr[2] "Nepavyko pataisyti šio modelio objektų" +msgid "Failed to repair following model object" +msgid_plural "Failed to repair following model objects" +msgstr[0] "Nepavyko sutaisyti šio modelio objekto" +msgstr[1] "Nepavyko sutaisyti šio modelio objektų" +msgstr[2] "Nepavyko sutaisyti šio modelio objektų" msgid "Repairing was canceled" msgstr "Taisymas buvo atšauktas" #, c-format, boost-format -msgid "\"%s\" will exceed 1 million faces after this subdivision, which may increase slicing time. Do you want to continue?" +msgid "" +"\"%s\" will exceed 1 million faces after this subdivision, which may " +"increase slicing time. Do you want to continue?" msgstr "" +"„%s“ po šio padalijimo (subdivision) viršys 1 milijoną poligonų (faces), " +"todėl gali pailgėti sluoksniavimo (slicing) laikas. Ar norite tęsti?" #, c-format, boost-format msgid "\"%s\" part's mesh contains errors. Please repair it first." msgstr "" +"Detalės „%s“ poligoninis tinklas (mesh) turi klaidų. Pirmiausia jas " +"sutaisykite." msgid "Additional process preset" -msgstr "Papildomas apdorojimo nustatymas" +msgstr "Papildomas proceso profilis" msgid "Remove parameter" msgstr "Pašalinti parametrą" @@ -2798,9 +2963,10 @@ msgstr "Pridėti aukščio ribas" msgid "Invalid numeric." msgstr "Netinkamas skaičius." -# TODO: Review, changed by lang refactor. PR 14254 msgid "One cell can only be copied to one or more cells in the same column." -msgstr "vieną langelį galima nukopijuoti tik į vieną ar daugiau to paties stulpelio langelių" +msgstr "" +"Vieną langelį galima nukopijuoti tik į vieną ar daugiau to paties stulpelio " +"langelių." msgid "Copying multiple cells is not supported." msgstr "Kelių langelių kopijavimas nepalaikomas." @@ -2812,16 +2978,16 @@ msgid "Layer height" msgstr "Sluoksnio aukštis" msgid "Wall loops" -msgstr "Sienelės linijos" +msgstr "Sienelės kontūrai" msgid "Infill density(%)" msgstr "Užpildo tankis (%)" msgid "Auto Brim" -msgstr "Automatinis pagrindo sluoksnis" +msgstr "Automatinis kraštas" msgid "Mouse ear" -msgstr "Pelės ausis" +msgstr "Kampų fiksatoriai („Pelės ausys“)" msgid "Painted" msgstr "Piešta" @@ -2836,54 +3002,50 @@ msgid "Outer and inner brim" msgstr "Išorinis ir vidinis kraštai" msgid "No-brim" -msgstr "Nėra pagrindo sluoksnio" +msgstr "Nėra krašto" msgid "Outer wall speed" msgstr "Išorinių sienų greitis" msgid "Plate" -msgstr "Plokštė" +msgstr "Spausdinimo plokštė" msgid "Brim" msgstr "Kraštas" msgid "Object/Part Settings" -msgstr "" +msgstr "Objekto / detalės parametrai" msgid "Reset parameter" msgstr "Grąžinti į pradinį" msgid "Multicolor Print" -msgstr "Spalvotas spausdinimas" +msgstr "Daugiaspalvis spausdinimas" msgid "Line Type" msgstr "Linijos tipas" #, c-format, boost-format msgid "1x1 Grid: %d mm" -msgstr "" +msgstr "1x1 tinklelis: %d mm" -# TODO: Review, changed by lang refactor. PR 14254 msgid "More" msgstr "Daugiau" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Open Preferences" +msgid "Open Preferences." msgstr "Atidaryti nuostatas." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Open next tip" +msgid "Open next tip." msgstr "Kitas patarimas." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Open documentation in web browser" +msgid "Open Documentation in web browser." msgstr "Atidaryti dokumentaciją žiniatinklio naršyklėje." msgid "Color" msgstr "Spalva" msgid "Pause" -msgstr "Pristabdyti" +msgstr "Pauzė" msgid "Template" msgstr "Šablonas" @@ -2904,14 +3066,12 @@ msgid "Custom G-code" msgstr "Pasirinktinis G-kodas" msgid "Enter Custom G-code used on current layer:" -msgstr "Įveskite pasirinktinį kodą dabartiniam sluoksniui:" +msgstr "Įveskite pasirinktinį G-kodą dabartiniam sluoksniui:" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Jump to layer" +msgid "Jump to Layer" msgstr "Peršokti į sluoksnį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please enter the layer number." +msgid "Please enter the layer number" msgstr "Įveskite sluoksnio numerį" msgid "Add Pause" @@ -2972,7 +3132,8 @@ msgid "Failed to connect to cloud service" msgstr "Nepavyko prisijungti prie debesies paslaugos" msgid "Please click on the hyperlink above to view the cloud service status" -msgstr "Spustelėkite nuorodą viršuje, kad pamatytumėte debesies paslaugos būseną" +msgstr "" +"Spustelėkite nuorodą viršuje, kad pamatytumėte debesies paslaugos būseną" msgid "Failed to connect to the printer" msgstr "Nepavyko prisijungti prie spausdintuvo" @@ -2989,25 +3150,35 @@ msgstr "Jungiamasi..." msgid "Auto Refill" msgstr "Automatinis papildymas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Load" msgstr "Įkelti" msgid "Unload" -msgstr "Išleisti" +msgstr "Iškrauti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filament." -msgstr "Pasirinkite AMS angą, tada paspauskite \"Įkelti\" arba \"išstumti\" mygtuką, kad automatiškai įkeltumėte arba išstumtumėte gijas." - -msgid "Filament type is unknown which is required to perform this action. Please set target filament's informations." +msgid "" +"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " +"load or unload filaments." msgstr "" +"Pasirinkite AMS angą, tada paspauskite „Įkelti“ arba „Iškrauti“ mygtuką, kad " +"automatiškai įkeltumėte arba iškrautumėte gijas." -msgid "Changing fan speed during printing may affect print quality, please choose carefully." +msgid "" +"Filament type is unknown which is required to perform this action. Please " +"set target filament's informations." msgstr "" +"Šiam veiksmui atlikti reikalingas gijos tipas yra nežinomas. Nustatykite " +"tikslinės gijos informaciją." + +msgid "" +"Changing fan speed during printing may affect print quality, please choose " +"carefully." +msgstr "" +"Ventiliatoriaus greičio keitimas spausdinimo metu gali paveikti spausdinimo " +"kokybę, pasirinkite atsakingai." msgid "Change Anyway" -msgstr "" +msgstr "Vis tiek pakeisti" msgid "Off" msgstr "Išjungta" @@ -3015,14 +3186,26 @@ msgstr "Išjungta" msgid "Filter" msgstr "Filtras" -msgid "Enabling filtration redirects the right fan to filter gas, which may reduce cooling performance." +msgid "" +"Enabling filtration redirects the right fan to filter gas, which may reduce " +"cooling performance." msgstr "" +"Įjungus filtravimą, dešinysis ventiliatorius nukreipiamas dujų filtravimui, " +"todėl gali sumažėti aušinimo našumas." -msgid "Enabling filtration during printing may reduce cooling and affect print quality. Please choose carefully." +msgid "" +"Enabling filtration during printing may reduce cooling and affect print " +"quality. Please choose carefully." msgstr "" +"Filtravimo įjungimas spausdinimo metu gali sumažinti aušinimą ir paveikti " +"spausdinimo kokybę. Pasirinkite atsakingai." -msgid "The selected material only supports the current fan mode, and it can't be changed during printing." +msgid "" +"The selected material only supports the current fan mode, and it can't be " +"changed during printing." msgstr "" +"Pasirinkta medžiaga palaiko tik dabartinį ventiliatoriaus režimą, jo " +"negalima keisti spausdinimo metu." msgid "Cooling" msgstr "Aušinimas" @@ -3031,74 +3214,92 @@ msgid "Heating" msgstr "Šildymas" msgid "Exhaust" -msgstr "" +msgstr "Ištraukimas" msgid "Full Cooling" -msgstr "" +msgstr "Maksimalus aušinimas" msgid "Init" -msgstr "" +msgstr "Init" msgid "Chamber" msgstr "Kamera" msgid "Innerloop" -msgstr "" +msgstr "Vidinė cirkuliacija" #. TRN To be shown in the main menu View->Top msgid "Top" msgstr "Viršutinis" -msgid "The fan controls the temperature during printing to improve print quality. The system automatically adjusts the fan's switch and speed according to different printing materials." +msgid "" +"The fan controls the temperature during printing to improve print quality. " +"The system automatically adjusts the fan's switch and speed according to " +"different printing materials." msgstr "" +"Ventiliatorius kontroliuoja temperatūrą spausdinimo metu, kad pagerintų " +"spausdinimo kokybę. Sistema automatiškai sureguliuoja ventiliatoriaus būseną " +"ir greitį pagal skirtingas spausdinimo medžiagas." -msgid "Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the chamber air." +msgid "" +"Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the " +"chamber air." msgstr "" +"Aušinimo režimas tinka spausdinant PLA/PETG/TPU medžiagas ir filtruoja " +"kameros orą." -msgid "Heating mode is suitable for printing ABS/ASA/PC/PA materials and circulates filters the chamber air." +msgid "" +"Heating mode is suitable for printing ABS/ASA/PC/PA materials and circulates " +"filters the chamber air." msgstr "" +"Šildymo režimas tinka spausdinant ABS/ASA/PC/PA medžiagas, jis cirkuliuoja " +"ir filtruoja kameros orą." -msgid "Strong cooling mode is suitable for printing PLA/TPU materials. In this mode, the printouts will be fully cooled." +msgid "" +"Strong cooling mode is suitable for printing PLA/TPU materials. In this " +"mode, the printouts will be fully cooled." msgstr "" +"Intensyvaus aušinimo režimas tinka spausdinant PLA/TPU medžiagas. Šiame " +"režime spaudiniai bus visiškai ataušinami." msgid "Cooling mode is suitable for printing PLA/PETG/TPU materials." -msgstr "" +msgstr "Aušinimo režimas tinka spausdinant PLA/PETG/TPU medžiagas." msgctxt "air_duct" msgid "Right(Aux)" -msgstr "" +msgstr "Dešinysis (papildomas)" msgctxt "air_duct" msgid "Right(Filter)" -msgstr "" +msgstr "Dešinysis (filtras)" msgctxt "air_duct" msgid "Left(Aux)" -msgstr "" +msgstr "Kairysis (papildomas)" msgid "Hotend" -msgstr "Hotend" +msgstr "Kaitinimo blokas (Hotend)" msgid "Parts" -msgstr "" +msgstr "Detalės" msgid "Aux" msgstr "Papild" msgid "Nozzle1" -msgstr "" +msgstr "Purkštukas 1" msgid "MC Board" -msgstr "" +msgstr "Valdymo plokštė (MC Board)" msgid "Heat" -msgstr "" +msgstr "Kaitinimas" msgid "Fan" msgstr "Ventiliatorius" msgid "Idling..." -msgstr "Laisvinama..." +msgstr "Laukimo režimas..." msgid "Heat the nozzle" msgstr "Įkaitinti purkštuką" @@ -3106,18 +3307,17 @@ msgstr "Įkaitinti purkštuką" msgid "Cut filament" msgstr "Nukirpti giją" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Pull back the current filament" -msgstr "Išstumti atgal dabartinę giją" +msgid "Pull back current filament" +msgstr "Patraukti atgal dabartinę giją" msgid "Push new filament into extruder" msgstr "Įstumti naują giją į ekstruderį" msgid "Grab new filament" -msgstr "Pasirinkti naują giją" +msgstr "Sugriebti naują giją" msgid "Purge old filament" -msgstr "Išmesti seną giją" +msgstr "Išvalyti seną giją" msgid "Confirm extruded" msgstr "Patvirtinti, kad išspausta" @@ -3126,64 +3326,62 @@ msgid "Check filament location" msgstr "Patikrinti gijos padėtį" msgid "The maximum temperature cannot exceed " -msgstr "" +msgstr "Maksimali temperatūra negali viršyti " msgid "The minmum temperature should not be less than " -msgstr "" +msgstr "Minimali temperatūra neturi būti mažesnė nei " msgid "Type to filter..." -msgstr "" +msgstr "Įveskite tekstą filtravimui..." msgid "All" msgstr "Visi" msgid "No selected items..." -msgstr "" +msgstr "Nėra pasirinktų elementų..." msgid "All items selected..." -msgstr "" +msgstr "Visi elementai pažymėti..." msgid "No matching items..." -msgstr "" +msgstr "Nerasta atitinkančių elementų..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Deselect All" -msgstr "Atšaukti visus" +msgstr "Panaikinti viso pasirinkimą" msgid "Select visible" -msgstr "" +msgstr "Pasirinkti matomus" msgid "Deselect visible" -msgstr "" +msgstr "Panaikinti matomų pasirinkimą" msgid "Filter selected" -msgstr "" +msgstr "Filtruoti pasirinktus" msgid "Filter nonSelected" -msgstr "" +msgstr "Filtruoti nepasirinktus" msgid "Simple settings" -msgstr "" +msgstr "Paprasti nustatymai" msgid "Advanced settings" -msgstr "" +msgstr "Sudėtingesni parametrai" msgid "Expert settings" -msgstr "" +msgstr "Eksperto parametrai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Developer mode" msgstr "Kūrėjo režimas" msgid "Launch troubleshoot center" -msgstr "" +msgstr "Atidaryti trikčių šalinimo centrą" msgid "" "All the selected objects are on a locked plate.\n" "Cannot auto-arrange these objects." msgstr "" -"Visi pažymėti objektai yra ant užrakintos plokštės.\n" -"Automatinio išdėstymo šiems objektams atlikti negalima." +"Visi pasirinkti objektai yra užrakintoje spausdinimo plokštėje.\n" +"Šių objektų automatiškai išdėstyti negalima." msgid "No arrangeable objects are selected." msgstr "Nėra pasirinkta jokių tvarkytinų objektų." @@ -3204,19 +3402,23 @@ msgstr "Išdėstymas" msgid "Arranging canceled." msgstr "Išdėstymas atšauktas." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Arranging complete, but some items were not able to be arranged. Reduce spacing and try again." -msgstr "Išdėstymas atliktas, tačiau liko neapdorotų objektų. Sumažinkite tarpus ir pabandykite dar kartą." +msgid "" +"Arranging is done but there are unpacked items. Reduce spacing and try again." +msgstr "" +"Išdėstymas baigtas, tačiau liko nesublokuotų elementų (unpacked). " +"Sumažinkite tarpus ir bandykite dar kartą." msgid "Arranging done." msgstr "Išdėstymas atliktas." -msgid "Arrange failed. Found some exceptions when processing object geometries." +msgid "" +"Arrange failed. Found some exceptions when processing object geometries." msgstr "Išdėstymas nepavyko. Apdorojant objektų geometriją aptiktos išimtys." #, c-format, boost-format msgid "" -"Arrangement ignored the following objects which can't fit into a single bed:\n" +"Arrangement ignored the following objects which can't fit into a single " +"bed:\n" "%s" msgstr "" "Išdėstymas nepaisė šių objektų, kurie netelpa į vieną pagrindą:\n" @@ -3237,13 +3439,13 @@ msgstr "" "Automatinio objektų orientavimo šioje plokštėje atlikti negalima." msgid "Orienting..." -msgstr "Orientuojama..." +msgstr "Nustatoma padėtis..." msgid "Orienting" -msgstr "Orientuojama" +msgstr "Padėties nustatymas" msgid "Orienting canceled." -msgstr "Orientavimas atšauktas." +msgstr "Padėties nustatymas atšauktas." msgid "Filling" msgstr "Užpildoma" @@ -3255,13 +3457,13 @@ msgid "Bed filling done." msgstr "Pagrindo užpildymas atliktas." msgid "Searching for optimal orientation" -msgstr "Optimalios orientacijos paieška" +msgstr "Optimalios padėties paieška" msgid "Orientation search canceled." -msgstr "Orientacijos paieška atšaukta." +msgstr "Padėties paieška atšaukta." msgid "Orientation found." -msgstr "Orientacija rasta." +msgstr "Padėtis rasta." msgid "Logging in" msgstr "Jungiamasi" @@ -3272,25 +3474,32 @@ msgstr "Prisijungti nepavyko" msgid "Please check the printer network connection." msgstr "Prašome patikrinti spausdintuvo kompiuterinio tinklo jungtį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Abnormal print file data: please slice again." -msgstr "Nenormalūs spausdinimo failo duomenys. Prašome susluoksniuoti dar kartą." +msgid "Abnormal print file data. Please slice again." +msgstr "" +"Klaidingi spausdinimo failo duomenys. Paruoškite spausdinimui (slice) iš " +"naujo." msgid "Task canceled." msgstr "Užduotis atšaukta." msgid "Upload task timed out. Please check the network status and try again." -msgstr "Įkėlimo užduotis viršijo laukimo laiką. Prašome patikrinti tinklo būseną ir bandyti iš naujo." +msgstr "" +"Įkėlimo užduotis viršijo laukimo laiką. Prašome patikrinti tinklo būseną ir " +"bandyti iš naujo." msgid "Cloud service connection failed. Please try again." -msgstr "Nepavyko prisijungti prie debesies paslaugos. Prašome bandyti iš naujo." +msgstr "" +"Nepavyko prisijungti prie debesies paslaugos. Prašome bandyti iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Print file not found; please slice again." -msgstr "Nerastas spausdinimo failas. Prašome išsluoksniuoti iš naujo." +msgid "Print file not found. Please slice again." +msgstr "Spausdinimo failas nerastas. Paruoškite spausdinimui (slice) iš naujo." -msgid "The print file exceeds the maximum allowable size (1GB). Please simplify the model and slice again." -msgstr "Spausdinimo failas viršija didžiausią leistiną dydį (1GB). Prašome supaprastinti modelį ir išsluoksniuoti iš naujo." +msgid "" +"The print file exceeds the maximum allowable size (1GB). Please simplify the " +"model and slice again." +msgstr "" +"Spausdinimo failas viršija didžiausią leistiną dydį (1GB). Prašome " +"supaprastinti modelį ir išsluoksniuoti iš naujo." msgid "Failed to send the print job. Please try again." msgstr "Nepavyko išsiųsti spausdinimo užduoties. Prašome bandyti iš naujo." @@ -3298,20 +3507,29 @@ msgstr "Nepavyko išsiųsti spausdinimo užduoties. Prašome bandyti iš naujo." msgid "Failed to upload file to ftp. Please try again." msgstr "Nepavyko failo įkelti į ftp serverį. Prašome pabandyti iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Check the current status of the Bambu Lab server by clicking on the link above." -msgstr "Paspaudę nuorodą viršuje, galite patikrinti aktualią Bambu serverio būseną." +msgid "" +"Check the current status of the bambu server by clicking on the link above." +msgstr "" +"Paspaudę nuorodą viršuje, galite patikrinti aktualią Bambu serverio būseną." -msgid "The size of the print file is too large. Please adjust the file size and try again." -msgstr "Spausdinimo failo dydis per didelis. Prašome pakoreguoti dydį ir bandyti pakartotinai." +msgid "" +"The size of the print file is too large. Please adjust the file size and try " +"again." +msgstr "" +"Spausdinimo failo dydis per didelis. Prašome pakoreguoti dydį ir bandyti " +"pakartotinai." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Print file not found; please slice it again and send it for printing." -msgstr "Nerastas spausdinimo failas. Prašome dar kartą išsluoksniuoti ir išsiųsti spausdinimui." +msgid "Print file not found, please slice it again and send it for printing." +msgstr "" +"Nerastas spausdinimo failas. Prašome dar kartą išsluoksniuoti ir išsiųsti " +"spausdinimui." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Failed to upload print file via FTP. Please check the network status and try again." -msgstr "Nepavyko spausdinimo failo įkelti į FTP serverį. Patikrinkite tinklo būseną ir bandykite dar kartą." +msgid "" +"Failed to upload print file to FTP. Please check the network status and try " +"again." +msgstr "" +"Nepavyko spausdinimo failo įkelti į FTP serverį. Patikrinkite tinklo būseną " +"ir bandykite dar kartą." msgid "Sending print job over LAN" msgstr "Spausdinimo užduotis siunčiama vietiniu tinklu" @@ -3333,11 +3551,13 @@ msgstr "Siunčiama spausdinimo konfigūracija" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the device page in %ss" -msgstr "Sėkmingai išsiųsta. Automatiškai per %s sek. bus pereita į įrenginio puslapį" +msgstr "" +"Sėkmingai išsiųsta. Automatiškai per %s sek. bus pereita į įrenginio puslapį" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "Sėkmingai išsiųsta. Automatiškai per %s sek. bus pereita į kitą puslapį" +msgstr "" +"Sėkmingai išsiųsta. Automatiškai per %s sek. bus pereita į kitą puslapį" #, c-format, boost-format msgid "Access code:%s IP address:%s" @@ -3345,23 +3565,38 @@ msgstr "Prieigos kodas: %s IP adresas: %s" msgid "A Storage needs to be inserted before printing via LAN." msgstr "" +"Prieš spausdinant per vietinį tinklą (LAN), būtina įdėti atminties laikmeną." -msgid "Sending print job over LAN, but the Storage in the printer is abnormal and print-issues may be caused by this." +msgid "" +"Sending print job over LAN, but the Storage in the printer is abnormal and " +"print-issues may be caused by this." msgstr "" +"Spausdinimo užduotis siunčiama vietiniu tinklu (LAN), tačiau spausdintuvo " +"atminties laikmenos veikla yra sutrikusi, todėl gali kilti spausdinimo " +"problemų." -msgid "The Storage in the printer is abnormal. Please replace it with a normal Storage before sending print job to printer." +msgid "" +"The Storage in the printer is abnormal. Please replace it with a normal " +"Storage before sending print job to printer." msgstr "" +"Spausdintuvo atminties laikmenos veikla yra sutrikusi. Pakeiskite ją " +"tvarkinga laikmena prieš siųsdami užduotį į spausdintuvą." -msgid "The Storage in the printer is read-only. Please replace it with a normal Storage before sending print job to printer." +msgid "" +"The Storage in the printer is read-only. Please replace it with a normal " +"Storage before sending print job to printer." msgstr "" +"Spausdintuvo atminties laikmena yra apsaugota nuo įrašymo (tik skaitymui). " +"Pakeiskite ją tvarkinga laikmena prieš siųsdami užduotį į spausdintuvą." msgid "Encountered an unknown error with the Storage status. Please try again." msgstr "" +"Įvyko nežinoma klaida, susijusi su atminties laikmenos būsena. Bandykite dar " +"kartą." msgid "Sending G-code file over LAN" msgstr "Vietiniu tinklu siunčiamas G-kodo failas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Sending G-code file to SD card" msgstr "Į SD kortelę siunčiamas G-kodo failas" @@ -3371,70 +3606,94 @@ msgstr "Sėkmingai išsiųsta. Dabartinis puslapis užsivers po %s sek" msgid "Storage needs to be inserted before sending to printer." msgstr "" +"Prieš siunčiant užduotį į spausdintuvą, būtina įdėti atminties laikmeną." -msgid "Sending G-code file over LAN, but the Storage in the printer is abnormal and print-issues may be caused by this." +msgid "" +"Sending G-code file over LAN, but the Storage in the printer is abnormal and " +"print-issues may be caused by this." msgstr "" +"G-kodo failas siunčiamas vietiniu tinklu (LAN), tačiau spausdintuvo " +"atminties laikmenos veikla yra sutrikusi, todėl gali kilti spausdinimo " +"problemų." -msgid "The Storage in the printer is abnormal. Please replace it with a normal Storage before sending to printer." +msgid "" +"The Storage in the printer is abnormal. Please replace it with a normal " +"Storage before sending to printer." msgstr "" +"Spausdintuvo atminties laikmena yra apsaugota nuo įrašymo (tik skaitymui). " +"Pakeiskite ją tvarkinga laikmena prieš siųsdami failą į spausdintuvą." -msgid "The Storage in the printer is read-only. Please replace it with a normal Storage before sending to printer." +msgid "" +"The Storage in the printer is read-only. Please replace it with a normal " +"Storage before sending to printer." msgstr "" +"The Storage in the printer is read-only. Please replace it with a normal " +"Storage before sending to printer." msgid "Bad input data for EmbossCreateObjectJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „EmbossCreateObjectJob“." msgid "Add Emboss text object" -msgstr "" +msgstr "Pridėti iškiliojo teksto (Emboss) objektą" msgid "Bad input data for EmbossUpdateJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „EmbossUpdateJob“." msgid "Created text volume is empty. Change text or font." -msgstr "" +msgstr "Sukurtas teksto tūris yra tuščias. Pakeiskite tekstą arba šriftą." msgid "Bad input data for CreateSurfaceVolumeJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „CreateSurfaceVolumeJob“." msgid "Bad input data for UseSurfaceJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „UseSurfaceJob“." #. TRN: This is the title of the action appearing in undo/redo stack. #. It is same for Text and SVG. msgid "Emboss attribute change" -msgstr "" +msgstr "Iškilumo (Emboss) atributo keitimas" msgid "Add Emboss text Volume" -msgstr "" +msgstr "Pridėti iškiliojo teksto (Emboss) tūrį" msgid "Font doesn't have any shape for given text." -msgstr "" +msgstr "Šriftas neturi geometrinės formos (shape) pateiktam tekstui." msgid "There is no valid surface for text projection." -msgstr "" +msgstr "Nėra tinkamo paviršiaus teksto projekcijai." msgid "An unexpected error occurred" -msgstr "" +msgstr "Įvyko netikėta klaida" msgid "Thermal Preconditioning for first layer optimization" -msgstr "" +msgstr "Terminis paruošimas (Preconditioning) pirmojo sluoksnio optimizavimui" msgid "Remaining time: Calculating..." -msgstr "" +msgstr "Liko laiko: skaičiuojama..." -msgid "The heated bed's thermal preconditioning helps optimize the first layer print quality. Printing will start once preconditioning is complete." +msgid "" +"The heated bed's thermal preconditioning helps optimize the first layer " +"print quality. Printing will start once preconditioning is complete." msgstr "" +"Šildomo pagrindo terminis paruošimas padeda optimizuoti pirmojo sluoksnio " +"spausdinimo kokybę. Spausdinimas prasidės iškart, kai pasibaigs paruošimo " +"procesas." #, c-format, boost-format msgid "Remaining time: %dmin%ds" -msgstr "" +msgstr "Liko laiko: %d min. %d sek." msgid "Importing SLA archive" msgstr "Importuojamas SLA archyvas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer presets first before importing that SLA archive." -msgstr "SLA archyve nėra jokių išankstinių nustatymų. Prieš importuodami SLA archyvą, pirmiausia suaktyvinkite SLA spausdintuvo nustatymą." +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"SLA archyve nėra jokių profilių. Prieš importuodami šį SLA archyvą, " +"pirmiausia aktyvinkite kurį nors SLA spausdintuvo profilį. / Importuotame " +"SLA archyve nebuvo jokių profilių. Kaip atsarginiai buvo panaudoti " +"dabartiniai SLA profiliai." msgid "Importing canceled." msgstr "Importavimas atšauktas." @@ -3442,15 +3701,19 @@ msgstr "Importavimas atšauktas." msgid "Importing done." msgstr "Importavimas atliktas." -msgid "The imported SLA archive did not contain any presets. The current SLA presets were used as fallback." -msgstr "Importuotame SLA archyve nebuvo jokių išankstinių nustatymų. Dabartiniai SLA nustatymai buvo naudojami kaip atsarginiai." +msgid "" +"The imported SLA archive did not contain any presets. The current SLA " +"presets were used as fallback." +msgstr "" +"Importuotame SLA archyve nebuvo jokių išankstinių nustatymų. Dabartiniai SLA " +"nustatymai buvo naudojami kaip atsarginiai." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "You cannot load an SLA project with a multi-part object on the bed" -msgstr "Negalite įkelti SLA projekto su kelių dalių objektu ant pagrindo" +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "" +"Negalite įkelti SLA projekto, kai ant pagrindo yra kelių detalių objektas." msgid "Please check your object list before preset changing." -msgstr "Prieš keisdami išankstinius nustatymus, patikrinkite objektų sąrašą." +msgstr "Prieš keisdami profilį, patikrinkite objektų sąrašą." msgid "Attention!" msgstr "Dėmesio!" @@ -3473,8 +3736,7 @@ msgstr "Diegiama" msgid "Install failed" msgstr "Diegimas nepavyko" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "License Info" +msgid "Portions copyright" msgstr "Dalys saugomos autorių teisių" msgid "Copyright" @@ -3495,21 +3757,54 @@ msgstr "Orca Slicer sukurtas remiantis PrusaSlicer ir BambuStudio" msgid "Libraries" msgstr "Bibliotekos" -msgid "This software uses open source components whose copyright and other proprietary rights belong to their respective owners" -msgstr "Ši programinė įranga naudoja atvirojo kodo komponentus, kurių autorių teisės ir kitos nuosavybės teisės priklauso atitinkamiems savininkams" +msgid "" +"This software uses open source components whose copyright and other " +"proprietary rights belong to their respective owners" +msgstr "" +"Ši programinė įranga naudoja atvirojo kodo komponentus, kurių autorių teisės " +"ir kitos nuosavybės teisės priklauso atitinkamiems savininkams" #, c-format, boost-format msgid "About %s" msgstr "Apie %s" -msgid "Open-source slicing stands on a tradition of collaboration and attribution. Slic3r, created by Alessandro Ranellucci and the RepRap community, laid the foundation. PrusaSlicer by Prusa Research built on that work, Bambu Studio forked from PrusaSlicer, and SuperSlicer extended it with community-driven enhancements. Each project carried the work of its predecessors forward, crediting those who came before." +msgid "" +"Open-source slicing stands on a tradition of collaboration and attribution. " +"Slic3r, created by Alessandro Ranellucci and the RepRap community, laid the " +"foundation. PrusaSlicer by Prusa Research built on that work, Bambu Studio " +"forked from PrusaSlicer, and SuperSlicer extended it with community-driven " +"enhancements. Each project carried the work of its predecessors forward, " +"crediting those who came before." msgstr "" +"Atvirojo kodo paruošimas spausdinimui (slicing) remiasi bendradarbiavimo ir " +"autorystės pripažinimo tradicija. Pagrindą padėjo „Slic3r“, kurį sukūrė " +"Alessandro Ranellucci ir „RepRap“ bendruomenė. „Prusa Research“ sukurta " +"„PrusaSlicer“ programa buvo pagrįsta šiuo darbu, „Bambu Studio“ atsiskyrė " +"nuo „PrusaSlicer“, o „SuperSlicer“ ją išplėtė, įtraukdama bendruomenės " +"siūlomus patobulinimus. Kiekvienas projektas tęsė savo pirmtakų darbą, " +"nurodydamas ankstesnių kūrėjų indėlį." -msgid "OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, SuperSlicer, and CuraSlicer. But it has since grown far beyond its origins — introducing advanced calibration tools, precise wall and seam control and hundreds of other features." +msgid "" +"OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, " +"SuperSlicer, and CuraSlicer. But it has since grown far beyond its origins — " +"introducing advanced calibration tools, precise wall and seam control and " +"hundreds of other features." msgstr "" +"„OrcaSlicer“ buvo sukurtas vadovaujantis ta pačia dvasia, remiantis " +"„PrusaSlicer“, „BambuStudio“, „SuperSlicer“ ir „CuraSlicer“ programomis. " +"Tačiau nuo to laiko jis smarkiai išsiplėtė ir dabar siūlo pažangius " +"kalibravimo įrankius, tikslų sienelių ir siūlių valdymą bei šimtus kitų " +"funkcijų." -msgid "Today, OrcaSlicer is the most widely used and actively developed open-source slicer in the 3D printing community. Many of its innovations have been adopted by other slicers, making it a driving force for the entire industry." +msgid "" +"Today, OrcaSlicer is the most widely used and actively developed open-source " +"slicer in the 3D printing community. Many of its innovations have been " +"adopted by other slicers, making it a driving force for the entire industry." msgstr "" +"Šiandien „OrcaSlicer“ yra plačiausiai naudojama ir aktyviausiai tobulinama " +"atvirojo kodo paruošimo spausdinimui (slicer) programa 3D spausdinimo " +"bendruomenėje.. Daugelis jos naujovių buvo perimtos kitų pjaustymo programų, " +"todėl ji tapo visos pramonės varomąja jėga." msgid "Version" msgstr "Versija" @@ -3534,32 +3829,33 @@ msgid "max" msgstr "maks" msgid "min" -msgstr "" +msgstr "min" #, boost-format msgid "The input value should be greater than %1% and less than %2%" msgstr "Įvesties reikšmė turi būti didesnė nei %1% ir mažesnė nei %2%" msgid "SN" -msgstr "" +msgstr "SN" msgid "Factors of Flow Dynamics Calibration" -msgstr "Dinaminio srauto kalibravimo veiksniai" +msgstr "Srauto dinamikos kalibravimo koeficientai" msgid "PA Profile" -msgstr "PA sąranka" +msgstr "PA profilis" msgid "Factor K" -msgstr "Faktorius K" +msgstr "Koeficientas K" msgid "Factor N" -msgstr "Faktorius N" +msgstr "Koeficientas N" msgid "Setting AMS slot information while printing is not supported" msgstr "Negalima pakeisti AMS angos informacijos kol vyksta spausdinimas" msgid "Setting Virtual slot information while printing is not supported" -msgstr "Negalima pakeisti virtualios angos informacijos kol vyksta spausdinimas" +msgstr "" +"Negalima pakeisti virtualios angos informacijos kol vyksta spausdinimas" msgid "Are you sure you want to clear the filament information?" msgstr "Ar jūs tikrai norite išvalyti gijos informaciją?" @@ -3576,9 +3872,13 @@ msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)" msgstr "Įveskite tinkamą reikšmę (K %.1f~%.1f, N %.1f~%.1f)" msgid "" -"The nozzle flow is not set. Please set the nozzle flow rate before editing the filament.\n" +"The nozzle flow is not set. Please set the nozzle flow rate before editing " +"the filament.\n" "'Device -> Print parts'" msgstr "" +"Purkštuko srautas nenustatytas. Nustatykite purkštuko srauto greitį prieš " +"redaguodami giją\n" +"„Įrenginys -> Detalių spausdinimas“" msgid "AMS" msgstr "AMS" @@ -3589,19 +3889,24 @@ msgstr "Kita spalva" msgid "Custom Color" msgstr "Pasirinktinė spalva" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Dynamic flow calibration" msgstr "Dinaminis srauto kalibravimas" -msgid "The nozzle temp and max volumetric speed will affect the calibration results. Please fill in the same values as the actual printing. They can be auto-filled by selecting a filament preset." -msgstr "Purkštuko temperatūra ir didžiausias tūrinis greitis įtakoja kalibravimo rezultatus. Prašome įvesti tokias pat reikšmes, kaip ir įprastam spausdinime. Jas galima automatiškai užpildyti pasirinkus gijų parametrų sąranką." +msgid "" +"The nozzle temp and max volumetric speed will affect the calibration " +"results. Please fill in the same values as the actual printing. They can be " +"auto-filled by selecting a filament preset." +msgstr "" +"Purkštuko temperatūra ir maksimalus tūrinis greitis turi įtakos kalibravimo " +"rezultatams. Įveskite tokias pačias reikšmes, kokios bus naudojamos tikrojo " +"spausdinimo metu. Jas galima užpildyti automatiškai, pasirinkus gijos " +"profilį." msgid "Nozzle Diameter" -msgstr "Purkštuko diametras" +msgstr "Purkštuko skersmuo" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Plate Type" -msgstr "Plokštės tipas" +msgid "Bed Type" +msgstr "Pagrindo tipas" msgid "Nozzle temperature" msgstr "Purkštuko temperatūra" @@ -3621,22 +3926,26 @@ msgstr "Pagrindo temperatūra" msgid "mm³" msgstr "mm³" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Start" +msgid "Start calibration" msgstr "Pradėti kalibravimą" msgid "Next" -msgstr "Kitas" +msgstr "Toliau" -msgid "Calibration completed. Please find the most uniform extrusion line on your hot bed like the picture below, and fill the value on its left side into the factor K input box." -msgstr "Kalibravimas baigtas. Raskite tolydžiausiai išspausdintą liniją ant kaitinamo pagrindo, (tokią kaip paveikslėlyje žemiau) ir įveskite kairėje pusėje esančią reikšmę į faktoriaus K įvesties laukelį." +msgid "" +"Calibration completed. Please find the most uniform extrusion line on your " +"hot bed like the picture below, and fill the value on its left side into the " +"factor K input box." +msgstr "" +"Kalibravimas baigtas. Raskite tolygiausią ekstruzijos liniją ant kaitinamo " +"pagrindo (kaip parodyta paveikslėlyje žemiau) ir įveskite jos kairėje pusėje " +"esančią reikšmę į koeficiento K įvesties laukelį." msgid "Save" msgstr "Išsaugoti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Back" -msgstr "Gale" +msgid "Last Step" +msgstr "Atgal" msgid "Example" msgstr "Pavyzdys" @@ -3652,41 +3961,55 @@ msgstr "Kalibravimas baigtas" msgid "%s does not support %s" msgstr "%s nepalaiko %s" +msgid "Dynamic flow Calibration" +msgstr "Dinaminio srauto kalibravimas" + msgid "Step" msgstr "Žingsnis" msgid "Unmapped" -msgstr "" +msgstr "Nepriskirta" msgid "" "Upper half area: Original\n" -"Lower half area: The filament from original project will be used when unmapped.\n" +"Lower half area: The filament from original project will be used when " +"unmapped.\n" "And you can click it to modify" msgstr "" +"Viršutinė srities pusė: originali\n" +"Apatinė srities pusė: kai nepriskirta, bus naudojama gija iš originalaus " +"projekto.\n" +"Galite spustelėti, kad pakeistumėte" msgid "" "Upper half area: Original\n" "Lower half area: Filament in AMS\n" "And you can click it to modify" msgstr "" +"Viršutinė srities pusė: originali\n" +"Apatinė srities pusė: gija esanti AMS\n" +"Galite spustelėti, kad pakeistumėte" msgid "" "Upper half area: Original\n" "Lower half area: Filament in AMS\n" "And you cannot click it to modify" msgstr "" +"Viršutinė srities pusė: originali\n" +"Apatinė srities pusė: gija esanti AMS\n" +"Spustelėti pakeitimui negalite" msgid "AMS Slots" msgstr "AMS angos" msgid "Please select from the following filaments" -msgstr "" +msgstr "Pasirinkite iš šių gijų" msgid "Select filament that installed to the left nozzle" -msgstr "" +msgstr "Pasirinkite giją, įstatytą į kairįjį purkštuką" msgid "Select filament that installed to the right nozzle" -msgstr "" +msgstr "Pasirinkite giją, įstatytą į dešinįjį purkštuką" msgid "Left AMS" msgstr "Kairysis AMS" @@ -3695,101 +4018,131 @@ msgid "External" msgstr "Išorinis" msgid "Reset current filament mapping" -msgstr "" +msgstr "Atkurti dabartinį gijų priskyrimą" msgid "Right AMS" msgstr "Dešinysis AMS" msgid "Left Nozzle" -msgstr "" +msgstr "Kairysis purkštukas" msgid "Right Nozzle" -msgstr "" +msgstr "Dešinysis purkštukas" msgid "Nozzle" msgstr "Purkštukas" #, c-format, boost-format -msgid "Note: the filament type(%s) does not match with the filament type(%s) in the slicing file. If you want to use this slot, you can install %s instead of %s and change slot information on the 'Device' page." +msgid "" +"Note: the filament type(%s) does not match with the filament type(%s) in the " +"slicing file. If you want to use this slot, you can install %s instead of %s " +"and change slot information on the 'Device' page." msgstr "" +"Pastaba: gijos tipas (%s) nesutampa su gijos tipu (%s) paruoštame " +"spausdinimo faile. Jei norite naudoti šią angą, vietoj %s galite įstatyti %s " +"ir pakeisti angos informaciją puslapyje „Įrenginys“." #, c-format, boost-format -msgid "Note: the slot is empty or undefined. If you want to use this slot, you can install %s and change slot information on the 'Device' page." +msgid "" +"Note: the slot is empty or undefined. If you want to use this slot, you can " +"install %s and change slot information on the 'Device' page." msgstr "" +"Pastaba: anga yra tuščia arba neapibrėžta. Jei norite naudoti šią angą, " +"galite įstatyti %s ir pakeisti angos informaciją puslapyje „Įrenginys“." msgid "Note: Only filament-loaded slots can be selected." -msgstr "" +msgstr "Pastaba: galima pasirinkti tik tas angas, į kurias yra įkelta gija." msgid "Enable AMS" msgstr "Įjungti AMS" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Print with filament in the AMS" +msgid "Print with filaments in the AMS" msgstr "Spausdinti su gijomis iš AMS" msgid "Disable AMS" msgstr "Išjungti AMS" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Print with filament on external spool" -msgstr "Spausdinti su ant dėžės sumontuota gija" +msgid "Print with the filament mounted on the back of chassis" +msgstr "Spausdinti naudojant giją, sumontuotą korpuso galinėje dalyje" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please change the desiccant when it is too wet. The indicator may not represent accurately in following cases: when the lid is open or the desiccant pack is changed. It takes a few hours to absorb the moisture, and low temperatures also slow down the process." -msgstr "Pasikeiskite drėgmės sugėriklį, kai jis sudrėgsta. Indikatorius gali veikti netiksliai šiais atvejais: kai atidarytas dangtelis, arba pakeistas drėgmės sugėriklio pakelis. Drėgmės sugėrimui reikia keleto valandų. Žema temperatūra taip pat sulėtina šį procesą." +msgid "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " +"temperatures also slow down the process." +msgstr "" +"Pakeiskite drėgmės sugėriklį (sausiklį), kai jis per daug sudrėgsta. " +"Indikatoriaus rodmenys gali būti netikslūs šiais atvejais: kai atidarytas " +"dangtis arba pakeistas drėgmės sugėriklio paketas. Drėgmei sugerti reikia " +"kelių valandų, o žema temperatūra šį procesą dar labiau sulėtina." -msgid "Configure which AMS slot should be used for a filament used in the print job." -msgstr "Sukonfigūruokite, kuris AMS lizdas turėtų būti naudojamas spausdinimo užduotyje naudojamai gijai." +msgid "" +"Configure which AMS slot should be used for a filament used in the print job." +msgstr "" +"Konfigūruokite, kuri AMS anga turi būti naudojama spausdinimo užduoties " +"gijai." msgid "Filament used in this print job" msgstr "Šiame spausdinime naudojama gija" msgid "AMS slot used for this filament" -msgstr "Šiam spausdinimui naudojamas AMS lizdas" +msgstr "Šiai gijai naudojama AMS anga" msgid "Click to select AMS slot manually" -msgstr "Paspauskite, norėdami rankiniu būdu pasirinkti AMS lizdą" +msgstr "Spustelėkite, kad pasirinktumėte AMS angą rankiniu būdu" msgid "Do not Enable AMS" msgstr "Nejungti AMS" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Print using filament on external spool." -msgstr "Spausdinkite naudodami išorinėje ritėje esančią giją" +msgid "Print using materials mounted on the back of the case" +msgstr "Spausdinti naudojant medžiagas, sumontuotas korpuso galinėje dalyje" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Print with filament in AMS" +msgid "Print with filaments in AMS" msgstr "Spausdinti AMS gijomis" +msgid "Print with filaments mounted on the back of the chassis" +msgstr "Spausdinti naudojant gijas, sumontuotas korpuso galinėje dalyje" + msgid "Left" msgstr "Kairė" msgid "Right" msgstr "Dešinė" -msgid "When the current material run out, the printer will continue to print in the following order." -msgstr "Pasibaigus esamai medžiagai, spausdintuvas toliau spausdins šia tvarka." +msgid "" +"When the current material run out, the printer will continue to print in the " +"following order." +msgstr "" +"Pasibaigus esamai medžiagai, spausdintuvas toliau spausdins šia tvarka." msgid "Identical filament: same brand, type and color." -msgstr "" +msgstr "Identiška gija: tas pats gamintojas, tipas ir spalva." msgid "Group" msgstr "Grupė" -msgid "When the current material runs out, the printer would use identical filament to continue printing." +msgid "" +"When the current material runs out, the printer would use identical filament " +"to continue printing." msgstr "" +"Kai pasibaigs dabartinė medžiaga, spausdintuvas naudos identišką giją " +"spausdinimui tęsti." msgid "The printer does not currently support auto refill." msgstr "Šiuo metu spausdintuvas nepalaiko automatinio papildymo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "AMS filament backup is not enabled; please enable it in the AMS settings." +msgid "" +"AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "AMS atsarginė gija neįjungta, įjunkite ją AMS nustatymuose." msgid "" -"When the current filament runs out, the printer will use identical filament to continue printing.\n" +"When the current filament runs out, the printer will use identical filament " +"to continue printing.\n" "*Identical filament: same brand, type and color." msgstr "" +"Kai pasibaigs dabartinė gija, spausdintuvas naudos identišką giją " +"spausdinimui tęsti.\n" +"*Identiška gija: tas pats gamintojas, tipas ir spalva." msgid "DRY" msgstr "SAUSA" @@ -3803,65 +4156,101 @@ msgstr "AMS nustatymai" msgid "Insertion update" msgstr "Įdėklo atnaujinimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament spool. This takes about 20 seconds." -msgstr "Įdėjus naują Bambu Lab giją, AMS automatiškai nuskaitys jos informaciją. Tai trunka apie 20 sekundžių." +msgid "" +"The AMS will automatically read the filament information when inserting a " +"new Bambu Lab filament. This takes about 20 seconds." +msgstr "" +"Įdėjus naują Bambu Lab giją, AMS automatiškai nuskaitys jos informaciją. Tai " +"trunka apie 20 sekundžių." -msgid "Note: if a new filament is inserted during printing, the AMS will not automatically read any information until printing is completed." -msgstr "Pastaba: jei spausdinimo metu įdedama nauja gija, AMS automatiškai nenuskaitys jokios informacijos, kol spausdinimas nebus baigtas." +msgid "" +"Note: if a new filament is inserted during printing, the AMS will not " +"automatically read any information until printing is completed." +msgstr "" +"Pastaba: jei spausdinimo metu įdedama nauja gija, AMS automatiškai " +"nenuskaitys jokios informacijos, kol spausdinimas nebus baigtas." -msgid "When inserting a new filament, the AMS will not automatically read its information, leaving it blank for you to enter manually." -msgstr "Įdėjus naują giją, AMS automatiškai nenuskaitys jos informacijos, todėl ją reikės įvesti rankiniu būdu." +msgid "" +"When inserting a new filament, the AMS will not automatically read its " +"information, leaving it blank for you to enter manually." +msgstr "" +"Įdėjus naują giją, AMS automatiškai nenuskaitys jos informacijos, todėl ją " +"reikės įvesti rankiniu būdu." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update on startup" -msgstr "Įjungimo metu atnaujinimas" +msgid "Power on update" +msgstr "Atnaujinimas įjungiant maitinimą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The AMS will automatically read the information of inserted filament on start-up. It will take about 1 minute. The reading process will rotate the filament spools." -msgstr "AMS paleidimo metu automatiškai nuskaitys įdėts gijos informaciją. Tai užtruks apie 1 minutę. Nuskaitymo procesas sukels gijos ritės sukimąsi." +msgid "" +"The AMS will automatically read the information of inserted filament on " +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." +msgstr "" +"Paleidimo metu AMS automatiškai nuskaitys įdėtos gijos informaciją. Tai " +"užtruks apie 1 minutę. Nuskaitymo proceso metu bus pasukamos gijos ritės." -msgid "The AMS will not automatically read information from inserted filament during startup and will continue to use the information recorded before the last shutdown." -msgstr "Paleidimo metu AMS automatiškai nenuskaitys įdėtos gijos informacijos ir toliau naudosis prieš paskutinį išjungimą įrašyta informacija." +msgid "" +"The AMS will not automatically read information from inserted filament " +"during startup and will continue to use the information recorded before the " +"last shutdown." +msgstr "" +"Paleidimo metu AMS automatiškai nenuskaitys įdėtos gijos informacijos ir " +"toliau naudosis prieš paskutinį išjungimą įrašyta informacija." msgid "Update remaining capacity" -msgstr "Atnaujinti likusį gijos kiekį" +msgstr "Įvertinti likusį gijos kiekį" -msgid "AMS will attempt to estimate the remaining capacity of the Bambu Lab filaments." -msgstr "" +msgid "" +"AMS will attempt to estimate the remaining capacity of the Bambu Lab " +"filaments." +msgstr "AMS bandys įvertinti likusį „Bambu Lab“ gijų kiekį (talpą)." msgid "AMS filament backup" msgstr "AMS atsarginė gija" -msgid "AMS will continue to another spool with matching filament properties automatically when current filament runs out." -msgstr "Kai baigsis dabartinė gija, AMS automatiškai tęs darbą kitoje ritėje su tokiomis pačiomis gijos savybėmis." +msgid "" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." +msgstr "" +"Kai baigsis dabartinė gija, AMS automatiškai tęs darbą kitoje ritėje su " +"tokiomis pačiomis gijos savybėmis." msgid "Air Printing Detection" -msgstr "Filamento išspaudimo nebuvimo aptikimas" +msgstr "Spausdinimo ore (Air Printing) aptikimas" -msgid "Detects clogging and filament grinding, halting printing immediately to conserve time and filament." -msgstr "Aptikusi užsikimšimą arba gijos gremžimą, taupant laiką ir giją, sistema iš karto sustabdo spausdinimą." +msgid "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." +msgstr "" +"Aptikusi užsikimšimą arba gijos gremžimą, taupant laiką ir giją, sistema iš " +"karto sustabdo spausdinimą." msgid "AMS Type" -msgstr "" +msgstr "AMS tipas" msgid "Switching" -msgstr "" +msgstr "Perjungiama" msgid "The printer is busy and cannot switch AMS type." -msgstr "" +msgstr "Spausdintuvas užimtas, negalima pakeisti AMS tipo." msgid "Please unload all filament before switching." -msgstr "" +msgstr "Prieš perjungdami, išimkite (unload) visas gijas." msgid "AMS type switching needs firmware update, taking about 30s. Switch now?" msgstr "" +"Norint pakeisti AMS tipą, reikia atnaujinti aparatinę programinę įrangą " +"(firmware), tai užtruks apie 30 sek. Perjungti dabar?" msgid "Arrange AMS Order" -msgstr "" +msgstr "Tvarkyti AMS eiliškumą" -msgid "AMS ID will be reset. If you want a specific ID sequence, disconnect all AMS before resetting and connect them in the desired order after resetting." +msgid "" +"AMS ID will be reset. If you want a specific ID sequence, disconnect all AMS " +"before resetting and connect them in the desired order after resetting." msgstr "" +"AMS ID bus nustatyti iš naujo. Jei norite tam tikros ID sekos, prieš " +"nustatymą iš naujo atjunkite visus AMS įrenginius, o po jo prijunkite juos " +"norima tvarka." msgid "File" msgstr "Failas" @@ -3869,49 +4258,67 @@ msgstr "Failas" msgid "Calibration" msgstr "Kalibravimas" -msgid "Failed to download the plug-in. Please check your firewall settings and VPN software and retry." -msgstr "Nepavyko atsisiųsti papildinio. Patikrinkite savo užkardos nustatymus ir VPN programinę įrangą, ir bandykite dar kartą." +msgid "" +"Failed to download the plug-in. Please check your firewall settings and VPN " +"software and retry." +msgstr "" +"Nepavyko atsisiųsti papildinio. Patikrinkite savo užkardos nustatymus ir VPN " +"programinę įrangą, ir bandykite dar kartą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Failed to install the plug-in. The plug-in file may be in use. Please restart OrcaSlicer and try again. Also check whether it is blocked or has been deleted by anti-virus software." -msgstr "Failed to install the plug-in. The plug-in file may be in use. Please restart OrcaSlicer and try again. Also check whether it is blocked or deleted by anti-virus software." +msgid "" +"Failed to install the plug-in. The plug-in file may be in use. Please " +"restart OrcaSlicer and try again. Also check whether it is blocked or " +"deleted by anti-virus software." +msgstr "" +"Nepavyko įdiegti papildinio. Papildinio failas gali būti naudojamas. " +"Paleiskite „OrcaSlicer“ iš naujo ir bandykite dar kartą. Taip pat " +"patikrinkite, ar jo neužblokavo arba neištrynė antivirusinė programa." msgid "Click here to see more info" -msgstr "spustelėkite norėdami gauti daugiau informacijos" +msgstr "Spustelėkite norėdami gauti daugiau informacijos" -msgid "The network plug-in was installed but could not be loaded. Please restart the application." +msgid "" +"The network plug-in was installed but could not be loaded. Please restart " +"the application." msgstr "" +"Tinklo papildinys įdiegtas, tačiau jo nepavyko įkelti. Paleiskite programą " +"iš naujo." msgid "Restart Required" -msgstr "" +msgstr "Būtina paleisti iš naujo" msgid "Please home all axes (click " msgstr "Prašome sugrąžinti visas ašis į pradinę padėtį (spauskite " -msgid ") to locate the toolhead's position. This prevents device moving beyond the printable boundary and causing equipment wear." -msgstr ") norėdami nustatyti spausdinimo galvutės padėtį. Taip išvengiama, kad įrenginys judėtų už spausdinimo srities ir dėvėtųsi." +msgid "" +") to locate the toolhead's position. This prevents device moving beyond the " +"printable boundary and causing equipment wear." +msgstr "" +") norėdami nustatyti spausdinimo galvutės padėtį. Taip išvengiama, kad " +"įrenginys judėtų už spausdinimo srities ir dėvėtųsi." msgid "Go Home" msgstr "Grįžti į pradinę padėtį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "An error occurred. The system may have run out of memory, or a bug may have occurred." -msgstr "Įvyko klaida. Sistemoje galėjo pritrūkti atminties arba įvyko programos klaida" +msgid "" +"A error occurred. Maybe memory of system is not enough or it's a bug of the " +"program" +msgstr "" +"Įvyko klaida. Sistemoje galėjo pritrūkti atminties arba įvyko programos " +"klaida" #, boost-format msgid "A fatal error occurred: \"%1%\"" msgstr "Įvyko lemtinga klaida: „%1%“" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please save your project and restart the application." +msgid "Please save project and restart the program." msgstr "Išsaugokite projektą ir iš naujo paleiskite programą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Processing G-Code from previous file…" +msgid "Processing G-code from Previous file..." msgstr "Vykdomas G-kodas iš prieš tai buvusio failo..." msgid "Slicing complete" -msgstr "Sluoksniavimas baigtas" +msgstr "Paruošimas spausdinimui baigtas" msgid "Access violation" msgstr "Prieigos pažeidimas" @@ -3926,7 +4333,7 @@ msgid "Overflow" msgstr "Perpildymas" msgid "Underflow" -msgstr "Perteklius" +msgstr "Nepakankamas užpildymas" msgid "Floating reserved operand" msgstr "Slankusis rezervuotas operandas" @@ -3945,34 +4352,53 @@ msgstr "Eksportuojant G kodą įvyko nežinoma klaida." #, boost-format msgid "" -"Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?\n" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" "Error message: %1%" msgstr "" -"Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą. Gal draudžiama įrašinėti į SD kortelę?\n" +"Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą. Gal draudžiama " +"įrašinėti į SD kortelę?\n" "Klaidos pranešimas: %1%" #, boost-format -msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." -msgstr "Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą. Gali kilti problemų dėl tikslinio įrenginio. Bandykite eksportuoti dar kartą arba naudokite kitą įrenginį. Sugadintas išvesties G-kodas yra %1%.tmp." +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" +"Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą. Gali kilti " +"problemų dėl tikslinio įrenginio. Bandykite eksportuoti dar kartą arba " +"naudokite kitą įrenginį. Sugadintas išvesties G-kodas yra %1%.tmp." #, boost-format -msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." -msgstr "Nepavyko pervardyti G-kodo nukopijavus į pasirinktą aplanką. Dabartinis kelias yra %1%.tmp. Bandykite eksportuoti dar kartą." +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" +"Nepavyko pervardyti G-kodo nukopijavus į pasirinktą aplanką. Dabartinis " +"kelias yra %1%.tmp. Bandykite eksportuoti dar kartą." #, boost-format -msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." -msgstr "Laikinojo G-kodo kopijavimas baigtas, bet pradinio kodo, esančio %1%, nepavyko atidaryti tikrinant kopiją. Išvesties G-kodas yra %2%.tmp." +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" +"Laikinojo G-kodo kopijavimas baigtas, bet pradinio kodo, esančio %1%, " +"nepavyko atidaryti tikrinant kopiją. Išvesties G-kodas yra %2%.tmp." #, boost-format -msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." -msgstr "Laikinojo G-kodo kopijavimas baigtas, bet eksportuoto kodo nepavyko atidaryti tikrinant kopiją. Išvesties G-kodas yra %1%.tmp." +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" +"Laikinojo G-kodo kopijavimas baigtas, bet eksportuoto kodo nepavyko " +"atidaryti tikrinant kopiją. Išvesties G-kodas yra %1%.tmp." #, boost-format msgid "G-code file exported to %1%" msgstr "G-kodo failas eksportuotas į %1%" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Unknown error with G-code export" +msgid "Unknown error when exporting G-code." msgstr "Nežinoma G kodo eksporto klaida." #, boost-format @@ -3985,37 +4411,45 @@ msgstr "" "Klaidos pranešimas: %1%.\n" "Šaltinio failas: %2%." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Copying of the temporary G-code to the output G-code failed." +msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą" #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" -msgstr "Planuojamas įkėlimas į „%1%“. Žr. Langas -> Tinklinio spausdinimo įkėlimo eilė" +msgstr "" +"Planuojamas įkėlimas į „%1%“. Žr. Langas -> Serverio įkėlimų eilė (Print " +"Host Upload Queue)" msgid "Origin" -msgstr "Pradžia" +msgstr "Koordinačių pradžia (Origin)" msgid "Size in X and Y of the rectangular plate." msgstr "Stačiakampės plokštės dydis X ir Y." -msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." -msgstr "0,0 G-kodo koordinatės atstumas nuo priekinio kairiojo stačiakampio kampo." +msgid "" +"Distance of the 0,0 G-code coordinate from the front left corner of the " +"rectangle." +msgstr "" +"0,0 G-kodo koordinatės atstumas nuo priekinio kairiojo stačiakampio kampo." -msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." -msgstr "Spausdinimo pagrindo skersmuo. Daroma prielaida, kad pradžia (0,0) yra centre." +msgid "" +"Diameter of the print bed. It is assumed that origin (0,0) is located in the " +"center." +msgstr "" +"Spausdinimo pagrindo skersmuo. Daroma prielaida, kad pradžia (0,0) yra " +"centre." msgid "Rectangular" msgstr "Stačiakampis" msgid "Circular" -msgstr "Apvalus" +msgstr "Apskritas" msgid "Load shape from STL..." msgstr "Įkelti formą iš STL..." msgid "Settings" -msgstr "Nustatymai" +msgstr "Parametrai" msgid "Remove" msgstr "Pašalinti" @@ -4032,19 +4466,18 @@ msgstr "Pasirinkite STL failą, iš kurio norite importuoti pagrindo formą:" msgid "Invalid file format." msgstr "Netinkamas failo formatas." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Error: invalid model" +msgid "Error! Invalid model" msgstr "Klaida! Netinkamas modelis" msgid "The selected file contains no geometry." msgstr "Pasirinktame faile nėra geometrijos." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The selected file contains several disjointed areas. This is not supported." +msgid "" +"The selected file contains several disjoint areas. This is not supported." msgstr "Pasirinktame faile yra keletas nesusijusių sričių. Tai nepalaikoma." msgid "Choose a file to import bed texture from (PNG/SVG):" -msgstr "Pasirinti failą, iš kurio norite importuoti pagrindo tekstūrą (PNG / SVG):" +msgstr "Pasirinkite failą pagrindo tekstūros importavimui (PNG / SVG):" msgid "Choose an STL file to import bed model from:" msgstr "Pasirinkite STL failą, iš kurio norite importuoti pagrindo modelį:" @@ -4055,66 +4488,73 @@ msgstr "Pagrindo forma" #, c-format, boost-format msgid "A minimum temperature above %d℃ is recommended for %s.\n" msgstr "" +"Medžiagai „%2$s“ rekomenduojama minimali temperatūra, aukštesnė nei %1$d ℃.\n" +"\n" #, c-format, boost-format msgid "A maximum temperature below %d℃ is recommended for %s.\n" msgstr "" +"Medžiagai „%2$s“ rekomenduojama maksimali temperatūra, žemesnė nei %1$d ℃.\n" +"\n" -msgid "The recommended minimum temperature cannot be higher than the recommended maximum temperature.\n" -msgstr "Rekomenduojama minimali temperatūra negali būti aukštesnė už rekomenduojamą maksimalią temperatūrą.\n" +msgid "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" +msgstr "" +"Rekomenduojama minimali temperatūra negali būti aukštesnė už rekomenduojamą " +"maksimalią temperatūrą.\n" msgid "Please check.\n" msgstr "Prašome patikrinti.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"The nozzle may become clogged when the temperature is out of the recommended range.\n" -"Please make sure whether to use this temperature to print.\n" +"Nozzle may be blocked when the temperature is out of recommended range.\n" +"Please make sure whether to use the temperature to print.\n" "\n" msgstr "" -"Spausdinimo galvutė gali užsikimšti, jei temperatūra nėra rekomenduojamose ribose.\n" -"Pasitikrinkite, ar tikrai norite spausdinti šia temperatūra.\n" +"Jei temperatūra viršija rekomenduojamas ribas, purkštukas (nozzle) gali " +"užsikimšti.\n" +"Įsitikinkite, ar tikrai norite spausdinti pasirinkta temperatūra.\n" "\n" #, c-format, boost-format -msgid "The recommended nozzle temperature for this filament type is [%d, %d] degrees Celsius." -msgstr "Rekomenduojama šio tipo gijos spausdinimo temperatūra yra nuo %d iki %d laipsnių Celsijaus." - -msgid "Adaptive Pressure Advance model validation failed:\n" +msgid "" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" +"Rekomenduojama šio tipo gijos purkštuko temperatūra yra [%d, %d] laipsnių " +"Celsijaus." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Too small max volumetric speed.\n" -"Value was reset to 0.5" +"Reset to 0.5." msgstr "" "Per mažas maksimalus tūrinis greitis.\n" -"Atstatyta į 0,5." - -# TODO: Review, changed by lang refactor. PR 14254 -#, c-format, boost-format -msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" -msgstr "Dabartinė kameros temperatūra yra aukštesnė už saugią medžiagos temperatūrą, dėl to medžiaga gali suminkštėti ir užkimšti spausdinimo galvutę. Maksimali saugi medžiagos temperatūra yra %d laipsnių Celsijaus" +"Nustatoma iš naujo į 0,5." #, c-format, boost-format -msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." -msgstr "" - -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"Layer height too small\n" -"It has been reset to 0.2" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" +msgstr "" +"Dabartinė kameros temperatūra yra aukštesnė už saugią medžiagos temperatūrą, " +"dėl to medžiaga gali suminkštėti ir užkimšti purkštuką. Maksimali saugi " +"medžiagos temperatūra yra %d." + +msgid "" +"Too small layer height.\n" +"Reset to 0.2." msgstr "" "Per mažas sluoksnio aukštis.\n" -"Atstatyta į 0,2." +"Nustatoma iš naujo į 0,2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"Ironing spacing too small\n" -"It has been reset to 0.1" +"Too small ironing spacing.\n" +"Reset to 0.1." msgstr "" "Per mažas lyginimo tarpas.\n" -"Atstatyta į 0,1." +"Nustatoma iš naujo į 0,1." msgid "" "Zero initial layer height is invalid.\n" @@ -4123,57 +4563,68 @@ msgid "" msgstr "" "Nulinis pradinio sluoksnio aukštis yra netinkamas.\n" "\n" -"Pirmojo sluoksnio aukštis bus atstatytas į 0,2." +"Pirmojo sluoksnio aukštis bus nustatytas iš naujo į 0,2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"This setting is only used for tuning model size by small amounts.\n" -"For example, when the model size has small errors or when tolerances are incorrect. For large adjustments, please use the model scale function.\n" +"This setting is only used for model size tunning with small value in some " +"cases.\n" +"For example, when model size has small error and hard to be assembled.\n" +"For large size tuning, please use model scale function.\n" "\n" "The value will be reset to 0." msgstr "" -"Šis nustatymas naudojamas tik nedideliu mastu koreguoti modelio dydį tam tikrais atvejais.\n" +"Šis parametras kai kuriais atvejais naudojamas tik nedideliam modelio " +"matmenų tikslinimui (tuning).\n" "Pavyzdžiui, kai modelio dydis turi nedidelę paklaidą ir jį sunku surinkti.\n" "Didelio dydžio koregavimui naudokite modelio mastelio keitimo funkciją.\n" "\n" -"Ši vertė bus atstatyta į 0." +"Reikšmė bus nustatyta iš naujo į 0." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"The elephant foot compensation value is too large.\n" -"If there are significant elephant foot issues, please check other settings.\n" -"The bed temperature may be too high, for example.\n" +"Too large elephant foot compensation is unreasonable.\n" +"If really have serious elephant foot effect, please check other settings.\n" +"For example, whether bed temperature is too high.\n" "\n" "The value will be reset to 0." msgstr "" -"Per didelė dramblio pėdos kompensacija yra nepagrįsta.\n" -"Jei iš tikrųjų pasireiškia rimtas dramblio pėdos efektas, patikrinkite kitus nustatymus.\n" +"Per didelė „dramblio pėdos“ (Elephant foot) kompensacija yra nepagrįsta.\n" +"Jei tikrai susiduriate su stipriu „dramblio pėdos“ efektu, patikrinkite " +"kitus parametrus.\n" "Pavyzdžiui, ar pagrindo temperatūra nėra per aukšta.\n" "\n" -"Reikšmė bus atstatyta į 0." +"Nustatoma iš naujo į 0." -msgid "Alternate extra wall does't work well when ensure vertical shell thickness is set to All." -msgstr "Papildoma alternatyvi sienelė neveikia gerai, kai vertikalaus apvalkalo storis nustatytas į Visi." +msgid "" +"Alternate extra wall does't work well when ensure vertical shell thickness " +"is set to All." +msgstr "" +"Alternatyvi papildoma sienelė veikia prastai, kai vertikalaus apvalkalo " +"storio užtikrinimas nustatytas į „Visi“." msgid "" "Change these settings automatically?\n" -"Yes - Change ensure vertical shell thickness to Moderate and enable alternate extra wall\n" +"Yes - Change ensure vertical shell thickness to Moderate and enable " +"alternate extra wall\n" "No - Don't use alternate extra wall" msgstr "" "Automatiškai pakeisti šiuos nustatymus?\n" -"Taip - pakeiskite vertikalaus apvalkalo storį į vidutinį ir įjunkite pakaitinę papildomą sienelę\n" -"Ne - nenaudoti alternatyvios papildomos sienelės" +"Taip – pakeisti vertikalaus apvalkalo storio užtikrinimą į „Vidutinis“ ir " +"įjungti alternatyvią papildomą sienelę\n" +"Ne – nenaudoti alternatyvios papildomos sienelės" msgid "" -"Prime tower does not work when Adaptive Layer Height or Independent Support Layer Height is on.\n" +"Prime tower does not work when Adaptive Layer Height or Independent Support " +"Layer Height is on.\n" "Which do you want to keep?\n" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height and Independent Support Layer Height" msgstr "" -"Valymo bokštas neveikia, kai įjungtas \"Adaptyvus sluoksnio aukštis\" arba \"Nepriklausomas atramų sluoksnio aukštis\".\n" -"Ką norite išlaikyti?\n" -"TAIP - Išlaikyti valymo bokštą\n" -"NE - Išlaikyti \"Adaptyvų sluoksnio aukštį\" ir \"Nepriklausomą atramų sluoksnio aukštį\"" +"Valymo bokštas neveikia, kai įjungtas adaptyvus sluoksnio aukštis arba " +"nepriklausomas atramų sluoksnio aukštis.\n" +"Ką norite palikti?\n" +"TAIP – palikti valymo bokštą\n" +"NE – palikti adaptyvų sluoksnio aukštį ir nepriklausomą atramų sluoksnio " +"aukštį" msgid "" "Prime tower does not work when Adaptive Layer Height is on.\n" @@ -4181,10 +4632,10 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height" msgstr "" -"Valymo bokštas neveikia, kai įjungtas \"Adaptyvus sluoksnio aukštis\".\n" -"Ką norite išlaikyti?\n" -"TAIP - Išlaikyti valymo bokštą\n" -"NE - Išlaikyti \"Adaptyvų sluoksnio aukštį\"" +"Valymo bokštas neveikia, kai įjungtas adaptyvus sluoksnio aukštis.\n" +"Ką norite palikti?\n" +"TAIP – palikti valymo bokštą\n" +"NE – palikti adaptyvų sluoksnio aukštį" msgid "" "Prime tower does not work when Independent Support Layer Height is on.\n" @@ -4192,54 +4643,67 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Independent Support Layer Height" msgstr "" -"Valymo bokštas neveikia, kai įjungtas \"Nepriklausomas atramų sluoksnio aukštis\".\n" -"Ką norite išlaikyti?\n" -"TAIP - Išlaikyti valymo bokštą\n" -"NE - Išlaikyti \"Nepriklausomą atramų sluoksnio aukštį\"" +"Valymo bokštas neveikia, kai įjungtas nepriklausomas atramų sluoksnio " +"aukštis.\n" +"Ką norite palikti?\n" +"TAIP – palikti valymo bokštą\n" +"NE – palikti nepriklausomą atramų sluoksnio aukštį" msgid "" "seam_slope_start_height need to be smaller than layer_height.\n" "Reset to 0." msgstr "" -"seam_slope_start_height turi būti mažesnis nei layer_height.\n" -"Atstatoma į 0." +"„seam_slope_start_height“ turi būti mažesnis už „layer_height“\n" +"Nustatoma iš naujo į 0." -# TODO: Review, changed by lang refactor. PR 14254 #, no-c-format, no-boost-format msgid "" "Lock depth should smaller than skin depth.\n" "Reset to 50% of skin depth." msgstr "" -"Fiksavimo gylis turėtų būti mažesnis už paviršiaus gylį.\n" -"Atstatykite iki 50 % paviršiaus gylio." +"Fiksavimo gylis turėtų būti mažesnis už išorinio sluoksnio gylį.\n" +"Atstatyta į 50 % išorinio sluoksnio gylio." -msgid "Both [Extrusion] and [Combined] modes of Fuzzy Skin require the Arachne Wall Generator to be enabled." -msgstr "Abu „Grublėto paviršiaus“ režimai – „Išspaudimas“ ir „kombinuotasis“ – reikalauja, kad būtų įjungtas „Arachnės Sienų Generatorius“." +msgid "" +"Both [Extrusion] and [Combined] modes of Fuzzy Skin require the Arachne Wall " +"Generator to be enabled." +msgstr "" +"Abiems „Šiurkštaus paviršiaus“ režimams – „Ekstruzija“ ir „Kombinuotas“ – " +"reikalaujama įjungti „Arachne“ sienelių generatorių." msgid "" "Change these settings automatically?\n" "Yes - Enable Arachne Wall Generator\n" -"No - Disable Arachne Wall Generator and set [Displacement] mode of the Fuzzy Skin" +"No - Disable Arachne Wall Generator and set [Displacement] mode of the " +"Fuzzy Skin" msgstr "" "Automatiškai pakeisti šiuos nustatymus?\n" -"Taip – įjungti „Arachnės Sienų Generatorių“\n" -"Ne – išjungti „Arachnės Sienų Generatorių“ ir nustatyti „Grublėtas paviršius“ [Perkėlimas] režimą" +"Taip – įjungti „Arachne“ sienelių generatorių\n" +"Ne – išjungti „Arachne“ sienelių generatorių ir nustatyti „Šiurkštaus " +"paviršius“ režimą [Slinktis]" -msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional." +msgid "" +"Spiral mode only works when wall loops is 1, support is disabled, clumping " +"detection by probing is disabled, top shell layers is 0, sparse infill " +"density is 0 and timelapse type is traditional." msgstr "" +"Spiralinis režimas veikia tik tada, kai sienelės kilpų skaičius yra 1, " +"atramos išjungtos, sulipimo aptikimas zonduojant išjungtas, viršutinių " +"apvalkalo sluoksnių yra 0, reto užpildo tankis yra 0 %, o laiko intervalų " +"vaizdo įrašo tipas – tradicinis." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr " Tačiau spausdintuvai su I3 konstrukcija negeneruos pakadrinių vaizdo įrašų." +msgstr "" +" Tačiau spausdintuvai su I3 konstrukcija negeneruos pakadrinių vaizdo įrašų." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" -"Yes - Change these settings and enable spiral/vase mode automatically\n" -"No - Cancel enabling spiral mode" +"Yes - Change these settings and enable spiral mode automatically\n" +"No - Give up using spiral mode this time" msgstr "" -"Ar pakeisti šiuos nustatymus automatiškai?\n" -"Taip - Pakeisti nurodytus parametrus ir automatiškai įjungti spiralės režimą.\n" -"Ne - Šį kartą nenaudoti spiralės režimo" +"Automatiškai pakeisti šiuos nustatymus?\n" +"Taip – pakeisti šiuos nustatymus ir automatiškai įjungti spiralinį režimą\n" +"Ne – šį kartą nenaudoti spiralinio režimo" msgid "Printing" msgstr "Spausdinimas" @@ -4251,7 +4715,7 @@ msgid "Heatbed preheating" msgstr "Spausdinimo pagrindo pašildymas iš anksto" msgid "Vibration compensation" -msgstr "Vibracijos kompensacija" +msgstr "Vibracijų kompensavimas" msgid "Changing filament" msgstr "Gijos keitimas" @@ -4260,13 +4724,13 @@ msgid "M400 pause" msgstr "M400 pauzė" msgid "Paused (filament ran out)" -msgstr "" +msgstr "Pauzė (pasibaigė gija)" msgid "Heating nozzle" -msgstr "" +msgstr "Kaitinamas purkštukas" msgid "Calibrating dynamic flow" -msgstr "" +msgstr "Kalibruojamas dinaminis srautas" msgid "Scanning bed surface" msgstr "Skenuojamas pagrindo paviršius" @@ -4284,139 +4748,139 @@ msgid "Homing toolhead" msgstr "Galvutės grąžinimas į pradinę padėtį" msgid "Cleaning nozzle tip" -msgstr "Purkštuko galiuko valymas" +msgstr "Valomas purkštuko galiukas" msgid "Checking extruder temperature" -msgstr "Tikrinama ekstruderio temperatūra" +msgstr "Tikrinama ekstruderio (stūmiklio) temperatūra" msgid "Paused by the user" -msgstr "" +msgstr "Pauzė (sustabdė naudotojas)" msgid "Pause (front cover fall off)" -msgstr "" +msgstr "Pauzė (nukrito priekinis dangtelis)" msgid "Calibrating the micro lidar" msgstr "Mikro lidaro kalibravimas" msgid "Calibrating flow ratio" -msgstr "" +msgstr "Kalibruojamas srauto santykis" msgid "Pause (nozzle temperature malfunction)" -msgstr "" +msgstr "Pauzė (purkštuko temperatūros sutrikimas)" msgid "Pause (heatbed temperature malfunction)" -msgstr "" +msgstr "Pauzė (pagrindo temperatūros sutrikimas)" msgid "Filament unloading" -msgstr "Gija išstumiama" +msgstr "Gijos išstūmimas" msgid "Pause (step loss)" -msgstr "" +msgstr "Pauzė (žingsnių praradimas)" msgid "Filament loading" -msgstr "Gija įtraukiama" +msgstr "Gijos įtraukimas" msgid "Motor noise cancellation" -msgstr "Variklių garso sumažinimas" +msgstr "Variklių triukšmo slopinimas" msgid "Pause (AMS offline)" -msgstr "" +msgstr "Pauzė (AMS nepasiekiamas)" msgid "Pause (low speed of the heatbreak fan)" -msgstr "" +msgstr "Pauzė (per mažas „heatbreak“ ventiliatoriaus greitis)" msgid "Pause (chamber temperature control problem)" -msgstr "" +msgstr "Pauzė (kameros temperatūros kontrolės problema)" msgid "Cooling chamber" msgstr "Aušinama kamera" msgid "Pause (G-code inserted by user)" -msgstr "" +msgstr "Pauzė (naudotojo įterptas G-kodas)" msgid "Motor noise showoff" -msgstr "Variklio triukšmo demonstravimas" +msgstr "Variklių triukšmo demonstravimas" msgid "Pause (nozzle clumping)" -msgstr "" +msgstr "Pauzė (medžiagos sankaupa ant purkštuko)" msgid "Pause (cutter error)" -msgstr "" +msgstr "Pauzė (kirpiklio klaida)" msgid "Pause (first layer error)" -msgstr "" +msgstr "Pauzė (pirmojo sluoksnio klaida)" msgid "Pause (nozzle clog)" -msgstr "" +msgstr "Pauzė (purkštuko užsikimšimas)" msgid "Measuring motion precision" -msgstr "" +msgstr "Matuojamas judesio tikslumas" msgid "Enhancing motion precision" -msgstr "" +msgstr "Didinamas judesio tikslumas" msgid "Measure motion accuracy" -msgstr "" +msgstr "Matuoti judesio tikslumą" msgid "Nozzle offset calibration" -msgstr "" +msgstr "Purkštuko poslinkio kalibravimas" msgid "High temperature auto bed leveling" -msgstr "" +msgstr "Aukštos temperatūros automatinis pagrindo lyginimas" msgid "Auto Check: Quick Release Lever" -msgstr "" +msgstr "Automatinis patikrinimas: greitojo atlaisvinimo svirtis" msgid "Auto Check: Door and Upper Cover" -msgstr "" +msgstr "Automatinis patikrinimas: durelės ir viršutinis dangtis" msgid "Laser Calibration" -msgstr "" +msgstr "Lazerio kalibravimas" msgid "Auto Check: Platform" -msgstr "" +msgstr "Automatinis patikrinimas: platforma" msgid "Confirming BirdsEye Camera location" -msgstr "" +msgstr "Patvirtinama „BirdsEye“ kameros vieta" msgid "Calibrating BirdsEye Camera" -msgstr "" +msgstr "Kalibruojama „BirdsEye“ kamera" msgid "Auto bed leveling -phase 1" -msgstr "" +msgstr "Automatinis pagrindo lyginimas – 1 fazė" msgid "Auto bed leveling -phase 2" -msgstr "" +msgstr "Automatinis pagrindo lyginimas – 2 fazė" msgid "Heating chamber" -msgstr "" +msgstr "Kaitinama kamera" msgid "Cooling heatbed" -msgstr "" +msgstr "Aušinamas spausdinimo pagrindas" msgid "Printing calibration lines" -msgstr "" +msgstr "Spausdinamos kalibravimo linijos" msgid "Auto Check: Material" -msgstr "" +msgstr "Automatinis patikrinimas: medžiaga" msgid "Live View Camera Calibration" -msgstr "" +msgstr "Tiesioginio vaizdo kameros kalibravimas" msgid "Waiting for heatbed to reach target temperature" -msgstr "" +msgstr "Laukiama, kol pagrindas pasieks tikslinę temperatūrą" msgid "Auto Check: Material Position" -msgstr "" +msgstr "Automatinis patikrinimas: medžiagos padėtis" msgid "Cutting Module Offset Calibration" -msgstr "" +msgstr "Kirpimo modulio poslinkio kalibravimas" msgid "Measuring Surface" -msgstr "" +msgstr "Matuojamas paviršius" msgid "Calibrating the detection position of nozzle clumping" -msgstr "" +msgstr "Kalibruojama medžiagos sankaupos ant purkštuko aptikimo padėtis" msgid "Unknown" msgstr "Nežinomas" @@ -4425,7 +4889,7 @@ msgid "Update successful." msgstr "Atnaujinimas sėkmingas." msgid "Downloading failed." -msgstr "Parsisuntimas nepavyko." +msgstr "Atsisiuntimas nepavyko." msgid "Verification failed." msgstr "Patikrinimas nepavyko." @@ -4435,48 +4899,86 @@ msgstr "Atnaujinimas nepavyko." msgid "Timelapse is not supported on this printer." msgstr "" +"Laiko intervalų vaizdo įrašai (timelapse) šiuame spausdintuve nepalaikomi." msgid "Timelapse is not supported while the storage does not exist." msgstr "" +"Laiko intervalų vaizdo įrašai nepalaikomi, nes nėra atminties laikmenos." msgid "Timelapse is not supported while the storage is unavailable." msgstr "" +"Laiko intervalų vaizdo įrašai nepalaikomi, nes atminties laikmena " +"nepasiekiama." msgid "Timelapse is not supported while the storage is readonly." msgstr "" +"Laiko intervalų vaizdo įrašai nepalaikomi, nes atminties laikmena yra tik " +"skaitoma." -msgid "To ensure your safety, certain processing tasks (such as laser) can only be resumed on printer." +msgid "" +"To ensure your safety, certain processing tasks (such as laser) can only be " +"resumed on printer." msgstr "" +"Siekiant užtikrinti saugumą, tam tikras apdorojimo užduotis (pavyzdžiui, " +"lazerio) galima pratęsti tik pačiame spausdintuve." #, c-format, boost-format -msgid "The chamber temperature is too high, which may cause the filament to soften. Please wait until the chamber temperature drops below %d℃. You may open the front door or enable fans to cool down." +msgid "" +"The chamber temperature is too high, which may cause the filament to soften. " +"Please wait until the chamber temperature drops below %d℃. You may open the " +"front door or enable fans to cool down." msgstr "" +"Kameros temperatūra per aukšta, todėl gija gali suminkštėti. Palaukite, kol " +"kameros temperatūra nukris žemiau %d ℃. Norėdami pagreitinti aušinimą, " +"galite atidaryti priekines dureles arba įjungti ventiliatorius." #, c-format, boost-format -msgid "AMS temperature is too high, which may cause the filament to soften. Please wait until the AMS temperature drops below %d℃." +msgid "" +"AMS temperature is too high, which may cause the filament to soften. Please " +"wait until the AMS temperature drops below %d℃." msgstr "" +"AMS temperatūra per aukšta, todėl gija gali suminkštėti. Palaukite, kol AMS " +"temperatūra nukris žemiau %d ℃." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The current chamber temperature or the target chamber temperature exceeds 45℃. In order to avoid extruder clogging, low temperature filament(PLA/PETG/TPU) is not allowed to be loaded." -msgstr "Dabartinė kameros temperatūra arba tikslinė kameros temperatūra viršija 45 ℃. Norint išvengti ekstruderio užsikimšimo, negalima įkelti žemos temperatūros gijų (PLA/PETG/TPU)." - -msgid "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder. In order to avoid extruder clogging, it is not allowed to set the chamber temperature." +msgid "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃. In order to avoid extruder clogging, low temperature filament(PLA/PETG/" +"TPU) is not allowed to be loaded." msgstr "" +"Dabartinė arba tikslinė kameros temperatūra viršija 45 ℃. Siekiant išvengti " +"ekstruderio (stūmiklio) užsikimšimo, žemos temperatūros gijų (PLA/PETG/TPU) " +"įverti neleidžiama." -msgid "When you set the chamber temperature below 40℃, the chamber temperature control will not be activated, and the target chamber temperature will automatically be set to 0℃." -msgstr "Nustačius kameros temperatūrą žemesnę nei 40 ℃, kameros temperatūros valdymas nebus aktyvuotas. Automatiniu būdu tikslinė kameros temperatūra bus nustatyta į 0 ℃." +msgid "" +"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature." +msgstr "" +"Ekstruderyje (stūmiklyje) yra įverta žemos temperatūros gija (PLA/PETG/TPU). " +"Siekiant išvengti ekstruderio užsikimšimo, nustatyti kameros temperatūros " +"neleidžiama." + +msgid "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated, and the target chamber temperature will " +"automatically be set to 0℃." +msgstr "" +"Nustačius kameros temperatūrą žemesnę nei 40 ℃, kameros temperatūros " +"valdymas nebus aktyvuotas, o tikslinė kameros temperatūra automatiškai bus " +"nustatyta į 0 ℃." msgid "Failed to start print job" msgstr "Nepavyko pradėti spausdinimo" -msgid "This calibration does not support the currently selected nozzle diameter" -msgstr "Ši kalibravimo procedūra nepalaiko šiuo metu pasirinkto purkštuko skersmens" +msgid "" +"This calibration does not support the currently selected nozzle diameter" +msgstr "" +"Ši kalibravimo procedūra nepalaiko šiuo metu pasirinkto purkštuko skersmens" msgid "Current flowrate cali param is invalid" -msgstr "Dabartinis ekstruzijos srauto kalibravimo parametras yra neteisingas" +msgstr "Dabartinis srauto santykio kalibravimo parametras yra netinkamas" msgid "Selected diameter and machine diameter do not match" -msgstr "Pasirinktas diametras ir įrenginio diametras nesutampa" +msgstr "Pasirinktas skersmuo ir įrenginio skersmuo nesutampa" msgid "Failed to generate cali G-code" msgstr "Nepavyko sugeneruoti kalibravimo G-kodo" @@ -4488,92 +4990,97 @@ msgid "Resume Printing" msgstr "Tęsti spausdinimą" msgid "Resume (defects acceptable)" -msgstr "" +msgstr "Tęsti (defektai priimtini)" msgid "Resume (problem solved)" -msgstr "" +msgstr "Tęsti (problema išspręsta)" msgid "Stop Printing" msgstr "Nutraukti spausdinimą" msgid "Check Assistant" -msgstr "Patikrinimo asistentas" +msgstr "Patikros asistentas" msgid "Filament Extruded, Continue" -msgstr "Gijos išspaustos, tęsti" +msgstr "Gija išspausta, tęsti" msgid "Not Extruded Yet, Retry" -msgstr "Dar neišspausta, bandykite dar kartą" +msgstr "Dar neišspausta, bandyti vėl" msgid "Finished, Continue" -msgstr "Baigta, Tęsti" +msgstr "Baigta, tęsti" + +msgid "Load Filament" +msgstr "Įverti giją" msgid "Filament Loaded, Resume" -msgstr "Įdėta gija, tęsti" +msgstr "Gija įverta, tęsti" msgid "View Liveview" -msgstr "Peržiūrėti tiesioginį vaizdą" +msgstr "Rodyti tiesioginį vaizdą" msgid "No Reminder Next Time" -msgstr "" +msgstr "Daugiau nepriminti" msgid "Ignore. Don't Remind Next Time" -msgstr "" +msgstr "Ignoruoti. Daugiau nepriminti" msgid "Ignore this and Resume" -msgstr "" +msgstr "Ignoruoti ir tęsti" msgid "Problem Solved and Resume" -msgstr "" +msgstr "Problema išspręsta, tęsti" msgid "Got it, Turn off the Fire Alarm." -msgstr "" +msgstr "Supratau, išjungti gaisro pavojaus signalą." msgid "Retry (problem solved)" -msgstr "" +msgstr "Bandyti vėl (problema išspręsta)" msgid "Stop Drying" -msgstr "" +msgstr "Stabdyti džiovinimą" msgid "Proceed" -msgstr "" +msgstr "Tęsti" msgid "Retry" msgstr "Kartoti" msgid "Resume" -msgstr "Pratęsti" +msgstr "Tęsti" msgid "Unknown error." msgstr "Nežinoma klaida." msgid "default" -msgstr "numatytas" +msgstr "numatytasis" #, boost-format msgid "Edit Custom G-code (%1%)" msgstr "Redaguoti pasirinktinį G-kodą (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" -msgstr "Integruoti G-kodo fragmentai (dukart spustelėkite elementą, kad įterptumėte į G-kodą)" +msgstr "" +"Integruoti kintamieji (dukart spustelėkite elementą, kad įterptumėte į G-" +"kodą)" msgid "Search G-code placeholders" -msgstr "Ieškoti G-kodo elementų" +msgstr "Ieškoti G-kodo kintamųjų" msgid "Add selected placeholder to G-code" -msgstr "Įtraukti pasirinktą elementą į G-kodą" +msgstr "Įtraukti pasirinktą kintamąjį į G-kodą" msgid "Select placeholder" -msgstr "Pasirinkti elementą" +msgstr "Pasirinkti kintamąjį" msgid "[Global] Slicing State" -msgstr "[Globali] Sluoksniavimo būsena" +msgstr "[Visuotinė] Sluoksniavimo būsena" msgid "Read Only" msgstr "Tik skaitoma" msgid "Read Write" -msgstr "Skaityti ir rašyti" +msgstr "Skaitymas ir rašymas" msgid "Slicing State" msgstr "Sluoksniavimo būsena" @@ -4582,10 +5089,10 @@ msgid "Print Statistics" msgstr "Spausdinimo statistika" msgid "Objects Info" -msgstr "Objekto informacija" +msgstr "Objektų informacija" msgid "Dimensions" -msgstr "Išmatavimai" +msgstr "Matmenys" msgid "Temperatures" msgstr "Temperatūros" @@ -4603,12 +5110,11 @@ msgstr "Profiliai" msgid "Print settings" msgstr "Spausdinimo nustatymai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament settings" -msgstr "Gijos parametrai" +msgstr "Gijos nustatymai" msgid "SLA Materials settings" -msgstr "SLA medžiagų parametrai" +msgstr "SLA medžiagų nustatymai" msgid "Printer settings" msgstr "Spausdintuvo nustatymai" @@ -4626,23 +5132,22 @@ msgid "Empty string" msgstr "Tuščia eilutė" msgid "Value is out of range." -msgstr "Dydis netelpa į ribas." +msgstr "Reikšmė yra už ribų." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "%s can’t be a percentage" -msgstr "%s negali būti procentai" +msgid "%s can't be a percentage" +msgstr "%s negali būti išreikštas procentais" #, c-format, boost-format msgid "Value %s is out of range, continue?" -msgstr "Dydis %s netelpa į ribas. Tęsti?" +msgstr "Reikšmė %s yra už ribų, tęsti?" msgid "Parameter validation" msgstr "Parametrų patvirtinimas" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "Dydis %s netelpa į ribas. Tinkami dydžiai yra nuo %d iki %d." +msgstr "Reikšmė %s yra už ribų. Galimas diapazonas yra nuo %d iki %d." #, c-format, boost-format msgid "" @@ -4655,30 +5160,38 @@ msgstr "" "NE %s %s." #, boost-format -msgid "Invalid input format. Expected vector of dimensions in the following format: \"%1%\"" -msgstr "Netinkamas įvesties formatas. Numatytas matmenų vektorius tokiu formatu: \"%1%\"" +msgid "" +"Invalid input format. Expected vector of dimensions in the following format: " +"\"%1%\"" +msgstr "" +"Netinkamas įvesties formatas. Numatytas matmenų vektorius tokiu formatu: " +"\"%1%\"" msgid "Input value is out of range" -msgstr "Įvesties vertė viršija ribas" +msgstr "Įvesta reikšmė yra už ribų" msgid "Some extension in the input is invalid" -msgstr "Kai kurie įvesties plėtiniai yra netinkami" +msgstr "Kai kurie įvesties formato plėtiniai yra netinkami" msgid "This parameter expects a valid template." -msgstr "Šis parametras reikalauja galiojančio šablono." +msgstr "Šiam parametrui reikalingas tinkamas šablonas." -msgid "Invalid pattern. Use N, N#K, or a comma-separated list with optional #K per entry. Examples: 5, 5#2, 1,7,9, 5,9#2,18." -msgstr "Neteisingas šablonas. Naudokite N, N#K arba kableliais atskirtą sąrašą su pasirinktiniu #K kiekvienam įrašui. Pavyzdžiai: 5, 5#2, 1,7,9, 5,9#2,18." +msgid "" +"Invalid pattern. Use N, N#K, or a comma-separated list with optional #K per " +"entry. Examples: 5, 5#2, 1,7,9, 5,9#2,18." +msgstr "" +"Neteisingas šablonas. Naudokite N, N#K arba kableliais atskirtą sąrašą su " +"pasirinktiniu #K kiekvienam įrašui. Pavyzdžiai: 5, 5#2, 1,7,9, 5,9#2,18." #, boost-format msgid "Invalid format. Expected vector format: \"%1%\"" msgstr "Netinkamas formatas. Tinkamas vektorinis formatas: \"%1%\"" msgid "N/A" -msgstr "" +msgstr "N/A" msgid "Pick" -msgstr "Pasirinkite" +msgstr "Paimti" msgid "Summary" msgstr "Santrauka" @@ -4696,7 +5209,7 @@ msgid "Acceleration" msgstr "Pagreitis" msgid "Jerk" -msgstr "Jerk" +msgstr "Trūktelėjimas" msgid "Fan Speed" msgstr "Ventiliatoriaus greitis" @@ -4717,49 +5230,49 @@ msgid "Layer Time (log)" msgstr "Sluoksnio laikas (log)" msgid "Pressure Advance" -msgstr "Pressure Advance" +msgstr "Slėgio išankstinis valdymas (Pressure Advance)" msgid "Noop" -msgstr "" +msgstr "Tuščia operacija (Noop)" msgid "Retract" -msgstr "Įtraukti" +msgstr "Gijos įtraukimas (Retract)" msgid "Unretract" -msgstr "Išleisti" +msgstr "Gijos grąžinimas (Unretract)" msgid "Seam" msgstr "Siūlė" msgid "Tool Change" -msgstr "Įrankių keitimas" +msgstr "Įrankio keitimas" msgid "Color Change" -msgstr "" +msgstr "Spalvos keitimas" msgid "Pause Print" -msgstr "" +msgstr "Spausdinimo pristabdymas" msgid "Travel" -msgstr "Judėjimas" +msgstr "Tuščioji eiga (Travel)" msgid "Wipe" -msgstr "Valymas" +msgstr "Valymas (Wipe)" msgid "Extrude" -msgstr "" +msgstr "Ekstruzija (Išspaudimas)" msgid "Inner wall" -msgstr "Vidinė siena" +msgstr "Vidinė sienelė" msgid "Outer wall" -msgstr "Išorinė siena" +msgstr "Išorinė sienelė" msgid "Overhang wall" -msgstr "Išsikišusi siena" +msgstr "Pakibusios dalies sienelė (Overhang)" msgid "Sparse infill" -msgstr "Retas užpildymas" +msgstr "Retas užpildas" msgid "Internal solid infill" msgstr "Vidinis vientisas užpildas" @@ -4771,7 +5284,7 @@ msgid "Bridge" msgstr "Tiltas" msgid "Gap infill" -msgstr "Tarpų užpildymas" +msgstr "Tarpų užpildas" msgid "Skirt" msgstr "Apvadas" @@ -4786,13 +5299,13 @@ msgid "Bottom surface" msgstr "Apatinis paviršius" msgid "Internal bridge" -msgstr "" +msgstr "Vidinis tiltelis" msgid "Support transition" msgstr "Atramų perėjimas" msgid "Mixed" -msgstr "" +msgstr "Mišrus" msgid "Height: " msgstr "Aukštis: " @@ -4813,16 +5326,16 @@ msgid "Layer Time: " msgstr "Sluoksnio laikas: " msgid "Tool: " -msgstr "" +msgstr "Įrankis: " msgid "Color: " -msgstr "" +msgstr "Spalva: " msgid "Acceleration: " -msgstr "" +msgstr "Pagreitis: " msgid "Jerk: " -msgstr "Jerk: " +msgstr "Trūktelėjimas: " msgid "PA: " msgstr "PA: " @@ -4837,7 +5350,7 @@ msgid "mm³/s" msgstr "mm³/s" msgid "Flow rate" -msgstr "Srauto greitis" +msgstr "Tūrinis srautas (Flow rate)" msgid "Fan speed" msgstr "Ventiliatoriaus greitis" @@ -4852,7 +5365,7 @@ msgid "Speed: " msgstr "Greitis: " msgid "Actual speed profile" -msgstr "" +msgstr "Faktinis greičio profilis" msgid "Statistics of All Plates" msgstr "Visų plokščių statistika" @@ -4869,9 +5382,8 @@ msgstr "Bokštas" msgid "Total" msgstr "Iš viso" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Total estimation" -msgstr "Bendra sąmata" +msgid "Total Estimation" +msgstr "Bendras įvertis (skaičiavimas)" msgid "Total time" msgstr "Bendras laikas" @@ -4879,68 +5391,91 @@ msgstr "Bendras laikas" msgid "Total cost" msgstr "Bendra kaina" -msgid "Automatically re-slice according to the optimal filament grouping, and the grouping results will be displayed after slicing." +msgid "" +"Automatically re-slice according to the optimal filament grouping, and the " +"grouping results will be displayed after slicing." msgstr "" +"Automatiškai pjaustyti iš naujo pagal optimalų gijų grupavimą, o grupavimo " +"rezultatai bus parodyti po pjaustymo." msgid "Filament Grouping" -msgstr "" +msgstr "Gijų grupavimas" msgid "Why this grouping" -msgstr "" +msgstr "Kodėl šis grupavimas" msgid "Left nozzle" -msgstr "" +msgstr "Kairysis purkštukas" msgid "Right nozzle" -msgstr "" +msgstr "Dešinysis purkštukas" msgid "Please place filaments on the printer based on grouping result." -msgstr "" +msgstr "Prašome sudėti gijas spausdintuve vadovaujantis grupavimo rezultatais." msgid "Tips:" msgstr "Patarimai:" msgid "Current grouping of slice result is not optimal." -msgstr "" +msgstr "Dabartinis pjaustymo rezultatų grupavimas nėra optimalus." #, boost-format msgid "Increase %1%g filament and %2% changes compared to optimal grouping." msgstr "" +"Sunaudojama %1% g daugiau gijos ir atliekama %2% keitimų daugiau, lyginant " +"su optimaliu grupavimu." #, boost-format -msgid "Increase %1%g filament and save %2% changes compared to optimal grouping." +msgid "" +"Increase %1%g filament and save %2% changes compared to optimal grouping." msgstr "" +"Sunaudojama %1% g daugiau gijos ir sutaupoma %2% keitimų, lyginant su " +"optimaliu grupavimu." #, boost-format -msgid "Save %1%g filament and increase %2% changes compared to optimal grouping." +msgid "" +"Save %1%g filament and increase %2% changes compared to optimal grouping." msgstr "" +"Sutaupoma %1% g gijos ir atliekama %2% keitimų daugiau, lyginant su " +"optimaliu grupavimu." #, boost-format -msgid "Save %1%g filament and %2% changes compared to a printer with one nozzle." +msgid "" +"Save %1%g filament and %2% changes compared to a printer with one nozzle." msgstr "" +"Sutaupoma %1% g gijos ir %2% keitimų, lyginant su vieno purkštuko " +"spausdintuvu." #, boost-format -msgid "Save %1%g filament and increase %2% changes compared to a printer with one nozzle." +msgid "" +"Save %1%g filament and increase %2% changes compared to a printer with one " +"nozzle." msgstr "" +"Sutaupoma %1% g gijos ir atliekama %2% keitimų daugiau, lyginant su vieno " +"purkštuko spausdintuvu." #, boost-format -msgid "Increase %1%g filament and save %2% changes compared to a printer with one nozzle." +msgid "" +"Increase %1%g filament and save %2% changes compared to a printer with one " +"nozzle." msgstr "" +"Sunaudojama %1% g daugiau gijos ir sutaupoma %2% keitimų, lyginant su vieno " +"purkštuko spausdintuvu." msgid "Set to Optimal" -msgstr "" +msgstr "Nustatyti į optimalų" msgid "Regroup filament" -msgstr "" +msgstr "Pergrupuoti gijas" msgid "Wiki Guide" -msgstr "" +msgstr "Wiki vadovas" msgid "up to" msgstr "iki" msgid "above" -msgstr "aukščiau" +msgstr "virš" msgid "from" msgstr "nuo" @@ -4948,12 +5483,10 @@ msgstr "nuo" msgid "Usage" msgstr "Naudojimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Layer height (mm)" +msgid "Layer Height (mm)" msgstr "Sluoksnio aukštis (mm)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Line width (mm)" +msgid "Line Width (mm)" msgstr "Linijos plotis (mm)" msgid "Speed (mm/s)" @@ -4963,13 +5496,12 @@ msgid "Actual Speed (mm/s)" msgstr "Faktinis greitis (mm/s)" msgid "Acceleration (mm/s²)" -msgstr "" +msgstr "Pagreitis (mm/s²)" msgid "Jerk (mm/s)" -msgstr "Jerk (mm/s)" +msgstr "Trūktelėjimas (mm/s)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Fan speed (%)" +msgid "Fan Speed (%)" msgstr "Ventiliatoriaus greitis (%)" msgid "Temperature (°C)" @@ -4979,20 +5511,19 @@ msgid "Volumetric flow rate (mm³/s)" msgstr "Tūrinis srautas (mm³/s)" msgid "Actual volumetric flow rate (mm³/s)" -msgstr "" +msgstr "Faktinis tūrinis srautas (mm³/s)" msgid "Seams" msgstr "Siūlės" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament changes" -msgstr "Gijos keitimai" +msgid "Filament Changes" +msgstr "Gijų keitimai" msgid "Options" msgstr "Parinktys" msgid "Extruder" -msgstr "Ekstruderis" +msgstr "Ekstruderis (Stūmiklis)" msgid "Cost" msgstr "Kaina" @@ -5001,29 +5532,28 @@ msgid "Filament change times" msgstr "Gijų keitimo laikai" msgid "Tool changes" -msgstr "" +msgstr "Įrankio keitimai" msgid "Color change" -msgstr "Spalvos pakeitimas" +msgstr "Spalvos keitimas" msgid "Print" msgstr "Spausdinti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printer" msgstr "Spausdintuvas" msgid "Time Estimation" -msgstr "Lako sąnaudos" +msgstr "Laiko įvertis (skaičiavimas)" msgid "Normal mode" -msgstr "Normalus režimas" +msgstr "Normalusis režimas" msgid "Total Filament" -msgstr "Iš viso gijos" +msgstr "Gijos iš viso" msgid "Model Filament" -msgstr "Gijos modeliams" +msgstr "Modelio gija" msgid "Prepare time" msgstr "Paruošimo laikas" @@ -5032,137 +5562,158 @@ msgid "Model printing time" msgstr "Modelio spausdinimo laikas" msgid "Show stealth mode" -msgstr "" +msgstr "Rodyti slaptąjį režimą" msgid "Show normal mode" -msgstr "" +msgstr "Rodyti normalųjį režimą" msgid "" -"An object is placed in the left/right nozzle-only area or exceeds the printable height of the left nozzle.\n" -"Please ensure the filaments used by this object are not arranged to other nozzles." +"An object is placed in the left/right nozzle-only area or exceeds the " +"printable height of the left nozzle.\n" +"Please ensure the filaments used by this object are not arranged to other " +"nozzles." msgstr "" +"Objektas yra pastatytas tik kairiajam / dešiniajam purkštukui skirtoje " +"zonoje arba viršija kairiojo purkštuko spausdinimo aukštį.\n" +"Įsitikinkite, kad šio objekto naudojamos gijos nėra priskirtos kitiems " +"purkštukams." msgid "" "An object is laid over the boundary of plate or exceeds the height limit.\n" -"Please solve the problem by moving it totally on or off the plate, and confirming that the height is within the build volume." +"Please solve the problem by moving it totally on or off the plate, and " +"confirming that the height is within the build volume." msgstr "" -"Objektas yra padėtas ant plokštės ribos arba viršija aukščio ribą.\n" -"Išspręskite problemą, visiškai perkeldami jį ant plokštės arba nuimdami nuo jos ir patikrinkite, ar aukštis neviršija spausdintuvo tūrio." +"Objektas peržengia plokštės ribas arba viršija aukščio ribą.\n" +"Išspręskite problemą visiškai perkeliami jį ant plokštės arba nuimdami nuo " +"jos ir įsitikindami, kad aukštis neviršija spausdinimo tūrio." msgid "Variable layer height" msgstr "Kintamas sluoksnio aukštis" msgid "Adaptive" -msgstr "Prisitaikantis" +msgstr "Adaptyvus" msgid "Quality / Speed" msgstr "Kokybė / Greitis" msgid "Smooth" -msgstr "Glotniai" +msgstr "Glotnus" msgid "Radius" msgstr "Spindulys" msgid "Keep min" -msgstr "Laikyti min" +msgstr "Išlaikyti minimumą" msgid "Add detail" -msgstr "Pridėti elementą" +msgstr "Pridėti detalumą" msgid "Remove detail" -msgstr "Pašalinti elementą" +msgstr "Pašalinti detalumą" msgid "Reset to base" -msgstr "Iš naujo nustatyti į pagrindinį" +msgstr "Atstatyti į pradinį" msgid "Smoothing" msgstr "Glotninimas" msgid "Increase/decrease edit area" -msgstr "Padidinti / sumažinti redagavimo sritį" +msgstr "Padidinti / sumažinti redagavimo plotą" msgid "Sequence" msgstr "Seka" msgid "Object selection" -msgstr "" +msgstr "Objekto pasirinkimas" msgid "number keys" msgstr "skaičių klavišai" msgid "Number keys can quickly change the color of objects" -msgstr "skaičių klavišais galima greitai pakeisti objektų spalvą" +msgstr "Skaičių klavišais galima greitai pakeisti objektų spalvas" -msgid "Following objects are laid over the boundary of plate or exceeds the height limit:\n" -msgstr "" +msgid "" +"Following objects are laid over the boundary of plate or exceeds the height " +"limit:\n" +msgstr "Šie objektai peržengia plokštės ribas arba viršija aukščio ribą:\n" -msgid "Please solve the problem by moving it totally on or off the plate, and confirming that the height is within the build volume.\n" +msgid "" +"Please solve the problem by moving it totally on or off the plate, and " +"confirming that the height is within the build volume.\n" msgstr "" +"Išspręskite problemą visiškai perkeldami objektą ant plokštės arba nuimdami " +"nuo jos ir įsitikindami, kad aukštis neviršija spausdinimo tūrio.\n" +"\n" msgid "left nozzle" -msgstr "" +msgstr "kairysis purkštukas" msgid "right nozzle" -msgstr "" +msgstr "dešinysis purkštukas" #, c-format, boost-format msgid "The position or size of some models exceeds the %s's printable range." -msgstr "" +msgstr "Kai kurių modelių padėtis arba dydis viršija „%s“ spausdinimo sritį." #, c-format, boost-format msgid "The position or size of the model %s exceeds the %s's printable range." -msgstr "" +msgstr "Modelio %s padėtis arba dydis viršija „%s“ spausdinimo sritį." -msgid " Please check and adjust the part's position or size to fit the printable range:\n" +msgid "" +" Please check and adjust the part's position or size to fit the printable " +"range:\n" msgstr "" +"Patikrinkite ir pakoreguokite detalės padėtį arba dydį, kad ji tilptų į " +"spausdinimo sritį:\n" #, boost-format msgid "Left nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n" msgstr "" +"Kairysis purkštukas: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n" +"\n" #, boost-format msgid "Right nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" -msgstr "" +msgstr "Dešinysis purkštukas: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Tool move" -msgstr "Įrankio judėjimas" +msgid "Mirror Object" +msgstr "Atspindėti objektą" + +msgid "Tool Move" +msgstr "Įrankis: perkėlimas" msgid "Tool Rotate" -msgstr "Įrankio sukimas" +msgstr "Įrankis: sukimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Move object" +msgid "Move Object" msgstr "Perkelti objektą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Auto orientation options" +msgid "Auto Orientation options" msgstr "Automatinio orientavimo parametrai" msgid "Enable rotation" -msgstr "Leisti sukimąsi" +msgstr "Leisti sukimą" msgid "Optimize support interface area" -msgstr "Optimizuoti atramų sąlyčio plotą" +msgstr "Optimizuoti atramų sąsajos plotą" msgid "Orient" -msgstr "Orientuoti" +msgstr "Orientacija" msgid "Arrange options" msgstr "Išdėstymo parinktys" msgid "0 means auto spacing." -msgstr "0 reiškia automatinius tarpus." +msgstr "0 reiškia automatinį atstumą." msgid "Auto rotate for arrangement" -msgstr "Automatiškai pasukti išdėstymui" +msgstr "Automatinis pasukimas išdėstant" msgid "Allow multiple materials on same plate" msgstr "Leisti skirtingas medžiagas ant tos pačios plokštės" msgid "Avoid extrusion calibration region" -msgstr "Vengti išspaudimo kalibravimo ploto" +msgstr "Vengti ekstruzijos kalibravimo srities" msgid "Align to Y axis" msgstr "Išlygiuoti pagal Y ašį" @@ -5182,10 +5733,10 @@ msgid "Add plate" msgstr "Įtraukti plokštę" msgid "Auto orient all/selected objects" -msgstr "Automatiškai orientuoti visi/pasirinkti objektai" +msgstr "Automatiškai orientuoti visus / pasirinktus objektus" msgid "Auto orient all objects on current plate" -msgstr "Automatiškai orientuoti visus objektus pasirinktoje plokštėje" +msgstr "Automatiškai orientuoti visus objektus dabartinėje plokštėje" msgid "Arrange all objects" msgstr "Išdėstyti visus objektus" @@ -5206,10 +5757,10 @@ msgid "Select Plate" msgstr "Pasirinkti plokštę" msgid "Slicing" -msgstr "Sluoksniuojama" +msgstr "Pjaustoma (Sluoksniuojama)" msgid "Slice all" -msgstr "Sluoksniuoti viską" +msgstr "Pjaustyti (Sluoksniuoti) viską" msgid "Failed" msgstr "Nepavyko" @@ -5220,62 +5771,55 @@ msgstr "Visos plokštės" msgid "Stats" msgstr "Statistika" -msgid "Slice" -msgstr "Sluoksniuoti" - -msgid "Review" -msgstr "" - msgid "Assembly Return" -msgstr "Sugrąžinti surinkimą" +msgstr "Grįžti iš surinkimo vaizdo" msgid "Return" msgstr "Grąžinti" msgid "Canvas Toolbar" -msgstr "" +msgstr "Drobės įrankių juosta" msgid "Fit camera to scene or selected object." -msgstr "" +msgstr "Talpinti kamerą pagal sceną arba pasirinktą objektą." msgid "3D Navigator" -msgstr "" +msgstr "3D navigatorius" msgid "Zoom button" -msgstr "" +msgstr "Mastelio keitimo (artinimo) mygtukas" msgid "Overhangs" msgstr "Iškyšos" msgid "Outline" -msgstr "" +msgstr "Kontūras" msgid "Realistic View" -msgstr "" +msgstr "Realistiškas vaizdas" msgid "Perspective" -msgstr "" +msgstr "Perspektyva" msgid "Axes" -msgstr "" +msgstr "Ašys" msgid "Gridlines" -msgstr "" +msgstr "Tinklelio linijos" msgid "Labels" -msgstr "" +msgstr "Etiketės (Užrašai)" msgid "Paint Toolbar" msgstr "Piešimo įrankių juosta" msgid "Explosion Ratio" -msgstr "Plėtimosi santykis" +msgstr "Išskaidymo koeficientas (Explosion Ratio)" msgid "Section View" -msgstr "Sekcijos peržiūra" +msgstr "Pjūvio vaizdas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Assembly Control" +msgid "Assemble Control" msgstr "Surinkimo valdymas" msgid "Selection Mode" @@ -5293,70 +5837,98 @@ msgstr "Tūris:" msgid "Size:" msgstr "Dydis:" -#, c-format, boost-format -msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." -msgstr "Rasta G-kode judėjimo kelių konfliktų %d sluoksnyje, Z = %.2lfmm. Prašome labiau atskirti konfliktinius objektus (%s <-> %s)." +#, boost-format +msgid "" +"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please " +"separate the conflicted objects farther (%s <-> %s)." +msgstr "" +"Rasta G-kodo trajektorijų konfliktų %d sluoksnyje, Z = %.2lfmm. Prašome " +"labiau atskirti konfliktuojančius objektus (%s <-> %s)." msgid "An object is laid over the plate boundaries." -msgstr "Objektas yra už spausdinimo pagrindo ribų." +msgstr "Objektas peržengia plokštės ribas." msgid "A G-code path goes beyond the max print height." -msgstr "G-kode judėjimo maršrutas viršija maksimalų spausdinimo aukštį." +msgstr "G-kodo trajektorija viršija maksimalų spausdinimo aukštį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A G-code path goes beyond plate boundaries." -msgstr "G-kode judėjimo maršrutas išeina už spausdinimo plokštės ribų." +msgid "A G-code path goes beyond the plate boundaries." +msgstr "G-kodo trajektorija išeina už plokštės ribų." msgid "Not support printing 2 or more TPU filaments." -msgstr "" +msgstr "Nepalaikomas 2 ar daugiau TPU gijų spausdinimas." #, c-format, boost-format msgid "Tool %d" -msgstr "" +msgstr "%d įrankis" #, c-format, boost-format -msgid "Filament %s is placed in the %s, but the generated G-code path exceeds the printable range of the %s." +msgid "" +"Filament %s is placed in the %s, but the generated G-code path exceeds the " +"printable range of the %s." msgstr "" +"Gija %s yra įstatyta į „%s“, tačiau sugeneruota G-kodo trajektorija viršija " +"„%s“ spausdinimo sritį." #, c-format, boost-format -msgid "Filaments %s are placed in the %s, but the generated G-code path exceeds the printable range of the %s." +msgid "" +"Filaments %s are placed in the %s, but the generated G-code path exceeds the " +"printable range of the %s." msgstr "" +"Gijos %s yra įstatytos į „%s“, tačiau sugeneruota G-kodo trajektorija " +"viršija „%s“ spausdinimo sritį." #, c-format, boost-format -msgid "Filament %s is placed in the %s, but the generated G-code path exceeds the printable height of the %s." +msgid "" +"Filament %s is placed in the %s, but the generated G-code path exceeds the " +"printable height of the %s." msgstr "" +"Gija %s yra įstatyta į „%s“, tačiau sugeneruota G-kodo trajektorija viršija " +"„%s“ spausdinimo aukštį." #, c-format, boost-format -msgid "Filaments %s are placed in the %s, but the generated G-code path exceeds the printable height of the %s." +msgid "" +"Filaments %s are placed in the %s, but the generated G-code path exceeds the " +"printable height of the %s." msgstr "" +"Gijos %s yra įstatytos į „%s“, tačiau sugeneruota G-kodo trajektorija " +"viršija „%s“ spausdinimo aukštį." msgid "Open wiki for more information." -msgstr "" +msgstr "Atidaryti „wiki“ puslapį, norint gauti daugiau informacijos." msgid "Only the object being edited is visible." msgstr "Matomas tik redaguojamas objektas." #, c-format, boost-format msgid "Filaments %s cannot be printed directly on the surface of this plate." -msgstr "" +msgstr "Gijų %s negalima spausdinti tiesiai ant šios plokštės paviršiaus." -msgid "PLA and PETG filaments detected in the mixture. Adjust parameters according to the Wiki to ensure print quality." +msgid "" +"PLA and PETG filaments detected in the mixture. Adjust parameters according " +"to the Wiki to ensure print quality." msgstr "" +"Mišinyje aptiktos PLA ir PETG gijos. Norėdami užtikrinti spausdinimo kokybę, " +"pakoreguokite parametrus pagal „Wiki“ vadovą." msgid "The prime tower extends beyond the plate boundary." -msgstr "" +msgstr "Valymo bokštas peržengia plokštės ribas." -msgid "Partial flushing volume set to 0. Multi-color printing may cause color mixing in models. Please readjust flushing settings." +msgid "" +"Partial flushing volume set to 0. Multi-color printing may cause color " +"mixing in models. Please readjust flushing settings." msgstr "" +"Dalinio valymo tūris nustatytas į 0. Spausdinant keliomis spalvomis, " +"modeliuose gali susimaišyti spalvos. Iš naujo sureguliuokite valymo " +"nustatymus." msgid "Click Wiki for help." -msgstr "" +msgstr "Spustelėkite „Wiki“, jei reikia pagalbos." msgid "Click here to regroup" -msgstr "" +msgstr "Spustelėkite čia, kad pergrupuotumėte" msgid "Flushing Volume" -msgstr "" +msgstr "Valymo tūris" msgid "Calibration step selection" msgstr "Kalibravimo žingsnio pasirinkimas" @@ -5364,24 +5936,25 @@ msgstr "Kalibravimo žingsnio pasirinkimas" msgid "Micro lidar calibration" msgstr "Mikro lidaro kalibravimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bed leveling" msgstr "Spausdinimo pagrindo išlyginimas" msgid "High-temperature Heatbed Calibration" -msgstr "" +msgstr "Aukštos temperatūros pagrindo kalibravimas" msgid "Nozzle clumping detection Calibration" -msgstr "" +msgstr "Medžiagos sankaupos ant purkštuko aptikimo kalibravimas" msgid "Calibration program" msgstr "Kalibravimo programa" msgid "" -"The calibration program detects the status of your device automatically to minimize deviation.\n" +"The calibration program detects the status of your device automatically to " +"minimize deviation.\n" "It keeps the device performing optimally." msgstr "" -"Kalibravimo programa automatiškai nustato jūsų įrenginio būseną, kad minimaliai nukryptų nuo parametrų.\n" +"Kalibravimo programa automatiškai nustato jūsų įrenginio būseną, kad " +"minimaliai nukryptų nuo parametrų.\n" "Taip ji užtikrina optimalų įrenginio veikimą." msgid "Calibration Flow" @@ -5403,22 +5976,22 @@ msgid "Auto-record Monitoring" msgstr "Automatinio įrašymo stebėjimas" msgid "Go Live" -msgstr "Įjungti spausdinimo stebėjimą" +msgstr "Rodyti tiesioginį vaizdą" msgid "Liveview Retry" -msgstr "Pakartoti stebėjimą realiu laiku" +msgstr "Pakartoti tiesioginio vaizdo įkėlimą" msgid "Resolution" msgstr "Skiriamoji geba" msgid "Enable" -msgstr "Įgalinti" +msgstr "Įjungti" msgid "Hostname or IP" -msgstr "Hosto vardas arba IP" +msgstr "Mazgo vardas (Hostname) arba IP" msgid "Custom camera source" -msgstr "Pasirinktinės kameros šaltinis" +msgstr "Pasirinktinis kameros šaltinis" msgid "Show \"Live Video\" guide page." msgstr "Rodyti tiesioginio vaizdo vadovo puslapį." @@ -5427,20 +6000,24 @@ msgid "Connect Printer (LAN)" msgstr "Prijungti spausdintuvą (LAN)" msgid "Please input the printer access code:" -msgstr "Prašome įvesti spausdintuvo prieigos kodą:" +msgstr "Įveskite spausdintuvo prieigos kodą:" msgid "" "You can find it in \"Settings > Network > Access code\"\n" "on the printer, as shown in the figure:" msgstr "" +"Jį rasite spausdintuvo meniu „Nustatymai > Tinklas > Prieigos kodas“,\n" +" kaip parodyta paveikslėlyje:" msgid "" "You can find it in \"Setting > Setting > LAN only > Access Code\"\n" "on the printer, as shown in the figure:" msgstr "" +"Jį rasite spausdintuvo meniu „Nustatymai > Nustatymai > Tik LAN > Prieigos " +"kodas“, \n" +"kaip parodyta paveikslėlyje:" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Invalid input" +msgid "Invalid input." msgstr "Netinkama įvestis." msgid "New Window" @@ -5449,12 +6026,11 @@ msgstr "Naujas langas" msgid "Open a new window" msgstr "Atidaryti naują langą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Closing application" +msgid "Application is closing" msgstr "Programa uždaroma" msgid "Closing Application while some presets are modified." -msgstr "Programa bus uždaryta, nors kai kurie nustatymai neįrašyti." +msgstr "Programa uždaroma, nors kai kurie profiliai yra pakeisti." msgid "Logging" msgstr "Registravimas" @@ -5469,7 +6045,7 @@ msgid "Device" msgstr "Įrenginys" msgid "Multi-device" -msgstr "Multiįrenginys" +msgstr "Kelių įrenginių valdymas (Multi-device)" msgid "Project" msgstr "Projektas" @@ -5481,10 +6057,10 @@ msgid "No" msgstr "Ne" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "bus uždaryta prieš sukuriant modelį. Ar norite tęsti?" +msgstr "bus uždarytas prieš sukuriant naują modelį. Ar norite tęsti?" msgid "Slice plate" -msgstr "Sluoksniuoti plokštę" +msgstr "Pjaustyti (Sluoksniuoti) plokštę" msgid "Print plate" msgstr "Spausdinti plokštę" @@ -5493,13 +6069,13 @@ msgid "Export G-code file" msgstr "Eksportuoti G-kodo failą" msgid "Export plate sliced file" -msgstr "Eksportuoti sluoksniuotos plokštės failą" +msgstr "Eksportuoti supjaustytos plokštės failą" msgid "Send" msgstr "Siųsti" msgid "Export all sliced file" -msgstr "Eksportuoti visko sluoksniuoto failą" +msgstr "Eksportuoti visko supjaustyto failą" msgid "Print all" msgstr "Spausdinti viską" @@ -5508,10 +6084,10 @@ msgid "Send all" msgstr "Siųsti viską" msgid "Send to Multi-device" -msgstr "Siųsti į multiįrenginį" +msgstr "Siųsti į kelis įrenginius" msgid "Keyboard Shortcuts" -msgstr "Klaviatūros nuorodos" +msgstr "Spartieji klavišai" msgid "Show the list of keyboard shortcuts" msgstr "Rodyti sparčiųjų klavišų sąrašą" @@ -5523,7 +6099,7 @@ msgid "Show Configuration Folder" msgstr "Rodyti konfigūravimo katalogą" msgid "Troubleshoot Center" -msgstr "" +msgstr "Pagalbos centras" msgid "Open Network Test" msgstr "Atidaryti tinklo testą" @@ -5542,17 +6118,17 @@ msgid "Upload Models" msgstr "Įkelti modelius" msgid "Download Models" -msgstr "Parsisiųsti modelius" +msgstr "Atsisiųsti modelius" msgid "Default View" -msgstr "Numatytas vaizdas" +msgstr "Numatytasis vaizdas" msgid "Top View" msgstr "Vaizdas iš viršaus" #. TRN To be shown in the main menu View->Bottom msgid "Bottom" -msgstr "Apatinis" +msgstr "Apačia" msgid "Bottom View" msgstr "Vaizdas iš apačios" @@ -5576,7 +6152,7 @@ msgid "Right View" msgstr "Vaizdas iš dešinės" msgid "Start a new window" -msgstr "Pradėti naują langą" +msgstr "Atidaryti naują langą" msgid "New Project" msgstr "Naujas projektas" @@ -5588,7 +6164,7 @@ msgid "Open a project file" msgstr "Atidaryti projekto failą" msgid "Recent files" -msgstr "Naujausi failai" +msgstr "Paskutinieji failai" msgid "Save Project" msgstr "Išsaugoti projektą" @@ -5597,10 +6173,10 @@ msgid "Save current project to file" msgstr "Išsaugoti dabartinį projektą į failą" msgid "Save Project as" -msgstr "Išsaugoti projektą kaip" +msgstr "Įrašyti projektą kaip" msgid "Save current project as" -msgstr "Išsaugoti dabartinį projektą kaip" +msgstr "Įrašyti dabartinį projektą kaip" msgid "Import 3MF/STL/STEP/SVG/OBJ/AMF" msgstr "Importuoti 3MF/STL/STEP/SVG/OBJ/AMF" @@ -5618,7 +6194,7 @@ msgid "Import Configs" msgstr "Importuoti konfigūracijas" msgid "Load configs" -msgstr "Užkrauti konfigūracijas" +msgstr "Įkelti konfigūracijas" msgid "Import" msgstr "Importuoti" @@ -5630,22 +6206,22 @@ msgid "Export all objects as STLs" msgstr "Eksportuoti visus objektus kaip STL" msgid "Export all objects as one DRC" -msgstr "" +msgstr "Export all objects as one DRC" msgid "Export all objects as DRCs" -msgstr "" +msgstr "Export all objects as DRCs" msgid "Export Generic 3MF" -msgstr "Eksportuoti pagrindinį 3MF" +msgstr "Eksportuoti bendrąjį (Generic) 3MF" msgid "Export 3MF file without using some 3mf-extensions" msgstr "Eksportuoti 3MF failą nenaudojant kai kurių 3MF plėtinių" msgid "Export current sliced file" -msgstr "Eksportuoti dabartinį sluoksniuotą failą" +msgstr "Eksportuoti dabartinį supjaustytą failą" msgid "Export all plate sliced file" -msgstr "Eksportuoti visų sluoksniuotų plokščių failą" +msgstr "Eksportuoti visų supjaustytų plokščių failą" msgid "Export G-code" msgstr "Eksportuoti G-kodą" @@ -5657,7 +6233,7 @@ msgid "Export toolpaths as OBJ" msgstr "Eksportuoti įrankių trajektorijas OBJ formatu" msgid "Export Preset Bundle" -msgstr "Eksportuoti parametrų rinkinį" +msgstr "Eksportuoti profilių rinkinį" msgid "Export current configuration to files" msgstr "Eksportuoti dabartinę konfigūraciją į failus" @@ -5666,25 +6242,25 @@ msgid "Export" msgstr "Eksportuoti" msgid "Sync Presets" -msgstr "" +msgstr "Sinchronizuoti profilius" msgid "Pull and apply the latest presets from OrcaCloud" -msgstr "" +msgstr "Atsisiųsti ir pritaikyti naujausius profilius iš „OrcaCloud“" msgid "You must be logged in to sync presets from cloud." -msgstr "" +msgstr "Norėdami sinchronizuoti profilius iš debesies, turite būti prisijungę." msgid "Quit" msgstr "Išeiti" msgid "Undo" -msgstr "Anuliuoti" +msgstr "Atšaukti" msgid "Redo" msgstr "Perdaryti" msgid "Cut selection to clipboard" -msgstr "Iškirpti pasirinktą į iškarpinę" +msgstr "Iškirpti pasirinkimą į mainų sritį" msgid "Copy" msgstr "Kopijuoti" @@ -5696,33 +6272,40 @@ msgid "Paste" msgstr "Įklijuoti" msgid "Paste clipboard" -msgstr "Įklijuoti iškarpinės turinį" +msgstr "Įklijuoti iš mainų srities" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Delete Selected" -msgstr "Ištrinti pasirinktus" +msgid "Delete selected" +msgstr "Ištrinti pasirinkimą" msgid "Deletes the current selection" -msgstr "Ištrina pasirinktus" +msgstr "Ištrina dabartinį pasirinkimą" + +msgid "Delete all" +msgstr "Ištrinti viską" msgid "Deletes all objects" msgstr "Ištrina visus objektus" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Clone Selected" +msgid "Clone selected" msgstr "Klonuoti pasirinktą" msgid "Clone copies of selections" -msgstr "Klonuoti pasirinktų kopijas" +msgstr "Klonuoti pasirinktus objektus" msgid "Duplicate Current Plate" msgstr "Dubliuoti dabartinę plokštę" msgid "Duplicate the current plate" -msgstr "Dubliuoti dabartinę plokštelę" +msgstr "Dubliuoti dabartinę plokštę" + +msgid "Select all" +msgstr "Pasirinkti viską" msgid "Selects all objects" -msgstr "Parenka visus objektus" +msgstr "Pasirenka visus objektus" + +msgid "Deselect all" +msgstr "Panaikinti visų objektų pasirinkimą" msgid "Deselects all objects" msgstr "Panaikina visų objektų pasirinkimą" @@ -5731,31 +6314,35 @@ msgid "Use Perspective View" msgstr "Naudoti perspektyvinį vaizdą" msgid "Use Orthogonal View" -msgstr "Naudoti ortogonalų vaizdą" +msgstr "Naudoti ortografinį vaizdą" msgid "Auto Perspective" msgstr "Automatinė perspektyva" -msgid "Automatically switch between orthographic and perspective when changing from top/bottom/side views." -msgstr "Automatiškai perjungti ortografinį ir perspektyvinį vaizdą, kai perjungiamas vaizdas iš viršaus / apačios / šono." +msgid "" +"Automatically switch between orthographic and perspective when changing from " +"top/bottom/side views." +msgstr "" +"Automatiškai perjungti tarp ortografinio ir perspektyvinio vaizdo, keičiant " +"vaizdus iš viršaus / apačios / šonų." msgid "Show &G-code Window" msgstr "Rodyti &G-kodo langą" msgid "Show G-code window in Preview scene." -msgstr "Rodyti g-kodo langą peržiūros vaizde." +msgstr "Rodyti G-kodo langą peržiūros režime." msgid "Show 3D Navigator" msgstr "Rodyti 3D navigatorių" msgid "Show 3D navigator in Prepare and Preview scene." -msgstr "Rodyti 3D navigatorių paruošimo ir peržiūros scenose." +msgstr "Rodyti 3D navigatorių paruošimo ir peržiūros režimuose." msgid "Show Gridlines" -msgstr "" +msgstr "Rodyti tinklelio linijas" msgid "Show Gridlines on plate" -msgstr "" +msgstr "Rodyti tinklelio linijas ant plokštės" msgid "Reset Window Layout" msgstr "Atstatyti lango išdėstymą" @@ -5764,16 +6351,16 @@ msgid "Reset to default window layout" msgstr "Atstatyti į pradinį lango išdėstymą" msgid "Show &Labels" -msgstr "Rodyti etiketes" +msgstr "Rodyti &užrašus (etiketes)" msgid "Show object labels in 3D scene." -msgstr "3D scenoje rodyti objektų etiketes." +msgstr "3D scenoje rodyti objektų užrašus." msgid "Show &Overhang" -msgstr "Rodyti iškyšas" +msgstr "Rodyti paki&busias dalis (Overhangs)" msgid "Show object overhang highlight in 3D scene." -msgstr "3D scenoje paryškinti iškyšas." +msgstr "3D scenoje paryškinti pakibusias dalis (overhangs)." msgid "Show Selected Outline (beta)" msgstr "Rodyti pasirinktą kontūrą (beta)" @@ -5788,10 +6375,10 @@ msgid "View" msgstr "Vaizdas" msgid "Preset Bundle" -msgstr "" +msgstr "Profilių rinkinys" msgid "Syncing presets from cloud…" -msgstr "" +msgstr "Sinchronizuojami profiliai iš debesies…" msgid "Help" msgstr "Pagalba" @@ -5800,40 +6387,40 @@ msgid "Temperature Calibration" msgstr "Temperatūros kalibravimas" msgid "Max flowrate" -msgstr "Maks srautas" +msgstr "Maksimalus tūrinis srautas" msgid "Pressure advance" -msgstr "Filamento tiekimas posūkio metu" +msgstr "Slėgio kompensavimas (Pressure Advance)" msgid "Flow ratio" msgstr "Srauto santykis" msgid "Flow Rate Calibration" -msgstr "Srauto kalibravimas" +msgstr "Tūrinio srauto kalibravimas" msgid "Retraction" -msgstr "Įtraukimas" +msgstr "Atitraukimas (Retraction)" msgid "Cornering" msgstr "Posūkiai" msgid "Cornering calibration" -msgstr "" +msgstr "Posūkių (greičio valdymo) kalibravimas" msgid "Input Shaping Frequency" msgstr "Įvesties formavimo dažnis" msgid "Input Shaping Damping/zeta factor" -msgstr "Įvesties formavimo Slopinimas/zeta koeficientas" +msgstr "Įvesties formavimo slopinimo (zeta) koeficientas" msgid "Input Shaping" msgstr "Įvesties formavimas" msgid "VFA" -msgstr "VFA" +msgstr "VFA (smulkūs vertikalūs artefaktai)" msgid "Calibration Guide" -msgstr "" +msgstr "Kalibravimo vadovas" msgid "&Open G-code" msgstr "Atidaryti G-kodą" @@ -5845,16 +6432,16 @@ msgid "Re&load from Disk" msgstr "Iš naujo įke<i iš disko" msgid "Reload the plater from disk" -msgstr "Iš naujo įkelkite plokštę iš disko" +msgstr "Iš naujo įkelti plokštę (modelius) iš disko" msgid "Export &Toolpaths as OBJ" -msgstr "Eksportas ir įrankių trajektorijos kaip OBJ" +msgstr "Eksportuoti įrankių &trajektorijas kaip OBJ" msgid "Open &Slicer" -msgstr "Atidaryti &sluoksniuotoją" +msgstr "Atidaryti &pjaustyklę (Slicer)" msgid "Open Slicer" -msgstr "Atidaryti sluoksniuotoją" +msgstr "Atidaryti pjaustyklę (Slicer)" msgid "&Quit" msgstr "Išeiti" @@ -5870,63 +6457,66 @@ msgid "&View" msgstr "&Vaizdas" msgid "&Help" -msgstr "Pagalba" +msgstr "&Pagalba" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "A file exists with the same name: %s. Do you want to overwrite it?" +msgid "A file exists with the same name: %s, do you want to overwrite it?" msgstr "Failas tokiu pavadinimu jau egzistuoja: %s. Ar norite jį pakeisti?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "A config exists with the same name: %s. Do you want to overwrite it?" -msgstr "Konfigūracija tokiu pavadinimu jau egzistuoja: %s. Ar norite ją pakeisti?" +msgid "A config exists with the same name: %s, do you want to overwrite it?" +msgstr "" +"Konfigūracija tokiu pavadinimu jau egzistuoja: %s. Ar norite ją pakeisti?" msgid "Overwrite file" -msgstr "Perrašyti failą" +msgstr "Pakeisti (perrašyti) failą" msgid "Overwrite config" -msgstr "Perrašyti konfigūraciją" +msgstr "Pakeisti (perrašyti) konfigūraciją" msgid "Yes to All" -msgstr "Taip viskam" +msgstr "Taip visiems" msgid "No to All" -msgstr "Ne viskam" +msgstr "Ne visiems" msgid "Choose a directory" -msgstr "Pasirinkite katalogą" +msgstr "Pasirinkite aplanką (katalogą)" #, c-format, boost-format msgid "There is %d config exported. (Only non-system configs)" msgid_plural "There are %d configs exported. (Only non-system configs)" -msgstr[0] "Eksportuota %d konfigūracija. (tik nesisteminė konfigūracija)" -msgstr[1] "Eksportuotos %d konfigūracijos. (tik nesisteminės konfigūracijos)" -msgstr[2] "Eksportuota %d konfigūracijų. (tik nesisteminės konfigūracijos)" +msgstr[0] "Eksportuotas %d profilis. (Tik nesisteminiai profiliai)" +msgstr[1] "Eksportuoti %d profiliai. (Tik nesisteminiai profiliai)" +msgstr[2] "Eksportuota %d profilių. (Tik nesisteminiai profiliai)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Export Result" -msgstr "Eksportuoti rezultatą" +msgid "Export result" +msgstr "Eksportavimo rezultatas" msgid "Select profile to load:" -msgstr "Pasirinkite profilį įkėlimui:" +msgstr "Pasirinkite įkeliamą profilį:" #, c-format, boost-format msgid "There is %d config imported. (Only non-system and compatible configs)" -msgid_plural "There are %d configs imported. (Only non-system and compatible configs)" -msgstr[0] "Įkelta %d konfigūracija. (Tik nesisteminė ir suderinama konfigūracija)" -msgstr[1] "Įkeltos %d konfigūracijos. (Tik nesisteminės ir suderinamos konfigūracijos)" -msgstr[2] "Įkelta %d konfigūracijų. (Tik nesisteminės ir suderinamos konfigūracijos)" +msgid_plural "" +"There are %d configs imported. (Only non-system and compatible configs)" +msgstr[0] "" +"Importuotas %d profilis. (Tik nesisteminiai ir suderinami profiliai)" +msgstr[1] "" +"Importuoti %d profiliai. (Tik nesisteminiai ir suderinami profiliai)" +msgstr[2] "Importuota %d profilių. (Tik nesisteminiai ir suderinami profiliai)" msgid "" "\n" -"Hint: Make sure you have added the corresponding printer before importing the configs." +"Hint: Make sure you have added the corresponding printer before importing " +"the configs." msgstr "" "\n" -"Pastaba: Prieš įkeliant konfigūracijas įsitikinkite, kad pridėjote atitinkamą spausdintuvą." +"Patarimas: prieš importuodami profilius įsitikinkite, kad pridėjote " +"atitinkamą spausdintuvą." msgid "Import result" -msgstr "Importuoti rezultatą" +msgstr "Importavimo rezultatas" msgid "File is missing" msgstr "Trūksta failo" @@ -5934,6 +6524,9 @@ msgstr "Trūksta failo" msgid "The project is no longer available." msgstr "Projektas nebepasiekiamas." +msgid "Filament Settings" +msgstr "Gijos nustatymai" + msgid "" "Do you want to synchronize your personal data from Orca Cloud?\n" "It contains the following information:\n" @@ -5941,66 +6534,89 @@ msgid "" "2. The Filament presets\n" "3. The Printer presets" msgstr "" +"Ar norite sinchronizuoti savo asmeninius duomenis iš „Orca Cloud“?\n" +"Juose yra ši informacija:\n" +"1. Spausdinimo procesų profiliai\n" +"2. Gijų profiliai\n" +"3. Spausdintuvų profiliai" msgid "Synchronization" msgstr "Sinchronizacija" msgid "The device cannot handle more conversations. Please retry later." -msgstr "Įrenginys, su kuriuo bandote bendrauti, šiuo metu yra perkrautas ir negali palaikyti daugiau pokalbių. Pabandykite vėliau." +msgstr "Įrenginys negali apdoroti daugiau užklausų. Pabandykite vėliau." msgid "Player is malfunctioning. Please reinstall the system player." msgstr "Grotuvas neveikia tinkamai. Prašome iš naujo įdiegti sistemos grotuvą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The player is not loaded; please click the \"play\" button to retry." -msgstr "Grotuvas neįkeltas. Spustelėkite \"paleisti\" mygtuką, kad bandytumėte iš naujo." - -msgid "The player is not loaded because the GStreamer GTK video sink is missing or failed to initialize." +msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"Grotuvas neįkeltas. Norėdami pakartoti, spustelėkite paleidimo mygtuką " +"„Play“." + +msgid "" +"The player is not loaded because the GStreamer GTK video sink is missing or " +"failed to initialize." +msgstr "" +"Grotuvas neįkeltas, nes trūksta „GStreamer GTK“ vaizdo išvesties (video " +"sink) arba nepavyko jos inicijuoti." msgid "Please confirm if the printer is connected." -msgstr "Prašome patvirtinti, kas spausdintuvas prijungtas." +msgstr "Įsitikinkite (patikrinkite), ar spausdintuvas prijungtas." -msgid "The printer is currently busy downloading. Please try again after it finishes." -msgstr "Spausdintuvas šiuo metu siunčiasi naujinį. Pabandykite dar kartą, kai atsisiuntimas bus baigtas." +msgid "" +"The printer is currently busy downloading. Please try again after it " +"finishes." +msgstr "" +"Spausdintuvas šiuo metu siunčiasi duomenis. Pabandykite dar kartą, kai " +"atsisiuntimas bus baigtas." msgid "Printer camera is malfunctioning." msgstr "Spausdintuvo kamera neveikia tinkamai." msgid "A problem occurred. Please update the printer firmware and try again." -msgstr "Iškilo problema. Atnaujinkite spausdintuvo programinę įrangą ir bandykite dar kartą." +msgstr "" +"Įvyko klaida. Atnaujinkite spausdintuvo programinę aparatinę įrangą " +"(firmware) ir bandykite dar kartą." -msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." -msgstr "LAN tiesioginė peržiūra („Liveview“) išjungta. Įjunkite tiesioginę peržiūrą spausdintuvo ekrane." +msgid "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." +msgstr "" +"Tiesioginis vaizdas tik per LAN („LAN Only Liveview“) yra išjungtas. " +"Įjunkite tiesioginį vaizdą spausdintuvo ekrane." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please enter the IP of the printer to connect." -msgstr "Prašome įvesti norimo prijungti spausdintuvo IP adresą." +msgid "Please enter the IP of printer to connect." +msgstr "Įveskite spausdintuvo IP adresą, kad prisijungtumėte." msgid "Initializing..." msgstr "Inicializuojama..." msgid "Connection Failed. Please check the network and try again" -msgstr "Ryšio klaida. Patikrinkite tinklą ir bandykite dar kartą" +msgstr "Nepavyko prisijungti. Patikrinkite tinklo ryšį ir bandykite dar kartą." -msgid "Please check the network and try again. You can restart or update the printer if the issue persists." -msgstr "Ryšio klaida. Patikrinkite tinklą ir bandykite dar kartą. Jei problema neišnyksta, galite pabandyti iš naujo paleisti arba atnaujinti spausdintuvą." +msgid "" +"Please check the network and try again. You can restart or update the " +"printer if the issue persists." +msgstr "" +"Patikrinkite tinklo ryšį ir bandykite dar kartą. Jei problema išlieka, " +"paleiskite iš naujo arba atnaujinkite spausdintuvą." msgid "The printer has been logged out and cannot connect." -msgstr "Spausdintuvas atsijungė ir nebegali prisijungti." +msgstr "Spausdintuvas yra atjungtas nuo paskyros ir negali prisijungti." msgid "Video Stopped." msgstr "Vaizdo įrašas sustabdytas." msgid "LAN Connection Failed (Failed to start liveview)" -msgstr "LAN prisijungimo klaida (Nepavyko paleisti tiesioginės peržiūros)" +msgstr "Nepavyko prisijungti per LAN (Nepavyko paleisti tiesioginio vaizdo)" msgid "" "Virtual Camera Tools is required for this task!\n" "Do you want to install them?" msgstr "" -"Šiai užduočiai reikia Virtualios kameros įrankių!\n" -"Ar norite juos instaliuoti?" +"Šiai užduočiai atlikti reikalingi virtualios kameros įrankiai „Virtual " +"Camera Tools“!\n" +"Ar norite juos įdiegti?" msgid "Downloading Virtual Camera Tools" msgstr "Atsisiunčiami virtualios kameros įrankiai" @@ -6011,8 +6627,8 @@ msgid "" "Do you want to stop this virtual camera?" msgstr "" "Veikia kita virtuali kamera.\n" -"Orca Slicer palaiko tik vieną virtualią kamerą.\n" -"Ar norite sustabdyti šią virtualią kamerą?" +"„Orca Slicer“ palaiko tik vieną virtualią kamerą.\n" +"Ar norite sustabdyti anksčiau paleistą virtualią kamerą?" #, c-format, boost-format msgid "Virtual camera initialize failed (%s)!" @@ -6046,19 +6662,19 @@ msgid "Group files by month, recent first." msgstr "Grupuoti failus pagal mėnesį, naujausi pirmiausia." msgid "Show all files, recent first." -msgstr "Rodyti visus failus, naujausi pradžioje." +msgstr "Rodyti visus failus, naujausius rodyti pirmiausia." msgid "Timelapse" -msgstr "Greitintas vaizdo įrašas" +msgstr "Intervalinis fotografavimas („Timelapse“)" msgid "Switch to timelapse files." -msgstr "Perjungti į pakadrinio video failus." +msgstr "Perjungti į intervalinio fotografavimo („timelapse“) failus." msgid "Video" -msgstr "" +msgstr "Vaizdo įrašai (Video)" msgid "Switch to video files." -msgstr "Perjungti į video failus." +msgstr "Perjungti į vaizdo įrašų failus." msgid "Switch to 3MF model files." msgstr "Perjungti į 3MF modelių failus." @@ -6067,13 +6683,13 @@ msgid "Delete selected files from printer." msgstr "Ištrinti pasirinktus failus iš spausdintuvo." msgid "Download" -msgstr "Parsisiųsti" +msgstr "Atsisiųsti" msgid "Download selected files from printer." msgstr "Atsisiųsti pasirinktus failus iš spausdintuvo." msgid "Batch manage files." -msgstr "Valdyti fails rinkinyje." +msgstr "Masinis failų valdymas." msgid "Refresh" msgstr "Atnaujinti" @@ -6082,7 +6698,7 @@ msgid "Reload file list from printer." msgstr "Iš naujo iš spausdintuvo įkelti failų sąrašą." msgid "No printers." -msgstr "Bėra spausdintuvų." +msgstr "Nėra spausdintuvų." msgid "Loading file list..." msgstr "Įkeliamas failų sąrašas..." @@ -6093,18 +6709,23 @@ msgstr "Nėra failų" msgid "Load failed" msgstr "Įkėlimas nepavyko" -msgid "Browsing file in storage is not supported in current firmware. Please update the printer firmware." +msgid "" +"Browsing file in storage is not supported in current firmware. Please update " +"the printer firmware." msgstr "" +"Failų naršymas atmintinėje nepalaikomas esamoje programinėje aparatinėje " +"įrangoje. Atnaujinkite spausdintuvo programinę įrangą." msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "LAN ryšio klaida (Nepavyko pasiekti SD kortelės)" +msgstr "Nepavyko prisijungti per LAN (Nepavyko pasiekti SD kortelės)" msgid "Browsing file in storage is not supported in LAN Only Mode." -msgstr "" +msgstr "Failų naršymas atmintinėje nėra palaikomas „Tik LAN“ režimu." #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" -msgid_plural "You are going to delete %u files from printer. Are you sure to continue?" +msgid_plural "" +"You are going to delete %u files from printer. Are you sure to continue?" msgstr[0] "Ketinate ištrinti %u failą iš spausdintuvo. Ar norite tęsti?" msgstr[1] "Ketinate ištrinti %u failus iš spausdintuvo. Ar norite tęsti?" msgstr[2] "Ketinate ištrinti %u failų iš spausdintuvo. Ar norite tęsti?" @@ -6120,7 +6741,7 @@ msgid "Delete file" msgstr "Ištrinti failą" msgid "Fetching model information..." -msgstr "Modelio informacijos rinkimas..." +msgstr "Gaunama modelio informacija..." msgid "Failed to fetch model information from printer." msgstr "Nepavyko iš spausdintuvo gauti modelio informacijos." @@ -6128,12 +6749,16 @@ msgstr "Nepavyko iš spausdintuvo gauti modelio informacijos." msgid "Failed to parse model information." msgstr "Nepavyko apdoroti modelio informacijos." -msgid "The .gcode.3mf file contains no G-code data. Please slice it with Orca Slicer and export a new .gcode.3mf file." -msgstr ".gcode.3mf faile nėra G-kodo duomenų. Susluoksniuokite failą su Orca Slicer ir eksportuokite naują .gcode.3mf failą." +msgid "" +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." +msgstr "" +"Failas „.gcode.3mf“ neturi G-kodo duomenų. Supjaustykite jį su „Orca Slicer“ " +"ir eksportuokite naują „.gcode.3mf“ failą." #, c-format, boost-format msgid "File '%s' was lost! Please download it again." -msgstr "Failas '%s' prarastas! Prašome parsisiųsti jį dar kartą." +msgstr "Failas „%s“ nerastas! Atsisiųskite jį iš naujo." #, c-format, boost-format msgid "" @@ -6144,13 +6769,13 @@ msgstr "" "Pavadinimas: %s\n" msgid "Download waiting..." -msgstr "Laikia atsisiuntimas..." +msgstr "Laukiama atsisiuntimo..." msgid "Play" msgstr "Leisti" msgid "Open Folder" -msgstr "Atverti katalogą" +msgstr "Atidaryti aplanką" msgid "Download finished" msgstr "Atsisiuntimas baigtas" @@ -6160,13 +6785,17 @@ msgid "Downloading %d%%..." msgstr "Atsisiunčiama %d%%..." msgid "Air Condition" -msgstr "" +msgstr "Kameros vėdinimas / temperatūra" -msgid "Reconnecting the printer, the operation cannot be completed immediately, please try again later." -msgstr "Bandant prisijungti prie spausdintuvo, operacija negali būti atlikta iš karto. Pabandykite dar kartą vėliau." +msgid "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." +msgstr "" +"Bandant prisijungti prie spausdintuvo, operacija negali būti atlikta iš " +"karto. Pabandykite dar kartą vėliau." msgid "Timeout, please try again." -msgstr "" +msgstr "Baigėsi laukimo laikas, prašome bandyti vėliau." msgid "File does not exist." msgstr "Failas neegzistuoja." @@ -6181,40 +6810,47 @@ msgid "" "Please check if the storage is inserted into the printer.\n" "If it still cannot be read, you can try formatting the storage." msgstr "" +"Patikrinkite, ar į spausdintuvą įdėta laikmena.\n" +"Jei ji vis tiek nuskaitoma, galite pabandyti laikmeną suformatuoti." -msgid "The firmware version of the printer is too low. Please update the firmware and try again." +msgid "" +"The firmware version of the printer is too low. Please update the firmware " +"and try again." msgstr "" +"Spausdintuvo aparatinės programinės įrangos (firmware) versija yra per sena. " +"Atnaujinkite aparatinę programinę įrangą ir bandykite dar kartą." msgid "The file already exists, do you want to replace it?" -msgstr "" +msgstr "Failas jau egzistuoja, ar norite jį pakeisti?" msgid "Insufficient storage space, please clear the space and try again." msgstr "" +"Nepakanka vietos laikmenoje, atlaisvinkite vietos ir bandykite dar kartą." msgid "File creation failed, please try again." -msgstr "" +msgstr "Nepavyko sukurti failo, bandykite dar kartą." msgid "File write failed, please try again." -msgstr "" +msgstr "Nepavyko įrašyti failo, bandykite dar kartą." msgid "MD5 verification failed, please try again." -msgstr "" +msgstr "MD5 patikra nepavyko, bandykite dar kartą." msgid "File renaming failed, please try again." -msgstr "" +msgstr "Nepavyko pervadinti failo, bandykite dar kartą." msgid "File upload failed, please try again." -msgstr "" +msgstr "Nepavyko įkelti failo, bandykite dar kartą." #, c-format, boost-format msgid "Error code: %d" msgstr "Klaidos kodas: %d" msgid "User cancels task." -msgstr "" +msgstr "Naudotojas atšaukė užduotį." msgid "Failed to read file, please try again." -msgstr "" +msgstr "Nepavyko nuskaityti failo, bandykite dar kartą." msgid "Speed:" msgstr "Greitis:" @@ -6229,7 +6865,7 @@ msgid "Zoom" msgstr "Padidinti" msgid "Translation/Zoom" -msgstr "Konvertavimas/Mastelio keitimas" +msgstr "Postūmis / Mastelio keitimas" msgid "3Dconnexion settings" msgstr "3Dconnexion nustatymai" @@ -6247,16 +6883,16 @@ msgid "Invert Z axis" msgstr "Apsukti Z ašį" msgid "Invert Yaw axis" -msgstr "Apsukti posūkio aplink ašį" +msgstr "Apgręžti posūkio ašį (Yaw)" msgid "Invert Pitch axis" -msgstr "Apsukti polinkio ašį" +msgstr "Apgręžti tangažo ašį (Pitch)" msgid "Invert Roll axis" -msgstr "Apsukti ritinio ašį" +msgstr "Apgręžti posvyrio ašį (Roll)" msgid "(LAN)" -msgstr "" +msgstr "(LAN)" msgid "Search" msgstr "Paieška" @@ -6273,9 +6909,8 @@ msgstr "Pasiekiamas" msgid "Input access code" msgstr "Įvesti prieigos kodą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Can't find devices?" -msgstr "Negalite rasti jūsų įrenginių?" +msgid "Can't find my devices?" +msgstr "Nepavyksta rasti įrenginių?" msgid "Log out successful." msgstr "Atsijungimas sėkmingas." @@ -6287,31 +6922,28 @@ msgid "Busy" msgstr "Užimtas" msgid "Modifying the device name" -msgstr "Modifikuojamas įrenginio pavadinimas" +msgstr "Keičiamas įrenginio pavadinimas" msgid "Name is invalid;" msgstr "Pavadinimas netinkamas;" msgid "illegal characters:" -msgstr "neleidžiami simboliai:" +msgstr "Neleistini simboliai:" msgid "illegal suffix:" -msgstr "neleidžiamas plėtinys:" +msgstr "Neleistinas plėtinys:" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The name field is not allowed to be empty." -msgstr "Neleidžiama, kad pavadinimas būtų tuščias." +msgid "The name is not allowed to be empty." +msgstr "Pavadinimas negali būti tuščias." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The name is not allowed to start with a space." -msgstr "Neleidžiama, kad pavadinimas prasidėtų tarpo simboliu." +msgid "The name is not allowed to start with space character." +msgstr "Pavadinimas negali prasidėti tarpu." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The name is not allowed to end with a space." -msgstr "Neleidžiama, kad pavadinimas baigtųsi tarpo simboliu." +msgid "The name is not allowed to end with space character." +msgstr "Pavadinimas negali baigtis tarpu." msgid "The name is not allowed to exceed 32 characters." -msgstr "" +msgstr "Pavadinimas negali viršyti 32 simbolių." msgid "Bind with Pin Code" msgstr "Susieti su PIN kodu" @@ -6324,17 +6956,16 @@ msgid "Quit" msgstr "Išeiti" msgid "Switching..." -msgstr "" +msgstr "Perjungiama..." msgid "Switching failed" -msgstr "" +msgstr "Nepavyko perjungti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Printing progress" +msgid "Printing Progress" msgstr "Spausdinimo eiga" msgid "Parts Skip" -msgstr "" +msgstr "Dalių praleidimas" msgid "Stop" msgstr "Sustabdyti" @@ -6343,24 +6974,27 @@ msgid "Layer: N/A" msgstr "Sluoksnis: N/A" msgid "Click to view thermal preconditioning explanation" -msgstr "" +msgstr "Spustelėkite, kad peržiūrėtumėte terminio paruošimo paaiškinimą" msgid "Clear" msgstr "Išvalyti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You have completed printing the mall model, \n" -"but synchronizing rating information has failed." +"but the synchronization of rating information has failed." msgstr "" -"Sėkmingai išspausdinote mažą modelį, tačiau \n" -"įvertinimo informacijos sinchronizavimas nepavyko." +"Baigėte spausdinti modelį iš galerijos, \n" +"tačiau įvertinimo informacijos sinchronizavimas nepavyko." msgid "How do you like this printing file?" msgstr "Kaip jums patiko šis spausdinimo failas?" -msgid "(The model has already been rated. Your rating will overwrite the previous rating.)" -msgstr "(Modelis jau buvo įvertintas. Jūsų įvertinimas perrašys ankstesnį įvertinimą.)" +msgid "" +"(The model has already been rated. Your rating will overwrite the previous " +"rating.)" +msgstr "" +"(Modelis jau buvo įvertintas. Jūsų įvertinimas perrašys ankstesnį " +"įvertinimą.)" msgid "Rate" msgstr "Įvertinti" @@ -6369,7 +7003,7 @@ msgid "Camera" msgstr "Kamera" msgid "Storage" -msgstr "Saugykla" +msgstr "Laikmena" msgid "Camera Setting" msgstr "Kameros nustatymai" @@ -6378,16 +7012,16 @@ msgid "Switch Camera View" msgstr "Perjungti kameros vaizdą" msgid "Control" -msgstr "Valdyti" +msgstr "Valdymas" msgid "Printer Parts" -msgstr "Spasdintuvo dalys" +msgstr "Spausdintuvo dalys" msgid "Print Options" msgstr "Spausdinimo parametrai" msgid "Safety Options" -msgstr "" +msgstr "Saugos nustatymai" msgid "Lamp" msgstr "Apšvietimas" @@ -6399,48 +7033,51 @@ msgid "Debug Info" msgstr "Derinimo informacija" msgid "Filament loading..." -msgstr "" +msgstr "Įveriamas plastikas..." msgid "No Storage" -msgstr "Nėra saugyklos" +msgstr "Nėra laikmenos" msgid "Storage Abnormal" -msgstr "Netinkama saugykla" +msgstr "Laikmenos klaida" msgid "Cancel print" msgstr "Atšaukti spausdinimą" msgid "Are you sure you want to stop this print?" -msgstr "" +msgstr "Ar tikrai norite sustabdyti šį spausdinimą?" msgid "The printer is busy with another print job." msgstr "Spausdintuvas užimtas kitu spausdinimo darbu." -msgid "When printing is paused, filament loading and unloading are only supported for external slots." +msgid "" +"When printing is paused, filament loading and unloading are only supported " +"for external slots." msgstr "" +"Kai spausdinimas pristabdytas, gijos įvėrimas ir išvėrimas palaikomas tik " +"išorinėse lizduose." msgid "Current extruder is busy changing filament." -msgstr "" +msgstr "Šiuo metu ekstruderis keičia giją." msgid "Current slot has already been loaded." -msgstr "" +msgstr "Į šį lizdą gija jau įverta." msgid "The selected slot is empty." -msgstr "" +msgstr "Pasirinktas lizdas yra tuščias." msgid "Printer 2D mode does not support 3D calibration" -msgstr "" +msgstr "Spausdintuvo 2D režimas nepalaiko 3D kalibravimo" msgid "Downloading..." -msgstr "Atsisunčiama..." +msgstr "Atsisiunčiama..." msgid "Cloud Slicing..." msgstr "Sluoksniavimas debesyje..." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "In Cloud Slicing Queue, there are %s tasks ahead of you." -msgstr "Debesies sluoksniavimo eilėje yra dar %s užduotys priekyje." +msgid "In Cloud Slicing Queue, there are %s tasks ahead." +msgstr "Debesies sluoksniavimo eilėje priekyje yra %s užduotys (-ių)." #, c-format, boost-format msgid "Layer: %s" @@ -6450,55 +7087,67 @@ msgstr "Sluoksnis: %s" msgid "Layer: %d/%d" msgstr "Sluoksnis: %d/%d" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please heat the nozzle to above 170℃ before loading or unloading filament." -msgstr "Prašome prieš įtraukiant ar išstumiant giją įkaitinti purkštuką virš 170 laipsnių." +msgid "" +"Please heat the nozzle to above 170℃ before loading or unloading filament." +msgstr "Prieš įverdami arba išverdami giją, įkaitinkite purkštuką virš 170°C." msgid "Chamber temperature cannot be changed in cooling mode while printing." -msgstr "" +msgstr "Spausdinimo metu vėsinimo režimu negalima keisti kameros temperatūros." -msgid "If the chamber temperature exceeds 40℃, the system will automatically switch to heating mode. Please confirm whether to switch." +msgid "" +"If the chamber temperature exceeds 40℃, the system will automatically switch " +"to heating mode. Please confirm whether to switch." msgstr "" +"Jei kameros temperatūra viršys 40°C, sistema automatiškai persijungs į " +"šildymo režimą. Patvirtinkite, ar norite perjungti." msgid "Please select an AMS slot before calibration" msgstr "Prieš kalibruodami pasirinkite AMS lizdą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Cannot read filament info: the filament is loaded to the tool head. Please unload the filament and try again." -msgstr "Negaliu nuskaityti gijos informacijos: gija įdėta į įrankio galvutę, išimkite giją ir bandykite dar kartą." +msgid "" +"Cannot read filament info: the filament is loaded to the tool head,please " +"unload the filament and try again." +msgstr "" +"Nepavyko nuskaityti gijos informacijos: gija yra paduota į spausdinimo " +"galvutę. Išverkite giją ir bandykite dar kartą." msgid "This only takes effect during printing" msgstr "Tai turi įtakos tik spausdinimo metu" msgid "Silent" -msgstr "Tyliai" +msgstr "Tylus" msgid "Standard" msgstr "Standartinis" msgid "Sport" -msgstr "Sportiškai" +msgstr "Sportinis" msgid "Ludicrous" -msgstr "Žaibiškai" +msgstr "Ekstremalus" -msgid "Turning off the lights during the task will cause the failure of AI monitoring, like spaghetti detection. Please choose carefully." +msgid "" +"Turning off the lights during the task will cause the failure of AI " +"monitoring, like spaghetti detection. Please choose carefully." msgstr "" +"Išjungus apšvietimą užduoties metu, nustos veikti dirbtinio intelekto (AI) " +"stebėsena, pavyzdžiui, susivėlusios gijos („spaghetti“) aptikimas. " +"Pasirinkite atsakingai." msgid "Keep it On" -msgstr "" +msgstr "Palikti įjungtą" msgid "Turn it Off" -msgstr "" +msgstr "Išjungti" msgid "Can't start this without storage." -msgstr "" +msgstr "Negalima paleisti be laikmenos." msgid "Rate the Print Profile" msgstr "Įvertinkite spausdinimo profilį" msgid "Comment" -msgstr "Kometarai" +msgstr "Komentaras" msgid "Rate this print" msgstr "Įvertinkite šį spausdinį" @@ -6510,7 +7159,7 @@ msgid "Delete Photo" msgstr "Ištrinti nuotrauką" msgid "Submit" -msgstr "Viskas tinka" +msgstr "Pateikti" msgid "Please click on the star first." msgstr "Pirmiausia paspauskite žvaigždutę." @@ -6522,47 +7171,50 @@ msgid "Upload Pictures" msgstr "Įkelti paveikslėlius" msgid "Number of images successfully uploaded" -msgstr "Paveiksliukų skaičius sėkmingai įkeltas" +msgstr "Sėkmingai įkeltų vaizdų skaičius" msgid " upload failed" msgstr " įkėlimas nepavyko" msgid " upload config prase failed\n" -msgstr " nepavyko apdoroti konfigūracijos įkėlimo\n" +msgstr " nepavyko apdoroti įkėlimo konfigūracijos\n" msgid " No corresponding storage bucket\n" -msgstr " Nėra atitinkamo saugojimo talpyklos\n" +msgstr " Nėra atitinkamos saugyklos talpyklos\n" msgid " cannot be opened\n" -msgstr " negalima atverti\n" +msgstr " nepavyko atidaryti\n" msgid "" -"The following issues occurred during the process of uploading images. Do you want to ignore them?\n" +"The following issues occurred during the process of uploading images. Do you " +"want to ignore them?\n" "\n" msgstr "" "Įkeliant vaizdus kilo šios problemos. Ar norite jas ignoruoti?\n" "\n" msgid "info" -msgstr "" +msgstr "Informacija" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "Sinchronizuojami spausdinimo rezultatai. Pabandykite dar kartą po kelių akimirkų." +msgstr "" +"Sinchronizuojami spausdinimo rezultatai. Pabandykite dar kartą po kelių " +"akimirkų." msgid "Upload failed\n" msgstr "Įkėlimas nepavyko\n" msgid "Obtaining instance_id failed\n" -msgstr "nepavyko gauti instance_id\n" +msgstr "Nepavyko gauti „instance_id“\n" msgid "" "Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" -"Jūsų komentaro rezultato nepavyko įkelti dėl kelių priežasčių. Apie jas pranešama toliau:\n" +"Nepavyko įkelti jūsų komentaro dėl šių priežasčių:\n" "\n" -" klaidos kodas: " +" klaidos kodas: " msgid "error message: " msgstr "klaidos pranešimas: " @@ -6576,11 +7228,15 @@ msgstr "" "\n" "Norite būti nukreipti į puslapį, kuriame galima įvertinti?" -msgid "Some of your images failed to upload. Would you like to redirect to the webpage to give a rating?" -msgstr "Nepavyko įkelti kai kurių jūsų vaizdų. Norite būti nukreipti į puslapį, kuriame galite įvertinti?" +msgid "" +"Some of your images failed to upload. Would you like to redirect to the " +"webpage to give a rating?" +msgstr "" +"Nepavyko įkelti kai kurių jūsų vaizdų. Norite būti nukreipti į puslapį, " +"kuriame galite įvertinti?" msgid "You can select up to 16 images." -msgstr "Jūs galite pasirinkti iki 16 paveikslėlių." +msgstr "Galite pasirinkti iki 16 vaizdų." msgid "" "At least one successful print record of this print profile is required \n" @@ -6590,7 +7246,7 @@ msgstr "" "bent vienas sėkmingas spausdinimo rezultatas su šiuo spausdinimo profiliu." msgid "click to add machine" -msgstr "" +msgstr "spustelėkite, kad pridėtumėte įrenginį" msgid "Status" msgstr "Būsena" @@ -6600,24 +7256,24 @@ msgid "Update" msgstr "Atnaujinti" msgid "Assistant(HMS)" -msgstr "" +msgstr "Asistentas (HMS)" #, c-format, boost-format msgid "Network plug-in v%s" -msgstr "" +msgstr "Tinklo papildinys v%s" #, c-format, boost-format msgid "Network plug-in v%s (%s)" -msgstr "" +msgstr "Tinklo papildinys v%s (%s)" msgid "Don't show again" msgstr "Daugiau nerodyti" msgid "Go to" -msgstr "" +msgstr "Eiti į" msgid "Later" -msgstr "" +msgstr "Vėliau" #, c-format, boost-format msgid "%s error" @@ -6637,7 +7293,7 @@ msgstr "%s turi įspėjimą" #, c-format, boost-format msgid "%s info" -msgstr "" +msgstr "%s info" #, c-format, boost-format msgid "%s information" @@ -6646,31 +7302,35 @@ msgstr "%s informacija" msgid "Skip" msgstr "Praleisti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Newer 3MF version" msgstr "Naujesnė 3MF versija" -msgid "The 3MF file version is in Beta and it is newer than the current OrcaSlicer version." -msgstr "3MF failo versija yra Beta versijos, t.y. naujesnė, negu dabartinė Orca Slicer versija." +msgid "" +"The 3MF file version is in Beta and it is newer than the current OrcaSlicer " +"version." +msgstr "" +"3MF failo versija yra „Beta“ stadijos ir yra naujesnė už dabartinę " +"„OrcaSlicer“ versiją." msgid "If you would like to try Orca Slicer Beta, you may click to" -msgstr "Jei norite pabandyti Orca Slicer Beta, turėtumėte spustelėti" +msgstr "Jei norite išbandyti „OrcaSlicer Beta“, spustelėkite" msgid "Download Beta Version" msgstr "Atsisiųsti Beta versiją" msgid "The 3MF file version is newer than the current OrcaSlicer version." -msgstr "3MF versija yra naujesnė, negu dabar naudojama Orca Slicer versija." +msgstr "3MF failo versija yra naujesnė už dabartinę „OrcaSlicer“ versiją." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Updating your OrcaSlicer could enable all functionality in the 3MF file." -msgstr "Atnaujinus Orca Slicer programinę įrangą galėsite naudoti visas 3MF failo funkcijas." +msgid "" +"Updating your OrcaSlicer could enable all functionality in the 3MF file." +msgstr "" +"Atnaujinę „OrcaSlicer“, galėsite naudotis visomis 3MF failo funkcijomis." msgid "Current Version: " msgstr "Dabartinė versija: " msgid "Latest Version: " -msgstr "Paskutinė versija: " +msgstr "Naujausia versija: " msgctxt "Software" msgid "Update" @@ -6680,13 +7340,21 @@ msgid "Not for now" msgstr "Dabar ne" msgid "Server Exception" -msgstr "Serverio išimtis" +msgstr "Serverio išimtinė klaida" -msgid "The server is unable to respond. Please click the link below to check the server status." -msgstr "Serveris negali atsakyti. Norėdami patikrinti serverio būseną, spustelėkite toliau pateiktą nuorodą." +msgid "" +"The server is unable to respond. Please click the link below to check the " +"server status." +msgstr "" +"Serveris negali atsakyti. Norėdami patikrinti serverio būseną, spustelėkite " +"toliau pateiktą nuorodą." -msgid "If the server is in a fault state, you can temporarily use offline printing or local network printing." -msgstr "Jei serveris yra sugedęs, galite laikinai naudoti spausdinimą neprisijungus arba spausdinimą vietiniame tinkle." +msgid "" +"If the server is in a fault state, you can temporarily use offline printing " +"or local network printing." +msgstr "" +"Jei sutriko serverio veikimas, galite laikinai naudoti spausdinimą " +"neprisijungus arba spausdinimą vietiniame tinkle (LAN)." msgid "How to use LAN only mode" msgstr "Kaip naudoti tik LAN režimą" @@ -6697,9 +7365,11 @@ msgstr "Daugiau nerodyti šio dialogo lango" msgid "3D Mouse disconnected." msgstr "3D pelė atjungta." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A new configuration is available. Update now?" -msgstr "Yra nauja konfigūracija. Atnaujinti dabar?" +msgid "Configuration can update now." +msgstr "Dabar galima atnaujinti konfigūraciją." + +msgid "Detail." +msgstr "Išsamiau." msgid "Integration was successful." msgstr "Integracija sėkminga." @@ -6714,7 +7384,7 @@ msgid "New network plug-in available." msgstr "Galimas naujas tinklo papildinys." msgid "Details" -msgstr "Smulkiau" +msgstr "Išsamiau" msgid "New printer config available." msgstr "Pasiekiama nauja spausdintuvo konfigūracija." @@ -6722,23 +7392,20 @@ msgstr "Pasiekiama nauja spausdintuvo konfigūracija." msgid "Undo integration failed." msgstr "Integracijos atšaukimas nepavyko." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Exporting" +msgid "Exporting." msgstr "Eksportuojama." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "An update is available!" -msgstr "Yra atnaujinimas!" +msgid "Software has New version." +msgstr "Išleista nauja programos versija." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Go to download page" -msgstr "Eikite į atsisiuntimo puslapį." +msgid "Goto download page." +msgstr "Eiti į atsisiuntimo puslapį." msgid "Open Folder." -msgstr "Atverti katalogą." +msgstr "Atidaryti aplanką." msgid "Safely remove hardware." -msgstr "Saugiai atjunkite įrangą." +msgstr "Saugiai išimti laikmeną." #, c-format, boost-format msgid "%1$d Object has custom supports." @@ -6750,23 +7417,28 @@ msgstr[2] "%1$d objektų turi pasirinktines atramas." #, c-format, boost-format msgid "%1$d Object has color painting." msgid_plural "%1$d Objects have color painting." -msgstr[0] "%1$d objektas yra spalvotas." -msgstr[1] "%1$d objektai yra spalvoti." -msgstr[2] "%1$d objektų yra spalvoti." +msgstr[0] "%1$d objektas turi nudažytų spalvų." +msgstr[1] "%1$d objektai turi nudažytų spalvų." +msgstr[2] "%1$d objektų turi nudažytų spalvų." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." msgid_plural "%1$d objects were loaded as parts of cut object." -msgstr[0] "%1$d objektas įkeltas kaip sluoksniuojamo objekto dalis." -msgstr[1] "%1$d objektai įkelti kaip sluoksniuojamo objekto dalys." -msgstr[2] "%1$d objektų įkelta kaip sluoksniuojamo objekto dalis." +msgstr[0] "%1$d objektas įkeltas kaip perpjauto objekto dalis." +msgstr[1] "%1$d objektai įkelti kaip perpjauto objekto dalys." +msgstr[2] "%1$d objektų įkelta kaip perpjauto objekto dalys." #, c-format, boost-format msgid "%1$d object was loaded with fuzzy skin painting." msgid_plural "%1$d objects were loaded with fuzzy skin painting." -msgstr[0] "%1$d objektas buvo įkeltas su užpieštu grublėtu paviršiumi." -msgstr[1] "%1$d objektai buvo įkelti su užpieštu grublėtu paviršiumi." -msgstr[2] "%1$d objektų buvo įkelta su užpieštu grublėtu paviršiumi." +msgstr[0] "" +"%1$d objektas įkeltas su parinkta grublėto paviršiaus („fuzzy skin“) sritimi." +msgstr[1] "" +"%1$d objektai įkelti su parinktomis grublėto paviršiaus („fuzzy skin“) " +"sritimis." +msgstr[2] "" +"%1$d objektų įkelta su parinktomis grublėto paviršiaus („fuzzy skin“) " +"sritimis." msgid "ERROR" msgstr "KLAIDA" @@ -6787,34 +7459,34 @@ msgid "Error:" msgstr "Klaida:" msgid "Warning:" -msgstr "Dėmesio:" +msgstr "Įspėjimas:" msgid "Exported successfully" msgstr "Sėkmingai eksportuota" msgid "Model file downloaded." -msgstr "Modelio failas parsiųstas." +msgstr "Modelio failas atsisiųstas." msgid "Pull" -msgstr "" +msgstr "Atsisiųsti" msgid "Force push" -msgstr "" +msgstr "Priverstinai įkelti" msgid "Shared profiles may be available for this printer." -msgstr "" +msgstr "Šiam spausdintuvui gali būti prieinami bendri profiliai." msgid "Browse shared profiles" -msgstr "" +msgstr "Naršyti bendrinamus profilius" msgid "Serious warning:" -msgstr "Svarbus įspėjimas:" +msgstr "Rimtas įspėjimas:" msgid " (Repair)" msgstr " (Taisyti)" msgid " Click here to install it." -msgstr " Spustelkite čia įdiegimui." +msgstr " Spustelėkite čia, kad įdiegtumėte." msgid "WARNING:" msgstr "ĮSPĖJIMAS:" @@ -6823,19 +7495,29 @@ msgid "Your model needs support! Please enable support material." msgstr "Jūsų modeliui reikalingos atramos! Įjunkite atraminę medžiagą." msgid "G-code path overlap" -msgstr "G-kodo kelių persidengimas" +msgstr "G-kodo trajektorijų persidengimas" + +msgid "Support painting" +msgstr "Atramų piešimas" + +msgid "Color painting" +msgstr "Spalvų piešimas" msgid "Cut connectors" -msgstr "Pjūvių jungtys" +msgstr "Pjūvio kaiščiai" msgid "Layers" msgstr "Sluoksniai" -msgid "The application cannot run normally because OpenGL version is lower than 3.2.\n" +msgid "" +"The application cannot run normally because OpenGL version is lower than " +"3.2.\n" msgstr "" +"Programa negali tinkamai veikti, nes „OpenGL“ versija yra senesnė nei 3.2.\n" +"\n" msgid "Please upgrade your graphics card driver." -msgstr "Prašome atnaujinti jūsų grafinės plokštės programinę įrangą." +msgstr "Atnaujinkite vaizdo plokštės tvarkyklę." msgid "Unsupported OpenGL version" msgstr "Nepalaikoma OpenGL versija" @@ -6845,11 +7527,11 @@ msgid "" "Unable to load shaders:\n" "%s" msgstr "" -"Neįmanoma įkelti šeiderių:\n" +"Nepavyko įkelti šeiderių:\n" "%s" msgid "Error loading shaders" -msgstr "Įkeliant šeiderius įvyko klaida" +msgstr "Klaida įkeliant šeiderius" msgctxt "Layers" msgid "Top" @@ -6862,80 +7544,100 @@ msgstr "Apatinis" msgid "Enable detection of build plate position" msgstr "Įjungti spausdinimo pagrindo pozicijos atpažinimą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The localization tag of the build plate will be detected, and printing will be paused if the tag is not in predefined range." -msgstr "Spausdinimo pagrindo lokalizavimo žymė įjungta. Spausdinimas bus pristabdytas, jei žymė išeis už nustatytų ribų." +msgid "" +"The localization tag of build plate is detected, and printing is paused if " +"the tag is not in predefined range." +msgstr "" +"Spausdinimo pagrindo lokalizavimo žymė įjungta. Spausdinimas bus " +"pristabdytas, jei žymė išeis už nustatytų ribų." msgid "Build Plate Detection" -msgstr "" +msgstr "Spausdinimo pagrindo aptikimas" -msgid "Identifies the type and position of the build plate on the heatbed. Pausing printing if a mismatch is detected." +msgid "" +"Identifies the type and position of the build plate on the heatbed. Pausing " +"printing if a mismatch is detected." msgstr "" +"Atpažįsta spausdinimo pagrindo tipą ir padėtį ant kaitinamo pagrindo. " +"Aptikus neatitikimą, spausdinimas pristabdomas." msgid "AI Detections" -msgstr "" +msgstr "DI aptikimai" -msgid "Printer will send assistant message or pause printing if any of the following problem is detected." +msgid "" +"Printer will send assistant message or pause printing if any of the " +"following problem is detected." msgstr "" +"Spausdintuvas atsiųs asistento pranešimą arba pristabdys spausdinimą, jei " +"bus aptikta kuri nors iš šių problemų." msgid "Enable AI monitoring of printing" msgstr "Įjungti DI spausdinimo stebėjimą" msgid "Pausing Sensitivity:" -msgstr "" +msgstr "Pristabdymo jautrumas:" msgid "Spaghetti Detection" -msgstr "" +msgstr "„Spageti“ (susivėlimo) aptikimas" msgid "Detect spaghetti failures (scattered lose filament)." -msgstr "Aptikti spagečių gedimus (išsisklaidęs laisvas filamentas)." +msgstr "" +"Aptikti spausdinimo nesėkmes, kai gija susivelia (išsisklaido laisva gija)." msgid "Purge Chute Pile-Up Detection" -msgstr "" +msgstr "Atliekų šachtos užsikimšimo aptikimas" msgid "Monitor if the waste is piled up in the purge chute." -msgstr "" +msgstr "Stebėti, ar atliekų šachtoje nesusikaupė gijos atliekų krūva." msgid "Nozzle Clumping Detection" -msgstr "Antgalio užsikimšimo aptikimas" +msgstr "Gijos sankaupų ant purkštuko aptikimas" msgid "Check if the nozzle is clumping by filaments or other foreign objects." msgstr "" +"Tikrinti, ar aplink purkštuką nesikaupia gijos gniutulai ar kiti pašaliniai " +"objektai." msgid "Detects air printing caused by nozzle clogging or filament grinding." msgstr "" +"Aptinka „tuščią spausdinimą“, sukeltą purkštuko užsikimšimo arba gijos " +"prasisukimo (gremžimo) tiektuve." msgid "First Layer Inspection" msgstr "Pirmojo sluoksnio apžiūra" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Auto-recover from step loss" +msgid "Auto-recovery from step loss" msgstr "Atstatymas po žingsnių praleidimo" msgid "Store Sent Files on External Storage" -msgstr "" +msgstr "Išsaugoti išsiųstus failus išorinėje laikmenoje" -msgid "Save the printing files initiated from Bambu Studio, Bambu Handy and MakerWorld on External Storage" +msgid "" +"Save the printing files initiated from Bambu Studio, Bambu Handy and " +"MakerWorld on External Storage" msgstr "" +"Išsaugoti išorinėje laikmenoje spausdinimo failus, paleistus iš „Bambu " +"Studio“, „Bambu Handy“ ir „MakerWorld“" msgid "Allow Prompt Sound" msgstr "Leisti garsus" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament Tangle Detection" -msgstr "Aptikti gijos susipainiojimus" +msgid "Filament Tangle Detect" +msgstr "Gijos susipainiojimo aptikimas" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Patikrinti, ar purkštukas neužsikimšo dėl gijos ar pašalinių objektų." +msgstr "" +"Tikrinti, ar aplink purkštuką nesikaupia gijos gniutulai ar kiti pašaliniai " +"objektai." msgid "Open Door Detection" -msgstr "" +msgstr "Atidarytų durelių aptikimas" msgid "Notification" -msgstr "" +msgstr "Pranešimas" msgid "Pause printing" -msgstr "" +msgstr "Pristabdyti spausdinimą" msgctxt "Nozzle Type" msgid "Type" @@ -6950,7 +7652,7 @@ msgid "Flow" msgstr "Srautas" msgid "Please change the nozzle settings on the printer." -msgstr "" +msgstr "Pakeiskite purkštuko nustatymus spausdintuve." msgid "Hardened Steel" msgstr "Grūdintas plienas" @@ -6959,28 +7661,30 @@ msgid "Stainless Steel" msgstr "Nerūdijantis plienas" msgid "Tungsten Carbide" -msgstr "" +msgstr "Volframo karbidas" msgid "Brass" msgstr "Žalvaris" msgid "High flow" -msgstr "" +msgstr "Didelio srauto (High flow)" msgid "No wiki link available for this printer." -msgstr "" +msgstr "Šiam spausdintuvui nėra „wiki“ nuorodos." msgid "Refreshing" -msgstr "" +msgstr "Atnaujinama" msgid "Unavailable while heating maintenance function is on." -msgstr "" +msgstr "Neprieinama, kol įjungta kaitinimo palaikymo funkcija." msgid "Idle Heating Protection" -msgstr "" +msgstr "Apsauga nuo kaitinimo prastovos metu" msgid "Stops heating automatically after 5 mins of idle to ensure safety." msgstr "" +"Saugumui užtikrinti kaitinimas automatiškai sustabdomas po 5 minučių " +"prastovos." msgid "Global" msgstr "Bendras" @@ -6989,10 +7693,10 @@ msgid "Objects" msgstr "Objektai" msgid "Cycle settings visibility" -msgstr "" +msgstr "Ciklo nustatymų matomumas" msgid "Compare presets" -msgstr "Palyginti išankstinius nustatymus" +msgstr "Palyginti profilius" msgid "View all object's settings" msgstr "Matyti visus objekto nustatymus" @@ -7016,7 +7720,7 @@ msgid "Lock current plate" msgstr "Užrakinti dabartinę plokštę" msgid "Filament grouping" -msgstr "" +msgstr "Gijų grupavimas" msgid "Edit current plate name" msgstr "Taisyti dabartinės plokštės pavadinimą" @@ -7029,25 +7733,36 @@ msgstr "Individualizuoti esamą plokštę" #, c-format, boost-format msgid "The %s nozzle can not print %s." -msgstr "" +msgstr "%s purkštukas negali spausdinti %s." #, boost-format msgid "Mixing %1% with %2% in printing is not recommended.\n" msgstr "" +"Spausdinant nerekomenduojama maišyti %1% su %2%.\n" +"\n" msgid " nozzle" -msgstr "" +msgstr " purkštukas" #, boost-format -msgid "It is not recommended to print the following filament(s) with %1%: %2%\n" +msgid "" +"It is not recommended to print the following filament(s) with %1%: %2%\n" msgstr "" +"Su %1% nerekomenduojama spausdinti šių gijų: %2%\n" +"\n" -msgid "It is not recommended to use the following nozzle and filament combinations:\n" +msgid "" +"It is not recommended to use the following nozzle and filament " +"combinations:\n" msgstr "" +"Nerekomenduojama naudoti šių purkštuko ir gijos derinių:\n" +"\n" #, boost-format msgid "%1% with %2%\n" msgstr "" +"%1% su %2%\n" +"\n" #, boost-format msgid " plate %1%:" @@ -7074,52 +7789,71 @@ msgstr "Sunaudota medžiagų" msgid "Estimated time" msgstr "Numatomas laikas" +msgid "Filament changes" +msgstr "Gijos keitimai" + msgid "Set the number of AMS installed on the nozzle." -msgstr "" +msgstr "Nustatykite purkštukui įdiegtų AMS skaičių." msgid "AMS(4 slots)" -msgstr "" +msgstr "AMS (4 lizdai)" msgid "AMS(1 slot)" -msgstr "" +msgstr "AMS (1 lizdas)" msgid "Not installed" -msgstr "" +msgstr "Neįdiegta" -msgid "The software does not support using different diameter of nozzles for one print. If the left and right nozzles are inconsistent, we can only proceed with single-head printing. Please confirm which nozzle you would like to use for this project." +msgid "" +"The software does not support using different diameter of nozzles for one " +"print. If the left and right nozzles are inconsistent, we can only proceed " +"with single-head printing. Please confirm which nozzle you would like to use " +"for this project." msgstr "" +"Programinė įranga nepalaiko skirtingo skersmens purkštukų naudojimo vienam " +"spausdinimui. Jei kairysis ir dešinysis purkštukai skiriasi, galima " +"spausdinti tik su viena galvute. Patvirtinkite, kurį purkštuką norite " +"naudoti šiam projektui." msgid "Switch diameter" -msgstr "" +msgstr "Pakeisti skersmenį" msgid "Configuration incompatible" msgstr "Nesuderinama konfigūracija" msgid "Sync printer information" -msgstr "" +msgstr "Sinchronizuoti spausdintuvo informaciją" msgid "" -"The currently selected machine preset is inconsistent with the connected printer type.\n" +"The currently selected machine preset is inconsistent with the connected " +"printer type.\n" "Are you sure to continue syncing?" msgstr "" +"Šiuo metu pasirinktas įrenginio profilis neatitinka prijungto spausdintuvo " +"tipo.\n" +"Ar tikrai norite tęsti sinchronizavimą?" -msgid "There are unset nozzle types. Please set the nozzle types of all extruders before synchronizing." +msgid "" +"There are unset nozzle types. Please set the nozzle types of all extruders " +"before synchronizing." msgstr "" +"Yra nenustatytų purkštukų tipų. Prieš sinchronizuodami nustatykite visų " +"ekstruderių purkštukų tipus." msgid "Sync extruder infomation" -msgstr "" +msgstr "Sinchronizuoti ekstruderio informaciją" msgid "Connection" msgstr "Ryšys" msgid "Synchronize nozzle information and the number of AMS" -msgstr "" +msgstr "Sinchronizuoti purkštuko informaciją ir AMS skaičių" msgid "Click to edit preset" -msgstr "Spustelėkite norėdami redaguoti išankstinį nustatymą" +msgstr "Spustelėkite, norėdami redaguoti profilį" msgid "Project Filaments" -msgstr "" +msgstr "Projekto gijos" msgid "Flushing volumes" msgstr "Valymo tūriai" @@ -7143,8 +7877,12 @@ msgid "Pellets" msgstr "Granulės" #, c-format, boost-format -msgid "After completing your operation, %s project will be closed and create a new project." +msgid "" +"After completing your operation, %s project will be closed and create a new " +"project." msgstr "" +"Baigus šią operaciją, projektas „%s“ bus uždarytas ir bus sukurtas naujas " +"projektas." msgid "There are no compatible filaments, and sync is not performed." msgstr "Čia nėra suderinamų gijų, sinchronizacija nebuvo atlikta." @@ -7154,47 +7892,77 @@ msgstr "Sinchronizuoti gijas su AMS" msgid "" "There are some unknown or incompatible filaments mapped to generic preset.\n" -"Please update Orca Slicer or restart Orca Slicer to check if there is an update to system presets." +"Please update Orca Slicer or restart Orca Slicer to check if there is an " +"update to system presets." msgstr "" +"Yra keletas nežinomų arba nesuderinamų gijų, priskirtų bendrajam profiliui.\n" +"Atnaujinkite „OrcaSlicer“ arba paleiskite programą iš naujo, kad " +"patikrintumėte, ar yra sistemos profilių atnaujinimų." msgid "Only filament color information has been synchronized from printer." -msgstr "" +msgstr "Iš spausdintuvo buvo sinchronizuota tik gijos spalvos informacija." -msgid "Filament type and color information have been synchronized, but slot information is not included." +msgid "" +"Filament type and color information have been synchronized, but slot " +"information is not included." msgstr "" +"Gijos tipo ir spalvos informacija buvo sinchronizuota, tačiau lizdų " +"informacija neįtraukta." #, boost-format msgid "Do you want to save changes to \"%1%\"?" msgstr "Ar norite išsaugoti \"%1%\" pakeitimus?" #, c-format, boost-format -msgid "Successfully unmounted. The device %s (%s) can now be safely removed from the computer." -msgstr "Sėkmingai atjungtas. Įrenginį %s(%s) dabar galima saugiai išimti iš kompiuterio." +msgid "" +"Successfully unmounted. The device %s (%s) can now be safely removed from " +"the computer." +msgstr "" +"Sėkmingai atjungtas. Įrenginį %s(%s) dabar galima saugiai išimti iš " +"kompiuterio." #, c-format, boost-format msgid "Ejecting of device %s (%s) has failed." msgstr "Nepavyko išimti įrenginio %s (%s)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Previously unsaved items have been detected. Do you want to restore them?" +msgid "Previous unsaved project detected, do you want to restore it?" msgstr "Aptiktas ankstesnis neišsaugotas projektas. Ar norite jį atkurti?" msgid "Restore" msgstr "Atkurti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The current heatbed temperature is relatively high. The nozzle may clog when printing this filament in a closed environment. Please open the front door and/or remove the upper glass." -msgstr "Kaitinamo pagrindo temperatūra yra gana aukšta. Spausdinant šią giją uždaroje kameroje, antgalis gali užsikimšti. Prašome atidaryti priekines duris ir (arba) nuimti viršutinį stiklą." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The nozzle hardness required by the filament is higher than the default nozzle hardness of the printer. Please replace the hardened nozzle or filament, otherwise, the nozzle will be worn down or damaged." -msgstr "Gijai reikalingas kietesnis negu standartinis šio spausdintuvo antgalis. Norint išvengti antgalio dilimo ar pažeidimo, rekomenduojama pakeisti esamą antgalį į kietesnį, arba naudoti kitą giją, kuriai tinka standartinis antgalis." - -msgid "Enabling traditional timelapse photography may cause surface imperfections. It is recommended to change to smooth mode." -msgstr "Įjungus standartinę pakadrinę fotografiją galimi paviršiaus nelygumai. Rekomenduojama perjungti į glotnų režimą." - -msgid "Smooth mode for timelapse is enabled, but the prime tower is off, which may cause print defects. Please enable the prime tower, re-slice and print again." +msgid "" +"The current hot bed temperature is relatively high. The nozzle may be " +"clogged when printing this filament in a closed enclosure. Please open the " +"front door and/or remove the upper glass." msgstr "" +"Kaitinamo pagrindo temperatūra yra gana aukšta. Spausdinant šią giją " +"uždaroje kameroje, purkštukas gali užsikimšti. Prašome atidaryti priekines " +"dureles ir (arba) nuimti viršutinį stiklą." + +msgid "" +"The nozzle hardness required by the filament is higher than the default " +"nozzle hardness of the printer. Please replace the hardened nozzle or " +"filament, otherwise, the nozzle will be attrited or damaged." +msgstr "" +"Gijai reikalingas purkštuko kietumas yra didesnis už numatytąjį spausdintuvo " +"purkštuko kietumą. Pakeiskite purkštuką į grūdintą arba naudokite kitą giją, " +"kitaip purkštukas nusidėvės arba bus sugadintas." + +msgid "" +"Enabling traditional timelapse photography may cause surface imperfections. " +"It is recommended to change to smooth mode." +msgstr "" +"Įjungus standartinę pakadrinę fotografiją galimi paviršiaus nelygumai. " +"Rekomenduojama perjungti į glotnų režimą." + +msgid "" +"Smooth mode for timelapse is enabled, but the prime tower is off, which may " +"cause print defects. Please enable the prime tower, re-slice and print again." +msgstr "" +"Įjungtas glotnus pakadrinės fotografijos režimas, tačiau išjungtas valymo " +"bokštas (prime tower), todėl gali atsirasti spausdinimo defektų. Įjunkite " +"valymo bokštą, supjaustykite (re-slice) iš naujo ir paleiskite spausdinimą." msgid "Expand sidebar" msgstr "Išskleisti šoninę juostą" @@ -7203,7 +7971,7 @@ msgid "Collapse sidebar" msgstr "Sutraukti šoninę juostą" msgid "Tab" -msgstr "" +msgstr "Tab" #, c-format, boost-format msgid "Loading file: %s" @@ -7213,81 +7981,121 @@ msgid "Load 3MF" msgstr "Įkelti 3MF" msgid "BambuStudio Project" -msgstr "" +msgstr "„BambuStudio“ projektas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The 3MF is not supported by OrcaSlicer, loading geometry data only." msgstr "3MF nepalaikomas Orca Slicer. Įkeliami tik geometrijos duomenys." -msgid "The 3MF file was generated by an old OrcaSlicer version, loading geometry data only." +msgid "" +"The 3MF file was generated by an old OrcaSlicer version, loading geometry " +"data only." msgstr "" +"3MF failas buvo sukurtas naudojant seną „OrcaSlicer“ versiją, įkeliami tik " +"geometrijos duomenys." -msgid "The 3MF file was generated by an older version, loading geometry data only." +msgid "" +"The 3MF file was generated by an older version, loading geometry data only." msgstr "" +"3MF failas buvo sukurtas naudojant senesnę versiją, įkeliami tik geometrijos " +"duomenys." msgid "The 3MF file was generated by BambuStudio, loading geometry data only." +msgstr "3MF failą sukūrė „BambuStudio“, įkeliami tik geometrijos duomenis." + +msgid "" +"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill " +"rotation template settings that may not work properly with your current " +"infill pattern. This could result in weak support or print quality issues." msgstr "" +"Šis projektas buvo sukurtas naudojant „OrcaSlicer 2.3.1-alpha“ ir jame " +"naudojami užpildymo rotacijos šablono nustatymai, kurie gali neveikti " +"tinkamai su jūsų dabartiniu užpildymo modeliu. Dėl to gali atsirasti silpnos " +"atramos arba spausdinimo kokybės problemos." -msgid "This project was created with an OrcaSlicer 2.3.1-alpha and uses infill rotation template settings that may not work properly with your current infill pattern. This could result in weak support or print quality issues." -msgstr "Šis projektas buvo sukurtas naudojant „OrcaSlicer 2.3.1-alpha“ ir jame naudojami užpildymo rotacijos šablono nustatymai, kurie gali neveikti tinkamai su jūsų dabartiniu užpildymo modeliu. Dėl to gali atsirasti silpnos atramos arba spausdinimo kokybės problemos." - -msgid "Would you like OrcaSlicer to automatically fix this by clearing the rotation template settings?" -msgstr "Ar norėtumėte, kad „OrcaSlicer“ automatiškai ištaisytų šią problemą, išvalydamas sukimosi šablono nustatymus?" +msgid "" +"Would you like OrcaSlicer to automatically fix this by clearing the rotation " +"template settings?" +msgstr "" +"Ar norėtumėte, kad „OrcaSlicer“ automatiškai ištaisytų šią problemą, " +"išvalydamas sukimosi šablono nustatymus?" #, c-format, boost-format -msgid "The 3MF file version %s is newer than %s's version %s, found the following unrecognized keys:" +msgid "" +"The 3MF file version %s is newer than %s's version %s, found the following " +"unrecognized keys:" msgstr "3mf versija %s yra naujesnė už %s versiją %s, rasta nepažįstamų raktų:" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "You should update your software.\n" +msgid "You'd better upgrade your software.\n" msgstr "Geriau jau atnaujinkite savo programinę įrangą\n" #, c-format, boost-format -msgid "The 3MF file version %s is newer than %s's version %s, we suggest to upgrade your software." -msgstr "3MF failo versija %s yra naujesnė nei %s versija %s. Siūloma atnaujinti jūsų programinę įrangą." +msgid "" +"The 3MF file version %s is newer than %s's version %s, we suggest to upgrade " +"your software." +msgstr "" +"3MF failo versija %s yra naujesnė nei %s versija %s. Siūloma atnaujinti jūsų " +"programinę įrangą." #, c-format, boost-format -msgid "The 3MF was created by BambuStudio (version %s), which is newer than the compatible version %s. Found unrecognized settings:" +msgid "" +"The 3MF was created by BambuStudio (version %s), which is newer than the " +"compatible version %s. Found unrecognized settings:" msgstr "" +"3MF failą sukūrė „BambuStudio“ (versija %s), kuri yra naujesnė už suderinamą " +"versiją %s. Rasta nepažįstamų nustatymų:" #, c-format, boost-format -msgid "The 3MF was created by BambuStudio (version %s), which is newer than the compatible version %s. Some settings may not be fully compatible." +msgid "" +"The 3MF was created by BambuStudio (version %s), which is newer than the " +"compatible version %s. Some settings may not be fully compatible." msgstr "" +"3MF failą sukūrė „BambuStudio“ (versija %s), kuri yra naujesnė už suderinamą " +"versiją %s. Kai kurie nustatymai gali būti nevisiškai suderinami." -msgid "The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer." +msgid "" +"The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer." msgstr "" +"3MF failą sukūrė „BambuStudio“. Kai kurie nustatymai gali skirtis nuo " +"„OrcaSlicer“ nustatymų." msgid "Invalid values found in the 3MF:" msgstr "3MF rasti netinkami duomenys:" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please correct them in the Param tabs" +msgid "Please correct them in the param tabs" msgstr "Prašome juos ištaisyti parametrų skirtukuose" -msgid "The 3MF has the following modified G-code in filament or printer presets:" -msgstr "3MF faile yra šie modifikuoti G-kodai gijos ar spausdintuvo iš anksto nustatytuose parametruose:" +msgid "" +"The 3MF has the following modified G-code in filament or printer presets:" +msgstr "" +"3MF faile yra šie modifikuoti G-kodai gijos ar spausdintuvo profiliuose:" -msgid "Please confirm that all modified G-code is safe to prevent any damage to the machine!" -msgstr "Prašome patvirtinti, kad šie modifikuoti G-kodai yra saugūs ir nesugadins jūsų įrangos!" +msgid "" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" +msgstr "" +"Prašome patvirtinti, kad šie modifikuoti G-kodai yra saugūs ir nesugadins " +"jūsų įrangos!" msgid "Modified G-code" msgstr "Modifikuotas G-kodas" msgid "The 3MF has the following customized filament or printer presets:" -msgstr "3MF faile yra pakeistų gijos ar spausdinimo nustatymų:" +msgstr "3MF faile yra šie pritaikyti gijos ar spausdintuvo profiliai:" -msgid "Please confirm that the G-code within these presets is safe to prevent any damage to the machine!" -msgstr "Prašome patvirtinti, kad šiuose nustatymuose esantys G-kodai yra saugūs ir nesugadins jūsų įrangos!" +msgid "" +"Please confirm that the G-code within these presets is safe to prevent any " +"damage to the machine!" +msgstr "" +"Patvirtinkite, kad šiuose profiliuose esantis G-kodas yra saugus, kad " +"išvengtumėte įrenginio pažeidimų!" msgid "Customized Preset" -msgstr "Pakeisti nustatymai" +msgstr "Pritaikytas profilis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Component name(s) inside step file not in UTF8 format!" +msgid "Name of components inside STEP file is not UTF8 format!" msgstr "Komponentų pavadinimai STEP faile nėra UTF-8 formato!" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Because of unsupported text encoding, garbage characters may appear!" +msgid "The name may show garbage characters!" msgstr "Pavadinimas gali rodyti neskaitomus simbolius!" msgid "Remember my choice." @@ -7303,23 +8111,22 @@ msgstr "Nulinio tūrio objektai pašalinti" msgid "The volume of the object is zero" msgstr "Objekto tūris nulinis" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" -"The object from file %s is too small, and may be in meters or inches.\n" +"The object from file %s is too small, and maybe in meters or inches.\n" " Do you want to scale to millimeters?" msgstr "" -"Objektas iš failo „%s“ yra per mažas ir galimai nurodytas metrais arba coliais.\n" +"Objektas iš failo „%s“ yra per mažas ir galimai nurodytas metrais arba " +"coliais.\n" "Ar norite mastelį pakeisti į milimetrus?" msgid "Object too small" msgstr "Objektas per mažas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" -"the file be loaded as a single object with multiple parts?" +"the file be loaded as a single object having multiple parts?" msgstr "" "Šiame faile yra keli objektai, išdėstyti keliuose aukščiuose.\n" "Ar užuot laikius juos atskirais objektais, reikėtų\n" @@ -7331,19 +8138,26 @@ msgstr "Aptiktas kelių dalių objektas" msgid "Load these files as a single object with multiple parts?\n" msgstr "Ar įkelti šiuos failus kaip vieną objektą su keliomis detalėmis?\n" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "An object with multiple parts was detected" +msgid "Object with multiple parts was detected" msgstr "Aptiktas objektas su keliomis detalėmis" msgid "Auto-Drop" -msgstr "" +msgstr "Automatinis nuleidimas" #, c-format, boost-format -msgid "Connected printer is %s. It must match the project preset for printing.\n" +msgid "" +"Connected printer is %s. It must match the project preset for printing.\n" msgstr "" +"Prijungtas spausdintuvas yra %s. Jis turi sutapti su spausdinimui pasirinktu " +"projekto profiliu.\n" +"\n" -msgid "Do you want to sync the printer information and automatically switch the preset?" +msgid "" +"Do you want to sync the printer information and automatically switch the " +"preset?" msgstr "" +"Ar norite sinchronizuoti spausdintuvo informaciją ir automatiškai perjungti " +"profilį?" msgid "Tips" msgstr "Patarimai" @@ -7351,8 +8165,12 @@ msgstr "Patarimai" msgid "The file does not contain any geometry data." msgstr "Faile nėra jokių geometrinių duomenų." -msgid "Your object appears to be too large, do you want to scale it down to fit the print bed automatically?" -msgstr "Jūsų objektas per didelis. Ar norite jį sumažinti automatiškai, kad tilptų ant spausdinimo plokštės?" +msgid "" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" +msgstr "" +"Jūsų objektas per didelis. Ar norite jį automatiškai sumažinti, kad tilptų " +"ant spausdinimo pagrindo?" msgid "Object too large" msgstr "Objektas per didelis" @@ -7361,22 +8179,20 @@ msgid "Export STL file:" msgstr "Eksportuoti STL failą:" msgid "Export Draco file:" -msgstr "" +msgstr "Eksportuoti „Draco“ failą:" msgid "Export AMF file:" msgstr "Eksportuoti AMF failą:" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Save file as" +msgid "Save file as:" msgstr "Išsaugoti failą kaip:" msgid "Export OBJ file:" msgstr "Eksportuoti OBJ failą:" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" -"The file %s already exists.\n" +"The file %s already exists\n" "Do you want to replace it?" msgstr "" "Failas %s jau yra\n" @@ -7388,11 +8204,10 @@ msgstr "Patvirtinti Išsaugoti kaip" msgid "Delete object which is a part of cut object" msgstr "Pašalinti objektą su dalimi perpjauto objekto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"You are trying to delete an object which is a part of a cut object.\n" +"You try to delete an object which is a part of a cut object.\n" "This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed." +"After that model consistency can't be guaranteed." msgstr "" "Bandote ištrinti objektą, kuris yra supjaustyto objekto dalis.\n" "Šis veiksmas sugadins pjovimo atitikimą.\n" @@ -7402,10 +8217,10 @@ msgid "The selected object couldn't be split." msgstr "Pasirinkto objekto negalima suskaidyti." msgid "Disable Auto-Drop to preserve Z positioning?\n" -msgstr "" +msgstr "Išjungti automatinį nuleidimą, kad būtų išsaugota Z pozicija?\n" msgid "Object with floating parts was detected" -msgstr "" +msgstr "Aptiktas objektas su ore kabančiomis dalimis" msgid "Another export job is running." msgstr "Vyksta kitas eksportavimo procesas." @@ -7413,8 +8228,7 @@ msgstr "Vyksta kitas eksportavimo procesas." msgid "Unable to replace with more than one volume" msgstr "Nepavyko pakeisti daugiau nei vienu tomu" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Error during replacement" +msgid "Error during replace" msgstr "Klaida keičiant" msgid "Replace from:" @@ -7423,37 +8237,38 @@ msgstr "Pakeisti iš:" msgid "Select a new file" msgstr "Pasirinkite naują failą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "File for the replacement wasn't selected" +msgid "File for the replace wasn't selected" msgstr "Nepasirinktas keičiamas failas" msgid "Select folder to replace from" -msgstr "" +msgstr "Pasirinkite aplanką, iš kurio pakeisti" msgid "Directory for the replace wasn't selected" -msgstr "" +msgstr "Nepasirinktas katalogas, iš kurio keisti" msgid "Replaced with 3D files from directory:\n" msgstr "" +"Pakeista 3D failais iš katalogo:\n" +"\n" #, boost-format msgid "✖ Skipped %1%: same file.\n" -msgstr "" +msgstr "✖ Praleistas %1%: tas pats failas.\n" #, boost-format msgid "✖ Skipped %1%: file does not exist.\n" -msgstr "" +msgstr "✖ Praleistas %1%: failas neegzistuoja.\n" #, boost-format msgid "✖ Skipped %1%: failed to replace.\n" -msgstr "" +msgstr "✖ Praleistas %1%: nepavyko pakeisti.\n" #, boost-format msgid "✔ Replaced %1%.\n" -msgstr "" +msgstr "✔ Pakeistas %1%.\n" msgid "Replaced volumes" -msgstr "" +msgstr "Pakeisti tūriai" msgid "Please select a file" msgstr "Prašome pasirinkti failą" @@ -7487,13 +8302,16 @@ msgstr "Sluoksniavimas atšauktas" #, c-format, boost-format msgid "Slicing Plate %d" -msgstr "Sluoksniuojama plokštė %d" +msgstr "Sluoksniuojamas pagrindas %d" msgid "Please resolve the slicing errors and publish again." msgstr "Prašome sutvarkyti sluoksniavimo klaidas ir publikuoti dar kartą." -msgid "The network plug-in was not detected. Network related features are unavailable." -msgstr "Neaptiktas tinklo įskiepis. Nebus pasiekiamos su tinklu susijusios galimybės." +msgid "" +"The network plug-in was not detected. Network related features are " +"unavailable." +msgstr "" +"Neaptiktas tinklo įskiepis. Nebus pasiekiamos su tinklu susijusios galimybės." msgid "" "Preview only mode:\n" @@ -7503,17 +8321,24 @@ msgstr "" "Įkeltas failas turi tik G-kodą. Negalima pereiti į Paruošimo režimą." msgid "" -"The nozzle type and AMS quantity information has not been synced from the connected printer.\n" -"After syncing, software can optimize printing time and filament usage when slicing.\n" +"The nozzle type and AMS quantity information has not been synced from the " +"connected printer.\n" +"After syncing, software can optimize printing time and filament usage when " +"slicing.\n" "Would you like to sync now?" msgstr "" +"Purkštuko tipo ir AMS kiekio informacija nebuvo sinchronizuota iš prijungto " +"spausdintuvo.\n" +"Po sinchronizavimo programinė įranga pjaustymo metu gali optimizuoti " +"spausdinimo laiką ir gijos sunaudojimą.\n" +"Ar norite sinchronizuoti dabar?" msgid "Sync now" -msgstr "" +msgstr "Sinchronizuoti dabar" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "You can keep the modified presets for the new project or discard them" -msgstr "Jūs galite išsaugoti pakeistus nustatymus naujam projektui arba juos ištrinti" +msgid "You can keep the modified presets to the new project or discard them" +msgstr "" +"Pakeistus profilius galite išsaugoti naujam projektui arba juos atmesti" msgid "Creating a new project" msgstr "Naujo projekto kūrimas" @@ -7521,13 +8346,14 @@ msgstr "Naujo projekto kūrimas" msgid "Load project" msgstr "Įkelti projektą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Failed to save the project.\n" -"Please check whether the folder exists online or if other programs have the project file open." +"Please check whether the folder exists online or if other programs open the " +"project file." msgstr "" "Nepavyko išsaugoti projekto.\n" -"Prašome patikrinti, ar nurodytas katalogas egzistuoja tinkle ir ar kitos programos nenaudoja projekto failo." +"Prašome patikrinti, ar nurodytas katalogas egzistuoja tinkle ir ar kitos " +"programos nenaudoja projekto failo." msgid "Save project" msgstr "Išsaugoti projektą" @@ -7535,33 +8361,37 @@ msgstr "Išsaugoti projektą" msgid "Importing Model" msgstr "Importuojamas modelis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preparing 3MF file..." -msgstr "paruošti 3MF failą..." +msgstr "Ruošiamas 3MF failas..." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Download failed; unknown file format." +msgid "Download failed, unknown file format." msgstr "Atsisuntimas nepavyko, nežinomas failo tipas." msgid "Downloading project..." -msgstr "projektas atsisiunčiamas..." +msgstr "Projektas atsisiunčiamas..." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Download failed; File size exception." +msgid "Download failed, File size exception." msgstr "Atsisiųsti nepavyko. Failo dydžio išimtis." #, c-format, boost-format msgid "Project downloaded %d%%" msgstr "Projektas atsisiųstas %d%%" -msgid "Importing to Orca Slicer failed. Please download the file and manually import it." -msgstr "Nepavyko importuoti į Orca Slicer. Prašome atsisiųsti failą ir rankiniu būdu jį importuoti." +msgid "" +"Importing to Orca Slicer failed. Please download the file and manually " +"import it." +msgstr "" +"Nepavyko importuoti į Orca Slicer. Prašome atsisiųsti failą ir rankiniu būdu " +"jį importuoti." msgid "INFO:" -msgstr "" +msgstr "INFORMACIJA:" -msgid "No accelerations provided for calibration. Use default acceleration value " -msgstr "Kalibravimui nepateikti jokie pagreičiai. Naudokite numatytąją pagreičio vertę " +msgid "" +"No accelerations provided for calibration. Use default acceleration value " +msgstr "" +"Kalibravimui nepateikti jokie pagreičiai. Naudokite numatytąją pagreičio " +"vertę " msgid "No speeds provided for calibration. Use default optimal speed " msgstr "Kalibravimo greičiai nenumatyti. Naudokite numatytąjį optimalų greitį " @@ -7572,12 +8402,10 @@ msgstr "Importuoti SLA archyvą" msgid "The selected file" msgstr "Pasirinktame faile" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Does not contain valid G-code." +msgid "does not contain valid G-code." msgstr "nėra galiojančio G-kodo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "An Error has occurred while loading the G-code file." +msgid "Error occurs while loading G-code file" msgstr "Įkeliant G-kodo failą įvyko klaida" #. TRN %1% is archive path @@ -7606,27 +8434,24 @@ msgstr "Atidaryti kaip projektą" msgid "Import geometry only" msgstr "Importuoti tik geometriją" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Only one G-code file can be opened at a time." +msgid "Only one G-code file can be opened at the same time." msgstr "Vienu metu gali būti atidarytas tik vienas G-kodo failas." msgid "G-code loading" msgstr "Įkeliamas G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "G-code files and models cannot be loaded together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-kodas negali būti įkeltas kartu su modeliais!" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Unable to add models in preview mode" +msgid "Cannot add models when in preview mode!" msgstr "Negalima pridėti modelių peržiūros režime!" msgid "All objects will be removed, continue?" msgstr "Visi objektai bus pašalinti, ar tęsti?" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The current project has unsaved changes. Would you like to save before continuing?" -msgstr "Dabartiniame projekte yra neišsaugotų pakeitimų. Ar išsaugoti prieš tęsiant?" +msgid "The current project has unsaved changes, save it before continue?" +msgstr "" +"Dabartiniame projekte yra neišsaugotų pakeitimų. Ar išsaugoti prieš tęsiant?" msgid "Number of copies:" msgstr "Kopijų skaičius:" @@ -7650,17 +8475,26 @@ msgid "Save Sliced file as:" msgstr "Išsaugoti susluoksniuotą failą kaip:" #, c-format, boost-format -msgid "The file %s has been sent to the printer's storage space and can be viewed on the printer." -msgstr "Failas %s išsiųstas į spausdintuvo saugyklą ir gali būti peržiūrimas spausdintuve." +msgid "" +"The file %s has been sent to the printer's storage space and can be viewed " +"on the printer." +msgstr "" +"Failas %s išsiųstas į spausdintuvo laikmeną ir gali būti peržiūrimas " +"spausdintuve." msgid "The nozzle type is not set. Please set the nozzle and try again." msgstr "" +"Purkštuko tipas nenustatytas. Nustatykite purkštuką ir bandykite dar kartą." msgid "The nozzle type is not set. Please check." -msgstr "" +msgstr "Purkštuko tipas nenustatytas. Patikrinkite." -msgid "Unable to perform boolean operation on model meshes. Only positive parts will be kept. You may fix the meshes and try again." -msgstr "Nepavyksta atlikti loginės operacijos su modelio tinkleliais. Bus išsaugotos tik teigiamos dalys. Galite pataisyti tinklelius ir bandyti dar kartą." +msgid "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try again." +msgstr "" +"Nepavyksta atlikti loginės operacijos su modelio tinkleliais. Bus išsaugotos " +"tik teigiamos dalys. Galite pataisyti tinklelius ir bandyti dar kartą." #, boost-format msgid "Reason: part \"%1%\" is empty." @@ -7678,31 +8512,38 @@ msgstr "Priežastis: dalis \"%1%\" kertasi su savimi." msgid "Reason: \"%1%\" and another part have no intersection." msgstr "Priežastis: \"%1%\" ir kita dalis nesikerta." -msgid "Unable to perform boolean operation on model meshes. Only positive parts will be exported." -msgstr "Nepavyksta atlikti loginės operacijos su modelio figūromis. Eksportuojamos tik teigiamos dalys." +msgid "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be exported." +msgstr "" +"Nepavyksta atlikti loginės operacijos su modelio figūromis. Eksportuojamos " +"tik teigiamos dalys." msgid "Flashforge host is not available." -msgstr "" +msgstr "„Flashforge“ serveris nepasiekiamas." msgid "Unable to log in to the Flashforge printer." -msgstr "" +msgstr "Nepavyksta prisijungti prie „Flashforge“ spausdintuvo." msgid "Is the printer ready? Is the print sheet in place, empty and clean?" -msgstr "Ar spausdintuvas pasiruošęs? Ar spausdinimo plokštuma yra vietoje, tuščia ir švari?" +msgstr "" +"Ar spausdintuvas pasiruošęs? Ar spausdinimo plokštuma yra vietoje, tuščia ir " +"švari?" msgid "Upload and Print" msgstr "Įkelti ir spausdinti" msgid "Abnormal print file data. Please slice again" -msgstr "Nenormalūs spausdinimo failo duomenys. Atlikite sluoksniavimą dar kartą" +msgstr "" +"Nenormalūs spausdinimo failo duomenys. Atlikite sluoksniavimą dar kartą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Print By Object: \n" -"We suggest using auto-arrange to avoid collisions when printing." +"Suggest to use auto-arrange to avoid collisions when printing." msgstr "" "Spausdinimas pagal objektus:\n" -"Siekiant spausdinant išvengti susidūrimų, patariama naudoti automatinį išdėstymą." +"Siekiant spausdinant išvengti susidūrimų, patariama naudoti automatinį " +"išdėstymą." msgid "Send G-code" msgstr "Siųsti G-kodą" @@ -7711,37 +8552,57 @@ msgid "Send to printer" msgstr "Siųsti į spausdintuvą" msgid "Custom supports and color painting were removed before repairing." -msgstr "Prieš taisymą pašalintos pasirinktinės aramos ir dažymas spalvomis." +msgstr "Prieš taisymą pašalintos pasirinktinės atramos ir dažymas spalvomis." msgid "Optimize Rotation" msgstr "Optimizuoti sukimąsi" #, c-format, boost-format -msgid "Printer not connected. Please go to the device page to connect %s before syncing." +msgid "" +"Printer not connected. Please go to the device page to connect %s before " +"syncing." msgstr "" +"Spausdintuvas neprijungtas. Prieš sinchronizuodami, eikite į įrenginio " +"puslapį ir prijunkite %s." #, c-format, boost-format -msgid "OrcaSlicer can't connect to %s. Please check if the printer is powered on and connected to the network." +msgid "" +"OrcaSlicer can't connect to %s. Please check if the printer is powered on " +"and connected to the network." msgstr "" +"„OrcaSlicer“ nepavyksta prisijungti prie %s. Patikrinkite, ar spausdintuvas " +"įjungtas ir prijungtas prie tinklo." #, c-format, boost-format -msgid "The currently connected printer on the device page is not %s. Please switch to %s before syncing." +msgid "" +"The currently connected printer on the device page is not %s. Please switch " +"to %s before syncing." msgstr "" +"Įrenginio puslapyje šiuo metu prijungtas spausdintuvas nėra %s. Prieš " +"sinchronizuodami perjunkite į %s." -msgid "There are no filaments on the printer. Please load the filaments on the printer first." +msgid "" +"There are no filaments on the printer. Please load the filaments on the " +"printer first." msgstr "" +"Spausdintuve nėra gijų. Pirmiausia įspauskite (įkelkite) gijas į " +"spausdintuvą." -msgid "The filaments on the printer are all unknown types. Please go to the printer screen or software device page to set the filament type." +msgid "" +"The filaments on the printer are all unknown types. Please go to the printer " +"screen or software device page to set the filament type." msgstr "" +"Visos spausdintuve esančios gijos yra nežinomo tipo. Gijos tipą nustatykite " +"spausdintuvo ekrane arba programos įrenginio puslapyje." msgid "Device Page" -msgstr "" +msgstr "Įrenginio puslapis" msgid "Synchronize AMS Filament Information" -msgstr "" +msgstr "Sinchronizuoti AMS gijų informaciją" msgid "Plate Settings" -msgstr "Plokštės parametrai" +msgstr "Spausdinimo pagrindo nustatymai" #, boost-format msgid "Number of currently selected parts: %1%\n" @@ -7780,39 +8641,47 @@ msgid "Triangles: %1%\n" msgstr "Trikampių: %1%\n" msgid "Use \"Fix Model\" to repair the mesh." -msgstr "" +msgstr "Naudokite funkciją „Sutaisyti modelį“, kad pataisytumėte dalį." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "Plate %d: %s is not suggested for use printing filament %s (%s). If you still want to do this print job, please set this filament's bed temperature to a number that is not zero." -msgstr "Plokštė %d: %s nesiūloma naudoti spausdinant gijomis %s(%s). Jei vis tiek norite spausdinti, nustatykite nenulinę pagrindo šiai gijai temperatūrą." - -msgid "Currently, the object configuration form cannot be used with a multiple-extruder printer." +msgid "" +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " +"to non-zero." msgstr "" +"Spausdinimo pagrindas %d: nesiūloma naudoti %s gijai %s (%s) spausdinti. Jei " +"vis tiek norite atlikti šią spausdinimo užduotį, nustatykite šios gijos " +"pagrindo temperatūrą į nenulinę vertę." + +msgid "" +"Currently, the object configuration form cannot be used with a multiple-" +"extruder printer." +msgstr "" +"Šiuo metu objekto konfigūracijos formos negalima naudoti su spausdintuvu, " +"turinčiu kelis ekstruderius." msgid "Not available" -msgstr "" +msgstr "Neprieinama" msgid "isometric" -msgstr "" +msgstr "izometrinis" msgid "top_front" -msgstr "" +msgstr "viršus-priekis" msgid "top" -msgstr "" +msgstr "viršus" msgid "bottom" -msgstr "" +msgstr "apačia" msgid "front" -msgstr "" +msgstr "priekis" msgid "rear" -msgstr "" +msgstr "galas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Switching languages requires the application to restart.\n" +msgid "Switching the language requires application restart.\n" msgstr "Kalbos keitimas reikalauja programos paleidimo iš naujo.\n" msgid "Do you want to continue?" @@ -7822,7 +8691,7 @@ msgid "Language selection" msgstr "Kalbos pasirinkimas" msgid "Switching application language while some presets are modified." -msgstr "Keičiama programos kalba esant kai kurių nustatymų pakeitimams." +msgstr "Keičiama programos kalba, kai yra pakeistų profilių." msgid "Asia-Pacific" msgstr "Azija-Ramusis vandenynas" @@ -7839,21 +8708,20 @@ msgstr "Šiaurės Amerika" msgid "Others" msgstr "Kita" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Changing the region will log you out of your account.\n" +msgid "Changing the region will log out your account.\n" msgstr "Keičiant regioną bus atjungta jūsų paskyra.\n" msgid "Region selection" msgstr "Regiono pasirinkimas" msgid "sec" -msgstr "" +msgstr "sek." msgid "The period of backup in seconds." msgstr "Atsarginės kopijos kūrimo laikotarpis sekundėmis." msgid "Bed Temperature Difference Warning" -msgstr "" +msgstr "Įspėjimas dėl pagrindo temperatūrų skirtumo" msgid "" "Using filaments with significantly different temperatures may cause:\n" @@ -7863,12 +8731,19 @@ msgid "" "\n" "Continue with enabling this feature?" msgstr "" +"Naudojant gijas su žymiai skirtingomis temperatūromis, gali kilti šios " +"problemos:\n" +"• Ekstruderio užsikimšimas\n" +"• Purkštuko pažeidimas\n" +"• Sluoksnių sukibimo problemos\n" +"\n" +"Ar tęsti ir įjungti šią funkciją?" msgid "Browse" msgstr "Naršyti" msgid "Choose folder for downloaded items" -msgstr "" +msgstr "Pasirinkite atsisiunčiamų failų aplanką" msgid "Choose Download Directory" msgstr "Pasirinkite parsisiuntimo katalogą" @@ -7909,18 +8784,29 @@ msgstr "Numatytas puslapis" msgid "Set the page opened on startup." msgstr "Nustatyti, kuris puslapis atsidarys paleidus programą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Enable dark Mode" +msgid "Enable dark mode" msgstr "Įjungti tamsųjį režimą" msgid "Allow only one OrcaSlicer instance" msgstr "Leisti tik vieną Orca Slicer egzempliorių" -msgid "On OSX there is always only one instance of app running by default. However it is allowed to run multiple instances of same app from the command line. In such case this settings will allow only one instance." -msgstr "OSX visada veikia tik vienas programos egzempliorius pagal numatytuosius nustatymus. Tačiau komandinėje eilutėje leidžiama paleisti kelis tos pačios programos egzempliorius. Šiuo atveju nustatymai leis tik vieną egzempliorių." +msgid "" +"On OSX there is always only one instance of app running by default. However " +"it is allowed to run multiple instances of same app from the command line. " +"In such case this settings will allow only one instance." +msgstr "" +"OSX visada veikia tik vienas programos egzempliorius pagal numatytuosius " +"nustatymus. Tačiau komandinėje eilutėje leidžiama paleisti kelis tos pačios " +"programos egzempliorius. Šiuo atveju nustatymai leis tik vieną egzempliorių." -msgid "If this is enabled, when starting OrcaSlicer and another instance of the same OrcaSlicer is already running, that instance will be reactivated instead." -msgstr "Jei įjungta, paleidus „Orca Slicer“ kai kitas tos pačios „Orca Slicer“ programos egzempliorius jau veikia, bus suaktyvintas tas jau veikiantis egzempliorius, o ne paleistas naujas." +msgid "" +"If this is enabled, when starting OrcaSlicer and another instance of the " +"same OrcaSlicer is already running, that instance will be reactivated " +"instead." +msgstr "" +"Jei įjungta, paleidus „Orca Slicer“ kai kitas tos pačios „Orca Slicer“ " +"programos egzempliorius jau veikia, bus suaktyvintas tas jau veikiantis " +"egzempliorius, o ne paleistas naujas." msgid "Show splash screen" msgstr "Rodyti paleidimo ekraną" @@ -7929,13 +8815,17 @@ msgid "Show the splash screen during startup." msgstr "Paleidžiant programą rodyti informacinį ekramą." msgid "Show shared profiles notification" -msgstr "" +msgstr "Rodyti pranešimus apie bendrinamus profilius" -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgid "" +"Show a notification with a link to browse shared profiles when the selected " +"printer is changed." msgstr "" +"Pakeitus pasirinktą spausdintuvą, rodyti pranešimą su nuoroda, leidžiančia " +"peržiūrėti bendrinamus profilius." msgid "Use window buttons on left side" -msgstr "" +msgstr "Naudokite kairėje pusėje esančius langų mygtukus" msgid "(Requires restart)" msgstr "(Reikia paleisti iš naujo)" @@ -7944,7 +8834,7 @@ msgid "Downloads folder" msgstr "Atsisiuntimų aplankas" msgid "Target folder for downloaded items" -msgstr "" +msgstr "Atsisiunčiamų failų paskirties aplankas" msgid "Load All" msgstr "Įkelti viską" @@ -7961,8 +8851,11 @@ msgstr "Įkelti tik geometriją" msgid "Load behaviour" msgstr "Įkelti elgseną" -msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" -msgstr "Ar atidarant .3mf failą reikia įkelti spausdintuvo / gijų / proceso nustatymus?" +msgid "" +"Should printer/filament/process settings be loaded when opening a 3MF file?" +msgstr "" +"Ar atidarant 3MF failą reikėtų įkelti spausdintuvo / gijos / proceso " +"profilius?" msgid "Maximum recent files" msgstr "Maksimalus naujausių failų skaičius" @@ -7979,15 +8872,20 @@ msgstr "Nerodyti perspėjimų įkeliant 3MF su modifikuotais G-kodais" msgid "Show options when importing STEP file" msgstr "Rodyti parinktis importuojant STEP failą" -msgid "If enabled, a parameter settings dialog will appear during STEP file import." -msgstr "Jei įjungta, STEP failo importavimo metu atsiras parametrų nustatymų dialogas." +msgid "" +"If enabled, a parameter settings dialog will appear during STEP file import." +msgstr "" +"Jei įjungta, STEP failo importavimo metu atsiras parametrų nustatymų " +"dialogas." msgid "Auto backup" msgstr "Automatinis atsarginis kopijavimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Periodiškai saugoti jūsų projekto atsargines kopijas kad programos gedimo atveju jį būtų galima atkurti." +msgid "" +"Backup your project periodically for restoring from the occasional crash." +msgstr "" +"Periodiškai saugoti jūsų projekto atsargines kopijas kad programos gedimo " +"atveju jį būtų galima atkurti." msgid "Preset" msgstr "Profilis" @@ -7995,80 +8893,112 @@ msgstr "Profilis" msgid "Remember printer configuration" msgstr "Atsiminti spausdintuvo konfigūraciją" -msgid "If enabled, Orca will remember and switch filament/process configuration for each printer automatically." -msgstr "Jei įjungta, Orca Slicer automatiškai prisimins ir perjungs gijos ir proceso konfigūracijas kiekvienams spausdintuvui." +msgid "" +"If enabled, Orca will remember and switch filament/process configuration for " +"each printer automatically." +msgstr "" +"Jei įjungta, „Orca“ automatiškai įsimins ir perjungs gijos / proceso " +"profilius kiekvienam spausdintuvui." msgid "Group user filament presets" -msgstr "" +msgstr "Grupuoti naudotojo gijų profilius" msgid "Group user filament presets based on selection" -msgstr "" +msgstr "Grupuoti naudotojo gijų profilius pagal pasirinkimą" msgid "By type" -msgstr "" +msgstr "Pagal tipą" msgid "By vendor" -msgstr "" +msgstr "Pagal gamintoją" msgid "Optimize filaments area height for..." -msgstr "" +msgstr "Optimizuoti gijų srities aukštį..." msgid "filaments" -msgstr "" +msgstr "gijos" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +"Optimizuoja maksimalų gijų srities aukštį pagal pasirinktą gijų skaičių." msgid "Features" -msgstr "" +msgstr "Funkcijos" msgid "Multi device management" msgstr "Kelių įrenginių valdymas" -msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices." -msgstr "Kai įjungta ši funkcija, jūs galite siųsti užduotį keliems įrenginiams vienu metu, taip apt kontroliuoti keletą įrenginių." +msgid "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." +msgstr "" +"Kai įjungta ši funkcija, jūs galite siųsti užduotį keliems įrenginiams vienu " +"metu, taip apt kontroliuoti keletą įrenginių." msgid "Pop up to select filament grouping mode" -msgstr "" +msgstr "Iššokantis langas gijų grupavimo režimui pasirinkti" msgid "Quality level for Draco export" -msgstr "" +msgstr "„Draco“ eksporto kokybės lygis" msgid "bits" -msgstr "bits" +msgstr "bitai" msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +"Controls the quantization bit depth used when compressing the mesh to Draco " +"format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid " +"lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher " +"values preserve more detail at the cost of larger files." msgstr "" +"Valdo kvantavimo bitų gylį, naudojamą suspaudžiant tinklelio modelį į " +"„Draco“ formatą.\n" +"0 = suspaudimas be praradimų (geometrija išsaugoma visu tikslumu). Leistinos " +"prarandamos vertės yra nuo 8 iki 30.\n" +"Mažesnės vertės sukuria mažesnius failus, bet prarandama daugiau geometrinių " +"detalių; didesnės vertės išsaugo daugiau detalių, tačiau failai būna didesni." msgid "Behaviour" msgstr "Elgsena" msgid "Auto flush after changing..." -msgstr "" +msgstr "Automatinis išvalymas pakeitus..." msgid "Auto calculate flushing volumes when selected values changed" msgstr "" +"Automatiškai apskaičiuoti išvalymo tūrius, kai pasikeičia pasirinktos vertės" msgid "Auto arrange plate after cloning" -msgstr "Automatinis plokštės sutvarkymas po klonavimo" +msgstr "Automatiškai išdėstyti objektus ant pagrindo po klonavimo" msgid "Auto slice after changes" -msgstr "" +msgstr "Automatinis sluoksniavimas po pakeitimų" -msgid "If enabled, OrcaSlicer will re-slice automatically whenever slicing-related settings change." +msgid "" +"If enabled, OrcaSlicer will re-slice automatically whenever slicing-related " +"settings change." msgstr "" +"Jei įjungta, „OrcaSlicer“ automatiškai supjaustys (re-slice) modelį iš " +"naujo, kai tik pasikeis su sluoksniavimu susiję nustatymai." -msgid "Delay in seconds before auto slicing starts, allowing multiple edits to be grouped. Use 0 to slice immediately." +msgid "" +"Delay in seconds before auto slicing starts, allowing multiple edits to be " +"grouped. Use 0 to slice immediately." msgstr "" +"Delsiama sekundėmis prieš pradedant automatinį sluoksniavimą, kad būtų " +"galima sugrupuoti kelis pakeitimus. Įveskite 0, jei norite sluoksniuoti iš " +"karto." msgid "Remove mixed temperature restriction" -msgstr "" +msgstr "Pašalinti mišrios temperatūros ribojimą" -msgid "With this option enabled, you can print materials with a large temperature difference together." +msgid "" +"With this option enabled, you can print materials with a large temperature " +"difference together." msgstr "" +"Įjungus šią parinktį, galite kartu spausdinti medžiagas, turinčias didelį " +"temperatūrų skirtumą." msgid "Touchpad" msgstr "Jutiklinis kilimėlis" @@ -8082,26 +9012,34 @@ msgid "" "Touchpad: Alt+move for rotation, Shift+move for panning." msgstr "" "Pasirinkite kameros valdymo stilių.\n" -"Numatytasis: Kairysis pelės mygtukas + judinti - sukimui, dešinys pelės mygtukas / vidurinis pelės mygtukas + judinti - perkėlimui.\n" +"Numatytasis: Kairysis pelės mygtukas + judinti - sukimui, dešinys pelės " +"mygtukas / vidurinis pelės mygtukas + judinti - perkėlimui.\n" "Jutiklinis kilimėlis: Alt + judinti - sukimui, Shift + judinti - perkėlimui." msgid "Orbit speed multiplier" msgstr "Orbitos greičio daugiklis" msgid "Multiplies the orbit speed for finer or coarser camera movement." -msgstr "Padidina orbitos greitį, kad kameros judesiai būtų tikslesni arba grubesni." +msgstr "" +"Padidina orbitos greitį, kad kameros judesiai būtų tikslesni arba grubesni." msgid "Zoom to mouse position" msgstr "Išdidinti iki pelės vietos" -msgid "Zoom in towards the mouse pointer's position in the 3D view, rather than the 2D window center." -msgstr "\"Priartinti prie pelės rodiklio padėties 3D vaizde, o ne prie 2D lango centro." +msgid "" +"Zoom in towards the mouse pointer's position in the 3D view, rather than the " +"2D window center." +msgstr "" +"\"Priartinti prie pelės rodiklio padėties 3D vaizde, o ne prie 2D lango " +"centro." msgid "Use free camera" msgstr "Naudoti laisvą kamerą" msgid "If enabled, use free camera. If not enabled, use constrained camera." -msgstr "Jei įjungta, naudoti laisvą kamerą. Jei neįjungta, naudoti stacionarią kamerą." +msgstr "" +"Jei įjungta, naudoti laisvą kamerą. Jei neįjungta, naudoti stacionarią " +"kamerą." msgid "Reverse mouse zoom" msgstr "Apversti pelės didinimą" @@ -8110,97 +9048,123 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Jei įjungta, apverčia didinimo ar mažinimo kryptį pelės ratuku." msgid "Pan" -msgstr "" +msgstr "Slinkimas" msgid "Left Mouse Drag" -msgstr "" +msgstr "Vilkimas kairiuoju pelės mygtuku" msgid "Set the action that dragging the left mouse button should perform." msgstr "" +"Nustatykite veiksmą, kuris turi būti atliktas, velkant kairiuoju pelės " +"mygtuku." msgid "Middle Mouse Drag" -msgstr "" +msgstr "Vidurinio pelės mygtuko vilkimas" msgid "Set the action that dragging the middle mouse button should perform." msgstr "" +"Nustatykite veiksmą, kuris turi būti atliktas, velkant vidurinį pelės " +"mygtuką." msgid "Right Mouse Drag" -msgstr "" +msgstr "Vilkti dešiniuoju pelės mygtuku" msgid "Set the action that dragging the right mouse button should perform." msgstr "" +"Nustatykite veiksmą, kuris turi būti atliktas, velkant dešinįjį pelės " +"mygtuką." msgid "Clear my choice on..." -msgstr "" +msgstr "Išvalyti mano pasirinkimą..." msgid "Unsaved projects" -msgstr "" +msgstr "Neišsaugoti projektai" msgid "Clear my choice on the unsaved projects." msgstr "Išvalyti mano pasirinkimus neišsaugotuose projektuose." msgid "Unsaved presets" -msgstr "" +msgstr "Neišsaugoti profiliai" msgid "Clear my choice on the unsaved presets." -msgstr "Išvalyti mano pasirinkimą neišsaugotuose nustatymuose." +msgstr "Išvalyti mano pasirinkimą neišsaugotuose profiliuose." msgid "Synchronizing printer preset" -msgstr "" +msgstr "Spausdintuvo profilio sinchronizavimas" -msgid "Clear my choice for synchronizing printer preset after loading the file." +msgid "" +"Clear my choice for synchronizing printer preset after loading the file." msgstr "" +"Išvalyti mano pasirinkimą dėl spausdintuvo profilio sinchronizavimo įkėlus " +"failą." msgid "Graphics" -msgstr "" +msgstr "Grafika" msgid "Phong shading" -msgstr "" +msgstr "Phong šešėliavimas" msgid "Uses Phong shading inside realistic view." -msgstr "" +msgstr "Realistiniame vaizde naudojamas „Phong“ šešėliavimas." msgid "SSAO ambient occlusion" -msgstr "" +msgstr "SSAO apšvietimo užtemdymas" msgid "Applies SSAO in realistic view." -msgstr "" +msgstr "Realistiniame vaizde taiko SSAO." msgid "Shadows" -msgstr "" +msgstr "Šešėliai" msgid "Renders cast shadows on the plate in realistic view." msgstr "" +"Realistiniame vaizde atvaizduoja krentančius šešėlius ant spausdinimo " +"pagrindo." msgid "Smooth normals" -msgstr "" +msgstr "Glotnios normalės" msgid "" "Applies smooth normals to the realistic view.\n" "\n" -"Requires manual scene reload to take effect (right-click on 3D view → \"Reload All\")." +"Requires manual scene reload to take effect (right-click on 3D view → " +"\"Reload All\")." msgstr "" +"Realistiškam vaizdui pritaiko glotnias normales.\n" +"\n" +"Kad pakeitimai įsigaliotų, reikia rankiniu būdu perkrauti sceną (dešiniuoju " +"pelės mygtuku spustelėkite 3D vaizdą → „Perkrauti viską“)." msgid "Anti-aliasing" -msgstr "Anti-aliasing" +msgstr "Išlyginimas" msgid "MSAA Multiplier" -msgstr "" +msgstr "MSAA daugiklis" msgid "" "Set the Multi-Sample Anti-Aliasing level.\n" -"Higher values result in smoother edges, but the impact on performance is exponential.\n" +"Higher values result in smoother edges, but the impact on performance is " +"exponential.\n" "Lower values improve performance, at the cost of jagged edges.\n" -"If disabled, its recommended to enable FXAA to reduce jagged edges with minimal performance impact.\n" +"If disabled, its recommended to enable FXAA to reduce jagged edges with " +"minimal performance impact.\n" "\n" "Requires application restart." msgstr "" +"Nustatykite daugkartinio mėginių ėmimo išlyginimo lygį.\n" +"Didesnės reikšmės užtikrina sklandesnius kraštus, tačiau poveikis našumui " +"yra eksponentinis.\n" +"Mažesnės reikšmės pagerina našumą, tačiau kraštai tampa dantyti.\n" +"Jei ši funkcija išjungta, rekomenduojama įjungti FXAA, kad sumažintumėte " +"dantytus kraštus, minimaliai paveikiant našumą.\n" +"\n" +"Reikia iš naujo paleisti programą." msgid "Disabled" msgstr "Išjungta" msgid "FXAA post-processing" -msgstr "" +msgstr "FXAA apdorojimas po atvaizdavimo" msgid "" "Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" @@ -8208,26 +9172,34 @@ msgid "" "\n" "Takes effect immediately." msgstr "" +"Taiko greitą apytikslį išlyginimą (Fast Approximate Anti-Aliasing) kaip " +"ekrano erdvės apdorojimo etapą.\n" +"Naudinga, norint išjungti arba sumažinti MSAA nustatymą, siekiant pagerinti " +"našumą.\n" +"\n" +"Įsigalioja iš karto." msgid "FPS" -msgstr "FPS" +msgstr "KPS (FPS)" msgid "FPS cap" -msgstr "" +msgstr "KPS ribojimas" msgid "(0 = unlimited)" -msgstr "" +msgstr "(0 = neribojama)" msgid "" "Limits viewport frame rate to reduce GPU load and power usage.\n" "Set to 0 for unlimited frame rate." msgstr "" +"Riboja vaizdo srities kadrų dažnį, kad sumažintų vaizdo plokštės (GPU) " +"apkrovą ir energijos sąnaudas. Įveskite 0, jei kadrų dažnis neribojamas." msgid "Show FPS overlay" -msgstr "" +msgstr "Rodyti KPS (FPS) indikatorių" msgid "Displays current viewport FPS in the top-right corner." -msgstr "" +msgstr "Viršutiniame dešiniajame kampe rodo esamą vaizdo srities kadrų dažnį." msgid "Login region" msgstr "Prisijungimo regionas" @@ -8236,15 +9208,22 @@ msgid "Stealth mode" msgstr "Slaptas režimas" msgid "" -"This disables all cloud features, including Orca Cloud profile syncing. Users who prefer to work entirely offline can enable this option.\n" -"Note: When Stealth Mode is enabled, your user profiles will not be backed up to Orca Cloud." +"This disables all cloud features, including Orca Cloud profile syncing. " +"Users who prefer to work entirely offline can enable this option.\n" +"Note: When Stealth Mode is enabled, your user profiles will not be backed up " +"to Orca Cloud." msgstr "" +"Išjungia visas debesijos funkcijas, įskaitant „Orca Cloud“ profilių " +"sinchronizavimą. Naudotojai, kurie nori dirbti visiškai neprisijungę prie " +"tinklo, gali įjungti šią parinktį.\n" +"Pastaba: kai įjungtas slaptas režimas, jūsų naudotojo profilių atsarginės " +"kopijos nebus kuriamos „Orca Cloud“ debesyje." msgid "Hide login side panel" -msgstr "" +msgstr "Slėpti prisijungimo šoninį skydelį" msgid "Hide the login side panel on the home page." -msgstr "" +msgstr "Slėpti prisijungimo šoninį skydelį pradžios puslapyje." msgid "Network test" msgstr "Tinklo testas" @@ -8253,71 +9232,83 @@ msgid "Test" msgstr "Testas" msgid "Cloud Providers" -msgstr "" +msgstr "Debesijos paslaugų teikėjai" msgid "Enable Bambu Cloud" -msgstr "" +msgstr "Įjungti „Bambu Cloud“" -msgid "Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu login section appears on the homepage." +msgid "" +"Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu " +"login section appears on the homepage." msgstr "" +"Leisti prisijungti prie „Bambu Cloud“ kartu su „Orca Cloud“. Kai įjungta, " +"pradžios puslapyje rodoma „Bambu“ prisijungimo skiltis." msgid "Update & sync" -msgstr "" +msgstr "Atnaujinimas ir sinchronizavimas" msgid "Check for stable updates only" msgstr "Tikrinti tik stabilius atnaujinimus" msgid "Auto sync user presets (Printer/Filament/Process)" -msgstr "Automatiškai sinchronizuoti naudotojo nustatymus (spausdintuvas/gija/procesas)" +msgstr "" +"Automatiškai sinchronizuoti naudotojo profilius (spausdintuvas / gija / " +"procesas)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Automatinis įmontuotų nustatymų atnaujinimas." +msgid "Update built-in Presets automatically." +msgstr "Automatiškai atnaujinti gamyklinius (įmontuotus) profilius." msgid "Use encrypted file for token storage" -msgstr "" +msgstr "Naudoti šifruotą failą prieigos raktų laikmenai" -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgid "" +"Store authentication tokens in an encrypted file instead of the system " +"keychain. (Requires restart)" msgstr "" +"Saugoti autentifikavimo raktus šifruotame faile, o ne sistemos slaptažodžių " +"saugykloje (keychain). (Reikia paleisti iš naujo)" msgid "Filament Sync Options" -msgstr "" +msgstr "Gijų sinchronizavimo parinktys" msgid "Filament sync mode" -msgstr "" +msgstr "Gijų sinchronizavimo režimas" -msgid "Choose whether sync updates both filament preset and color, or only color." +msgid "" +"Choose whether sync updates both filament preset and color, or only color." msgstr "" +"Pasirinkite, ar sinchronizuojant atnaujinti ir gijos profilį, ir spalvą, ar " +"tik spalvą." msgid "Filament & Color" -msgstr "" +msgstr "Gija ir spalva" msgid "Color only" -msgstr "" +msgstr "Tik spalva" -msgid "Bambu network plug-in" -msgstr "" +msgid "Network plug-in" +msgstr "Tinklo įskiepis" -msgid "Enable Bambu network plug-in" -msgstr "" +msgid "Enable network plug-in" +msgstr "Įjungti tinklo papildinį" msgid "Network plug-in version" -msgstr "" +msgstr "Tinklo įskiepio versija" msgid "Select the network plug-in version to use" -msgstr "" +msgstr "Pasirinkite naudotiną tinklo įskiepio versiją" msgid "(Latest)" -msgstr "" +msgstr "(Naujausia)" msgid "Network plug-in switched successfully." -msgstr "" +msgstr "Tinklo įskiepis sėkmingai pakeistas." msgid "Success" -msgstr "" +msgstr "Sėkmingai" msgid "Failed to load network plug-in. Please restart the application." -msgstr "" +msgstr "Nepavyko įkelti tinklo įskiepio. Paleiskite programą iš naujo." #, c-format, boost-format msgid "" @@ -8327,79 +9318,102 @@ msgid "" "\n" "Note: The application may need to restart after installation." msgstr "" +"Pasirinkote %s tinklo įskiepio versiją.\n" +"\n" +"Ar norite atsisiųsti ir įdiegti šią versiją dabar?\n" +"\n" +"Pastaba: įdiegus programą gali reikėti paleisti iš naujo." msgid "Download Network Plug-in" -msgstr "" +msgstr "Atsisiųsti tinklo įskiepį" msgid "Associate files to OrcaSlicer" msgstr "Susieti failus su Orca Slicer" -msgid "File associations for the Microsoft Store version are managed by Windows Settings." +msgid "" +"File associations for the Microsoft Store version are managed by Windows " +"Settings." msgstr "" +"„Microsoft Store“ versijos failų susiejimai valdomi „Windows“ nustatymuose." msgid "Open Windows Default Apps Settings" -msgstr "" +msgstr "Atidaryti „Windows“ numatytųjų programų nustatymus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Associate 3MF files to OrcaSlicer" -msgstr "Susieti .3mf failus su Orca Slicer" +msgstr "Susieti 3MF failus su „OrcaSlicer“" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "If enabled, this sets OrcaSlicer as the default application to open 3MF files." -msgstr "Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytasis .3mf failų atidarymo įrankis" +msgid "If enabled, sets OrcaSlicer as default application to open 3MF files." +msgstr "" +"Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa 3MF failams " +"atidaryti." msgid "Associate DRC files to OrcaSlicer" -msgstr "" +msgstr "Susieti DRC failus su „OrcaSlicer“" msgid "If enabled, sets OrcaSlicer as default application to open DRC files." msgstr "" +"Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa DRC failams " +"atidaryti." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Associate STL files to OrcaSlicer" -msgstr "Susieti .stl failus su Orca Slicer" +msgstr "Susieti STL failus su „OrcaSlicer“" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "If enabled, this sets OrcaSlicer as the default application to open STL files." -msgstr "Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytoji programa .stl failams atverti" +msgid "If enabled, sets OrcaSlicer as default application to open STL files." +msgstr "" +"Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa STL failams " +"atidaryti." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Associate STEP files to OrcaSlicer" -msgstr "Susieti .step/.stp failus su Orca Slicer" +msgstr "Susieti STEP failus su „OrcaSlicer“" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "If enabled, this sets OrcaSlicer as the default application to open STEP files." -msgstr "Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytoji programa .step failams atverti" +msgid "If enabled, sets OrcaSlicer as default application to open STEP files." +msgstr "" +"Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa STEP failams " +"atidaryti." msgid "Associate web links to OrcaSlicer" msgstr "Susieti interneto nuorodas su Orca Slicer" msgid "Developer" -msgstr "" +msgstr "Kūrėjas" msgid "Skip AMS blacklist check" msgstr "Praleisti AMS draudžiamo sąrašo tikrinimą" msgid "(Experimental) Keep painted feature after mesh change" msgstr "" +"(Eksperimentinis) Išsaugoti nudažytas ypatybes pakeitus tinklelio modelį" msgid "" -"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" +"Attempt to keep painted features (color/seam/support/fuzzy etc.) after " +"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "Highly experimental! Slow and may create artifact." msgstr "" +"Bando išsaugoti nudažytas ypatybes (spalvą, siūlę, atramas, šiauštą paviršių " +"ir kt.) pakeitus objekto tinklelio modelį (pvz., po pjovimo, įkėlimo iš " +"naujo, supaprastinimo, taisymo ir kt.)\n" +"Labai eksperimentinė funkcija! Veikia lėtai ir gali sukurti artefaktų." msgid "Show unsupported presets" -msgstr "" +msgstr "Rodyti nepalaikomus profilius" -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgid "" +"Show incompatible/unsupported presets in the printer and filament dropdown " +"lists. These presets cannot be selected." msgstr "" +"Rodyti nesuderinamus / nepalaikomus profilius spausdintuvų ir gijų " +"išskleidžiamuosiuose sąrašuose. Šių profilių pasirinkti negalima." msgid "Allow Abnormal Storage" -msgstr "" +msgstr "Leisti sutrikusią (neįprastą) laikmeną" msgid "" "This allows the use of Storage that is marked as abnormal by the Printer.\n" "Use at your own risk, can cause issues!" msgstr "" +"Leidžia naudoti laikmeną, kurią spausdintuvas pažymėjo kaip veikiančią su " +"sutrikimais.\n" +"Naudokite savo rizika, tai gali sukelti problemų!" msgid "Log Level" msgstr "Žurnalų lygmuo" @@ -8419,26 +9433,24 @@ msgstr "testavimas" msgid "trace" msgstr "sekimas" -msgid "Network plug-in" -msgstr "Tinklo įskiepis" - msgid "Reload" -msgstr "" +msgstr "Įkelti iš naujo" msgid "Reload the network plug-in without restarting the application" -msgstr "" +msgstr "Iš naujo įkelti tinklo įskiepį neperkraunant programos" msgid "Network plug-in reloaded successfully." -msgstr "" +msgstr "Tinklo įskiepis sėkmingai įkeltas iš naujo." msgid "Failed to reload network plug-in. Please restart the application." msgstr "" +"Nepavyko iš naujo įkelti tinklo įskiepio. Paleiskite programą iš naujo." msgid "Reload Failed" -msgstr "" +msgstr "Pakartotinis įkėlimas nepavyko" msgid "Debug" -msgstr "" +msgstr "Derinimas" msgid "Sync settings" msgstr "Sinchronizavimo nustatymai" @@ -8447,7 +9459,7 @@ msgid "User sync" msgstr "Naudotojo sinchronizavimas" msgid "Preset sync" -msgstr "Nustatymų sinchronizavimas" +msgstr "Profilių sinchronizavimas" msgid "Preferences sync" msgstr "Pasirinkimų sinchronizavimas" @@ -8467,8 +9479,7 @@ msgstr "Padidinti vaizdą" msgid "Other" msgstr "Kita" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" +msgid "Mouse wheel reverses when zooming" msgstr "Apversta pelės ratuko didinimo kryptis" msgid "Enable SSL(MQTT)" @@ -8481,92 +9492,88 @@ msgid "Internal developer mode" msgstr "Vidinio kūrėjo režimas" msgid "Host Setting" -msgstr "Hosto nustatymai" +msgstr "Serverio nustatymai" msgid "DEV host: api-dev.bambu-lab.com/v1" -msgstr "DEV hostas: api-dev.bambu-lab.com/v1" +msgstr "DEV serveris: api-dev.bambu-lab.com/v1" msgid "QA host: api-qa.bambu-lab.com/v1" -msgstr "QA hostas: api-qa.bambu-lab.com/v1" +msgstr "QA serveris: api-qa.bambu-lab.com/v1" msgid "PRE host: api-pre.bambu-lab.com/v1" -msgstr "PRE hostas: api-pre.bambu-lab.com/v1" +msgstr "PRE serveris: api-pre.bambu-lab.com/v1" msgid "Product host" -msgstr "Produkto hostas" +msgstr "Gamybinis serveris" msgid "Debug save button" -msgstr "derinimo išsaugojimo mygtukas" +msgstr "Derinimo išsaugojimo mygtukas" msgid "Save debug settings" -msgstr "išsaugoti testavimo nuostatas" +msgstr "Išsaugoti testavimo nuostatas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Debug settings have been saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "TESTAVIMO nuostatos sėkmingai išsaugotos!" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Cloud environment switched; please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Pakeista debesų aplinka, prašome prisijungti iš naujo!" msgid "System presets" -msgstr "Sistemos išankstiniai nustatymai" +msgstr "Sistemos profiliai" msgid "User presets" -msgstr "Naudotojo išankstiniai nustatymai" +msgstr "Naudotojo profiliai" msgid "Incompatible presets" -msgstr "Nesuderinami išankstiniai nustatymai" +msgstr "Nesuderinami profiliai" msgid "My Printer" -msgstr "" +msgstr "Mano spausdintuvas" msgid "Left filaments" -msgstr "" +msgstr "Kairiosios gijos" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "AMS filament" +msgid "AMS filaments" msgstr "AMS gijos" msgid "Right filaments" -msgstr "" +msgstr "Dešiniosios gijos" msgid "Click to select filament color" msgstr "Paspauskite gijos spalvos pasirinkimui" msgid "Add/Remove presets" -msgstr "Pridėti / pašalinti išankstinius nustatymus" +msgstr "Pridėti / pašalinti profilius" msgid "Edit preset" -msgstr "Redaguoti išankstinį nustatymą" +msgstr "Redaguoti profilį" msgid "Unspecified" -msgstr "" +msgstr "Nenurodyta" msgid "Project-inside presets" -msgstr "Projekto vidiniai nustatymai" +msgstr "Vidiniai projekto profiliai" msgid "Bundle presets" -msgstr "" +msgstr "Paketo profiliai" msgid "System" msgstr "Sistema" msgid "Unsupported presets" -msgstr "" +msgstr "Nepalaikomi profiliai" msgid "Unsupported" -msgstr "" +msgstr "Nepalaikoma" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add/Remove filament" -msgstr "Pridėti / pašalinkite gijas" +msgid "Add/Remove filaments" +msgstr "Pridėti / pašalinti gijas" msgid "Add/Remove materials" msgstr "Pridėti / pašalinti medžiagas" msgid "Select/Remove printers (system presets)" -msgstr "Pasirinkti / Pašalinti spausdintuvus (sistemos nustatymai)" +msgstr "Pasirinkti / pašalinti spausdintuvus (sistemos profiliai)" msgid "Create printer" msgstr "Sukurti spausdintuvą" @@ -8578,7 +9585,7 @@ msgid "Incompatible" msgstr "Nesuderinama" msgid "The selected preset is null!" -msgstr "Pasirinktas šablonas yra tuščias!" +msgstr "Pasirinktas profilis yra tuščias (null)!" msgid "End" msgstr "Pabaiga" @@ -8593,11 +9600,10 @@ msgid "Please input layer value (>= 2)." msgstr "Prašome įvesti sluoksnių skaičių (>=2)." msgid "Plate name" -msgstr "Plokštės pavadinimas" +msgstr "Spausdinimo pagrindo pavadinimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Same as Global Plate Type" -msgstr "Toks pats, kaip ir bendras plokštės tipas" +msgstr "Toks pats, kaip ir bendras pagrindo tipas" msgid "Bed type" msgstr "Pagrindo tipas" @@ -8620,6 +9626,9 @@ msgstr "Spiralinė vaza" msgid "First layer filament sequence" msgstr "Pirmojo sluoksnio gijos eiga" +msgid "Same as Global Bed Type" +msgstr "Toks pats, kaip ir bendras pagrindo tipas" + msgid "By Layer" msgstr "Pagal sluoksnį" @@ -8632,15 +9641,16 @@ msgstr "Priimti" msgid "Log Out" msgstr "Atsijungti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Slice all plates to obtain time and filament estimation" -msgstr "Laiko ir gijos sąnaudoms sužinoti susluoksniuokite visą plokštę" +msgid "Slice all plate to obtain time and filament estimation" +msgstr "" +"Norėdami sužinoti laiko ir gijos sąnaudų įvertinimą, supjaustykite (slice) " +"visus pagrindus" msgid "Packing project data into 3MF file" -msgstr "Projekto duomenys pakuojami į .3mf failą" +msgstr "Projekto duomenys pakuojami į 3MF failą" msgid "Uploading 3MF" -msgstr "Įkeliamas 3mf" +msgstr "Įkeliamas 3MF" msgid "Jump to model publish web page" msgstr "Pereiti į modelio talpinimo interneto puslapį" @@ -8655,13 +9665,13 @@ msgid "Publish was canceled" msgstr "Publikavimas buvo atšauktas" msgid "Slicing Plate 1" -msgstr "Sluoksniuojama plokštė 1" +msgstr "Sluoksniuojamas 1 pagrindas" msgid "Packing data to 3MF" -msgstr "Duomenys pakuojami į 3mf" +msgstr "Duomenys pakuojami į 3MF" msgid "Uploading data" -msgstr "" +msgstr "Įkeliami duomenys" msgid "Jump to webpage" msgstr "Pereiti į interneto puslapį" @@ -8671,13 +9681,13 @@ msgid "Save %s as" msgstr "Išsaugoti %s kaip" msgid "User Preset" -msgstr "Naudotojo nustatymai" +msgstr "Naudotojo profilis" msgid "Preset Inside Project" -msgstr "Nustatymai projekto viduje" +msgstr "Profilis projekto viduje" msgid "Detach from parent" -msgstr "" +msgstr "Atskirti nuo tėvinio profilio" msgid "Name is unavailable." msgstr "Nėra pavadinimo." @@ -8687,21 +9697,24 @@ msgstr "Sistemos profilio perrašyti neleidžiama." #, boost-format msgid "Preset \"%1%\" already exists." -msgstr "Nustatymai \"%1%\" jau yra." +msgstr "Profilis „%1%“ jau egzistuoja." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with the current printer." -msgstr "Nustatymai \"%1%\" jau yra, tačiau jie nesuderinami su dabartiniu spausdintuvu." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." +msgstr "" +"Profilis „%1%“ jau egzistuoja ir yra nesuderinamas su dabartiniu " +"spausdintuvu." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please note that saving will overwrite the current preset." -msgstr "Atkreipkite dėmesį, kad išsaugojus bus perrašytas dabartinis išankstinis nustatymas." +msgid "Please note that saving will overwrite this preset." +msgstr "Atkreipkite dėmesį, kad išsaugojus bus perrašytas šis profilis." msgid "The name cannot be the same as a preset alias name." -msgstr "Pavadinimas negali būti toks pat kaip iš anksto nustatytasis." +msgstr "" +"Pavadinimas negali sutapti su profilio alternatyviuoju pavadinimu (alias)." msgid "Save preset" -msgstr "Išsaugoti išankstinį nustatymą" +msgstr "Išsaugoti profilį" msgctxt "PresetName" msgid "Copy" @@ -8709,19 +9722,19 @@ msgstr "Kopijuoti" #, boost-format msgid "Printer \"%1%\" is selected with preset \"%2%\"" -msgstr "Spausdintuvas \"%1%\" pasirinktas su nustatymais \"%2%\"" +msgstr "Spausdintuvas „%1%“ pasirinktas su profiliu „%2%“" #, boost-format msgid "Please choose an action with \"%1%\" preset after saving." -msgstr "Prašome pasirinkti veiksmą su \"%1%\" nustatymais po išsaugojimo." +msgstr "Po išsaugojimo pasirinkite veiksmą su profiliu „%1%“." #, boost-format msgid "For \"%1%\", change \"%2%\" to \"%3%\" " -msgstr "\"%1%\", keičiamas \"%2%\" į \"%3%\" " +msgstr "Profilio „%1%“ atveju, pakeisti „%2%“ į „%3%“ " #, boost-format msgid "For \"%1%\", add \"%2%\" as a new preset" -msgstr "\"%1%\", pridedama \"%2%\" kaip nauji nustatymai" +msgstr "Profilio „%1%“ atveju, pridėti „%2%“ kaip naują profilį" #, boost-format msgid "Simply switch to \"%1%\"" @@ -8731,129 +9744,202 @@ msgid "Task canceled" msgstr "Užduotis atšaukta" msgid "Bambu Cool Plate" -msgstr "Bambu Cool plokštė" +msgstr "„Bambu Cool“ pagrindas" msgid "PLA Plate" -msgstr "PLA plokštė" +msgstr "PLA pagrindas" msgid "Bambu Engineering Plate" -msgstr "Bambu inžinerinė plokštė" +msgstr "„Bambu“ inžinerinis pagrindas" msgid "Bambu Smooth PEI Plate" -msgstr "Bambu smulkaus PEI plokštė" +msgstr "„Bambu“ lygus PEI pagrindas" msgid "High temperature Plate" -msgstr "Aukštos temperatūros plokštė" +msgstr "Aukštos temperatūros pagrindas" msgid "Bambu Textured PEI Plate" -msgstr "Bambu stabaus PEI plokštė" +msgstr "„Bambu“ tekstūrinis PEI pagrindas" msgid "Bambu Cool Plate SuperTack" -msgstr "Bambu Cool Plate SuperTack" +msgstr "„Bambu Cool SuperTack“ pagrindas" msgid "Send print job" -msgstr "" +msgstr "Siųsti spausdinimo užduotį" msgid "On" msgstr "Įjungta" msgid "Not satisfied with the grouping of filaments? Regroup and slice ->" -msgstr "" +msgstr "Netenkina gijų grupavimas? Pergrupuokite ir sluoksniuokite ->" msgid "Manually change external spool during printing for multi-color printing" msgstr "" +"Spausdinimo metu rankiniu būdu pakeiskite išorinę ritę, kad galėtumėte " +"spausdinti keliomis spalvomis" msgid "Multi-color with external" -msgstr "" +msgstr "Daugiaspalvis spausdinimas su išorine rite" msgid "Your filament grouping method in the sliced file is not optimal." msgstr "" +"Jūsų pasirinktas gijų grupavimo būdas susluoksniuotame faile nėra optimalus." msgid "Auto Bed Leveling" -msgstr "" +msgstr "Automatinis pagrindo lygiavimas" msgid "" -"This checks the flatness of heatbed. Leveling makes extruded height uniform.\n" -"*Automatic mode: Run a leveling check(about 10 seconds). Skip if surface is fine." +"This checks the flatness of heatbed. Leveling makes extruded height " +"uniform.\n" +"*Automatic mode: Run a leveling check(about 10 seconds). Skip if surface is " +"fine." msgstr "" +"Patikrina šildomo pagrindo lygumą. Lygiavimas užtikrina tolygų išspaustos " +"gijos aukštį.\n" +"*Automatinis režimas: atlieka lygiavimo patikrą (apie 10 sekundžių). " +"Praleidžiama, jei paviršius yra lygus." msgid "Flow Dynamics Calibration" msgstr "Gijos srauto kalibravimas" msgid "" -"This process determines the dynamic flow values to improve overall print quality.\n" +"This process determines the dynamic flow values to improve overall print " +"quality.\n" "*Automatic mode: Skip if the filament was calibrated recently." msgstr "" +"Šis procesas nustato dinaminio srauto vertes, kad pagerintų bendrą " +"spausdinimo kokybę.\n" +"*Automatinis režimas: praleidžiama, jei gija buvo sukalibruota neseniai." msgid "Nozzle Offset Calibration" -msgstr "" +msgstr "Purkštuko poslinkio (offset) kalibravimas" msgid "" "Calibrate nozzle offsets to enhance print quality.\n" "*Automatic mode: Check for calibration before printing. Skip if unnecessary." msgstr "" +"Kalibruoja purkštuko poslinkius spausdinimo kokybei pagerinti.\n" +"*Automatinis režimas: patikrina kalibravimą prieš spausdinant. Praleidžiama, " +"jei tai nebūtina." msgid "Send complete" -msgstr "siuntimas baigtas" +msgstr "Siuntimas baigtas" msgid "Error code" msgstr "Klaidos kodas" msgid "High Flow" -msgstr "" +msgstr "Didelis srautas (High Flow)" #, c-format, boost-format -msgid "The nozzle flow setting of %s(%s) doesn't match with the slicing file(%s). Please make sure the nozzle installed matches with settings in printer, then set the corresponding printer preset while slicing." +msgid "" +"The nozzle flow setting of %s(%s) doesn't match with the slicing file(%s). " +"Please make sure the nozzle installed matches with settings in printer, then " +"set the corresponding printer preset while slicing." msgstr "" +"%s (%s) purkštuko srauto nustatymas nesutampa su sluoksniavimo failu (%s). " +"Įsitikinkite, kad įstatytas purkštukas atitinka spausdintuvo nustatymus, o " +"tada sluoksniuodami pasirinkite atitinkamą spausdintuvo profilį." #, c-format, boost-format -msgid "Filament %s does not match the filament in AMS slot %s. Please update the printer firmware to support AMS slot assignment." -msgstr "Naudojama gija %s nesutampa su gija AMS lizde %s. Atnaujinkite spausdintuvo programinę įrangą, kad galėtumėte priskirti lizdus AMS." +msgid "" +"Filament %s does not match the filament in AMS slot %s. Please update the " +"printer firmware to support AMS slot assignment." +msgstr "" +"Naudojama gija %s nesutampa su gija AMS lizde %s. Atnaujinkite spausdintuvo " +"programinę įrangą, kad galėtumėte priskirti lizdus AMS." -msgid "Filament does not match the filament in AMS slot. Please update the printer firmware to support AMS slot assignment." -msgstr "Naudojama gija nesutampa su gija AMS lizde. Atnaujinkite spausdintuvo programinę įrangą, kad galėtumėte priskirti lizdus AMS." +msgid "" +"Filament does not match the filament in AMS slot. Please update the printer " +"firmware to support AMS slot assignment." +msgstr "" +"Naudojama gija nesutampa su gija AMS lizde. Atnaujinkite spausdintuvo " +"programinę įrangą, kad galėtumėte priskirti lizdus AMS." #, c-format, boost-format -msgid "The selected printer (%s) is incompatible with the print file configuration (%s). Please adjust the printer preset in the prepare page or choose a compatible printer on this page." +msgid "" +"The selected printer (%s) is incompatible with the print file configuration " +"(%s). Please adjust the printer preset in the prepare page or choose a " +"compatible printer on this page." msgstr "" +"Pasirinktas spausdintuvas (%s) yra nesuderinamas su spausdinimo failo " +"konfigūracija (%s). Paruošimo puslapyje pakoreguokite spausdintuvo profilį " +"arba šiame puslapyje pasirinkite suderinamą spausdintuvą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "When spiral vase mode is enabled, machines with I3 structure will not generate timelapse videos." -msgstr "Įjungus spiralės vazos režimą, I3 struktūros spausdintuvai negeneruos pakadrinių vaizdo įrašų." - -msgid "The current printer does not support timelapse in Traditional Mode when printing By-Object." +msgid "" +"When enable spiral vase mode, machines with I3 structure will not generate " +"timelapse videos." msgstr "" +"Įjungus spiralinės vazos režimą, I3 struktūros įrenginiai negeneruos laiko " +"tarpų (timelapse) vaizdo įrašų." + +msgid "" +"The current printer does not support timelapse in Traditional Mode when " +"printing By-Object." +msgstr "" +"Dabartinis spausdintuvas nepalaiko laiko tarpų (timelapse) vaizdo įrašų " +"tradiciniu režimu, kai spausdinama pagal objektą." msgid "Errors" msgstr "Klaidos" -msgid "More than one filament types have been mapped to the same external spool, which may cause printing issues. The printer won't pause during printing." +msgid "" +"More than one filament types have been mapped to the same external spool, " +"which may cause printing issues. The printer won't pause during printing." msgstr "" +"Prie tos pačios išorinės ritės buvo priskirti keli gijų tipai, o tai gali " +"sukelti spausdinimo problemų. Spausdinimo metu spausdintuvas nedarys pauzės." -msgid "The filament type setting of external spool is different from the filament in the slicing file." +msgid "" +"The filament type setting of external spool is different from the filament " +"in the slicing file." msgstr "" +"Išorinės ritės gijos tipo nustatymas skiriasi nuo gijos, nurodytos " +"sluoksniavimo faile." -msgid "The printer type selected when generating G-code is not consistent with the currently selected printer. It is recommended that you use the same printer type for slicing." -msgstr "G-kodo generavimo metu pasirinktas spausdintuvo tipas neatitinka šiuo metu pasirinkto spausdintuvo. Rekomenduojame sluoksniavimui naudoti tą patį spausdintuvo tipą." +msgid "" +"The printer type selected when generating G-code is not consistent with the " +"currently selected printer. It is recommended that you use the same printer " +"type for slicing." +msgstr "" +"Generuojant G-kodą pasirinktas spausdintuvo tipas nesutampa su šiuo metu " +"pasirinktu spausdintuvu. Sluoksniavimui rekomenduojama naudoti tą patį " +"spausdintuvo tipą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "There are some unknown filaments in the AMS mappings. Please check whether they are the required filaments. If they are okay, click \"Confirm\" to start printing." -msgstr "AMS sistemoje yra nežinomų gijų. Prašome patikrinti, ar tai yra reikalingos gijos. Jei viskas tvarkoje, spausdinimą galite pradėti paspaudę „Patvirtinti“." +msgid "" +"There are some unknown filaments in the AMS mappings. Please check whether " +"they are the required filaments. If they are okay, press \"Confirm\" to " +"start printing." +msgstr "" +"AMS sistemoje yra nežinomų gijų. Prašome patikrinti, ar tai yra reikalingos " +"gijos. Jei viskas tvarkoje, spausdinimą galite pradėti paspaudę " +"„Patvirtinti“." msgid "Please check the following:" msgstr "Prašome patikrinti:" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Prašome ištaisyti aukščiau pateiktą klaidą, priešingu atveju nebus galima pradėti spausdinimo." - -msgid "Please click the confirm button if you still want to proceed with printing." -msgstr "Jei jūs vis dar norite tęsti spausdinimą, paspauskite patvirtinimo mygtuką." - -msgid "This checks the flatness of heatbed. Leveling makes extruded height uniform." msgstr "" +"Prašome ištaisyti aukščiau pateiktą klaidą, priešingu atveju nebus galima " +"pradėti spausdinimo." -msgid "This process determines the dynamic flow values to improve overall print quality." +msgid "" +"Please click the confirm button if you still want to proceed with printing." msgstr "" +"Jei jūs vis dar norite tęsti spausdinimą, paspauskite patvirtinimo mygtuką." + +msgid "" +"This checks the flatness of heatbed. Leveling makes extruded height uniform." +msgstr "" +"Patikrina spausdinimo pagrindo lygumą. Lygiavimas užtikrina tolygų " +"išspaustos gijos aukštį." + +msgid "" +"This process determines the dynamic flow values to improve overall print " +"quality." +msgstr "" +"Šis procesas nustato dinaminio srauto vertes, kad pagerintų bendrą " +"spausdinimo kokybę." msgid "Preparing print job" msgstr "Spausdinimo užduoties rengimas" @@ -8864,213 +9950,299 @@ msgstr "Pavadinimas viršijo leistiną dydį." #, c-format, boost-format msgid "Cost %dg filament and %d changes more than optimal grouping." msgstr "" +"Sunaudoja %d g gijos ir %d pakeitimais daugiau nei pasirinkus optimalų " +"grupavimą." msgid "nozzle" -msgstr "" +msgstr "purkštukas" msgid "both extruders" -msgstr "" +msgstr "abu ekstruderiai" -msgid "Tips: If you changed your nozzle of your printer lately, Please go to 'Device -> Printer parts' to change your nozzle setting." +msgid "" +"Tips: If you changed your nozzle of your printer lately, Please go to " +"'Device -> Printer parts' to change your nozzle setting." msgstr "" +"Patarimas: jei neseniai pakeitėte spausdintuvo purkštuką, eikite į " +"„Įrenginys -> Spausdintuvo dalys“, kad pakeistumėte purkštuko nustatymą." #, c-format, boost-format -msgid "The %s diameter(%.1fmm) of current printer doesn't match with the slicing file (%.1fmm). Please make sure the nozzle installed matches with settings in printer, then set the corresponding printer preset when slicing." +msgid "" +"The %s diameter(%.1fmm) of current printer doesn't match with the slicing " +"file (%.1fmm). Please make sure the nozzle installed matches with settings " +"in printer, then set the corresponding printer preset when slicing." msgstr "" +"Dabartinio spausdintuvo %s skersmuo (%.1f mm) nesutampa su sluoksniavimo " +"failu (%.1f mm). Įsitikinkite, kad įstatytas purkštukas atitinka " +"spausdintuvo nustatymus, o tada sluoksniuodami parinkite atitinkamą " +"spausdintuvo profilį." #, c-format, boost-format -msgid "The current nozzle diameter (%.1fmm) doesn't match with the slicing file (%.1fmm). Please make sure the nozzle installed matches with settings in printer, then set the corresponding printer preset when slicing." +msgid "" +"The current nozzle diameter (%.1fmm) doesn't match with the slicing file " +"(%.1fmm). Please make sure the nozzle installed matches with settings in " +"printer, then set the corresponding printer preset when slicing." msgstr "" +"Dabartinis purkštuko skersmuo (%.1f mm) nesutampa su sluoksniavimo failu " +"(%.1f mm). Įsitikinkite, kad įstatytas purkštukas atitinka spausdintuvo " +"nustatymus, o tada sluoksniuodami parinkite atitinkamą spausdintuvo profilį." #, c-format, boost-format -msgid "The hardness of current material (%s) exceeds the hardness of %s(%s). Please verify the nozzle or material settings and try again." +msgid "" +"The hardness of current material (%s) exceeds the hardness of %s(%s). Please " +"verify the nozzle or material settings and try again." msgstr "" +"Dabartinės medžiagos kietumas (%s) viršija %s (%s) kietumą. Patikrinkite " +"purkštuko arba medžiagos nustatymus ir bandykite dar kartą." #, c-format, boost-format -msgid "[ %s ] requires printing in a high-temperature environment. Please close the door." +msgid "" +"[ %s ] requires printing in a high-temperature environment. Please close the " +"door." msgstr "" +"[ %s ] reikalauja spausdinimo aukštos temperatūros aplinkoje. Užverkite " +"dureles." #, c-format, boost-format msgid "[ %s ] requires printing in a high-temperature environment." -msgstr "" +msgstr "[ %s ] reikalauja spausdinimo aukštos temperatūros aplinkoje." #, c-format, boost-format msgid "The filament on %s may soften. Please unload." -msgstr "" +msgstr "Gija, esanti %s, gali suminkštėti. Prašome ją išimti." #, c-format, boost-format msgid "The filament on %s is unknown and may soften. Please set filament." msgstr "" +"Gija, esanti %s, yra nežinoma ir gali suminkštėti. Nustatykite gijos tipą." -msgid "Unable to automatically match to suitable filament. Please click to manually match." +msgid "" +"Unable to automatically match to suitable filament. Please click to manually " +"match." msgstr "" +"Nepavyko automatiškai parinkti tinkamos gijos. Spustelėkite, kad " +"suderintumėte rankiniu būdu." msgid "Install toolhead enhanced cooling fan to prevent filament softening." msgstr "" +"Įdiekite patobulintą spausdinimo galvutės (toolhead) aušinimo ventiliatorių, " +"kad išvengtumėte gijos suminkštėjimo." msgid "Smooth Cool Plate" -msgstr "Glotni vėsi plokštė" +msgstr "Lygus vėsus pagrindas" msgid "Engineering Plate" -msgstr "Inžinerinė plokštė" +msgstr "Inžinerinis pagrindas" msgid "Smooth High Temp Plate" -msgstr "Lygi aukštos temperatūros plokštė" +msgstr "Lygus aukštos temperatūros pagrindas" msgid "Textured PEI Plate" -msgstr "Tekstūruota PEI plokštė" +msgstr "Tekstūrinis PEI pagrindas" msgid "Cool Plate (SuperTack)" -msgstr "Šalta plokštė (SuperTack)" +msgstr "Vėsus pagrindas („SuperTack“)" msgid "Click here if you can't connect to the printer" msgstr "Jei negalite prijungti spausdintuvo, spauskite čia" msgid "No login account, only printers in LAN mode are displayed." -msgstr "Nėra prisijungimo paskyros, rodomi tik vietiniame tinkle esantys spausdintuvai" +msgstr "" +"Nėra prisijungimo paskyros, rodomi tik vietiniame tinkle esantys " +"spausdintuvai." msgid "Connecting to server..." -msgstr "Jungiamasi prie serverio" +msgstr "Jungiamasi prie serverio..." msgid "Synchronizing device information..." -msgstr "Sinchronizuojama įrenginio informacija" +msgstr "Sinchronizuojama įrenginio informacija..." msgid "Synchronizing device information timed out." -msgstr "Baigėsi įrenginio informacijos sinchronizavimo laikas" +msgstr "Baigėsi įrenginio informacijos sinchronizavimo laikas." msgid "Cannot send a print job when the printer is not at FDM mode." msgstr "" +"Negalima siųsti spausdinimo užduoties, kai spausdintuvas neveikia FDM režimu." msgid "Cannot send a print job while the printer is updating firmware." -msgstr "Spausdinimo užduoties negalima išsiųsti, kai spausdintuvo programinė įranga atnaujinama" +msgstr "" +"Spausdinimo užduoties negalima išsiųsti spausdintuvo programinės įrangos " +"atnaujinamo metu." -msgid "The printer is executing instructions. Please restart printing after it ends." -msgstr "Spausdintuvas vykdo instrukcijas. Kai jis baigs, prašome paleisti spausdinimą iš naujo" +msgid "" +"The printer is executing instructions. Please restart printing after it ends." +msgstr "" +"Spausdintuvas vykdo instrukcijas. Kai jis baigs, prašome paleisti " +"spausdinimą iš naujo." msgid "AMS is setting up. Please try again later." -msgstr "" +msgstr "Ruošiama AMS sistema. Bandykite dar kartą vėliau." -msgid "Not all filaments used in slicing are mapped to the printer. Please check the mapping of filaments." +msgid "" +"Not all filaments used in slicing are mapped to the printer. Please check " +"the mapping of filaments." msgstr "" +"Ne visos sluoksniavimui naudotos gijos yra priskirtos spausdintuvui. " +"Patikrinkite gijų priskyrimą (mapping)." msgid "Please do not mix-use the Ext with AMS." -msgstr "" +msgstr "Nenaudokite išorinės ritės (Ext) kartu su AMS sistema vienu metu." -msgid "Invalid nozzle information, please refresh or manually set nozzle information." +msgid "" +"Invalid nozzle information, please refresh or manually set nozzle " +"information." msgstr "" +"Neteisinga purkštuko informacija. Atnaujinkite arba rankiniu būdu " +"nustatykite purkštuko duomenis." msgid "Storage needs to be inserted before printing via LAN." -msgstr "" +msgstr "Prieš spausdinant per vietinį tinklą (LAN), būtina įdėti laikmeną." msgid "Storage is in abnormal state or is in read-only mode." -msgstr "" +msgstr "Laikmena veikia su sutrikimais arba yra tik skaitymo režime." msgid "Storage needs to be inserted before printing." -msgstr "" +msgstr "Prieš spausdinant būtina įdėti laikmeną." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Cannot send the print job to a printer whose firmware must be updated." -msgstr "Neįmanoma išsiųsti spausdinimo užduoties spausdintuvui, kurio programinę įrangą reikia atnaujinti." +msgid "" +"Cannot send the print job to a printer whose firmware is required to get " +"updated." +msgstr "" +"Neįmanoma išsiųsti spausdinimo užduoties spausdintuvui, kurio programinę " +"įrangą reikia atnaujinti." msgid "Cannot send a print job for an empty plate." -msgstr "Negalima siųsti spausdinimo užduoties tuščiai plokštei" +msgstr "Negalima siųsti spausdinimo užduoties tuščiam pagrindui." msgid "Storage needs to be inserted to record timelapse." msgstr "" +"Norint įrašyti laiko tarpų (timelapse) vaizdo įrašą, būtina įdėti laikmeną." -msgid "You have selected both external and AMS filaments for an extruder. You will need to manually switch the external filament during printing." +msgid "" +"You have selected both external and AMS filaments for an extruder. You will " +"need to manually switch the external filament during printing." msgstr "" +"Ekstruderiui pasirinkote ir išorines, ir AMS gijas. Spausdinimo metu " +"turėsite rankiniu būdu pakeisti išorinę giją." -msgid "TPU 90A/TPU 85A is too soft and does not support automatic Flow Dynamics calibration." +msgid "" +"TPU 90A/TPU 85A is too soft and does not support automatic Flow Dynamics " +"calibration." msgstr "" +"TPU 90A / TPU 85A yra per minkšta gija, todėl ji nepalaiko automatinio " +"dinaminio srauto kalibravimo." -msgid "Set dynamic flow calibration to 'OFF' to enable custom dynamic flow value." +msgid "" +"Set dynamic flow calibration to 'OFF' to enable custom dynamic flow value." msgstr "" +"Išjunkite dinaminio srauto kalibravimą (nustatykite į „OFF“), kad galėtumėte " +"naudoti pasirinktinę dinaminio srauto vertę." msgid "This printer does not support printing all plates." -msgstr "Spausdintuvas nepalaiko visų plokščių spausdinimo" +msgstr "Šis spausdintuvas nepalaiko visų pagrindų spausdinimo iš karto." -msgid "The current firmware supports a maximum of 16 materials. You can either reduce the number of materials to 16 or fewer on the Preparation Page, or try updating the firmware. If you are still restricted after the update, please wait for subsequent firmware support." +msgid "" +"The current firmware supports a maximum of 16 materials. You can either " +"reduce the number of materials to 16 or fewer on the Preparation Page, or " +"try updating the firmware. If you are still restricted after the update, " +"please wait for subsequent firmware support." msgstr "" +"Dabartinė programinė įranga palaiko ne daugiau kaip 16 medžiagų. Galite " +"paruošimo puslapyje sumažinti medžiagų skaičių iki 16 ar mažiau arba " +"pabandyti atnaujinti programinę įrangą. Jei po atnaujinimo apribojimas " +"išlieka, palaukite vėlesnių programinės įrangos atnaujinimų." -msgid "The type of external filament is unknown or does not match with the filament type in the slicing file. Please make sure you have installed the correct filament in the external spool." +msgid "" +"The type of external filament is unknown or does not match with the filament " +"type in the slicing file. Please make sure you have installed the correct " +"filament in the external spool." msgstr "" +"Išorinės gijos tipas yra nežinomas arba nesutampa su gijos tipu " +"sluoksniavimo faile. Įsitikinkite, kad į išorinę ritę įstatėte tinkamą giją." msgid "Please refer to Wiki before use->" -msgstr "" +msgstr "Prieš naudodami peržiūrėkite „Wiki“ ->" msgid "Current firmware does not support file transfer to internal storage." msgstr "" +"Dabartinė programinė įranga nepalaiko failų perdavimo į vidinę laikmeną." msgid "Send to Printer storage" -msgstr "" +msgstr "Siųsti į spausdintuvo laikmeną" msgid "Try to connect" -msgstr "" +msgstr "Bandyti jungtis" msgid "Internal Storage" -msgstr "" +msgstr "Vidinė laikmena" msgid "External Storage" -msgstr "" +msgstr "Išorinė laikmena" msgid "Upload file timeout, please check if the firmware version supports it." msgstr "" +"Baigėsi failo įkėlimo laikas, patikrinkite, ar programinės įrangos versija " +"tai palaiko." msgid "Connection timed out, please check your network." -msgstr "" +msgstr "Ryšio laikas baigėsi, patikrinkite tinklo ryšį." msgid "Connection failed. Click the icon to retry" msgstr "" +"Nepavyko prisijungti. Spustelėkite piktogramą, kad bandytumėte dar kartą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Cannot send print tasks when an update is in progress" -msgstr "Negalima nusiųsti spausdinimo užduočių programinės įrangos atnaujinimo metu" +msgid "Cannot send the print task when the upgrade is in progress" +msgstr "" +"Negalima nusiųsti spausdinimo užduočių programinės įrangos atnaujinimo metu" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "Pasirinktas spausdintuvas nesuderinamas su išrinktais spausdintuvų nustatymais." +msgstr "" +"Pasirinktas spausdintuvas yra nesuderinamas su parinktais spausdintuvo " +"profiliais." msgid "Storage needs to be inserted before send to printer." -msgstr "" +msgstr "Prieš siunčiant į spausdintuvą, būtina įdėti laikmeną." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The printer is required to be on the same LAN as Orca Slicer." -msgstr "Spausdintuvas privalo būti tame pačiame tinkle kaip ir Orca Slicer." +msgid "The printer is required to be in the same LAN as Orca Slicer." +msgstr "" +"Spausdintuvas privalo būti tame pačiame vietiniame tinkle (LAN) kaip ir " +"„OrcaSlicer“." msgid "The printer does not support sending to printer storage." -msgstr "" +msgstr "Spausdintuvas nepalaiko siuntimo į spausdintuvo laikmeną." msgid "Sending..." -msgstr "" +msgstr "Siunčiama..." -msgid "File upload timed out. Please check if the firmware version supports this operation or verify if the printer is functioning properly." +msgid "" +"File upload timed out. Please check if the firmware version supports this " +"operation or verify if the printer is functioning properly." msgstr "" +"Baigėsi failo įkėlimo laikas. Patikrinkite, ar programinės įrangos versija " +"palaiko šį veiksmą, ir įsitikinkite, kad spausdintuvas veikia tinkamai." msgid "Sending failed, please try again!" -msgstr "" +msgstr "Siuntimas nepavyko, bandykite dar kartą!" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Slice complete" +msgid "Slice ok." msgstr "Sluoksniavimas baigtas." msgid "View all Daily tips" msgstr "Peržiūrėti visus dienos patarimus" msgid "Failed to create socket" -msgstr "Nepavyko sukurti soketo" +msgstr "Nepavyko sukurti lizdo (socket)" msgid "Failed to connect socket" -msgstr "Nepavyko prisijungti prie soketo" +msgstr "Nepavyko prisijungti prie lizdo (socket)" msgid "Failed to publish login request" msgstr "Nepavyko paskelbti prisijungimo užklausos" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Timeout getting ticket from device" +msgid "Get ticket from device timeout" msgstr "Įrenginio bilieto laukimo laikas baigėsi" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Timeout getting ticket from server" +msgid "Get ticket from server timeout" msgstr "Serverio bilieto laukimo laikas baigėsi" msgid "Failed to post ticket to server" @@ -9122,8 +10294,19 @@ msgstr "Perskaičiau ir sutinku" msgid "Terms and Conditions" msgstr "Naudojimo sąlygos" -msgid "Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab device, please read the terms and conditions. By clicking to agree to use your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of Use (collectively, the \"Terms\"). If you do not comply with or agree to the Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." -msgstr "Dėkojame, kad įsigijote „Bambu Lab“ prietaisą. Prieš naudodamiesi „Bambu Lab“ prietaisu, perskaitykite taisykles ir sąlygas. Paspaudę sutikti naudoti „Bambu Lab“ įrenginį, sutinkate laikytis privatumo politikos ir naudojimo sąlygų (toliau kartu - sąlygos). Jei nesilaikote „Bambu Lab“ privatumo politikos arba nesutinkate su ja, nesinaudokite „Bambu Lab“ įranga ir paslaugomis." +msgid "" +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " +"your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " +"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "" +"Dėkojame, kad įsigijote „Bambu Lab“ prietaisą. Prieš naudodamiesi „Bambu " +"Lab“ prietaisu, perskaitykite taisykles ir sąlygas. Paspaudę sutikti naudoti " +"„Bambu Lab“ įrenginį, sutinkate laikytis privatumo politikos ir naudojimo " +"sąlygų (toliau kartu - sąlygos). Jei nesilaikote „Bambu Lab“ privatumo " +"politikos arba nesutinkate su ja, nesinaudokite „Bambu Lab“ įranga ir " +"paslaugomis." msgid "and" msgstr "ir" @@ -9135,14 +10318,36 @@ msgid "We ask for your help to improve everyone's printer" msgstr "Mes prašome jūsų pagalbos tobulinant kiekvieno spausdintuvą" msgid "Statement about User Experience Improvement Program" -msgstr "Informacija apie vartotojo patirties tobulinimo programą" +msgstr "Informacija apie naudotojo patirties tobulinimo programą" #, c-format, boost-format -msgid "In the 3D Printing community, we learn from each other's successes and failures to adjust our own slicing parameters and settings. %s follows the same principle and uses machine learning to improve its performance from the successes and failures of the vast number of prints by our users. We are training %s to be smarter by feeding them the real-world data. If you are willing, this service will access information from your error logs and usage logs, which may include information described in Privacy Policy. We will not collect any Personal Data by which an individual can be identified directly or indirectly, including without limitation names, addresses, payment information, or phone numbers. By enabling this service, you agree to these terms and the statement about Privacy Policy." -msgstr "3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad galėtume koreguoti savo sluoksniavimo parametrus ir nustatymus. %s veikia tuo pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą remdamasi didžiule mūsų vartotojų spausdinimo sėkmėmis ir nesėkmėmis. Mes mokome %s tapti protingesniu įrankiu, pateikdami jam realaus pasaulio duomenis. Jei sutinkate, ši paslauga pasieks informaciją iš jūsų klaidų ir naudojimo žurnalų, kurie gali apimti informaciją, aprašytą Privatumo politikoje. Mes nerenkame jokių asmens duomenų, kuriais galima tiesiogiai ar netiesiogiai identifikuoti asmenį, įskaitant, bet neapsiribojant, vardus, pavardes, adresus, mokėjimo informacija ar telefono numerius. Įgalindami šią paslaugą, jūs sutinkate su šiomis sąlygomis ir Privatumo politikos nuostatais." +msgid "" +"In the 3D Printing community, we learn from each other's successes and " +"failures to adjust our own slicing parameters and settings. %s follows the " +"same principle and uses machine learning to improve its performance from the " +"successes and failures of the vast number of prints by our users. We are " +"training %s to be smarter by feeding them the real-world data. If you are " +"willing, this service will access information from your error logs and usage " +"logs, which may include information described in Privacy Policy. We will not " +"collect any Personal Data by which an individual can be identified directly " +"or indirectly, including without limitation names, addresses, payment " +"information, or phone numbers. By enabling this service, you agree to these " +"terms and the statement about Privacy Policy." +msgstr "" +"3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad " +"galėtume koreguoti savo sluoksniavimo parametrus ir profilius. %s veikia tuo " +"pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą " +"remdamasi didžiule mūsų naudotojų spausdinimo sėkme bei nesėkmėmis. Mes " +"mokome %s tapti išmanesniu, pateikdami jam realaus pasaulio duomenis. Jei " +"sutinkate, ši paslauga pasieks informaciją iš jūsų klaidų ir naudojimo " +"žurnalų, kurie gali apimti informaciją, aprašytą Privatumo politikoje. Mes " +"nerenkame jokių asmens duomenų, kuriais galima tiesiogiai ar netiesiogiai " +"identifikuoti asmenį, įskaitant (be apribojimų) vardus, pavardes, adresus, " +"mokėjimo informaciją ar telefono numerius. Įgalindami šią paslaugą, jūs " +"sutinkate su šiomis sąlygomis ir Privatumo politikos nuostatomis." msgid "Statement on User Experience Improvement Plan" -msgstr "Informacija apie vartotojo patirties tobulinimo planą" +msgstr "Informacija apie naudotojo patirties tobulinimo planą" msgid "Log in successful." msgstr "Prisijungta sėkmingai." @@ -9168,39 +10373,60 @@ msgid "Save current %s" msgstr "Išsaugoti dabartinį %s" msgid "Delete this preset" -msgstr "Ištrinti šį išankstinį nustatymą" +msgstr "Ištrinti šį profilį" msgid "Search in preset" -msgstr "Ieškoti nustatymuose" - -msgid "Synchronization of different extruder drives or nozzle volume types is not supported." -msgstr "" - -msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." -msgstr "" +msgstr "Ieškoti profilyje" msgid "Click to reset all settings to the last saved preset." -msgstr "Paspauskite, norėdami atkurti visus nustatymus pagal paskutinį išsaugotą profilį." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without a prime tower. Are you sure you want to disable the prime tower?" -msgstr "Norint sklandžiai filmuoti laiko intervalais, reikia valymo bokšto. Be valymo bokšto modelyje gali būti trūkumų. Ar tikrai norite išjungti valymo bokštą?" - -msgid "A prime tower is required for clumping detection. There may be flaws on the model without prime tower. Are you sure you want to disable prime tower?" msgstr "" +"Paspauskite, norėdami atkurti visus nustatymus pagal paskutinį išsaugotą " +"profilį." -msgid "Enabling both precise Z height and the prime tower may cause slicing errors. Do you still want to enable?" -msgstr "Tikslaus Z aukščio ir pirminio bokšto įjungimas gali sukelti pjaustymo klaidų. Ar vis tiek norite įjungti?" - -msgid "A prime tower is required for clumping detection. There may be flaws on the model without prime tower. Do you still want to enable clumping detection?" +msgid "" +"A prime tower is required for smooth timelapse. There may be flaws on the " +"model without prime tower. Are you sure you want to disable prime tower?" msgstr "" +"Norint sklandžiai įrašyti laiko tarpų (timelapse) vaizdo įrašą, reikalingas " +"valymo bokštas. Be valymo bokšto modelyje gali atsirasti defektų. Ar tikrai " +"norite išjungti valymo bokštą?" -msgid "Enabling both precise Z height and the prime tower may cause slicing errors. Do you still want to enable precise Z height?" -msgstr "Tikslaus Z aukščio ir pirminio bokšto įjungimas gali sukelti pjaustymo klaidų. Ar vis tiek norite įjungti tikslų Z aukštį?" +msgid "" +"A prime tower is required for clumping detection. There may be flaws on the " +"model without prime tower. Are you sure you want to disable prime tower?" +msgstr "" +"Įjungus ir tikslų Z aukštį, ir valymo bokštą, gali kilti sluoksniavimo " +"klaidų. Ar vis tiek norite įjungti?" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without prime tower. Do you want to enable the prime tower?" -msgstr "Pakadriniam tolygiam video reikia Prime bokšto. Spausdinant be Prime bokštelio modelis gali turėti trūkumų. Ar tikrai norite išjungti Prime bokštą?" +msgid "" +"Enabling both precise Z height and the prime tower may cause slicing errors. " +"Do you still want to enable?" +msgstr "" +"Tikslaus Z aukščio ir pirminio bokšto įjungimas gali sukelti pjaustymo " +"klaidų. Ar vis tiek norite įjungti?" + +msgid "" +"A prime tower is required for clumping detection. There may be flaws on the " +"model without prime tower. Do you still want to enable clumping detection?" +msgstr "" +"Norint aptikti gumbų susidarymą, reikalingas valymo bokštas. Be valymo " +"bokšto modelyje gali atsirasti defektų. Ar vis tiek norite įjungti gumbų " +"susidarymo aptikimą?" + +msgid "" +"Enabling both precise Z height and the prime tower may cause slicing errors. " +"Do you still want to enable precise Z height?" +msgstr "" +"Įjungus ir tikslų Z aukštį, ir valymo bokštą, gali kilti sluoksniavimo " +"klaidų. Ar vis tiek norite įjungti tikslų Z aukštį?" + +msgid "" +"A prime tower is required for smooth timelapse. There may be flaws on the " +"model without prime tower. Do you want to enable prime tower?" +msgstr "" +"Norint sklandžiai įrašyti laiko tarpų (timelapse) vaizdo įrašą, reikalingas " +"valymo bokštas. Be valymo bokšto modelyje gali atsirasti defektų. Ar norite " +"įjungti valymo bokštą?" msgid "Still print by object?" msgstr "Vis dar spausdinti pagal objektą?" @@ -9209,38 +10435,70 @@ msgid "" "Non-soluble support materials are not recommended for support base.\n" "Are you sure to use them for support base?\n" msgstr "" +"Netirpios atraminės medžiagos nerekomenduojamos atramų pagrindui.\n" +"Ar tikrai norite jas naudoti atramų pagrindui?\n" msgid "" -"When using support material for the support interface, we recommend the following settings:\n" -"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern and disable independent support layer height." +"When using support material for the support interface, we recommend the " +"following settings:\n" +"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern and " +"disable independent support layer height." msgstr "" -"Naudojant atraminę medžiagą atraminei sąsajai, rekomenduojame šiuos nustatymus:\n" -"0 viršutinis Z atstumas, 0 sąsajos tarpas, susipynęs tiesinis modelis ir išjungtas nepriklausomas atraminio sluoksnio aukštis." +"Naudojant specialią medžiagą atramų sąsajai (interface), rekomenduojame " +"šiuos profilio nustatymus:\n" +"0 viršutinį Z atstumą, 0 sąsajos tarpą, susipynusį tiesinį raštą " +"(rectilinear) ir išjungti nepriklausomą atraminio sluoksnio aukštį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" -"Yes - Change these settings automatically.\n" -"No - Do not change these settings for me." +"Yes - Change these settings automatically\n" +"No - Do not change these settings for me" msgstr "" "Automatiškai pakeisti šiuos nustatymus?\n" "Taip - Pakeiskite šiuos nustatymus automatiškai.\n" "Ne - Nekeiskite šių nustatymų už mane" msgid "" -"When using soluble material for the support interface, we recommend the following settings:\n" -"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern, disable independent support layer height\n" +"When using soluble material for the support interface, we recommend the " +"following settings:\n" +"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern, " +"disable independent support layer height\n" "and use soluble materials for both support interface and support base." msgstr "" +"Naudojant tirpią medžiagą palaikymo sąsajai (support interface), " +"rekomenduojame šiuos nustatymus:\n" +"0 viršutinis Z atstumas, 0 tarpas tarp " +"sąsajų, persipynęs tiesiaeigis raštas, išjungti nepriklausomą palaikymo " +"sluoksnio aukštį\n" +"ir naudoti tirpias medžiagas tiek palaikymo sąsajai, tiek palaikymo " +"pagrindui." -msgid "Enabling this option will modify the model's shape. If your print requires precise dimensions or is part of an assembly, it's important to double-check whether this change in geometry impacts the functionality of your print." -msgstr "Įjungus šią parinktį, pasikeis modelio forma. Jei jūsų spaudinys turi atitikti tikslius matmenis arba yra dalis didesnio mazgo, svarbu papildomai patikrinti, ar šis geometrijos pasikeitimas neturi įtakos jūsų spaudinio funkcionalumui." +msgid "" +"Enabling this option will modify the model's shape. If your print requires " +"precise dimensions or is part of an assembly, it's important to double-check " +"whether this change in geometry impacts the functionality of your print." +msgstr "" +"Įjungus šią parinktį, pasikeis modelio forma. Jei jūsų spaudinys turi " +"atitikti tikslius matmenis arba yra dalis didesnio mazgo, svarbu papildomai " +"patikrinti, ar šis geometrijos pasikeitimas neturi įtakos jūsų spaudinio " +"funkcionalumui." msgid "Are you sure you want to enable this option?" -msgstr "Ar norite įjungti šią galimybę?" +msgstr "Ar tikrai norite įjungti šią parinktį?" -msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?" -msgstr "Užpildymo modeliai paprastai yra suprojektuoti taip, kad automatiškai tvarkytų sukimąsi, siekiant užtikrinti tinkamą spausdinimą ir pasiekti numatytus efektus (pvz., Gyroid, Cubic). Sukant esamą retą užpildymo modelį, gali atsirasti nepakankamas atraminis paviršius. Prašome elgtis atsargiai ir atidžiai patikrinti, ar nėra galimų spausdinimo problemų. Ar tikrai norite įjungti šią parinktį?" +msgid "" +"Infill patterns are typically designed to handle rotation automatically to " +"ensure proper printing and achieve their intended effects (e.g., Gyroid, " +"Cubic). Rotating the current sparse infill pattern may lead to insufficient " +"support. Please proceed with caution and thoroughly check for any potential " +"printing issues. Are you sure you want to enable this option?" +msgstr "" +"Užpildymo modeliai paprastai yra suprojektuoti taip, kad automatiškai " +"tvarkytų sukimąsi, siekiant užtikrinti tinkamą spausdinimą ir pasiekti " +"numatytus efektus (pvz., Gyroid, Cubic). Sukant esamą retą užpildymo modelį, " +"gali atsirasti nepakankamas atraminis paviršius. Prašome elgtis atsargiai ir " +"atidžiai patikrinti, ar nėra galimų spausdinimo problemų. Ar tikrai norite " +"įjungti šią parinktį?" msgid "" "Layer height is too small.\n" @@ -9249,11 +10507,18 @@ msgstr "" "Per mažas sluoksnio aukštis.\n" "Jis bus nustatytas į min_layer_height\n" -msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues." -msgstr "Sluoksnio aukštis netilpo į ribas Spausdintuvo nustatymai -> Ekstruderis -> Sluoksnio aukščio ribos, tai gali turėti įtakos spausdinio kokybei.." +msgid "" +"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " +"height limits, this may cause printing quality issues." +msgstr "" +"Sluoksnio aukštis viršija ribą, nurodytą Spausdintuvo nustatymai -> " +"Ekstruderis -> Sluoksnio aukščio ribos, tai gali sukelti spausdinimo kokybės " +"problemų." msgid "Adjust to the set range automatically?\n" -msgstr "Nustatyti ribų priskyrimą automatiškai?\n" +msgstr "" +"Sureguliuoti pagal nustatytą diapazoną automatiškai?\n" +"\n" msgid "Adjust" msgstr "Sureguliuoti" @@ -9261,27 +10526,53 @@ msgstr "Sureguliuoti" msgid "Ignore" msgstr "Nekreipti dėmesio" -msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications." -msgstr "Eksperimentinė funkcija: Gijos įtraukimas ir nukirpimas didesniu atstumu keičiant giją, siekiant sumažinti išspaudžiamos liekanos kiekį. Ši funkcija gali ženkliai sumažinti išspaudžiamos liekanos kiekį, tačiau taip pat gali padidėti ekstruderio užsikimšimo ar kitų spausdinimo problemų tikimybė." - -msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications. Please use with the latest printer firmware." +msgid "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications." msgstr "" -"Eksperimentinė funkcija: Gijos įtraukimas ir nukirpimas didesniu atstumu keičiant giją, siekiant sumažinti išspaudžiamos liekanos kiekį.\n" -"Ši funkcija gali ženkliai sumažinti išspaudžiamos ankstesnės spalvos gijos liekanos kiekį, tačiau taip pat gali padidėti ekstruderio užsikimšimo ar kitų spausdinimo problemų tikimybė." +"Eksperimentinė funkcija: gijos įtraukimas ir nukirpimas didesniu atstumu " +"keičiant giją, siekiant sumažinti išvalymą (flush). Nors tai gali pastebimai " +"sumažinti išvalymą, taip pat gali padidėti purkštuko užsikimšimo ar kitų " +"spausdinimo komplikacijų rizika." 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\"." +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgstr "" -"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n" -"Norėdami jį pridėti, dešiniuoju pelės mygtuku spustelėkite tuščią spausdinimo plokštės vietą.\n" -"Tada pasirinkite „Pridėti primityvą“ -> „pakadrinis valymo bokštas“." +"Eksperimentinė funkcija: gijos įtraukimas ir nukirpimas didesniu atstumu " +"keičiant giją, siekiant sumažinti išvalymą (flush). Nors tai gali pastebimai " +"sumažinti išvalymą, taip pat gali padidėti purkštuko užsikimšimo ar kitų " +"spausdinimo komplikacijų rizika. Naudokite su naujausia spausdintuvo " +"programine aparatine įranga." -msgid "A copy of the current system preset will be created, which will be detached from the system preset." -msgstr "Bus sukurta dabartinės sistemos išankstinės nuostatos kopija, kuri bus atskirta nuo sistemos išankstinės nuostatos." +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\"." +msgstr "" +"Įrašant laiko tarpų (timelapse) vaizdo įrašą be spausdinimo galvutės, " +"rekomenduojama pridėti „laiko tarpų valymo bokštą“ \n" +"dešiniuoju pelės " +"mygtuku spustelint tuščią spausdinimo pagrindo vietą ir pasirenkant „Pridėti " +"primityvą“ -> „laiko tarpų valymo bokštas“." -msgid "The current custom preset will be detached from the parent system preset." -msgstr "Dabartinis pasirinktinis išankstinis nustatymas bus atskirtas nuo pagrindinio sistemos išankstinio nustatymo." +msgid "" +"A copy of the current system preset will be created, which will be detached " +"from the system preset." +msgstr "" +"Bus sukurta dabartinio sistemos profilio kopija, kuri bus atskirta nuo " +"sistemos profilio." + +msgid "" +"The current custom preset will be detached from the parent system preset." +msgstr "" +"Dabartinis pasirinktinis profilis bus atskirtas nuo pagrindinio sistemos " +"profilio." msgid "Modifications to the current profile will be saved." msgstr "Dabartinio profilio pakeitimai bus išsaugoti." @@ -9294,28 +10585,31 @@ msgstr "" "Ar norite tęsti?" msgid "Detach preset" -msgstr "Atjungti išankstinį nustatymą" +msgstr "Atjungti profilį" msgid "This is a default preset." -msgstr "Tai numatytasis išankstinis nustatymas." +msgstr "Tai numatytasis profilis." msgid "This is a system preset." -msgstr "Tai iš anksto nustatytas sistemos nustatymas." +msgstr "Tai sistemos profilis." msgid "Current preset is inherited from the default preset." -msgstr "Dabartinis išankstinis nustatymas paveldėtas iš numatytojo išankstinio nustatymo." +msgstr "Dabartinis profilis yra paveldėtas iš numatytojo profilio." msgid "Current preset is inherited from" -msgstr "Dabartinis išankstinis nustatymas paveldėtas iš" +msgstr "Dabartinis profilis yra paveldėtas iš" msgid "It can't be deleted or modified." msgstr "Jo negalima ištrinti ar keisti." -msgid "Any modifications should be saved as a new preset inherited from this one." -msgstr "Bet kokius pakeitimus reikėtų išsaugoti kaip naują iš anksto nustatytą nustatymą, paveldėtą iš šio." +msgid "" +"Any modifications should be saved as a new preset inherited from this one." +msgstr "" +"Visi pakeitimai turėtų būti išsaugoti kaip naujas profilis, paveldėtas iš " +"šio." msgid "To do that please specify a new name for the preset." -msgstr "Norėdami tai padaryti, nurodykite naują išankstinio nustatymo pavadinimą." +msgstr "Norėdami tai padaryti, nurodykite naują profilio pavadinimą." msgid "Additional information:" msgstr "Papildoma informacija:" @@ -9330,7 +10624,7 @@ msgid "default print profile" msgstr "numatytasis spausdinimo profilis" msgid "default filament profile" -msgstr "numatytasis gijų profilis" +msgstr "numatytasis gijos profilis" msgid "default SLA material profile" msgstr "numatytasis SLA medžiagos profilis" @@ -9351,7 +10645,7 @@ msgid "Precision" msgstr "Tikslumas" msgid "Z contouring" -msgstr "" +msgstr "Z ašies kontūravimas" msgid "Wall generator" msgstr "Sienų generatorius" @@ -9368,7 +10662,6 @@ msgstr "Sienos" msgid "Top/bottom shells" msgstr "Viršutiniai/apatiniai paviršiai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer speed" msgstr "Pradinio sluoksnio greitis" @@ -9378,8 +10671,15 @@ msgstr "Kitų sluoksnių greitis" msgid "Overhang speed" msgstr "Iškyšų greitis" -msgid "This is the speed for various overhang degrees. Overhang degrees are expressed as a percentage of line width. 0 speed means no slowing down for the overhang degree range and wall speed is used" -msgstr "Šiame nustatyme nurodomas spausdinimo greitis skirtingiems iškyšos laipsniams. Iškyšos laipsnis pateikiamas linijos pločio procentine išraiška. 0 greitis reiškia, kad nepristabdoma nė vienam iškyšos laipsniui ir naudojamas sienelės spausdinimo greitis" +msgid "" +"This is the speed for various overhang degrees. Overhang degrees are " +"expressed as a percentage of line width. 0 speed means no slowing down for " +"the overhang degree range and wall speed is used" +msgstr "" +"Šiame nustatyme nurodomas spausdinimo greitis skirtingiems iškyšos " +"laipsniams. Iškyšos laipsnis pateikiamas linijos pločio procentine išraiška. " +"0 greitis reiškia, kad nepristabdoma nė vienam iškyšos laipsniui ir " +"naudojamas sienelės spausdinimo greitis" msgid "Set speed for external and internal bridges" msgstr "Vidinių ir išorinių tiltų greitis" @@ -9396,8 +10696,7 @@ msgstr "Pagreitis (XY)" msgid "Raft" msgstr "Platforma" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament for Supports" +msgid "Support filament" msgstr "Atramų gija" msgid "Support ironing" @@ -9422,7 +10721,7 @@ msgid "G-code output" msgstr "G-kodo išvestis" msgid "Change extrusion role G-code" -msgstr "Keisti išspaudimo vaidmenį G-kodas" +msgstr "Ekstruzijos vaidmens keitimo G-kodas" msgid "Post-processing Scripts" msgstr "Scenarijai po apdorojimo" @@ -9436,25 +10735,30 @@ msgstr "Dažnai" #, c-format, boost-format msgid "" "Following line %s contains reserved keywords.\n" -"Please remove it, or G-code visualization and print time estimation will be broken." +"Please remove it, or will beat G-code visualization and printing time " +"estimation." msgid_plural "" "Following lines %s contain reserved keywords.\n" -"Please remove them, or G-code visualization and print time estimation will be broken." +"Please remove them, or will beat G-code visualization and printing time " +"estimation." msgstr[0] "" -"Tolesnėje eilutėje %s yra rezervuotų raktinių žodžių.\n" -"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir spausdinimo laiko įvertinimas." +"Šioje eilutėje %s yra rezervuotų raktinių žodžių.\n" +"Pašalinkite jas, kitaip sutriks G-kodo vizualizavimas ir spausdinimo laiko " +"skaičiavimas." msgstr[1] "" -"Tolesnėse eilutėse %s yra rezervuotų raktinių žodžių.\n" -"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir spausdinimo laiko įvertinimas." +"Šiose eilutėse %s yra rezervuotų raktinių žodžių.\n" +"Pašalinkite jas, kitaip sutriks G-kodo vizualizavimas ir spausdinimo laiko " +"skaičiavimas." msgstr[2] "" -"Tolesnėse eilutėse %s yra rezervuotų raktinių žodžių.\n" -"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir spausdinimo laiko įvertinimas." +"Šiose eilutėse %s yra rezervuotų raktinių žodžių.\n" +"Pašalinkite ją, kitaip sutriks G-kodo vizualizavimas ir spausdinimo laiko " +"skaičiavimas." msgid "Reserved keywords found" msgstr "Rasti rezervuoti raktažodžiai" msgid "Setting Overrides" -msgstr "Apribojimų nustatymas" +msgstr "Nustatymų perrašymas" msgid "Basic information" msgstr "Pagrindinė informacija" @@ -9462,9 +10766,10 @@ msgstr "Pagrindinė informacija" msgid "Recommended nozzle temperature" msgstr "Rekomenduojama purkštuko temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Recommended nozzle temperature range of this filament. 0 means not set" -msgstr "Rekomenduojamas šios gijos purkštuko temperatūros diapazonas. 0 reiškia, kad nenustatyta" +msgid "Recommended nozzle temperature range of this filament. 0 means no set" +msgstr "" +"Rekomenduojamas šios gijos purkštuko temperatūros diapazonas. 0 reiškia, kad " +"nenustatyta" msgid "Flow ratio and Pressure Advance" msgstr "Srauto santykis ir slėgis" @@ -9472,55 +10777,67 @@ msgstr "Srauto santykis ir slėgis" msgid "Print chamber temperature" msgstr "Spausdinimo kameros temperatūra" -msgid "Chamber temperature" -msgstr "Kameros temperatūra" - -msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" -msgstr "" - -msgid "Target" -msgstr "" - -msgid "Minimal" -msgstr "" - msgid "Print temperature" msgstr "Spausdinimo temperatūra" msgid "Nozzle temperature when printing" msgstr "Purkštuko temperatūra spausdinant" -msgid "Bed temperature when the Cool Plate SuperTack is installed. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." -msgstr "Pagrindo temperatūra, kai įdiegtas „Cool Plate SuperTack“. Vertė 0 reiškia, kad gija nepalaiko spausdinimo ant „Cool Plate SuperTack“." +msgid "" +"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." +msgstr "" +"Spausdinimo pagrindo temperatūra, kai naudojamas „Cool Plate SuperTack“ " +"pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant „Cool " +"Plate SuperTack“ pagrindo." msgid "Cool Plate" -msgstr "Šalta plokštė" +msgstr "Šaltas pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature when the Cool Plate is installed. A value of 0 means the filament does not support printing on the Cool Plate." -msgstr "Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės." +msgid "" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." +msgstr "" +"Spausdinimo pagrindo temperatūra, kai naudojamas šaltas pagrindas. Reikšmė 0 " +"reiškia, kad gija nepritaikyta spausdinti ant šalto pagrindo." msgid "Textured Cool Plate" -msgstr "Tekstūruota vėsi plokštė" +msgstr "Tekstūruotas vėsus pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature when the Textured Cool Plate is installed. A value of 0 means the filament does not support printing on the Textured Cool Plate." -msgstr "Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad gija negalima spausdinti ant tekstūrinės šaltos plokštės." +msgid "" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." +msgstr "" +"Spausdinimo pagrindo temperatūra, kai naudojamas tekstūruotas šaltas " +"pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant " +"tekstūruoto šalto pagrindo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature when the engineering plate is installed. A value of 0 means the filament does not support printing on the Engineering Plate." -msgstr "Pagrindo temperatūra, kai sumontuota inžinerinė plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant inžinerinės plokštės." +msgid "" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." +msgstr "" +"Spausdinimo pagrindo temperatūra, kai naudojamas inžinerinis pagrindas. " +"Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant inžinerinio pagrindo." msgid "Smooth PEI Plate / High Temp Plate" -msgstr "Lygi PEI plokštė / aukštos temperatūros plokštė" +msgstr "Lygus PEI pagrindas / aukštos temperatūros pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature when the Smooth PEI Plate/High Temperature Plate is installed. A value of 0 means the filament does not support printing on the Smooth PEI Plate/High Temp Plate." -msgstr "Pagrindo temperatūra, kai įdiegta lygi PEI plokštė/aukštos temperatūros plokštė. Vertė 0 reiškia, kad gija nepalaiko spausdinimo ant lygi PEI plokštės/aukštos temperatūros plokštės." +msgid "" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." +msgstr "" +"Spausdinimo pagrindo temperatūra, kai naudojamas lygus PEI pagrindas / " +"aukštos temperatūros pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta " +"spausdinti ant lygaus PEI pagrindo / aukštos temperatūros pagrindo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature when the Textured PEI Plate is installed. A value of 0 means the filament does not support printing on the Textured PEI Plate." -msgstr "Pagrindo temperatūra, kai sumontuota tekstūruota PEI plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos PEI plokštės." +msgid "" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." +msgstr "" +"Spausdinimo pagrindo temperatūra, kai naudojamas tekstūruotas PEI pagrindas. " +"Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant tekstūruoto PEI " +"pagrindo." msgid "Volumetric speed limitation" msgstr "Tūrinio greičio ribojimas" @@ -9534,16 +10851,27 @@ msgstr "Dalies aušinimo ventiliatorius" msgid "Min fan speed threshold" msgstr "Min. ventiliatoriaus greičio riba" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The part cooling fan will run at the minimum fan speed when the estimated layer time is longer than the threshold value. When the layer time is shorter than the threshold, the fan speed will be interpolated between the minimum and maximum fan speed according to layer printing time." -msgstr "Detalių aušinimo ventiliatorius veiks mažiausiu ventiliatoriaus greičiu, kai numatoma sluoksnio trukmė bus ilgesnė už ribinę vertę. Kai sluoksnio trukmė trumpesnė už ribinę vertę, ventiliatoriaus greitis bus apskaičiuojamas tarp mažiausio ir didžiausio ventiliatoriaus greičio, atsižvelgiant į sluoksnio spausdinimo trukmę" +msgid "" +"Part cooling fan speed will start to run at min speed when the estimated " +"layer time is no longer than the layer time in setting. When layer time is " +"shorter than threshold, fan speed is interpolated between the minimum and " +"maximum fan speed according to layer printing time" +msgstr "" +"Detalių aušinimo ventiliatorius veiks mažiausiu ventiliatoriaus greičiu, kai " +"numatoma sluoksnio trukmė bus ilgesnė už ribinę vertę. Kai sluoksnio trukmė " +"trumpesnė už ribinę vertę, ventiliatoriaus greitis bus apskaičiuojamas tarp " +"mažiausio ir didžiausio ventiliatoriaus greičio, atsižvelgiant į sluoksnio " +"spausdinimo trukmę" msgid "Max fan speed threshold" msgstr "Maks ventiliatoriaus greičio riba" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The part cooling fan will run at maximum speed when the estimated layer time is shorter than the threshold value." -msgstr "Detalių aušinimo ventiliatorius veiks didžiausiu greičiu, kai numatoma sluoksnio trukmė bus trumpesnė už ribinę vertę" +msgid "" +"Part cooling fan speed will be max when the estimated layer time is shorter " +"than the setting value" +msgstr "" +"Detalių aušinimo ventiliatorius veiks didžiausiu greičiu, kai numatoma " +"sluoksnio trukmė bus trumpesnė už ribinę vertę" msgid "Auxiliary part cooling fan" msgstr "Pagalbinis dalies aušinimo ventiliatorius" @@ -9567,10 +10895,11 @@ msgid "Wipe tower parameters" msgstr "Valymo bokšto parametrai" msgid "Multi Filament" -msgstr "" +msgstr "Kelių gijų sistema" msgid "Tool change parameters with single extruder MM printers" -msgstr "Įrankių keitimo parametrai naudojant vieno ekstruderio MM spausdintuvus" +msgstr "" +"Įrankių keitimo parametrai naudojant vieno ekstruderio MM spausdintuvus" msgid "Set" msgstr "Nustatyti" @@ -9585,7 +10914,7 @@ msgid "Compatible printers" msgstr "Suderinami spausdintuvai" msgid "Compatible process profiles" -msgstr "Suderinamų procesų profiliai" +msgstr "Suderinami apdorojimo profiliai" msgid "Printable space" msgstr "Erdvė spausdinimui" @@ -9596,7 +10925,7 @@ msgid "Invalid value provided for parameter %1%: %2%" msgstr "Neteisinga parametro %1% reikšmė: %2%" msgid "G-code flavor is switched" -msgstr "Perjungiamas G kodo tipas" +msgstr "Perjungtas G-kodo tipas" msgid "Cooling Fan" msgstr "Aušinimo ventiliatorius" @@ -9608,43 +10937,43 @@ msgid "Extruder Clearance" msgstr "Ekstruderio laisvoji erdvė" msgid "Adaptive bed mesh" -msgstr "Prisitaikanti pagrindo forma" +msgstr "Prisitaikantis pagrindo tinklelis" msgid "Accessory" msgstr "Priedai" msgid "Machine G-code" -msgstr "Įrenginio gkodas" +msgstr "Įrenginio G-kodas" msgid "File header G-code" -msgstr "" +msgstr "Failo antraštės G-kodas" msgid "Machine start G-code" -msgstr "Įrangos paleidimo G-kodas" +msgstr "Įrenginio pradžios G-kodas" msgid "Machine end G-code" -msgstr "Įrangos pabaigos G-kodas" +msgstr "Įrenginio pabaigos G-kodas" msgid "Printing by object G-code" -msgstr "Spausdinimas pagal objektą G-kodas" +msgstr "Spausdinimo pagal objektą G-kodas" msgid "Before layer change G-code" msgstr "G-kodas prieš keičiant sluoksnį" msgid "Layer change G-code" -msgstr "Sluoksnio keitimas G-kodas" +msgstr "Sluoksnio keitimo G-kodas" msgid "Timelapse G-code" -msgstr "Pakadrinio filmavimo G-kodas" +msgstr "Laiko tarpų (timelapse) vaizdo įrašo G-kodas" msgid "Clumping Detection G-code" -msgstr "" +msgstr "Sulipimo aptikimo G-kodas" msgid "Change filament G-code" msgstr "Gijos keitimo G-kodas" msgid "Pause G-code" -msgstr "Pauzė G-kodas" +msgstr "Pauzės G-kodas" msgid "Template Custom G-code" msgstr "Pasirinktinis G-kodo šablonas" @@ -9656,7 +10985,7 @@ msgid "Normal" msgstr "Normalus" msgid "Resonance Compensation" -msgstr "" +msgstr "Resonanso kompensavimas" msgid "Resonance Avoidance Speed" msgstr "Rezonanso išvengimo greitis" @@ -9664,14 +10993,16 @@ msgstr "Rezonanso išvengimo greitis" msgid "Frequency" msgstr "Dažnis" -msgid "The frequency of the anti-vibration signal will correspond to the natural frequency of the frame." -msgstr "" +msgid "" +"The frequency of the anti-vibration signal will correspond to the natural " +"frequency of the frame." +msgstr "Antivibracinio signalo dažnis atitiks rėmo savitąjį dažnį." msgid "Damping" -msgstr "" +msgstr "Slopinimas" msgid "Damping ratio for the input shaping filter." -msgstr "" +msgstr "Slopinimo koeficientas įvesties formavimo (input shaping) filtrui." msgid "Speed limitation" msgstr "Greičio ribojimas" @@ -9680,7 +11011,7 @@ msgid "Acceleration limitation" msgstr "Pagreičio ribojimas" msgid "Jerk limitation" -msgstr "Trūkčiojimo ribojimai" +msgstr "Trūkčiojimo (jerk) ribojimas" msgid "Single extruder multi-material setup" msgstr "Vieno ekstruderio kelių medžiagų sąranka" @@ -9691,11 +11022,13 @@ msgstr "Spausdintuvo ekstruderių skaičius." msgid "" "Single Extruder Multi Material is selected,\n" "and all extruders must have the same diameter.\n" -"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?" +"Do you want to change the diameter for all extruders to first extruder " +"nozzle diameter value?" msgstr "" -"Pasirinkta vieno ekstruderio daugialypė medžiaga,\n" -"ir visi ekstruderiai turi būti vienodo skersmens.\n" -"Ar norite pakeisti visų ekstruderių skersmenį į pirmojo ekstruderio antgalio skersmens vertę?" +"Pasirinkta vieno ekstruderio kelių medžiagų sistema,\n" +"ir visų ekstruderių skersmuo turi būti vienodas.\n" +"Ar norite pakeisti visų ekstruderių skersmenį į pirmojo ekstruderio " +"purkštuko skersmens reikšmę?" msgid "Nozzle diameter" msgstr "Purkštuko skersmuo" @@ -9706,8 +11039,12 @@ msgstr "Valymo bokštas" msgid "Single extruder multi-material parameters" msgstr "Vieno ekstruderio kelių medžiagų parametrai" -msgid "This is a single extruder multi-material printer, diameters of all extruders will be set to the new value. Do you want to proceed?" -msgstr "Tai yra vieno ekstruderio ir kelių medžiagų spausdintuvas, todėl visų ekstruderių skersmenys bus nustatyti pagal naują vertę. Ar norite tęsti?" +msgid "" +"This is a single extruder multi-material printer, diameters of all extruders " +"will be set to the new value. Do you want to proceed?" +msgstr "" +"Tai yra vieno ekstruderio ir kelių medžiagų spausdintuvas, todėl visų " +"ekstruderių skersmenys bus nustatyti pagal naują vertę. Ar norite tęsti?" msgid "Layer height limits" msgstr "Sluoksnio aukščio ribos" @@ -9719,58 +11056,75 @@ msgid "Retraction when switching material" msgstr "Įtraukimas keičiant medžiagą" msgid "" -"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n" +"The Retract before wipe option could be only 100% when using the Firmware " +"Retraction mode.\n" "\n" "Shall I set it to 100% in order to enable Firmware Retraction?" msgstr "" +"Parinktis „Įtraukti prieš valymą“ (Retract before wipe) gali būti tik 100%, " +"kai naudojamas programinės aparatinės įrangos įtraukimo (Firmware " +"Retraction) režimas.\n" +"\n" +"Ar nustatyti ją į 100%, kad būtų įjungtas programinės aparatinės įrangos " +"įtraukimas?" msgid "Firmware Retraction" -msgstr "Programinės aparatinės įrangos ištraukimas" +msgstr "Programinės aparatinės įrangos įtraukimas" -msgid "Switching to a printer with different extruder types or numbers will discard or reset changes to extruder or multi-nozzle-related parameters." +msgid "" +"Switching to a printer with different extruder types or numbers will discard " +"or reset changes to extruder or multi-nozzle-related parameters." msgstr "" +"Perjungus spausdintuvą su kitokio tipo ar skaičiaus ekstruderiais, bus " +"atmesti arba nustatyti iš naujo ekstruderio arba su keliais purkštukais " +"susiję parametrai." msgid "Use Modified Value" -msgstr "" +msgstr "Naudoti pakeistą reikšmę" msgid "Detached" msgstr "Atjungta" #, c-format, boost-format -msgid "%d Filament Preset and %d Process Preset is attached to this printer. Those presets would be deleted if the printer is deleted." -msgstr "Šiam spausdintuvui yra prijungtas %d iš anksto nustatytas gijų rinkinys ir %d iš anksto nustatytas procesas. Jei spausdintuvas bus ištrintas, šie išankstiniai nustatymai bus ištrinti." +msgid "" +"%d Filament Preset and %d Process Preset is attached to this printer. Those " +"presets would be deleted if the printer is deleted." +msgstr "" +"Prie šio spausdintuvo yra priskirtas %d gijos profilis ir %d apdorojimo " +"profilis. Ištrynus spausdintuvą, šie profiliai taip pat bus ištrinti." msgid "Presets inherited by other presets cannot be deleted!" -msgstr "Paveldėtų iš anksto nustatytų nustatymų negalima ištrinti!" +msgstr "Profilių, kuriuos paveldi kiti profiliai, ištrinti negalima!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." -msgstr[0] "Šį nustatymą paveldi šis išankstinis nustatymas." -msgstr[1] "Šiuos nustatymus paveldi šie išankstiniai nustatymai." -msgstr[2] "Šiuos nustatymus paveldi šie išankstiniai nustatymai." +msgstr[0] "Šį profilį paveldi šis profilis." +msgstr[1] "Šį profilį paveldi šie profiliai." +msgstr[2] "Šį profilį paveldi šie profiliai." #. TRN Remove/Delete #, boost-format msgid "%1% Preset" -msgstr "%1% iš anksto nustatytas" +msgstr "%1% profilis" -msgid "The following preset will be deleted too:" -msgid_plural "The following presets will be deleted too:" -msgstr[0] "Bus ištrintas ir šis išankstinis nustatymas." -msgstr[1] "Bus ištrinti ir šie išankstiniai nustatymai." -msgstr[2] "Bus ištrinti ir šie išankstiniai nustatymai." +msgid "Following preset will be deleted too." +msgid_plural "Following presets will be deleted too." +msgstr[0] "Šis profilis taip pat bus ištrintas." +msgstr[1] "Šie profiliai taip pat bus ištrinti." +msgstr[2] "Šie profiliai taip pat bus ištrinti." msgid "" "Are you sure to delete the selected preset?\n" -"If the preset corresponds to a filament currently in use on your printer, please reset the filament information for that slot." +"If the preset corresponds to a filament currently in use on your printer, " +"please reset the filament information for that slot." msgstr "" -"Ar tikrai norite ištrinti pasirinktą išankstinį nustatymą?\n" -"Jei išankstinis nustatymas atitinka šiuo metu spausdintuve naudojamą giją, iš naujo nustatykite tos angos gijos informaciją." +"Ar tikrai norite ištrinti pasirinktą profilį?\n" +"Jei šis profilis atitinka šiuo metu jūsų spausdintuve naudojamą giją, iš " +"naujo nustatykite tos lizdo vietos gijos informaciją." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format -msgid "Are you sure you want to %1% the selected preset?" -msgstr "Ar tikrai naudojate %1% pasirinktą išankstinį nustatymą?" +msgid "Are you sure to %1% the selected preset?" +msgstr "Ar tikrai norite %1% pasirinktą profilį?" #, c-format, boost-format msgid "" @@ -9778,71 +11132,81 @@ msgid "" " %s first layer %d %s, other layers %d %s\n" " %s max delta %d %s, current delta %d %s\n" msgstr "" +"%s:\n" +"%s pirmas sluoksnis %d %s, kiti sluoksniai %d %s\n" +"%s maks. skirtumas %d %s, dabartinis skirtumas %d %s\n" -msgid "Some first-layer and other-layer temperature pairs exceed safety limits.\n" +msgid "" +"Some first-layer and other-layer temperature pairs exceed safety limits.\n" msgstr "" +"Kai kurios pradinio sluoksnio ir kitų sluoksnių temperatūrų poros viršija " +"saugumo ribas.\n" msgid "" "\n" "Invalid pairs:\n" msgstr "" +"\n" +"Neteisingos poros:\n" msgid "" "\n" "You can go back to edit values, or continue if this is intentional." msgstr "" +"\n" +"Galite grįžti ir redaguoti reikšmes arba tęsti, jei tai padaryta tikslingai." msgid "" "\n" "\n" "Continue anyway?" msgstr "" +"\n" +"\n" +"Vis tiek tęsti?" msgid "Temperature Safety Check" -msgstr "" +msgstr "Temperatūros saugumo patikra" msgid "Continue" msgstr "Tęsti" +msgid "Back" +msgstr "Atgal" + msgid "Don't warn again for this preset" -msgstr "" +msgstr "Daugiau neperspėti šiam profiliui" #, c-format, boost-format -msgid "%s: %s" -msgstr "" - -msgid "No modifications need to be copied." -msgstr "" - -msgid "Copy paramters" -msgstr "" +msgid "Left: %s" +msgstr "Kairėje: %s" #, c-format, boost-format -msgid "Modify paramters of %s" -msgstr "" - -#, c-format, boost-format -msgid "Do you want to modify the following parameters of the %s to that of the %s?" -msgstr "" +msgid "Right: %s" +msgstr "Dešinėje: %s" msgid "Click to reset current value and attach to the global value." -msgstr "Spustelėkite , jei norite iš naujo nustatyti dabartinę reikšmę ir prijungti ją prie bendros reikšmės." +msgstr "" +"Spustelėkite , jei norite iš naujo nustatyti dabartinę reikšmę ir prijungti " +"ją prie bendros reikšmės." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Click to drop current modifications and reset to saved value." -msgstr "Spustelėkite , jei norite atsisakyti dabartinio pakeitimo ir atstatyti išsaugotą reikšmę." +msgid "Click to drop current modify and reset to saved value." +msgstr "" +"Spustelėkite , jei norite atsisakyti dabartinio pakeitimo ir atstatyti " +"išsaugotą reikšmę." msgid "Process Settings" -msgstr "Proceso nustatymai" +msgstr "Apdorojimo nustatymai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "unsaved changes" +msgid "Undef" +msgstr "Neapib" + +msgid "Unsaved Changes" msgstr "Neišsaugoti pakeitimai" msgid "Transfer or discard changes" msgstr "Pakeitimų perkėlimas arba atmetimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Old Value" msgstr "Sena vertė" @@ -9859,7 +11223,7 @@ msgid "Discard" msgstr "Atsisakyti" msgid "the new profile" -msgstr "" +msgstr "naujas profilis" #, boost-format msgid "" @@ -9868,6 +11232,10 @@ msgid "" "discarding any changes made in\n" "\"%2%\"." msgstr "" +"Perjungti į\n" +"„%1%“,\n" +"atmetant visus pakeitimus, padarytus\n" +"„%2%“." #, boost-format msgid "" @@ -9876,6 +11244,10 @@ msgid "" "will be transferred to\n" "\"%2%\"." msgstr "" +"Visi „Nauja reikšmė“ nustatymai, pakeisti\n" +"„%1%“,\n" +"bus perkelti į\n" +"„%2%“." #, boost-format msgid "" @@ -9883,12 +11255,14 @@ msgid "" "\"%1%\"\n" "and \"%2%\" will open without any changes." msgstr "" +"Visi „Nauja reikšmė“ nustatymai yra išsaugoti\n" +"„%1%“,\n" +"o „%2%“ bus atidarytas be jokių pakeitimų." msgid "Click the right mouse button to display the full text." msgstr "Spustelėkite dešinįjį pelės klavišą, kad būtų rodomas visas tekstas." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "No changes will be saved." +msgid "All changes will not be saved" msgstr "Pakeitimai nebus išsaugoti" msgid "All changes will be discarded." @@ -9898,10 +11272,10 @@ msgid "Save the selected options." msgstr "Išsaugoti pasirinktas parinktis." msgid "Keep the selected options." -msgstr "Išlaikykite pasirinktas parinktis." +msgstr "Išlaikyti pasirinktas parinktis." msgid "Transfer the selected options to the newly selected preset." -msgstr "Perkelkite pasirinktas parinktis į naujai pasirinktą išankstinį nustatymą." +msgstr "Perkelti pasirinktas parinktis į naujai pasirinktą profilį." #, boost-format msgid "" @@ -9924,16 +11298,24 @@ msgid "Preset \"%1%\" contains the following unsaved changes:" msgstr "\"%1%\" profilyje yra šie neišsaugoti pakeitimai:" #, boost-format -msgid "Preset \"%1%\" is not compatible with the new printer profile and it contains the following unsaved changes:" -msgstr "\"%1%\" profilis nesuderinamas su naujuoju spausdintuvo profiliu ir jame yra šie neišsaugoti pakeitimai:" +msgid "" +"Preset \"%1%\" is not compatible with the new printer profile and it " +"contains the following unsaved changes:" +msgstr "" +"\"%1%\" profilis nesuderinamas su naujuoju spausdintuvo profiliu ir jame yra " +"šie neišsaugoti pakeitimai:" #, boost-format -msgid "Preset \"%1%\" is not compatible with the new process profile and it contains the following unsaved changes:" -msgstr "\"%1%\" profilis nesuderinamas su naujuoju proceso profiliu ir jame yra šie neišsaugoti pakeitimai:" +msgid "" +"Preset \"%1%\" is not compatible with the new process profile and it " +"contains the following unsaved changes:" +msgstr "" +"Profilis „%1%“ yra nesuderinamas su naujuoju apdorojimo profiliu ir jame yra " +"šie neišsaugoti pakeitimai:" #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "Pakeitėte kai kuriuos išankstinio nustatymo \"%1%\" parametrus." +msgstr "Pakeitėte kai kuriuos profilio „%1%“ nustatymus." msgid "" "\n" @@ -9944,20 +11326,24 @@ msgstr "" msgid "" "\n" -"You can save or discard the preset values you have modified, or choose to transfer the values you have modified to the new preset." +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" "\n" -"Pakeistas profilio reikšmes galite išsaugoti arba atmesti, arba pasirinkti perkelti pakeistas vertes į naują profilį." +"Galite išsaugoti arba atmesti pakeistas profilio reikšmes, arba pasirinkti " +"perkelti jas į naują profilį." msgid "You have previously modified your settings." msgstr "Anksčiau pakeitėte savo nustatymus." msgid "" "\n" -"You can discard the preset values you have modified, or choose to transfer the modified values to the new project" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" "\n" -"Galite atsisakyti pakeistų iš anksto nustatytų reikšmių arba nuspręsti perkelti pakeistas reikšmes į naują projektą" +"Galite atmesti pakeistas profilio reikšmes arba pasirinkti perkelti jas į " +"naują projektą" msgid "Extruder count" msgstr "Ekstruderių skaičius" @@ -9965,48 +11351,50 @@ msgstr "Ekstruderių skaičius" msgid "Capabilities" msgstr "Galimybės" -msgid "Left: " -msgstr "" - -msgid "Right: " -msgstr "" - msgid "Show all presets (including incompatible)" -msgstr "Rodyti visus išankstinius nustatymus (įskaitant nesuderinamus)" +msgstr "Rodyti visus profilius (įskaitant nesuderinamus)" msgid "Select presets to compare" -msgstr "Pasirinkite išankstinius nustatymus, kuriuos norite palyginti" +msgstr "Pasirinkite profilius, kuriuos norite palyginti" msgid "Left Preset Value" -msgstr "" +msgstr "Kairiojo profilio reikšmė" msgid "Right Preset Value" -msgstr "" +msgstr "Dešiniojo profilio reikšmė" -msgid "You can only transfer to current active profile because it has been modified." -msgstr "Galite perkelti tik į dabartinį aktyvų profilį, nes jis buvo pakeistas." +msgid "" +"You can only transfer to current active profile because it has been modified." +msgstr "" +"Galite perkelti tik į dabartinį aktyvų profilį, nes jis buvo pakeistas." msgid "" "Transfer the selected options from left preset to the right.\n" -"Note: New modified presets will be selected in settings tabs after close this dialog." +"Note: New modified presets will be selected in settings tabs after close " +"this dialog." msgstr "" -"Perkelkite pasirinktas parinktis iš kairiojo išankstinio nustatymo į dešinįjį.\n" -"Pastaba: Uždarius šį dialogo langą, naujai pakeistos išankstinės nuostatos bus pasirinktos nustatymų skirtukuose." +"Perkelkite pasirinktas parinktis iš kairiojo profilio į dešinįjį.\n" +"Pastaba: uždarius šį dialogo langą, naujai pakeisti profiliai bus pasirinkti " +"nustatymų skirtukuose." msgid "Transfer values from left to right" msgstr "Reikšmių perkėlimas iš kairės į dešinę" -msgid "If enabled, this dialog can be used for transfer selected values from left to right preset." -msgstr "Jei įjungta, šis dialogo langas gali būti naudojamas pasirinktoms reikšmėms perkelti iš kairiojo į dešinįjį išankstinį nustatymą." +msgid "" +"If enabled, this dialog can be used for transfer selected values from left " +"to right preset." +msgstr "" +"Jei įjungta, šis dialogo langas gali būti naudojamas pasirinktoms reikšmėms " +"perkelti iš kairiojo profilio į dešinįjį." msgid "Add File" msgstr "Pridėti failą" msgid "Set as cover" -msgstr "Nustatyti kaip dangtelį" +msgstr "Nustatyti kaip viršelį" msgid "Cover" -msgstr "Dangtelis" +msgstr "Viršelis" #, boost-format msgid "The name \"%1%\" already exists." @@ -10019,7 +11407,7 @@ msgid "Pictures" msgstr "Paveikslėliai" msgid "Bill of Materials" -msgstr "Medžiagų sąmata" +msgstr "Komponentų ir medžiagų žiniaraštis (BOM)" msgid "Assembly Guide" msgstr "Surinkimo vadovas" @@ -10044,7 +11432,7 @@ msgid "Configuration update" msgstr "Konfigūracijos atnaujinimas" msgid "A new configuration package is available. Do you want to install it?" -msgstr "Yra naujas konfigūracijos paketas, Ar norite jį įdiegti?" +msgstr "Yra naujas konfigūracijos paketas. Ar norite jį įdiegti?" msgid "the configuration package is incompatible with the current application." msgstr "konfigūracijos paketas nesuderinamas su dabartine programa." @@ -10071,37 +11459,38 @@ msgid "The configuration is up to date." msgstr "Konfigūracija yra naujausia." msgid "OBJ file import color" -msgstr "Obj failo importavimo spalva" +msgstr "OBJ failo importavimo spalva" msgid "Some faces don't have color defined." -msgstr "" +msgstr "Kai kuriems paviršiams (faces) nėra apibrėžta spalva." msgid "MTL file exist error, could not find the material:" -msgstr "" +msgstr "MTL failo aptikimo klaida, nepavyko rasti medžiagos:" msgid "Please check OBJ or MTL file." -msgstr "" +msgstr "Patikrinkite OBJ arba MTL failą." msgid "Specify number of colors:" msgstr "Nurodykite spalvų kiekį:" msgid "Enter or click the adjustment button to modify number again" msgstr "" +"Įveskite arba spustelėkite reguliavimo mygtuką, kad vėl pakeistumėte skaičių" msgid "Recommended " msgstr "Rekomenduojama " msgid "view" -msgstr "" +msgstr "peržiūra" msgid "Current filament colors" -msgstr "" +msgstr "Dabartinės gijos spalvos" msgid "Matching" -msgstr "" +msgstr "Atitinkama" msgid "Quick set" -msgstr "" +msgstr "Greitas nustatymas" msgid "Color match" msgstr "Spalvų atitikimas" @@ -10113,186 +11502,254 @@ msgid "Append" msgstr "Pridėti" msgid "Append to existing filaments" -msgstr "" +msgstr "Pridėti prie esamų gijų" msgid "Reset mapped extruders." -msgstr "Iš naujo nustatykite pažymėtus ekstruderius." +msgstr "Iš naujo nustatyti priskirtus ekstruderius." msgid "Note" -msgstr "" +msgstr "Pastaba" msgid "" "The color has been selected, you can choose OK \n" " to continue or manually adjust it." msgstr "" +"Spalva pasirinkta, galite spausti Gerai,\n" +"kad tęstumėte, arba sureguliuoti ją rankiniu būdu." msgid "—> " msgstr "—> " msgid "" -"Synchronizing AMS filaments will discard your modified but unsaved filament presets.\n" +"Synchronizing AMS filaments will discard your modified but unsaved filament " +"presets.\n" "Are you sure you want to continue?" msgstr "" +"Sinchronizuojant AMS gijas, visi pakeisti, bet neišsaugoti gijos profiliai " +"bus atmesti.\n" +"Ar tikrai norite tęsti?" msgctxt "Sync_AMS" msgid "Original" -msgstr "" +msgstr "Originalas" msgid "After mapping" -msgstr "" +msgstr "Po priskyrimo" msgid "After overwriting" -msgstr "" +msgstr "Po perrašymo" msgctxt "Sync_AMS" msgid "Plate" -msgstr "" +msgstr "Plokštė" -msgid "The connected printer does not match the currently selected printer. Please change the selected printer." +msgid "" +"The connected printer does not match the currently selected printer. Please " +"change the selected printer." msgstr "" +"Prijungtas spausdintuvas neatitinka šiuo metu pasirinkto spausdintuvo. " +"Pakeiskite pasirinktą spausdintuvą." msgid "Mapping" -msgstr "" +msgstr "Priskyrimas" msgid "Overwriting" -msgstr "" +msgstr "Perrašymas" msgid "Reset all filament mapping" -msgstr "" +msgstr "Iš naujo nustatyti visus gijų priskyrimus" msgid "Left Extruder" -msgstr "" +msgstr "Kairysis ekstruderis" msgid "(Recommended filament)" -msgstr "" +msgstr "(Rekomenduojama gija)" msgid "Right Extruder" -msgstr "" +msgstr "Dešinysis ekstruderis" msgid "Advanced Options" -msgstr "" +msgstr "Papildomos parinktys" msgid "" "Check heatbed flatness. Leveling makes extruded height uniform.\n" "*Automatic mode: Level first (about 10 seconds). Skip if surface is fine." msgstr "" +"Patikrinkite šildomo pagrindo lygumą. Gulsčiavimas užtikrina tolygų " +"ekstruzijos aukštį.\n" +"*Automatinis režimas: pirmiausia suniveliuokite (apie 10 sekundžių). " +"Praleiskite, jei paviršius yra tinkamas." msgid "" "Calibrate nozzle offsets to enhance print quality.\n" "*Automatic mode: Check for calibration before printing; skip if unnecessary." msgstr "" +"Kalibruokite purkštuko poslinkius (offsets), kad pagerintumėte spaudinio " +"kokybę.\n" +"*Automatinis režimas: prieš spausdinimą patikrinkite kalibravimą; " +"praleiskite, jei tai nebūtina." msgid "Use AMS" msgstr "Naudoti AMS" msgid "Tip" -msgstr "" +msgstr "Patarimas" -msgid "Only synchronize filament type and color, not including AMS slot information." +msgid "" +"Only synchronize filament type and color, not including AMS slot information." msgstr "" +"Sinchronizuoti tik gijos tipą ir spalvą, neįtraukiant AMS lizdo informacijos." -msgid "Replace the project filaments list sequentially based on printer filaments. And unused printer filaments will be automatically added to the end of the list." +msgid "" +"Replace the project filaments list sequentially based on printer filaments. " +"And unused printer filaments will be automatically added to the end of the " +"list." msgstr "" +"Nuosekliai pakeisti projekto gijų sąrašą remiantis spausdintuvo gijomis. " +"Nenaudojamos spausdintuvo gijos bus automatiškai pridėtos į sąrašo pabaigą." msgid "Add unused AMS filaments to filaments list." -msgstr "" +msgstr "Pridėti nenaudojamas AMS gijas į gijų sąrašą." msgid "Automatically merge the same colors in the model after mapping." -msgstr "" +msgstr "Po priskyrimo automatiškai sujungti vienodas modelio spalvas." msgid "After being synced, this action cannot be undone." -msgstr "" +msgstr "Po sinchronizavimo šio veiksmo atšaukti nebus galima." -msgid "After being synced, the project's filament presets and colors will be replaced with the mapped filament types and colors. This action cannot be undone." +msgid "" +"After being synced, the project's filament presets and colors will be " +"replaced with the mapped filament types and colors. This action cannot be " +"undone." msgstr "" +"Po sinchronizavimo projekto gijų profiliai ir spalvos bus pakeisti " +"priskirtais gijų tipais bei spalvomis. Šio veiksmo atšaukti nebus galima." msgid "Are you sure to synchronize the filaments?" -msgstr "" +msgstr "Ar tikrai norite sinchronizuoti gijas?" msgid "Synchronize now" -msgstr "" +msgstr "Sinchronizuoti dabar" msgid "Synchronize Filament Information" -msgstr "" +msgstr "Sinchronizuoti gijos informaciją" msgid "Add unused filaments to filaments list." -msgstr "" +msgstr "Pridėti nenaudojamas gijas į gijų sąrašą." -msgid "Only synchronize filament type and color, not including slot information." +msgid "" +"Only synchronize filament type and color, not including slot information." msgstr "" +"Sinchronizuoti tik gijos tipą ir spalvą, neįtraukiant lizdo informacijos." msgid "Ext spool" -msgstr "" +msgstr "Išorinė ritė" -msgid "Please check whether the nozzle type of the device is the same as the preset nozzle type." +msgid "" +"Please check whether the nozzle type of the device is the same as the preset " +"nozzle type." msgstr "" +"Patikrinkite, ar įrenginio purkštuko tipas sutampa su profilyje nustatytu " +"purkštuko tipu." msgid "Storage is not available or is in read-only mode." -msgstr "" +msgstr "Saugykla nepasiekiama arba veikia tik skaitymo režimu." #, c-format, boost-format -msgid "The selected printer (%s) is incompatible with the chosen printer profile in the slicer (%s)." -msgstr "Pasirinktas spausdintuvas (%s) nesuderinamas su pasirinktu spausdintuvo profiliu programoje (%s)." - -msgid "Timelapse is not supported because Print sequence is set to \"By object\"." -msgstr "Pakadrinis įrašymas nepalaikomas, nes pasirinkta spausdinimo eiga \"Pagal objektą\"." - -msgid "You selected external and AMS filament at the same time in an extruder, you will need manually change external filament." +msgid "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgstr "" +"Pasirinktas spausdintuvas (%s) nesuderinamas su pasirinktu spausdintuvo " +"profiliu programoje (%s)." + +msgid "" +"Timelapse is not supported because Print sequence is set to \"By object\"." +msgstr "" +"Pakadrinis įrašymas nepalaikomas, nes pasirinkta spausdinimo eiga \"Pagal " +"objektą\"." + +msgid "" +"You selected external and AMS filament at the same time in an extruder, you " +"will need manually change external filament." +msgstr "" +"Tam pačiam ekstruderiui vienu metu priskyrėte išorinę ir AMS giją, todėl " +"išorinę giją turėsite pakeisti rankiniu būdu." msgid "Successfully synchronized nozzle information." -msgstr "" +msgstr "Purkštuko informacija sėkmingai sinchronizuota." msgid "Successfully synchronized nozzle and AMS number information." -msgstr "" +msgstr "Purkštuko ir AMS skaičiaus informacija sėkmingai sinchronizuota." msgid "Continue to sync filaments" -msgstr "" +msgstr "Tęsti gijų sinchronizavimą" msgctxt "Sync_Nozzle_AMS" msgid "Cancel" msgstr "Atšaukti" msgid "Successfully synchronized filament color from printer." -msgstr "" +msgstr "Gijos spalva sėkmingai sinchronizuota iš spausdintuvo." msgid "Successfully synchronized color and type of filament from printer." -msgstr "" +msgstr "Gijos spalva ir tipas sėkmingai sinchronizuoti iš spausdintuvo." msgctxt "FinishSyncAms" msgid "OK" msgstr "Gerai" msgid "Ramming customization" -msgstr "Spasdinimo galvutės stūmimo pritaikymas" +msgstr "Gijos supresavimo (ramming) pritaikymas" msgid "" -"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n" +"Ramming denotes the rapid extrusion just before a tool change in a single-" +"extruder MM printer. Its purpose is to properly shape the end of the " +"unloaded filament so it does not prevent insertion of the new filament and " +"can itself be reinserted later. This phase is important and different " +"materials can require different extrusion speeds to get the good shape. For " +"this reason, the extrusion rates during ramming are adjustable.\n" "\n" -"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc." +"This is an expert-level setting, incorrect adjustment will likely lead to " +"jams, extruder wheel grinding into filament etc." msgstr "" -"Ramingas reiškia greitą ekstruziją prieš pat įrankio pakeitimą vieno ekstruderio MM spausdintuve. Jo paskirtis – tinkamai suformuoti neapkrautos gijos galą, kad jis netrukdytų įkišti naujai gijai ir vėliau ją būtų galima įkišti iš naujo. Šis etapas yra svarbus, skirtingoms medžiagoms gali prireikti skirtingo ekstruzijos greičio, kad būtų gauta gera forma. Dėl šios priežasties ekstruzijos greitis štampavimo metu yra reguliuojamas.\n" +"Supresavimas (ramming) reiškia greitą ekstruziją prieš pat įrankio keitimą " +"vieno ekstruderio kelių medžiagų (MM) spausdintuve. Jo tikslas – tinkamai " +"suformuoti iškraunamos gijos galą, kad jis netrukdytų įkišti naujos gijos ir " +"vėliau ją būtų galima vėl įstumti. Šis etapas yra labai svarbus, o " +"skirtingoms medžiagoms gali prireikti skirtingo ekstruzijos greičio tinkamai " +"formai gauti. Dėl šios priežasties ekstruzijos greičiai supresavimo metu yra " +"reguliuojami.\n" "\n" -"Tai yra eksperto lygio nustatymas, neteisingas sureguliavimas gali sukelti strigčių, ekstruderio rato gijos šlifavimą ir pan." +"Tai yra eksperto lygio nustatymas – neteisingai sureguliavus, tikėtini " +"strigtys, ekstruderio ratuko gijos šlifavimas (grinding) ir kt." #, boost-format msgid "For constant flow rate, hold %1% while dragging." -msgstr "Norėdami išlaikyti pastovų srauto greitį, vilkdami laikykite nuspaudę %1%." +msgstr "" +"Norėdami išlaikyti pastovų srauto greitį, vilkdami laikykite nuspaudę %1%." msgid "ms" msgstr "ms" msgid "Total ramming" -msgstr "Bendras rammingas" +msgstr "Bendras supresavimas (ramming)" msgid "Volume" msgstr "Tūris" msgid "Ramming line" -msgstr "Ramming linija" +msgstr "Supresavimo (ramming) linija" -msgid "Orca would re-calculate your flushing volumes everytime the filaments color changed or filaments changed. You could disable the auto-calculate in Orca Slicer > Preferences" +msgid "" +"Orca would re-calculate your flushing volumes everytime the filaments color " +"changed or filaments changed. You could disable the auto-calculate in Orca " +"Slicer > Preferences" msgstr "" +"„Orca“ iš naujo perskaičiuos jūsų išvalymo (flushing) tūrius kiekvieną " +"kartą, kai pasikeis gijos spalva arba pati gija. Šį automatinį " +"perskaičiavimą galite išjungti skiltyje „Orca Slicer“ > „Nuostatos“ " +"(Preferences)." msgid "Flushing volume (mm³) for each filament pair." msgstr "Kiekvienos gijų poros išmetimo tūris (mm³)." @@ -10309,10 +11766,10 @@ msgid "Re-calculate" msgstr "Perskaičiuoti" msgid "Left extruder" -msgstr "" +msgstr "Kairysis ekstruderis" msgid "Right extruder" -msgstr "" +msgstr "Dešinysis ekstruderis" msgid "Multiplier" msgstr "Daugiklis" @@ -10321,31 +11778,64 @@ msgid "Flushing volumes for filament change" msgstr "Išmetimo tūris keičiant gijas" msgid "Please choose the filament colour" +msgstr "Pasirinkite gijos spalvą" + +msgid "" +"Native Wayland liveview requires the GStreamer GTK video sink. Please " +"install the gtksink plugin for GStreamer, then restart OrcaSlicer." msgstr "" +"Tiesioginei „Native Wayland“ peržiūrai reikalingas „GStreamer GTK“ vaizdo " +"sinchronizatorius (video sink). Įdiekite „GStreamer“ skirtą „gtksink“ " +"papildinį, tada iš naujo paleiskite „OrcaSlicer“." -msgid "Native Wayland liveview requires the GStreamer GTK video sink. Please install the gtksink plugin for GStreamer, then restart OrcaSlicer." +msgid "" +"Failed to initialize the native Wayland GStreamer video sink. Please check " +"your GStreamer GTK plugin installation." msgstr "" +"Nepavyko inicijuoti „native Wayland GStreamer“ vaizdo sinchronizatoriaus " +"(video sink). Patikrinkite „GStreamer GTK“ papildinio įdiegimą." -msgid "Failed to initialize the native Wayland GStreamer video sink. Please check your GStreamer GTK plugin installation." +msgid "" +"Windows Media Player is required for this task! Do you want to enable " +"'Windows Media Player' for your operation system?" msgstr "" +"Šiai užduočiai atlikti reikalingas \"Windows Media Player\"! Ar norite " +"įjungti \"Windows Media Player\" savo operacinėje sistemoje?" -msgid "Windows Media Player is required for this task! Do you want to enable 'Windows Media Player' for your operation system?" -msgstr "Šiai užduočiai atlikti reikalingas \"Windows Media Player\"! Ar norite įjungti \"Windows Media Player\" savo operacinėje sistemoje?" +msgid "" +"BambuSource has not correctly been registered for media playing! Press Yes " +"to re-register it. You will be promoted twice" +msgstr "" +"„BambuSource“ neteisingai užregistruotas medijos atkūrimui! Paspauskite " +"„Taip“, kad jį perregistruotumėte. Jums reikės patvirtinti du kartus." -msgid "BambuSource has not correctly been registered for media playing! Press Yes to re-register it. You will be promoted twice" -msgstr "\"BambuSource\" neteisingai užregistruotas medijos atkūrimui! Paspauskite Yes (taip), kad jį perregistruotumėte. Jums bus priminta du kartus" +msgid "" +"Missing BambuSource component registered for media playing! Please re-" +"install OrcaSlicer or seek community help." +msgstr "" +"Trūksta BambuSource komponento, užregistruoto medijos atkūrimui! Iš naujo " +"įdiekite OrcaSlicer arba kreipkitės pagalbos į bendruomenę." -msgid "Missing BambuSource component registered for media playing! Please re-install OrcaSlicer or seek community help." -msgstr "Trūksta BambuSource komponento, užregistruoto medijos atkūrimui! Iš naujo įdiekite OrcaSlicer arba kreipkitės pagalbos į bendruomenę." +msgid "" +"Using a BambuSource from a different install, video play may not work " +"correctly! Press Yes to fix it." +msgstr "" +"Naudojant \"BambuSource\" iš kito diegimo šaltinio, vaizdo įrašų atkūrimas " +"gali būti neteisingas! Paspauskite Taip, kad tai ištaisytumėte." -msgid "Using a BambuSource from a different install, video play may not work correctly! Press Yes to fix it." -msgstr "Naudojant \"BambuSource\" iš kito diegimo šaltinio, vaizdo įrašų atkūrimas gali būti neteisingas! Paspauskite Taip, kad tai ištaisytumėte." - -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 "Jūsų sistemoje nėra \"GStreamer\" H.264 kodekų, reikalingų vaizdo įrašams atkurti. (Pabandykite įdiegti gstreamer1.0-plugins-bad arba gstreamer1.0-libav paketus, tada iš naujo paleiskite \"Orca Slicer\")" +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 "" +"Jūsų sistemoje nėra \"GStreamer\" H.264 kodekų, reikalingų vaizdo įrašams " +"atkurti. (Pabandykite įdiegti gstreamer1.0-plugins-bad arba gstreamer1.0-" +"libav paketus, tada iš naujo paleiskite \"Orca Slicer\")" msgid "Cloud agent is not available. Please restart OrcaSlicer and try again." msgstr "" +"Debesies agentas nepasiekiamas. Iš naujo paleiskite „OrcaSlicer“ ir " +"bandykite vėl." msgid "Bambu Network plug-in not detected." msgstr "\"Bambu\" tinklo papildinys neaptiktas." @@ -10357,16 +11847,17 @@ msgid "Login" msgstr "Prisijungti" msgid "Login failed. Please try again." -msgstr "" +msgstr "Prisijungti nepavyko. Bandykite dar kartą." msgid "[Action Required] " -msgstr "" +msgstr "[Reikalingas veiksmas] " msgid "[Action Required]" -msgstr "" +msgstr "[Reikalingas veiksmas]" msgid "The configuration package is changed in previous Config Guide" -msgstr "Konfigūracijos paketas pakeistas ankstesniame Config Guide" +msgstr "" +"Konfigūracijos paketas buvo pakeistas ankstesniame konfigūravimo vadove" msgid "Configuration package changed" msgstr "Pakeistas konfigūracijos paketas" @@ -10396,22 +11887,28 @@ msgid "Global shortcuts" msgstr "Bendrieji spartieji klavišai" msgid "Pan View" -msgstr "" +msgstr "Vaizdo stūmimas (panoraminis vaizdas)" msgid "Rotate View" -msgstr "" +msgstr "Vaizdo pasukimas" msgid "Middle mouse button" -msgstr "" +msgstr "Vidurinis pelės mygtukas" msgid "Zoom View" -msgstr "" +msgstr "Vaizdo mastelio keitimas (zoom)" -msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project." -msgstr "Automatiškai orientuoja pasirinktus objektus arba visus objektus. Jei yra pasirinkti objektai, orientuoja tik pasirinktus. Kitais atvejais orientuoja visus esamo projekto objektus." +msgid "" +"Auto orients selected objects or all objects. If there are selected objects, " +"it just orients the selected ones. Otherwise, it will orient all objects in " +"the current project." +msgstr "" +"Automatiškai orientuoja pasirinktus objektus arba visus objektus. Jei yra " +"pasirinkti objektai, orientuoja tik pasirinktus. Kitais atvejais orientuoja " +"visus esamo projekto objektus." msgid "Auto orients all objects on the active plate." -msgstr "Automatiškai orientuoja visus objektus aktyvioje plokštelėje." +msgstr "Automatiškai orientuoja visus objektus aktyvioje plokštėje." msgid "Collapse/Expand the sidebar" msgstr "Sutraukti / išskleisti šoninę juostą" @@ -10423,49 +11920,43 @@ msgid "Movement in camera space" msgstr "Judėjimas kameros erdvėje" msgid "Select a part" -msgstr "Pasirinkite detalę" +msgstr "Pasirinkti dalį" msgid "Select multiple objects" msgstr "Pasirinkite kelis objektus" msgid "Select objects by rectangle" -msgstr "Objektų pasirinkimas pagal stačiakampį" +msgstr "Pasirinkti objektus stačiakampio rėmeliu" msgid "Arrow Up" msgstr "Rodyklė aukštyn" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Move selection 10mm in positive Y direction" -msgstr "Perkelti pasirinktą 10 mm teigiama Y kryptimi" +msgid "Move selection 10 mm in positive Y direction" +msgstr "Perkelti pasirinkimą 10 mm teigiama Y kryptimi" msgid "Arrow Down" msgstr "Rodyklė žemyn" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Move selection 10mm in negative Y direction" -msgstr "Perkelti pasirinktą10 mm neigiama Y kryptimi" +msgid "Move selection 10 mm in negative Y direction" +msgstr "Perkelti pasirinkimą 10 mm neigiama Y kryptimi" msgid "Arrow Left" msgstr "Rodyklė Kairėn" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Move selection 10mm in negative X direction" -msgstr "Perkelti pasirinktą10 mm neigiama X kryptimi" +msgid "Move selection 10 mm in negative X direction" +msgstr "Perkelti pasirinkimą 10 mm neigiama X kryptimi" msgid "Arrow Right" msgstr "Rodyklė dešinėn" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Move selection 10mm in positive X direction" -msgstr "Perkelti pasirinktą10 mm teigiama X kryptimi" +msgid "Move selection 10 mm in positive X direction" +msgstr "Perkelti pasirinkimą 10 mm teigiama X kryptimi" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Movement step set to 1mm" +msgid "Movement step set to 1 mm" msgstr "Judėjimo žingsnis nustatytas į 1 mm" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Keyboard 1-9: set filament for object/part" -msgstr "klaviatūra 1-9: nustatyti objekto/dalies giją" +msgstr "Klaviatūra 1-9: nustatyti objekto/dalies giją" msgid "Camera view - Default" msgstr "Kameros vaizdas - Numatytasis" @@ -10480,55 +11971,55 @@ msgid "Camera view - Front" msgstr "Kameros vaizdas - Priekis" msgid "Camera view - Behind" -msgstr "Kameros vaizdas - Galas" +msgstr "Kameros vaizdas – iš galo" msgid "Camera Angle - Left side" -msgstr "Kameros vaizdas - Kairė" +msgstr "Kameros kampas – iš kairės" msgid "Camera Angle - Right side" -msgstr "Kameros vaizdas - Dešnė" +msgstr "Kameros kampas – iš dešinės" msgid "Select all objects" msgstr "Pasirinkti visus objektus" msgid "Gizmo move" -msgstr "Gizmo perkėlimui" +msgstr "Perkėlimo manipuliatorius" msgid "Gizmo rotate" -msgstr "Gizmo pasukimas" +msgstr "Pasukimo manipuliatorius" msgid "Gizmo scale" -msgstr "Gizmo dydžio keitimui" +msgstr "Mastelio keitimo manipuliatorius" msgid "Gizmo place face on bed" -msgstr "Gizmo padėti paviršių ant pagrindo" +msgstr "Paviršiaus dėjimo ant pagrindo manipuliatorius" msgid "Gizmo cut" -msgstr "Gizmo pjaustymui" +msgstr "Pjovimo manipuliatorius" msgid "Gizmo mesh boolean" -msgstr "Gizmo objektų jungimo/atėmimo/susikirtimo įrankiai" +msgstr "Loginių tinklelio veiksmų (Boolean) manipuliatorius" msgid "Gizmo FDM paint-on fuzzy skin" -msgstr "Gizmo FDM dažomas grublėtas paviršius" +msgstr "FDM užtepamo grublėto paviršiaus (fuzzy skin) manipuliatorius" msgid "Gizmo SLA support points" -msgstr "Gizmo SLA atramų taškai" +msgstr "SLA atramų taškų manipuliatorius" msgid "Gizmo FDM paint-on seam" -msgstr "Gizmo FDM siūlių piešimui" +msgstr "FDM užtepamos siūlės (seam) manipuliatorius" msgid "Gizmo text emboss/engrave" -msgstr "Gizmo teksto įspaudimas/graviravimas" +msgstr "Teksto iškėlimo ir įspaudimo (emboss/engrave) manipuliatorius" msgid "Gizmo measure" -msgstr "Gizmo matuoti" +msgstr "Matavimo manipuliatorius" msgid "Gizmo assemble" -msgstr "Gizmo surinkimo" +msgstr "Surinkimo manipuliatorius" msgid "Gizmo brim ears" -msgstr "Gizmo krašto \"ausys\"" +msgstr "Krašto „auselių“ (brim ears) manipuliatorius" msgid "Zoom in" msgstr "Padidinti" @@ -10546,47 +12037,49 @@ msgid "Plater" msgstr "Plokštė" msgid "Move: press to snap by 1mm" -msgstr "Perkėlimas: paspauskite, jei norite paslinkti 1 mm" +msgstr "Perkėlimas: paspauskite, kad pritrauktumėte kas 1 mm" msgid "Support/Color Painting: adjust pen radius" -msgstr "Atramų / Spalvų piešimas: sureguliuoti rašiklio spindulį" +msgstr "Atramų ir spalvų užtepimas: keisti teptuko spindulį" msgid "Support/Color Painting: adjust section position" -msgstr "Atramų / spalvų piešimas: koreguoti sekcijos padėtį" +msgstr "Atramų ir spalvų užtepimas: keisti pjūvio padėtį" msgid "Gizmo" -msgstr "" +msgstr "Manipuliatorius" msgid "Set extruder number for the objects and parts" msgstr "Nustatykite ekstruderio numerį objektams ir dalims" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete objects, parts, modifiers" msgstr "Ištrinti objektus, dalis, modifikatorius" msgid "Select the object/part and press space to change the name" -msgstr "Pasirinkite objektą ir (arba) dalį ir paspauskite tarpo klavišą, kad pakeistumėte pavadinimą" +msgstr "" +"Pasirinkite objektą ir (arba) dalį ir paspauskite tarpo klavišą, kad " +"pakeistumėte pavadinimą" msgid "Mouse click" msgstr "Pelės paspaudimas" msgid "Select the object/part and mouse click to change the name" -msgstr "Pasirinkite objektą/dalį ir spustelėkite pele, kad pakeistumėte pavadinimą" +msgstr "" +"Pasirinkite objektą/dalį ir spustelėkite pele, kad pakeistumėte pavadinimą" msgid "Objects List" msgstr "Objektų sąrašas" msgid "Vertical slider - Move active thumb Up" -msgstr "Vertikalus slankiklis – perkelti aktyvųjį slankiklį aukštyn" +msgstr "Vertikalus slankiklis – kelti aktyvų žymeklį aukštyn" msgid "Vertical slider - Move active thumb Down" -msgstr "Vertikalus slankiklis – perkelti aktyvųjį slankiklį žemyn" +msgstr "Vertikalus slankiklis – nuleisti aktyvų žymeklį žemyn" msgid "Horizontal slider - Move active thumb Left" -msgstr "Horizontalus slankiklis – perkelti aktyvų slankiklį į kairę" +msgstr "Horizontalus slankiklis – stumti aktyvų žymeklį kairėn" msgid "Horizontal slider - Move active thumb Right" -msgstr "Horizontalus slankiklis – perkelti aktyvų slankiklį į dešinę" +msgstr "Horizontalus slankiklis – stumti aktyvų žymeklį dešinėn" msgid "On/Off one layer mode of the vertical slider" msgstr "Vertikalaus slankiklio vieno sluoksnio režimas įjungimas / išjungimas" @@ -10598,13 +12091,13 @@ msgid "Move slider 5x faster" msgstr "Judinkite slankiklį 5 kartus greičiau" msgid "Horizontal slider - Move to start position" -msgstr "Horizontalus šliaužiklis - Perkelti į pradinę padėtį" +msgstr "Horizontalus slankiklis – perkelti į pradinę padėtį" msgid "Horizontal slider - Move to last position" -msgstr "Horizontalusis slankiklis - Perkelti į paskutinę padėtį" +msgstr "Horizontalus slankiklis – perkelti į paskutinę padėtį" msgid "Release Note" -msgstr "Leidimo pastaba" +msgstr "Versijos pastabos (Release notes)" #, c-format, boost-format msgid "version %s update information:" @@ -10613,9 +12106,11 @@ msgstr "versijos %s atnaujinimo informacija:" msgid "Network plug-in update" msgstr "Tinklo papildinio atnaujinimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Click OK to update the Network plug-in the next time Orca Slicer launches." -msgstr "Spustelėkite OK, kad kitą kartą paleidus \"Orca Slicer\" būtų atnaujintas tinklo papildinys." +msgid "" +"Click OK to update the Network plug-in when Orca Slicer launches next time." +msgstr "" +"Spustelėkite OK, kad kitą kartą paleidus \"Orca Slicer\" būtų atnaujintas " +"tinklo papildinys." #, c-format, boost-format msgid "A new Network plug-in (%s) is available. Do you want to install it?" @@ -10625,20 +12120,22 @@ msgid "New version of Orca Slicer" msgstr "Nauja \"Orca Slicer\" versija" msgid "Check on Microsoft Store" -msgstr "" +msgstr "Tikrinti „Microsoft Store“" msgid "Check on GitHub" -msgstr "" +msgstr "Tikrinti „GitHub“" msgid "Open Microsoft Store" -msgstr "" +msgstr "Atidaryti „Microsoft Store“" msgid "Skip this Version" msgstr "Praleisti šią versiją" #, c-format, boost-format -msgid "New version available: %s. Please update OrcaSlicer from the Microsoft Store." +msgid "" +"New version available: %s. Please update OrcaSlicer from the Microsoft Store." msgstr "" +"Pasirodė nauja versija: %s. Atnaujinkite „OrcaSlicer“ iš „Microsoft Store“." msgid "Confirm and Update Nozzle" msgstr "Patvirtinti ir atnaujinti purkštuką" @@ -10646,17 +12143,31 @@ msgstr "Patvirtinti ir atnaujinti purkštuką" msgid "Connect the printer using IP and access code" msgstr "Prijunkite spausdintuvą naudodami IP ir prieigos kodą" -msgid "Try the following methods to update the connection parameters and reconnect to the printer." +msgid "" +"Try the following methods to update the connection parameters and reconnect " +"to the printer." msgstr "" +"Išbandykite šiuos būdus, kad atnaujintumėte ryšio parametrus ir vėl " +"prisijungtumėte prie spausdintuvo." msgid "1. Please confirm Orca Slicer and your printer are in the same LAN." msgstr "" +"1. Įsitikinkite, kad „Orca Slicer“ ir jūsų spausdintuvas yra tame pačiame " +"vietiniame tinkle (LAN)." -msgid "2. If the IP and Access Code below are different from the actual values on your printer, please correct them." +msgid "" +"2. If the IP and Access Code below are different from the actual values on " +"your printer, please correct them." msgstr "" +"2. Jei žemiau nurodytas IP adresas ir prieigos kodas nesutampa su " +"tikrosiomis spausdintuvo reikšmėmis, juos ištaisykite." -msgid "3. Please obtain the device SN from the printer side; it is usually found in the device information on the printer screen." +msgid "" +"3. Please obtain the device SN from the printer side; it is usually found in " +"the device information on the printer screen." msgstr "" +"3. Suraskite įrenginio serijos numerį (SN) spausdintuve; dažniausiai jis " +"nurodomas įrenginio informacijos skiltyje, spausdintuvo ekrane." msgid "IP" msgstr "IP" @@ -10692,56 +12203,64 @@ msgid "Failed to publish login request." msgstr "Nepavyko paskelbti prisijungimo užklausos." msgid "The printer has already been bound." -msgstr "Spausdintuvas jau surištas." +msgstr "Spausdintuvas jau yra susietas." msgid "The printer mode is incorrect, please switch to LAN Only." -msgstr "Spausdintuvo režimas yra neteisingas, perjunkite į tik vietinį tinklą." +msgstr "" +"Neteisingas spausdintuvo režimas, perjunkite į „Tik vietinis tinklas“ (LAN " +"Only)." msgid "Connecting to printer... The dialog will close later" -msgstr "Jungimasis prie spausdintuvo... Dialogo langas užsidarys vėliau" +msgstr "Jungiamasi prie spausdintuvo... Šis langas netrukus užsidarys" msgid "Connection failed, please double check IP and Access Code" -msgstr "Ryšys nepavyko, dar kartą patikrinkite IP ir prieigos kodą" +msgstr "" +"Nepavyko prisijungti, dar kartą patikrinkite IP adresą ir prieigos kodą" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" -"Ryšys nepavyko! Jei jūsų IP ir prieigos kodas yra teisingi, \n" -"pereikite prie 3 žingsnio, skirto tinklo problemoms šalinti" +"Nepavyko prisijungti! Jei IP adresas ir prieigos kodas yra teisingi, \n" +"pereikite prie 3 žingsnio tinklo problemoms šalinti." msgid "Connection failed! Please refer to the wiki page." msgstr "" +"Nepavyko prisijungti! Informacijos ieškokite vikipedijos (wiki) puslapyje." msgid "sending failed" -msgstr "" +msgstr "siuntimas nepavyko" -msgid "Failed to send. Click Retry to attempt sending again. If retrying does not work, please check the reason." +msgid "" +"Failed to send. Click Retry to attempt sending again. If retrying does not " +"work, please check the reason." msgstr "" +"Nepavyko išsiųsti. Spustelėkite „Kartoti“, kad bandytumėte dar kartą. Jei " +"tai nepadeda, patikrinkite priežastį." msgid "reconnect" -msgstr "" +msgstr "prisijungti iš naujo" msgid "Air Pump" msgstr "Oro siurblys" msgid "Laser 10W" -msgstr "" +msgstr "Laser 10W" msgid "Laser 40W" -msgstr "" +msgstr "Laser 40W" msgid "Cutting Module" msgstr "Pjovimo modulis" msgid "Auto Fire Extinguishing System" -msgstr "" +msgstr "Automatinė gaisro gesinimo sistema" msgid "Beta" msgstr "Beta" msgid "Update firmware" -msgstr "Atnaujinti programinę įrangą" +msgstr "Atnaujinti programinę aparatinę įrangą" msgid "Beta version" msgstr "Beta versija" @@ -10753,32 +12272,46 @@ msgid "Update failed" msgstr "Atnaujinti nepavyko" msgid "Update successful" -msgstr "Sėkmingas atnaujinimas" +msgstr "Atnaujinimas sėkmingas" -msgid "Are you sure you want to update? This will take about 10 minutes. Do not turn off the power while the printer is updating." -msgstr "Ar tikrai norite atnaujinti? Tai užtruks apie 10 minučių. Neišjunkite maitinimo, kol spausdintuvas atnaujinamas." +msgid "" +"Are you sure you want to update? This will take about 10 minutes. Do not " +"turn off the power while the printer is updating." +msgstr "" +"Ar tikrai norite atnaujinti? Tai užtruks apie 10 minučių. Neišjunkite " +"maitinimo, kol spausdintuvas atnaujinamas." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "An important update was detected and needs to be run before printing can continue. Do you want to update now? You can also update later from 'Update firmware'." -msgstr "Buvo aptiktas svarbus atnaujinimas, kurį reikia paleisti, kad spausdinimas būtų tęsiamas. Ar norite atnaujinti dabar? Taip pat galite atnaujinti vėliau, naudodami \"Atnaujinti programinę įrangą\"." +msgid "" +"An important update was detected and needs to be run before printing can " +"continue. Do you want to update now? You can also update later from 'Upgrade " +"firmware'." +msgstr "" +"Aptiktas svarbus atnaujinimas, kurį būtina įdiegti prieš tęsiant " +"spausdinimą. Ar norite atnaujinti dabar? Atnaujinti galėsite ir vėliau, " +"pasirinkę „Atnaujinti programinę aparatinę įrangą“." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The firmware version is abnormal. Repairing and updating are required before printing. Do you want to update now? You can also update later on the printer or update next time you start Orca Slicer." -msgstr "Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami \"Orca\"." +msgid "" +"The firmware version is abnormal. Repairing and updating are required before " +"printing. Do you want to update now? You can also update later on printer or " +"update next time starting Orca." +msgstr "" +"Aptikta neįprasta programinės aparatinės įrangos versija. Prieš spausdinant " +"reikalingas jos atkūrimas ir atnaujinimas. Ar norite atnaujinti dabar? Tai " +"atlikti galėsite ir vėliau pačiame spausdintuve arba kitą kartą paleidę " +"„Orca“." msgid "Extension Board" msgstr "Išplėtimo plokštė" #, boost-format msgid "Split into %1% parts" -msgstr "" +msgstr "Padalinti į %1% dalių" msgid "Repair finished" msgstr "Taisymas baigtas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Repair failed" -msgstr "Taisymas nepavyko." +msgstr "Taisymas nepavyko" msgid "Repair canceled" msgstr "Taisymas atšauktas" @@ -10787,9 +12320,9 @@ msgstr "Taisymas atšauktas" msgid "Copying of file %1% to %2% failed: %3%" msgstr "Failo %1% kopijavimas į %2% nepavyko: %3%" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please check any unsaved changes before updating the configuration." -msgstr "Prieš atnaujinant konfigūraciją reikia patikrinti neišsaugotus pakeitimus." +msgid "Need to check the unsaved changes before configuration updates." +msgstr "" +"Prieš atnaujinant konfigūraciją reikia patikrinti neišsaugotus pakeitimus." msgid "Configuration package: " msgstr "Konfigūracijos paketas: " @@ -10800,44 +12333,55 @@ msgstr " atnaujintas į " msgid "Open G-code file:" msgstr "Atidaryti G-kodo failą:" -msgid "One object has an empty first layer and can't be printed. Please Cut the bottom or enable supports." -msgstr "Vienas objektas turi tuščią pradinį sluoksnį ir jo negalima spausdinti. Iškirpkite apačią arba įjunkite atramas." +msgid "" +"One object has an empty first layer and can't be printed. Please Cut the " +"bottom or enable supports." +msgstr "" +"Vienas objektas turi tuščią pradinį sluoksnį ir jo negalima spausdinti. " +"Iškirpkite apačią arba įjunkite atramas." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format -msgid "The object has empty layers between %1% and %2% and can’t be printed." +msgid "Object can't be printed for empty layer between %1% and %2%." msgstr "Objekto negalima spausdinti dėl tuščio sluoksnio tarp %1% ir %2%." #, boost-format msgid "Object: %1%" msgstr "Objektas: %1%" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Parts of the object at these heights may be too thin or the object may have a faulty mesh." -msgstr "Objekto dalys šiuose aukščiuose gali būti per plonos arba gali būti pažeista objekto 3D figūra" +msgid "" +"Maybe parts of the object at these height are too thin, or the object has " +"faulty mesh" +msgstr "" +"Gali būti, kad objekto dalys šiame aukštyje yra per plonos arba objekto " +"tinklelis (mesh) turi klaidų" msgid "Process change extrusion role G-code" -msgstr "" +msgstr "Proceso keitimo ekstruzijos vaidmens G-kodas" msgid "Filament change extrusion role G-code" -msgstr "" +msgstr "Gijos keitimo ekstruzijos vaidmens G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "No object can be printed. It may be too small." +msgid "No object can be printed. Maybe too small" msgstr "Negalima spausdinti jokio objekto. Jis gali būti per mažas" -msgid "Your print is very close to the priming regions. Make sure there is no collision." -msgstr "Jūsų spaudinys yra labai arti gruntavimo sričių. Įsitikinkite, kad nėra susidūrimo." +msgid "" +"Your print is very close to the priming regions. Make sure there is no " +"collision." +msgstr "" +"Jūsų spaudinys yra labai arti valymo / paruošimo (priming) sričių. " +"Įsitikinkite, kad nekils susidūrimo." msgid "" "Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" -"Nepavyko sugeneruoti G kodo dėl neteisingo pasirinktinio G kodo.\n" +"Nepavyko sugeneruoti G-kodo dėl neteisingo pasirinktinio G-kodo.\n" "\n" msgid "Please check the custom G-code or use the default custom G-code." -msgstr "Patikrinkite pasirinktinį G-kodą arba naudokite numatytąjį pasirinktinį G-kodą." +msgstr "" +"Patikrinkite pasirinktinį G-kodą arba naudokite numatytąjį pasirinktinį G-" +"kodą." #, boost-format msgid "Generating G-code: layer %1%" @@ -10845,34 +12389,47 @@ msgstr "G-kodo generavimas: sluoksnis %1%" msgid "Flush volumes matrix do not match to the correct size!" msgstr "" +"Išmetimo tūrių matrica (flush volumes matrix) neatitinka reikiamo dydžio!" msgid "set_accel_and_jerk() is only supported by Klipper" msgstr "" +"„set_accel_and_jerk()“ funkcija palaikoma tik „Klipper“ programinėje " +"aparatinėje įrangoje" msgid "" "Input shaping is not supported by Marlin < 2.1.2.\n" -"Check your firmware version and update your G-code flavor to ´Marlin 2´." +"Check your firmware version and update your G-code flavor to ´Marlin 2´" msgstr "" +"„Input shaping“ funkcija nepalaikoma „Marlin“ versijose, senesnėse nei " +"2.1.2.\n" +"Patikrinkite savo programinės aparatinės įrangos versiją ir atnaujinkite G-" +"kodo tipą (G-code flavor) į „Marlin 2“." -msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2." +msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2" msgstr "" +"„Input shaping“ funkcija palaikoma tik „Klipper“, „RepRapFirmware“ ir " +"„Marlin 2“ programinėje aparatinėje įrangoje" msgid "Grouping error: " -msgstr "" +msgstr "Grupavimo klaida: " msgid " can not be placed in the " -msgstr "" +msgstr "negali būti įkeltas į " msgid "Internal Bridge" msgstr "Vidinis tiltas" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format -msgid "Failed to calculate line width of %1%. Cannot get value of “%2%” " -msgstr "Nepavyko apskaičiuoti linijos pločio %1%. Negalima gauti \"%2%\" reikšmės. " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " +msgstr "" +"Nepavyko apskaičiuoti %1% linijos pločio. Nepavyksta gauti „%2%“ reikšmės." -msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width" -msgstr "Srautui Flow::with_spacing() pateiktas neteisingas tarpas, patikrinkite sluoksnio aukštį ir išspaudimo plotį" +msgid "" +"Invalid spacing supplied to Flow::with_spacing(), check your layer height " +"and extrusion width" +msgstr "" +"Srautui Flow::with_spacing() pateiktas neteisingas tarpas, patikrinkite " +"sluoksnio aukštį ir išspaudimo plotį" msgid "undefined error" msgstr "neapibrėžta klaida" @@ -10880,8 +12437,7 @@ msgstr "neapibrėžta klaida" msgid "too many files" msgstr "per daug failų" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "File too large" +msgid "file too large" msgstr "per didelis failas" msgid "unsupported method" @@ -10902,9 +12458,8 @@ msgstr "ne ZIP archyvas" msgid "invalid header or corrupted" msgstr "negaliojanti arba sugadinta antraštė" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Saving to RAID is not supported." -msgstr "įrašymas į RAID nepalaikomas" +msgid "unsupported multidisk" +msgstr "kelių diskų (multidisk) archyvai nepalaikomi" msgid "decompression failed" msgstr "dekompresija nepavyko" @@ -10913,7 +12468,7 @@ msgid "compression failed" msgstr "suspaudimas nepavyko" msgid "unexpected decompressed size" -msgstr "netikėtas iškompresuotas dydis" +msgstr "netikėtas dekompresuotas (išskleistas) dydis" msgid "CRC check failed" msgstr "CRC patikra nepavyko" @@ -10951,8 +12506,7 @@ msgstr "neteisingas parametras" msgid "invalid filename" msgstr "neteisingas failo pavadinimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Buffer too small" +msgid "buffer too small" msgstr "per mažas buferis" msgid "internal error" @@ -10961,20 +12515,20 @@ msgstr "vidinė klaida" msgid "file not found" msgstr "failas nerastas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Archive too large" +msgid "archive too large" msgstr "per didelis archyvas" msgid "validation failed" msgstr "patvirtinimas nepavyko" msgid "write callback failed" -msgstr "nepavyko įrašyti grįžtamojo ryšio" +msgstr "nepavyko vykdyti įrašymo atgalinio iškvietimo (write callback)" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format -msgid "%1% is too close to exclusion area. There may be collisions when printing." -msgstr "%1% yra per arti uždraustos srities, spausdinant gali įvykti susidūrimų." +msgid "" +"%1% is too close to exclusion area, there may be collisions when printing." +msgstr "" +"%1% yra per arti uždraustos srities, spausdinant gali įvykti susidūrimų." #, boost-format msgid "%1% is too close to others, and collisions may be caused." @@ -10987,234 +12541,426 @@ msgstr "%1% yra per aukštas, todėl įvyks susidūrimai." msgid " is too close to exclusion area, there may be collisions when printing." msgstr " yra per arti uždraustosios zonos, spausdinant gali įvykti susidūrimų." -msgid " is too close to clumping detection area, there may be collisions when printing." +msgid "" +" is too close to clumping detection area, there may be collisions when " +"printing." msgstr "" +" yra per arti sulipimo aptikimo (clumping detection) zonos, spausdinant gali " +"įvykti susidūrimų." msgid "Prime Tower" -msgstr "Pirminis bokštas" +msgstr "Valymo bokštas (Prime tower)" msgid " is too close to others, and collisions may be caused.\n" msgstr " yra per arti kitų, todėl gali įvykti susidūrimai.\n" -# TODO: Review, changed by lang refactor. PR 14254 -msgid " is too close to an exclusion area, and collisions will be caused.\n" +msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " yra per arti uždraustosios zonos, todėl įvyks susidūrimai.\n" -msgid " is too close to clumping detection area, and collisions will be caused.\n" +msgid "" +" is too close to clumping detection area, and collisions will be caused.\n" msgstr "" +" yra per arti sulipimo aptikimo zonos, todėl įvyks susidūrimai.\n" +"\n" -msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur." +msgid "" +"Selected nozzle temperatures are incompatible. Each filament's nozzle " +"temperature must fall within the recommended nozzle temperature range of the " +"other filaments. Otherwise, nozzle clogging or printer damage may occur." msgstr "" +"Pasirinktos purkštuko temperatūros yra nesuderinamos. Kiekvienos gijos " +"purkštuko temperatūra turi patekti į kitų gijų rekomenduojamos temperatūros " +"diapazoną. Priešingu atveju gali užsikimšti purkštukas arba sugesti " +"spausdintuvas." -msgid "Invalid recommended nozzle temperature range. The lower bound must be lower than the upper bound." +msgid "" +"Invalid recommended nozzle temperature range. The lower bound must be lower " +"than the upper bound." msgstr "" +"Neteisingas rekomenduojamas purkštuko temperatūros diapazonas. Žemutinė riba " +"turi būti mažesnė už viršutinę ribą." -msgid "If you still want to print, you can enable the option in Preferences / Control / Slicing / Remove mixed temperature restriction." +msgid "" +"If you still want to print, you can enable the option in Preferences / " +"Control / Slicing / Remove mixed temperature restriction." msgstr "" +"Jei vis tiek norite spausdinti, galite įjungti šią parinktį skiltyje " +"Nuostatos (Preferences) / Valdymas / Pjaustymas / Pašalinti mišrios " +"temperatūros ribojimą." msgid "No extrusions under current settings." msgstr "Pagal dabartinius nustatymus nėra išspaudimų." -msgid "Smooth mode of timelapse is not supported when \"by object\" sequence is enabled." -msgstr "Kai įjungta seka \"pagal objektą\", sklandus pakadrinio filmavimo režimas nepalaikomas." - -msgid "Clumping detection is not supported when \"by object\" sequence is enabled." +msgid "" +"Smooth mode of timelapse is not supported when \"by object\" sequence is " +"enabled." msgstr "" +"Sklandus pakadrinio filmavimo (timelapse) režimas nepalaikomas, kai įjungta " +"spausdinimo seka „pagal objektą“." -msgid "Enabling both precise Z height and the prime tower may cause slicing errors." -msgstr "Tikslaus Z aukščio ir pirminio bokšto įjungimas gali sukelti pjaustymo klaidų." - -msgid "A prime tower is required for clumping detection; otherwise, there may be flaws on the model." +msgid "" +"Clumping detection is not supported when \"by object\" sequence is enabled." msgstr "" +"Sulipimo aptikimas (clumping detection) nepalaikomas, kai įjungta " +"spausdinimo seka „pagal objektą“." -msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." -msgstr "Pasirinkite spausdinimo seką \"Pagal objektą\", jei norite spausdinti kelis objektus spiralinės vazos režimu." +msgid "" +"Enabling both precise Z height and the prime tower may cause slicing errors." +msgstr "" +"Vienu metu įjungus tikslų Z aukštį ir valymo bokštą, gali kilti pjaustymo " +"klaidų." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Spiral (vase) mode does not work when an object contains more than one material." -msgstr "Spiralinės vazos režimas neveikia, kai objekte yra daugiau nei viena medžiaga." +msgid "" +"A prime tower is required for clumping detection; otherwise, there may be " +"flaws on the model." +msgstr "" +"Sulipimo aptikimui reikalingas valymo bokštas, kitaip modelio paviršiuje " +"gali atsirasti defektų." + +msgid "" +"Please select \"By object\" print sequence to print multiple objects in " +"spiral vase mode." +msgstr "" +"Pasirinkite spausdinimo seką \"Pagal objektą\", jei norite spausdinti kelis " +"objektus spiralinės vazos režimu." + +msgid "" +"The spiral vase mode does not work when an object contains more than one " +"materials." +msgstr "" +"Spiralinės vazos (vase mode) režimas neveikia, kai objektą sudaro daugiau " +"nei viena medžiaga." #, boost-format -msgid "While the object %1% itself fits the build volume, it exceeds the maximum build volume height because of material shrinkage compensation." -msgstr "Nors pats objektas %1% telpa į surinkimo tūrį, jis viršija maksimalų surinkimo tūrio aukštį dėl medžiagos susitraukimo kompensavimo." +msgid "" +"While the object %1% itself fits the build volume, it exceeds the maximum " +"build volume height because of material shrinkage compensation." +msgstr "" +"Nors pats objektas %1% telpa į surinkimo tūrį, jis viršija maksimalų " +"surinkimo tūrio aukštį dėl medžiagos susitraukimo kompensavimo." #, boost-format msgid "The object %1% exceeds the maximum build volume height." msgstr "Objektas %1% viršija maksimalų galimą spausdinimo tūrio aukštį." #, boost-format -msgid "While the object %1% itself fits the build volume, its last layer exceeds the maximum build volume height." -msgstr "Nors pats objektas %1% telpa į spausdinimo tūrį, jo paskutinis sluoksnis viršija didžiausią spausdinimo tūrio aukštį." +msgid "" +"While the object %1% itself fits the build volume, its last layer exceeds " +"the maximum build volume height." +msgstr "" +"Nors pats objektas %1% telpa į spausdinimo tūrį, jo paskutinis sluoksnis " +"viršija didžiausią spausdinimo tūrio aukštį." -msgid "You might want to reduce the size of your model or change current print settings and retry." -msgstr "Galbūt norėsite sumažinti modelio dydį arba pakeisti esamus spausdinimo nustatymus ir bandyti dar kartą." +msgid "" +"You might want to reduce the size of your model or change current print " +"settings and retry." +msgstr "" +"Galbūt norėsite sumažinti modelio dydį arba pakeisti esamus spausdinimo " +"nustatymus ir bandyti dar kartą." msgid "Variable layer height is not supported with Organic supports." msgstr "Kintamas sluoksnio aukštis nepalaikomas su \" Organinėmis atramomis\"." -msgid "Different nozzle diameters and different filament diameters may not work well when the prime tower is enabled. It's very experimental, so please proceed with caution." -msgstr "Skirtingo skersmens purkštukai ir skirtingo skersmens gijos gali neveikti gerai, kai įjungtas valymo bokštas. Tai labai eksperimentinė priemonė, todėl elkitės atsargiai." +msgid "" +"Different nozzle diameters and different filament diameters may not work " +"well when the prime tower is enabled. It's very experimental, so please " +"proceed with caution." +msgstr "" +"Skirtingo skersmens purkštukai ir skirtingo skersmens gijos gali neveikti " +"gerai, kai įjungtas valymo bokštas. Tai labai eksperimentinė priemonė, todėl " +"elkitės atsargiai." -msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." -msgstr "Valymo bokštas šiuo metu palaikomas tik naudojant santykinį ekstruderio adresą (use_relative_e_distances=1)." +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"Valymo bokštas šiuo metu palaikomas tik naudojant santykinį ekstruderio " +"adresą (use_relative_e_distances=1)." -msgid "Ooze prevention is only supported with the wipe tower when 'single_extruder_multi_material' is off." -msgstr "Dumblo susidarymo prevencija palaikoma tik naudojant nuvalymo bokštą, kai 'single_extruder_multi_material' yra išjungta." +msgid "" +"Ooze prevention is only supported with the wipe tower when " +"'single_extruder_multi_material' is off." +msgstr "" +"Varvėjimo prevencija palaikoma tik su valymo bokštu, kai funkcija " +"„single_extruder_multi_material“ yra išjungta." -msgid "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, RepRapFirmware and Repetier G-code flavors." -msgstr "Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/Sprinter\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose." +msgid "" +"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"Valymo bokštas (Prime tower) šiuo metu palaikomas tik su „Marlin“, „RepRap/" +"Sprinter“, „RepRapFirmware“ ir „Repetier“ G-kodo tipais." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower is not supported in “By object” print." -msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"." +msgid "The prime tower is not supported in \"By object\" print." +msgstr "Valymo bokštas nepalaikomas spausdinant seka „Pagal objektą“." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height." -msgstr "Pagrindinis bokštas nepalaikomas, kai įjungtas prisitaikantis sluoksnio aukštis. Reikalaujama, kad visi objektai turėtų vienodą sluoksnio aukštį." +msgid "" +"The prime tower is not supported when adaptive layer height is on. It " +"requires that all objects have the same layer height." +msgstr "" +"Valymo bokštas nepalaikomas, kai įjungtas adaptyvusis sluoksnio aukštis. " +"Visi objektai privalo turėti vienodą sluoksnio aukštį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower requires any “support gap” to be a multiple of layer height." -msgstr "Valymo bokštui reikia, kad bet koks \"atraminis tarpas\" būtų sluoksnio aukščio kartotinis." +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." +msgstr "" +"Valymo bokštui reikia, kad „atramos tarpas“ (support gap) būtų sluoksnio " +"aukščio kartotinis." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower requires that all objects have the same layer height." -msgstr "Valymo bokštui reikia, kad visų objektų sluoksnio aukštis būtų vienodas." +msgid "The prime tower requires that all objects have the same layer heights." +msgstr "" +"Valymo bokštui reikia, kad visų objektų sluoksnio aukštis būtų vienodas." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower requires that all objects are printed over the same number of raft layers." -msgstr "Valymo bokštui reikia, kad visi objektai būtų spausdinami ant vienodo skaičiaus platformos sluoksnių." +msgid "" +"The prime tower requires that all objects are printed over the same number " +"of raft layers." +msgstr "" +"Valymo bokštui reikia, kad visi objektai būtų spausdinami ant vienodo " +"skaičiaus platformos sluoksnių." -msgid "The prime tower is only supported for multiple objects if they are printed with the same support_top_z_distance." -msgstr "Pirminis bokštas palaikomas keliems objektams tik tuo atveju, jei jie spausdinami tuo pačiu atramų z aukščio atstumu." +msgid "" +"The prime tower is only supported for multiple objects if they are printed " +"with the same support_top_z_distance." +msgstr "" +"Valymo bokštas keliems objektams palaikomas tik tada, jei jie spausdinami su " +"vienodu „support_top_z_distance“ parametru." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower requires that all objects are sliced with the same layer height." -msgstr "Pirminis bokštas reikalauja, kad visi objektai būtų susluoksniuoti vienodo aukščio sluoksniais." +msgid "" +"The prime tower requires that all objects are sliced with the same layer " +"heights." +msgstr "" +"Valymo bokštui reikia, kad visi objektai būtų supjaustyti vienodu sluoksnių " +"aukščiu." -msgid "The prime tower is only supported if all objects have the same variable layer height." -msgstr "Pagrindinis bokštas palaikomas tik tuo atveju, jei visi objektai turi tą patį kintamą sluoksnio aukštį." +msgid "" +"The prime tower is only supported if all objects have the same variable " +"layer height." +msgstr "" +"Valymo bokštas palaikomas tik tada, kai visi objektai turi vienodą kintamą " +"sluoksnio aukštį." -msgid "One or more object were assigned an extruder that the printer does not have." -msgstr "Vienas ar daugiau objektų buvo priskirti ekstruderiui, kurio spausdintuvas neturi." +msgid "" +"One or more object were assigned an extruder that the printer does not have." +msgstr "" +"Vienas ar daugiau objektų buvo priskirti ekstruderiui, kurio spausdintuvas " +"neturi." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Line width too small" +msgid "Too small line width" msgstr "Per mažas linijos plotis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Line width too large" +msgid "Too large line width" msgstr "Per didelis linijos plotis" -msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current filament (support_filament == 0 or support_interface_filament == 0), all nozzles have to be of the same diameter." -msgstr "Spausdinti su keliais skirtingo skersmens purkštukais. Jei atrama turi būti spausdinama su dabartine gija (support_filament == 0 arba support_interface_filament == 0), visi purkštukai turi būti vienodo skersmens." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A prime tower requires that support has the same layer height as the object." -msgstr "Pagrindinis bokštas reikalauja, kad atramos ir objekto sluoksnio aukštis būtų toks pat." - -msgid "For Organic supports, two walls are supported only with the Hollow/Default base pattern." +msgid "" +"Printing with multiple extruders of differing nozzle diameters. If support " +"is to be printed with the current filament (support_filament == 0 or " +"support_interface_filament == 0), all nozzles have to be of the same " +"diameter." msgstr "" +"Spausdinti su keliais skirtingo skersmens purkštukais. Jei atrama turi būti " +"spausdinama su dabartine gija (support_filament == 0 arba " +"support_interface_filament == 0), visi purkštukai turi būti vienodo " +"skersmens." -msgid "The Lightning base pattern is not supported by this support type; Rectilinear will be used instead." +msgid "" +"The prime tower requires that support has the same layer height with object." msgstr "" +"Valymo bokštui reikia, kad atramų ir objekto sluoksnių aukščiai sutaptų." -msgid "Organic support tree tip diameter must not be smaller than support material extrusion width." -msgstr "Organinio atraminio medžio viršūnės skersmuo turi būti ne mažesnis už atraminės medžiagos ekstruzijos plotį." +msgid "" +"For Organic supports, two walls are supported only with the Hollow/Default " +"base pattern." +msgstr "" +"Naudojant organines atramas, dvi sienelės palaikomos tik su tuščiaviduriu " +"arba numatytuoju pagrindo raštu (Hollow/Default)." -msgid "Organic support branch diameter must not be smaller than 2x support material extrusion width." -msgstr "Organinės atraminės šakos skersmuo turi būti ne mažesnis kaip 2 kartus mažesnis už atraminės medžiagos ekstruzijos plotį." +msgid "" +"The Lightning base pattern is not supported by this support type; " +"Rectilinear will be used instead." +msgstr "" +"Žaibo (Lightning) pagrindo raštas nepalaikomas šio atramos tipo; vietoj jo " +"bus naudojamas tiesialinis (Rectilinear)." -msgid "Organic support branch diameter must not be smaller than support tree tip diameter." -msgstr "Organinės atraminės šakos skersmuo neturi būti mažesnis už atraminio medžio viršūnės skersmenį." +msgid "" +"Organic support tree tip diameter must not be smaller than support material " +"extrusion width." +msgstr "" +"Organinio atraminio medžio viršūnės skersmuo turi būti ne mažesnis už " +"atraminės medžiagos ekstruzijos plotį." -msgid "The Hollow base pattern is not supported by this support type; Rectilinear will be used instead." -msgstr "Tuščiavidurio pagrindo raštas nepalaikomas šio atramos tipo; Vietoj to bus naudojamas tiesialinis." +msgid "" +"Organic support branch diameter must not be smaller than 2x support material " +"extrusion width." +msgstr "" +"Organinės atraminės šakos skersmuo turi būti ne mažesnis nei dvigubas (2x) " +"atraminės medžiagos ekstruzijos plotis." -msgid "Support enforcers are used but support is not enabled. Please enable support." -msgstr "Naudojamos priverstinės atramos, tačiau atramų funkcija išjungta. Įjunkite atramas." +msgid "" +"Organic support branch diameter must not be smaller than support tree tip " +"diameter." +msgstr "" +"Organinės atraminės šakos skersmuo neturi būti mažesnis už atraminio medžio " +"viršūnės skersmenį." + +msgid "" +"The Hollow base pattern is not supported by this support type; Rectilinear " +"will be used instead." +msgstr "" +"Tuščiaviduris (Hollow) pagrindo raštas nepalaikomas šio atramos tipo; vietoj " +"jo bus naudojamas tiesialinis (Rectilinear)." + +msgid "" +"Support enforcers are used but support is not enabled. Please enable support." +msgstr "" +"Naudojamos priverstinės atramos, tačiau atramų funkcija išjungta. Įjunkite " +"atramas." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height cannot exceed nozzle diameter." msgstr "Sluoksnio aukštis negali viršyti purkštuko skersmens." msgid "Bridge line width must not exceed nozzle diameter" -msgstr "" +msgstr "Tiltelių linijos plotis negali viršyti purkštuko skersmens" -msgid "\"G92 E0\" was found in before_layer_change_gcode, but the G or E are not uppercase. Please change them to the exact uppercase \"G92 E0\"." +msgid "" +"\"G92 E0\" was found in before_layer_change_gcode, but the G or E are not " +"uppercase. Please change them to the exact uppercase \"G92 E0\"." msgstr "" +"Komanda „G92 E0“ rasta prieš sluoksnio keitimą vykdomame G-kode " +"(before_layer_change_gcode), tačiau raidės G arba E nėra didžiosios. " +"Pakeiskite jas tiksliai į didžiąsias raides: „G92 E0“." -msgid "\"G92 E0\" was found in layer_change_gcode, but the G or E are not uppercase. Please change them to the exact uppercase \"G92 E0\"." +msgid "" +"\"G92 E0\" was found in layer_change_gcode, but the G or E are not " +"uppercase. Please change them to the exact uppercase \"G92 E0\"." msgstr "" +"Komanda „G92 E0“ rasta sluoksnio keitimo G-kode (layer_change_gcode), tačiau " +"raidės G arba E nėra didžiosios. Pakeiskite jas tiksliai į didžiąsias " +"raides: „G92 E0“." -msgid "Relative extruder addressing requires resetting the extruder position at each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to layer_gcode." -msgstr "Tam, kad neprarastų slankiojo kablelio tikslumo, santykinis ekstruderio adresavimas reikalauja kiekviename sluoksnyje iš naujo nustatyti ekstruderio padėtį. Pridėkite „G92 E0“ prie layer_gcode." - -msgid "\"G92 E0\" was found in before_layer_change_gcode, which is incompatible with absolute extruder addressing." +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." msgstr "" +"Tam, kad neprarastų slankiojo kablelio tikslumo, santykinis ekstruderio " +"adresavimas reikalauja kiekviename sluoksnyje iš naujo nustatyti ekstruderio " +"padėtį. Pridėkite „G92 E0“ prie layer_gcode." -msgid "\"G92 E0\" was found in layer_change_gcode, which is incompatible with absolute extruder addressing." +msgid "" +"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible " +"with absolute extruder addressing." msgstr "" +"Komanda „G92 E0“ rasta prieš sluoksnio keitimą vykdomame G-kode " +"(before_layer_change_gcode), o tai nesuderinama su absoliučiuoju ekstruderio " +"adresavimu." + +msgid "" +"\"G92 E0\" was found in layer_change_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"Komanda „G92 E0“ rasta sluoksnio keitimo G-kode (layer_change_gcode), o tai " +"nesuderinama su absoliučiuoju ekstruderio adresavimu." #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" msgstr "Plokštė %d: %s nepalaiko %s gijos" -msgid "Setting the jerk speed too low could lead to artifacts on curved surfaces" -msgstr "Nustačius per mažą trūkčiojimo greitį, lenktuose paviršiuose gali atsirasti artefaktų" +msgid "" +"Setting the jerk speed too low could lead to artifacts on curved surfaces" +msgstr "" +"Nustačius per mažą tolygumo pasikeitimo (jerk) greitį, lenktuose paviršiuose " +"gali atsirasti defektų (artefaktų)" msgid "" -"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/machine_max_jerk_y).\n" -"Orca will automatically cap the jerk speed to ensure it doesn't surpass the printer's capabilities.\n" -"You can adjust the maximum jerk setting in your printer's configuration to get higher speeds." +"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/" +"machine_max_jerk_y).\n" +"Orca will automatically cap the jerk speed to ensure it doesn't surpass the " +"printer's capabilities.\n" +"You can adjust the maximum jerk setting in your printer's configuration to " +"get higher speeds." msgstr "" -"Nustatytas trūkčiojimas viršija didžiausią spausdintuvo trūkčiojimą (machine_max_jerk_x/machine_max_jerk_y).\n" -"Orca automatiškai apribos trūkčiojimo greitį, kad jis neviršytų spausdintuvo galimybių.\n" -"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite pakoreguoti didžiausio trūkčiojimo nustatymą." +"Tolygumo pasikeitimo (jerk) nustatymas viršija spausdintuvo maksimalią " +"reikšmę (machine_max_jerk_x/machine_max_jerk_y).\n" +"„Orca“ automatiškai apribos šį greitį, kad jis neviršytų spausdintuvo " +"galimybių.\n" +"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite " +"pakoreguoti maksimalaus „jerk“ parametro reikšmes." msgid "" -"Junction deviation setting exceeds the printer's maximum value (machine_max_junction_deviation).\n" -"Orca will automatically cap the junction deviation to ensure it doesn't surpass the printer's capabilities.\n" -"You can adjust the machine_max_junction_deviation value in your printer's configuration to get higher limits." +"Junction deviation setting exceeds the printer's maximum value " +"(machine_max_junction_deviation).\n" +"Orca will automatically cap the junction deviation to ensure it doesn't " +"surpass the printer's capabilities.\n" +"You can adjust the machine_max_junction_deviation value in your printer's " +"configuration to get higher limits." msgstr "" -"Sąsajos nuokrypis viršija spausdintuvo maksimalią vertę (machine_max_junction_deviation).\n" -"Orca automatiškai apribos sąsajos nuokrypį, kad jis neviršytų spausdintuvo galimybių.\n" -"Galite koreguoti machine_max_junction_deviation vertę spausdintuvo konfigūracijoje, kad gautumėte didesnes ribas." +"Sąsajos nuokrypis viršija spausdintuvo maksimalią vertę " +"(machine_max_junction_deviation).\n" +"Orca automatiškai apribos sąsajos nuokrypį, kad jis neviršytų spausdintuvo " +"galimybių.\n" +"Galite koreguoti machine_max_junction_deviation vertę spausdintuvo " +"konfigūracijoje, kad gautumėte didesnes ribas." msgid "" -"The acceleration setting exceeds the printer's maximum acceleration (machine_max_acceleration_extruding).\n" -"Orca will automatically cap the acceleration speed to ensure it doesn't surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_extruding value in your printer's configuration to get higher speeds." +"The acceleration setting exceeds the printer's maximum acceleration " +"(machine_max_acceleration_extruding).\n" +"Orca will automatically cap the acceleration speed to ensure it doesn't " +"surpass the printer's capabilities.\n" +"You can adjust the machine_max_acceleration_extruding value in your " +"printer's configuration to get higher speeds." msgstr "" -"Nustatytas pagreitis viršija maksimalų spausdintuvo pagreitį (machine_max_acceleration_extruding).\n" -"Orca automatiškai apribos pagreitį, kad jis neviršytų spausdintuvo galimybių.\n" -"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite pakoreguoti machine_max_acceleration_extruding reikšmę." +"Nustatytas pagreitis viršija maksimalų spausdintuvo pagreitį " +"(machine_max_acceleration_extruding).\n" +"Orca automatiškai apribos pagreitį, kad jis neviršytų spausdintuvo " +"galimybių.\n" +"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite " +"pakoreguoti machine_max_acceleration_extruding reikšmę." msgid "" -"The travel acceleration setting exceeds the printer's maximum travel acceleration (machine_max_acceleration_travel).\n" -"Orca will automatically cap the travel acceleration speed to ensure it doesn't surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_travel value in your printer's configuration to get higher speeds." +"The travel acceleration setting exceeds the printer's maximum travel " +"acceleration (machine_max_acceleration_travel).\n" +"Orca will automatically cap the travel acceleration speed to ensure it " +"doesn't surpass the printer's capabilities.\n" +"You can adjust the machine_max_acceleration_travel value in your printer's " +"configuration to get higher speeds." msgstr "" -"Judėjimo pagreičio nustatymas viršija didžiausią spausdintuvo judėjimo pagreitį (machine_max_acceleration_travel).\n" -"Orca automatiškai apribos judėjimo pagreitį, kad jis neviršytų spausdintuvo galimybių.\n" -"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite pakoreguoti machine_max_acceleration_travel reikšmę." +"Judėjimo pagreičio nustatymas viršija didžiausią spausdintuvo judėjimo " +"pagreitį (machine_max_acceleration_travel).\n" +"Orca automatiškai apribos judėjimo pagreitį, kad jis neviršytų spausdintuvo " +"galimybių.\n" +"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite " +"pakoreguoti machine_max_acceleration_travel reikšmę." -msgid "The precise wall option will be ignored for outer-inner or inner-outer-inner wall sequences." -msgstr "Tiksli sienos parinktis bus ignoruojama išorinės-vidinės arba vidinės-išorinės-vidinės sienų sekose." - -msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." +msgid "" +"The precise wall option will be ignored for outer-inner or inner-outer-inner " +"wall sequences." msgstr "" +"Tikslios sienelės (precise wall) parinktis bus ignoruojama esant išorinės–" +"vidinės arba vidinės–išorinės–vidinės sienelių spausdinimo sekai." -msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." -msgstr "Gijų susitraukimas nenaudojamas, nes naudojamų gijų susitraukimas labai skiriasi." +msgid "" +"Filament shrinkage will not be used because filament shrinkage for the used " +"filaments does not match." +msgstr "" +"Gijų susitraukimas nenaudojamas, nes naudojamų gijų susitraukimas labai " +"skiriasi." msgid "Generating skirt & brim" msgstr "Generuojamas apvadas ir kraštas" msgid "" -"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"Per-object skirts cannot fit between the objects in By object print " +"sequence.\n" "\n" -"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to " +"Combined, or switch Print sequence to By layer." msgstr "" +"Kiekvienam objektui atskiri apvadai (skirts) netelpa tarp objektų, kai " +"pasirinkta spausdinimo seka „Pagal objektą“.\n" +"\n" +"Patraukite objektus toliau vienas nuo kito, sumažinkite krašto / apvado " +"(brim/skirt) dydį, pakeiskite apvado tipą į „Kombinuotas“ arba pakeiskite " +"spausdinimo seką į „Pagal sluoksnį“." msgid "Exporting G-code" msgstr "Eksportuojamas G-kodas" @@ -11222,8 +12968,7 @@ msgstr "Eksportuojamas G-kodas" msgid "Generating G-code" msgstr "Generuojamas G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Processing of the filename_format template failed." +msgid "Failed processing of the filename_format template." msgstr "Nepavyko apdoroti šablono filename_format." msgid "Printer technology" @@ -11233,32 +12978,53 @@ msgid "Printable area" msgstr "Spausdinama sritis" msgid "Extruder printable area" -msgstr "" +msgstr "Ekstruderio spausdinimo sritis" msgid "Support parallel printheads" -msgstr "" +msgstr "Lygiagrečių spausdinimo galvučių palaikymas" -msgid "Enable printer settings for machines that can use multiple printheads in parallel." +msgid "" +"Enable printer settings for machines that can use multiple printheads in " +"parallel." msgstr "" +"Įjungti spausdintuvo nustatymus įrenginiams, kurie gali lygiagrečiai naudoti " +"kelias spausdinimo galvutes." msgid "Parallel printheads count" -msgstr "" +msgstr "Lygiagrečių spausdinimo galvučių skaičius" -msgid "Set the number of parallel printheads for machines like OrangeStorm Giga printer." +msgid "" +"Set the number of parallel printheads for machines like OrangeStorm Giga " +"printer." msgstr "" +"Nustatykite lygiagrečių spausdinimo galvučių skaičių tokiems įrenginiams " +"kaip „OrangeStorm Giga“ spausdintuvas." msgid "Parallel printheads bed exclude areas" msgstr "" +"Nespausdinamos pagrindo sritys esant lygiagrečioms spausdinimo galvutėms" -msgid "Ordered list of bed exclude areas by parallel printhead count. Item 1 applies to one printhead, item 2 to two printheads, and so on. Leave an item empty for no excluded area." +msgid "" +"Ordered list of bed exclude areas by parallel printhead count. Item 1 " +"applies to one printhead, item 2 to two printheads, and so on. Leave an item " +"empty for no excluded area." msgstr "" +"Rūšiuotas nespausdinamų pagrindo sričių sąrašas pagal lygiagrečių " +"spausdinimo galvučių skaičių. 1 punktas taikomas vienai spausdinimo " +"galvutei, 2 punktas – dviem spausdinimo galvutėms ir t. t. Palikite laukelį " +"tuščią, jei ribojamos srities nėra." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Excluded bed area" +msgid "Bed exclude area" msgstr "Nespausdinama pagrindo sritis" -msgid "Unprintable area in XY plane. For example, X1 Series printers use the front left corner to cut filament during filament change. The area is expressed as polygon by points in following format: \"XxY, XxY, ...\"" -msgstr "Nespausdinama sritis XY plokštumoje. Pavyzdžiui, X1 serijos spausdintuvuose priekinis kairysis kampas naudojamas gijai nupjauti keičiant giją. Plotas išreiškiamas taškų daugiakampiu toliau nurodytu formatu: \"XxY, XxY, ...\"" +msgid "" +"Unprintable area in XY plane. For example, X1 Series printers use the front " +"left corner to cut filament during filament change. The area is expressed as " +"polygon by points in following format: \"XxY, XxY, ...\"" +msgstr "" +"Nespausdinama sritis XY plokštumoje. Pavyzdžiui, X1 serijos spausdintuvuose " +"priekinis kairysis kampas naudojamas gijai nupjauti keičiant giją. Plotas " +"išreiškiamas taškų daugiakampiu toliau nurodytu formatu: \"XxY, XxY, ...\"" msgid "Bed custom texture" msgstr "Pasirinktinė pagrindo tekstūra" @@ -11269,41 +13035,64 @@ msgstr "Pasirinktinis pagrindo modelis" msgid "Elephant foot compensation" msgstr "Dramblio pėdos kompensacija" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This shrinks the first layer on the build plate to compensate for elephant foot effect." -msgstr "Taip sutraukiamas pirmasis spausdinio sluoksnis, kad būtų kompensuotas dramblio pėdos efektas." +msgid "" +"Shrinks the first layer on build plate to compensate for elephant foot " +"effect." +msgstr "" +"Taip sutraukiamas pirmasis spausdinio sluoksnis, kad būtų kompensuotas " +"dramblio pėdos efektas." msgid "Elephant foot compensation layers" msgstr "Dramblio pėdos kompensavimo sluoksniai" -msgid "The number of layers on which the elephant foot compensation will be active. The first layer will be shrunk by the elephant foot compensation value, then the next layers will be linearly shrunk less, up to the layer indicated by this value." -msgstr "Sluoksnių, kuriuose veiks dramblio pėdos kompensavimas, skaičius. Pirmasis sluoksnis bus sumažintas pagal dramblio pėdos kompensavimo vertę, tada kiti sluoksniai bus tiesiškai mažinami mažiau, iki šia verte nurodyto sluoksnio." +msgid "" +"The number of layers on which the elephant foot compensation will be active. " +"The first layer will be shrunk by the elephant foot compensation value, then " +"the next layers will be linearly shrunk less, up to the layer indicated by " +"this value." +msgstr "" +"Sluoksnių, kuriuose veiks dramblio pėdos kompensavimas, skaičius. Pirmasis " +"sluoksnis bus sumažintas pagal dramblio pėdos kompensavimo vertę, tada kiti " +"sluoksniai bus tiesiškai mažinami mažiau, iki šia verte nurodyto sluoksnio." msgid "Elephant foot layers density" -msgstr "" +msgstr "Dramblio pėdos sluoksnių tankis" msgid "" "Density of internal solid infill for Elephant foot layers compensation.\n" "The initial value for the second layer is set.\n" -"Subsequent layers become linearly denser by the height specified in elefant_foot_compensation_layers." +"Subsequent layers become linearly denser by the height specified in " +"elefant_foot_compensation_layers." msgstr "" +"Vidinio vientiso užpildo (solid infill) tankis dramblio pėdos sluoksnių " +"kompensavimui.\n" +"Nustatoma pradinė vertė antrajam sluoksniui.\n" +"Tolesni sluoksniai tiesiškai tankėja iki aukščio, nurodyto " +"„elefant_foot_compensation_layers“ parametre." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the height for each layer. Smaller layer heights give greater accuracy but longer printing time." -msgstr "Tai kiekvieno sluoksnio aukštis. Mažesni sluoksnių aukščiai užtikrina didesnį tikslumą, bet ilgesnį spausdinimo laiką." +msgid "" +"Slicing height for each layer. Smaller layer height means more accurate and " +"more printing time." +msgstr "" +"Tai kiekvieno sluoksnio aukštis. Mažesni sluoksnių aukščiai užtikrina " +"didesnį tikslumą, bet ilgesnį spausdinimo laiką." msgid "Printable height" msgstr "Spausdinamas aukštis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the maximum printable height which is limited by the height of the build area." -msgstr "Tai didžiausias spausdinamas aukštis, kurį riboja spausdinimo zonos aukštis." +msgid "Maximum printable height which is limited by mechanism of printer." +msgstr "" +"Tai didžiausias spausdinamas aukštis, kurį riboja spausdinimo zonos aukštis." msgid "Extruder printable height" -msgstr "" +msgstr "Ekstruderio spausdinimo aukštis" -msgid "Maximum printable height of this extruder which is limited by mechanism of printer." +msgid "" +"Maximum printable height of this extruder which is limited by mechanism of " +"printer." msgstr "" +"Maksimalus šio ekstruderio spausdinimo aukštis, kurį riboja spausdintuvo " +"mechanika." msgid "Preferred orientation" msgstr "Pageidautina orientacija" @@ -11312,49 +13101,74 @@ msgid "Automatically orient STL files on the Z axis upon initial import." msgstr "Automatiškai orientuoti STL failus pagal Z ašį pradinio importo metu." msgid "Printer preset names" -msgstr "Spausdintuvo nustatymų pavadinimai" +msgstr "Spausdintuvo profilių pavadinimai" msgid "Use 3rd-party print host" msgstr "Naudokite trečiosios šalies spausdinimo prieglobą" msgid "Allow controlling BambuLab's printer through 3rd party print hosts." -msgstr "Leidimas valdyti \"BambuLab\" spausdintuvą per trečiosios šalies spausdinimo prieglobą." +msgstr "" +"Leisti valdyti „BambuLab“ spausdintuvą per trečiųjų šalių spausdinimo " +"serverius." msgid "Use 3MF instead of G-code" -msgstr "" +msgstr "Vietoj G-kodo naudoti 3MF" -msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file." +msgid "" +"Enable this if the printer accepts a 3MF file as the print job. When " +"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a " +"plain .gcode file." msgstr "" +"Įjunkite, jei spausdintuvas spausdinimo užduotims priima 3MF failus. Kai " +"įjungta, „Orca Slicer“ sugeneruotą failą siunčia kaip „.gcode.3mf“, o ne " +"kaip paprastą „.gcode“ failą." msgid "Printer Agent" -msgstr "" +msgstr "Spausdintuvo agentas" msgid "Select the network agent implementation for printer communication." -msgstr "" +msgstr "Pasirinkite tinklo agento modulį ryšiui su spausdintuvu palaikyti." msgid "Hostname, IP or URL" -msgstr "Hosto pavadinimas, IP arba URL" +msgstr "Mazgo (host) pavadinimas, IP arba URL" -msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance. Print host behind HAProxy with basic auth enabled can be accessed by putting the user name and password into the URL in the following format: https://username:password@your-octopi-address/" -msgstr "\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvo prieglobą. Šiame lauke turi būti nurodytas spausdintuvo prieglobos egzemplioriaus prieglobos vardas, IP adresas arba URL. Spausdintuvo prieglobą už HAProxy su įjungta pagrindine autorizacija galima pasiekti į URL įrašant naudotojo vardą ir slaptažodį tokiu formatu: https://username:password@your-octopi-address/" +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field should " +"contain the hostname, IP address or URL of the printer host instance. Print " +"host behind HAProxy with basic auth enabled can be accessed by putting the " +"user name and password into the URL in the following format: https://" +"username:password@your-octopi-address/" +msgstr "" +"„Orca Slicer“ gali įkelti G-kodo failus į spausdinimo serverį (host). Šiame " +"lauke turi būti nurodytas serverio mazgo pavadinimas, IP adresas arba URL. " +"Spausdinimo serverį, esantį už „HAProxy“ su įjungta bazine autentifikacija, " +"galima pasiekti įrašant naudotojo vardą ir slaptažodį į URL tokiu formatu: " +"https://naudotojas:slaptažodis@jūsų-octopi-adresas/" msgid "Device UI" msgstr "Įrenginio sąsaja" -msgid "Specify the URL of your device user interface if it's not same as print_host." -msgstr "Nurodykite savo įrenginio naudotojo sąsajos URL, jei jis nesutampa su print_host." +msgid "" +"Specify the URL of your device user interface if it's not same as print_host." +msgstr "" +"Nurodykite įrenginio naudotojo sąsajos URL, jei jis nesutampa su " +"„print_host“." msgid "API Key / Password" msgstr "API raktas / slaptažodis" -msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." -msgstr "\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvą. Šiame lauke turėtų būti nurodytas API raktas arba autentifikavimui reikalingas slaptažodis." +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field should " +"contain the API Key or the password required for authentication." +msgstr "" +"\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvą. Šiame lauke turėtų " +"būti nurodytas API raktas arba autentifikavimui reikalingas slaptažodis." msgid "Serial Number" -msgstr "" +msgstr "Serijos numeris" msgid "Flashforge local API requires the printer serial number." -msgstr "" +msgstr "Vietinei „Flashforge“ API reikalingas spausdintuvo serijos numeris." msgid "Name of the printer." msgstr "Spausdintuvo pavadinimas." @@ -11362,8 +13176,14 @@ msgstr "Spausdintuvo pavadinimas." msgid "HTTPS CA File" msgstr "HTTPS CA failas" -msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used." -msgstr "Pasirinktinis CA sertifikato failas gali būti nurodytas HTTPS OctoPrint ryšiams crt/pem formatu. Jei paliekama tuščia, naudojama numatytoji OS CA sertifikatų saugykla." +msgid "" +"Custom CA certificate file can be specified for HTTPS OctoPrint connections, " +"in crt/pem format. If left blank, the default OS CA certificate repository " +"is used." +msgstr "" +"Pasirinktinis CA sertifikato failas gali būti nurodytas HTTPS OctoPrint " +"ryšiams crt/pem formatu. Jei paliekama tuščia, naudojama numatytoji OS CA " +"sertifikatų saugykla." msgid "User" msgstr "Naudotojas" @@ -11374,35 +13194,49 @@ msgstr "Slaptažodis" msgid "Ignore HTTPS certificate revocation checks" msgstr "Nepaisyti HTTPS sertifikato atšaukimo patikrų" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Ignore HTTPS certificate revocation checks in the case of missing or offline distribution points. One may want to enable this option for self signed certificates if connection fails." -msgstr "Nepaisyti HTTPS sertifikato atšaukimo patikrų, jei paskirstymo taškų trūksta arba jie neprisijungę. Jei nepavyksta prisijungti, galite įjungti šią parinktį savarankiškai pasirašytiems sertifikatams." +msgid "" +"Ignore HTTPS certificate revocation checks in case of missing or offline " +"distribution points. One may want to enable this option for self signed " +"certificates if connection fails." +msgstr "" +"Nepaisyti HTTPS sertifikato atšaukimo patikrų, jei paskirstymo taškų trūksta " +"arba jie neprisijungę. Jei nepavyksta prisijungti, galite įjungti šią " +"parinktį savarankiškai pasirašytiems sertifikatams." msgid "Names of presets related to the physical printer." -msgstr "Su fiziniu spausdintuvu susijusių išankstinių nustatymų pavadinimai." +msgstr "Su fiziniu spausdintuvu susijusių profilių pavadinimai." msgid "Authorization Type" -msgstr "Autorizacijos tipas" +msgstr "Autentifikavimo tipas" msgid "API key" msgstr "API raktas" msgid "HTTP digest" -msgstr "HTTP santrauka" +msgstr "HTTP Digest autentifikacija" msgid "Avoid crossing walls" -msgstr "Vengti kirsti sieną" +msgstr "Vengti sienelių kirtimo" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This detours to avoid traveling across walls, which may cause blobs on the surface." -msgstr "Apvažiuoti ir vengti važiuoti per sieną, nes dėl to ant paviršiaus gali atsirasti žymė." +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." +msgstr "" +"Formuoti apylankas, kad judant nebūtų kertamos sienelės – taip išvengiama " +"apnašų (blobs) ant modelio paviršiaus." msgid "Avoid crossing walls - Max detour length" -msgstr "Vengti kirsti sieną - Didžiausias apylankos ilgis" +msgstr "Vengti sienelių kirtimo – maks. apylankos ilgis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Maximum detour distance for avoiding crossing wall: The printer won't detour if the detour distance is larger than this value. Detour length could be specified either as an absolute value or as percentage (for example 50%) of a direct travel path. A value of 0 will disable this." -msgstr "Didžiausias apylankos atstumas, kad būtų išvengta sienos kirtimo: Spausdintuvas neaplenks sienos, jei aplenkimo atstumas yra didesnis nei ši vertė. Apylankos ilgis gali būti nurodomas kaip absoliuti vertė arba kaip procentinė dalis (pvz., 50 %) nuo tiesioginio judėjimo kelio. Nustačius 0 reikšmę, ši funkcija bus išjungta." +msgid "" +"Maximum detour distance for avoiding crossing wall. Don't detour if the " +"detour distance is larger than this value. Detour length could be specified " +"either as an absolute value or as percentage (for example 50%) of a direct " +"travel path. Zero to disable." +msgstr "" +"Maksimalus apylankos atstumas sienelių kirtimui išvengti. Apylanka nedaroma, " +"jei jos atstumas viršija šią reikšmę. Apylankos ilgis gali būti nurodomas " +"absoliučia verte arba procentais (pavyzdžiui, 50 %) nuo tiesioginio judėjimo " +"trajektorijos. Įrašius 0 – funkcija išjungiama." msgid "mm or %" msgstr "mm arba %" @@ -11410,70 +13244,112 @@ msgstr "mm arba %" msgid "Other layers" msgstr "Kiti sluoksniai" -msgid "Bed temperature for layers except the initial one. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." -msgstr "Pagrindo temperatūra sluoksniams, išskyrus pradinį. Vertė 0 reiškia, kad gija nepalaiko spausdinimo ant „Cool Plate SuperTack“." +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate SuperTack." +msgstr "" +"Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 " +"reiškia, kad ši gija nepritaikyta spausdinti ant „Cool Plate SuperTack“ " +"pagrindo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Cool Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės." +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." +msgstr "" +"Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 " +"reiškia, kad ši gija nepritaikyta spausdinti ant šalto pagrindo (Cool Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured Cool Plate." -msgstr "Sluoksnių, išskyrus pradinį, pagrindo temperatūra. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūrinės šaltos plokštės." +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." +msgstr "" +"Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 " +"reiškia, kad ši gija nepritaikyta spausdinti ant tekstūruoto šalto pagrindo " +"(Textured Cool Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Engineering Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant inžinerinės plokštės." +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." +msgstr "" +"Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 " +"reiškia, kad ši gija nepritaikyta spausdinti ant inžinerinio pagrindo " +"(Engineering Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the High Temp Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant aukštos temperatūros plokštės." +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." +msgstr "" +"Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 " +"reiškia, kad ši gija nepritaikyta spausdinti ant aukštos temperatūros " +"pagrindo (High Temp Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured PEI Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos PEI plokštės." +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." +msgstr "" +"Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 " +"reiškia, kad ši gija nepritaikyta spausdinti ant tekstūruoto PEI pagrindo " +"(Textured PEI Plate)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer" -msgstr "Pradinis sluoksnis" +msgstr "Pirmasis sluoksnis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer bed temperature" -msgstr "Pradinė sluoksnio pagrindo temperatūra" +msgstr "Pirmojo sluoksnio pagrindo temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." -msgstr "Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės „SuperTack“." +msgid "" +"Bed temperature of the first layer. A value of 0 means the filament does not " +"support printing on the Cool Plate SuperTack." +msgstr "" +"Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija " +"nepritaikyta spausdinti ant „Cool Plate SuperTack“ pagrindo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės." +msgid "" +"Bed temperature of the first layer. A value of 0 means the filament does not " +"support printing on the Cool Plate." +msgstr "" +"Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija " +"nepritaikyta spausdinti ant šalto pagrindo (Cool Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured Cool Plate." -msgstr "Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos šaltos plokštės." +msgid "" +"Bed temperature of the first layer. A value of 0 means the filament does not " +"support printing on the Textured Cool Plate." +msgstr "" +"Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija " +"nepritaikyta spausdinti ant tekstūruoto šalto pagrindo (Textured Cool Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Engineering Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant inžinerinės plokštės." +msgid "" +"Bed temperature of the first layer. A value of 0 means the filament does not " +"support printing on the Engineering Plate." +msgstr "" +"Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija " +"nepritaikyta spausdinti ant inžinerinio pagrindo (Engineering Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the High Temp Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant aukštos temperatūros plokštės." +msgid "" +"Bed temperature of the first layer. A value of 0 means the filament does not " +"support printing on the High Temp Plate." +msgstr "" +"Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija " +"nepritaikyta spausdinti ant aukštos temperatūros pagrindo (High Temp Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured PEI Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos PEI plokštės." +msgid "" +"Bed temperature of the first layer. A value of 0 means the filament does not " +"support printing on the Textured PEI Plate." +msgstr "" +"Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija " +"nepritaikyta spausdinti ant tekstūruoto PEI pagrindo (Textured PEI Plate)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Plate types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Spausdintuvo palaikomi pagrindo tipai." msgid "Default bed type" msgstr "Numatytasis pagrindo tipas" -msgid "Default bed type for the printer (supports both numeric and string format)." -msgstr "Numatytasis spausdintuvo pagrindo tipas (palaiko tiek skaitmenų, tiek simbolių formatą)." +msgid "" +"Default bed type for the printer (supports both numeric and string format)." +msgstr "" +"Numatytasis spausdintuvo pagrindo tipas (palaiko tiek skaitmenų, tiek " +"simbolių formatą)." msgid "First layer print sequence" msgstr "Pirmojo sluoksnio spausdinimo seka" @@ -11488,380 +13364,690 @@ msgid "Other layers filament sequence" msgstr "Kitų sluoksnių gijų seka" msgid "This G-code is inserted at every layer change before the Z lift." -msgstr "Šis G-kodas įterpiamas kiekvieną kartą keičiant sluoksnį prieš pakeliant z." +msgstr "" +"Šis G-kodas įterpiamas keičiant kiekvieną sluoksnį, prieš pakeliant Z ašį." msgid "Bottom shell layers" -msgstr "Apatiniai sluoksniai" +msgstr "Apatinio apvalkalo sluoksniai" -msgid "This is the number of solid layers of bottom shell, including the bottom surface layer. When the thickness calculated by this value is thinner than bottom shell thickness, the bottom shell layers will be increased." -msgstr "Tai yra apatinio korpuso vientisų sluoksnių skaičius, įskaitant apatinį paviršiaus sluoksnį. Kai pagal šią reikšmę apskaičiuotas storis yra plonesnis už apatinio apvalkalo storį, apatinio apvalkalo sluoksniai bus padidinti." +msgid "" +"This is the number of solid layers of bottom shell, including the bottom " +"surface layer. When the thickness calculated by this value is thinner than " +"bottom shell thickness, the bottom shell layers will be increased." +msgstr "" +"Tai vientisų apatinio apvalkalo sluoksnių skaičius, įskaitant patį apatinį " +"paviršių. Jei pagal šią reikšmę apskaičiuotas storis yra mažesnis už " +"nurodytą apatinio apvalkalo storį, sluoksnių skaičius bus automatiškai " +"padidintas." msgid "Bottom shell thickness" msgstr "Apatinio apvalkalo storis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The number of bottom solid layers is increased when slicing if the thickness calculated by bottom shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and the thickness of the bottom shell is determined simply by the number of bottom shell layers." -msgstr "Pjaustant didinamas apatinių vientisų sluoksnių skaičius, jei pagal apatinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra mažas. 0 reiškia, kad šis nustatymas išjungtas ir apatinio apvalkalo storis visiškai nustatomas pagal apatinio apvalkalo sluoksnius." +msgid "" +"The number of bottom solid layers is increased when slicing if the thickness " +"calculated by bottom shell layers is thinner than this value. This can avoid " +"having too thin shell when layer height is small. 0 means that this setting " +"is disabled and thickness of bottom shell is absolutely determined by bottom " +"shell layers." +msgstr "" +"Pjaustant didinamas apatinių vientisų sluoksnių skaičius, jei pagal " +"apatinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią " +"vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra " +"mažas. 0 reiškia, kad šis nustatymas išjungtas ir apatinio apvalkalo storis " +"visiškai nustatomas pagal apatinio apvalkalo sluoksnius." msgid "Apply gap fill" msgstr "Taikyti tarpų užpildymą" msgid "" -"Enables gap fill for the selected solid surfaces. The minimum gap length that will be filled can be controlled from the filter out tiny gaps option below.\n" +"Enables gap fill for the selected solid surfaces. The minimum gap length " +"that will be filled can be controlled from the filter out tiny gaps option " +"below.\n" "\n" "Options:\n" -"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces for maximum strength\n" -"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces only, balancing print speed, reducing potential over extrusion in the solid infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces " +"for maximum strength\n" +"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " +"only, balancing print speed, reducing potential over extrusion in the solid " +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" "3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" -"Note that if using the classic perimeter generator, gap fill may also be generated between perimeters, if a full width line cannot fit between them. That perimeter gap fill is not controlled by this setting.\n" +"Note that if using the classic perimeter generator, gap fill may also be " +"generated between perimeters, if a full width line cannot fit between them. " +"That perimeter gap fill is not controlled by this setting.\n" "\n" -"If you would like all gap fill, including the classic perimeter generated one, removed, set the filter out tiny gaps value to a large number, like 999999.\n" +"If you would like all gap fill, including the classic perimeter generated " +"one, removed, set the filter out tiny gaps value to a large number, like " +"999999.\n" "\n" -"However this is not advised, as gap fill between perimeters is contributing to the model's strength. For models where excessive gap fill is generated between perimeters, a better option would be to switch to the arachne wall generator and use this option to control whether the cosmetic top and bottom surface gap fill is generated." +"However this is not advised, as gap fill between perimeters is contributing " +"to the model's strength. For models where excessive gap fill is generated " +"between perimeters, a better option would be to switch to the arachne wall " +"generator and use this option to control whether the cosmetic top and bottom " +"surface gap fill is generated." msgstr "" -"Įjungiamas pasirinktų vientisų paviršių tarpų užpildymas. Mažiausias užpildomo tarpo ilgis gali būti kontroliuojamas naudojant toliau esančią mažų tarpų filtravimo parinktį.\n" +"Įjungia parinktų vientisų paviršių tarpų užpildymą. Mažiausią užpildomą " +"tarpo ilgį galima valdyti žemiau esančia mažų tarpų filtravimo parinktimi.\n" "\n" "Parinktys:\n" -"1. Visur: Taikomas tarpo užpildymas viršutiniam, apatiniam ir vidiniam vientisam paviršiui, kad jis būtų maksimaliai tvirtas.\n" -"2. Viršutinis ir apatinis paviršiai: Užpildomi tik viršutiniai ir apatiniai paviršiai, taip subalansuojant spausdinimo greitį, sumažinant galimą vientisų užpildų perteklinį išspaudimą ir užtikrinant, kad viršutiniuose ir apatiniuose paviršiuose nebūtų skylučių tarpų.\n" -"3. Niekur: Išjungiamas tarpų užpildymas visuose vientiso užpildo plotuose.\n" +"1. Visur: tarpų užpildymas taikomas viršutiniams, apatiniams ir vidiniams " +"vientisiems paviršiams, kad būtų užtikrintas maksimalus tvirtumas.\n" +"2. Viršutiniai ir apatiniai paviršiai: užpildomi tik viršutiniai ir " +"apatiniai paviršiai – taip subalansuojamas spausdinimo greitis, sumažinama " +"perteklinė ekstruzija (over-extrusion) vientisame užpilde ir užtikrinama, " +"kad viršutiniame bei apatiniame paviršiuje neliktų adatinių skylučių.\n" +"3. Niekur: tarpų užpildymas išjungiamas visose vientiso užpildo srityse.\n" "\n" -"Atkreipkite dėmesį, kad jei naudojamas klasikinis perimetro generatorius, tarpų užpildymas gali būti generuojamas ir tarp perimetrų, jei tarp jų netelpa viso pločio linija. Šis nustatymas tokio perimetro tarpo užpildymo nekontroliuoja.\n" +"Atkreipkite dėmesį, kad naudojant klasikinį perimetro generatorių, tarpų " +"užpildas gali būti generuojamas ir tarp perimetrų, jei tarp jų netelpa pilno " +"pločio linija. Šis nustatymas tokio perimetrų tarpų užpildymo nevaldo.\n" "\n" -"Jei norite, kad visi tarpų užpildymai, įskaitant klasikinio perimetro generuojamą tarpą, būtų pašalinti, nustatykite mažų tarpų filtravimo reikšmę dideliu skaičiumi, pavyzdžiui, 999999.\n" +"Jei norite visiškai pašalinti bet kokį tarpų užpildymą (įskaitant " +"generuojamą klasikinio perimetro), nustatykite didelę mažų tarpų filtravimo " +"reikšmę, pavyzdžiui, 999999.\n" "\n" -"Tačiau to daryti nerekomenduojama, nes tarpų tarp perimetrų užpildymas prisideda prie modelio tvirtumo. Modeliuose, kuriuose tarp perimetrų generuojamas per didelis tarpų užpildas, geresnis variantas būtų pereiti prie arachnės sienų generatoriaus ir šia parinktimi valdyti, ar generuojamas kosmetinis viršutinio ir apatinio paviršiaus tarpų užpildas." +"Tačiau tai nerekomenduojama, nes tarpų užpildymas tarp perimetrų didina " +"modelio tvirtumą. Modeliams, kuriuose tarp perimetrų sugeneruojama per daug " +"tarpų užpildo, geresnis pasirinkimas būtų perjungti į „Arachne“ sienelių " +"generatorių ir šia parinktimi valdyti tik kosmetinį viršutinio bei apatinio " +"paviršiaus tarpų užpildymą." msgid "Everywhere" msgstr "Visur" msgid "Top and bottom surfaces" -msgstr "Viršutinis ir apatinis paviršiai" +msgstr "Viršutiniai ir apatiniai paviršiai" msgid "Nowhere" msgstr "Niekur" msgid "Force cooling for overhangs and bridges" -msgstr "Iškyšų ir tiltų priverstinis aušinimas" - -msgid "Enable this option to allow adjustment of the part cooling fan speed for specifically for overhangs, internal and external bridges. Setting the fan speed specifically for these features can improve overall print quality and reduce warping." -msgstr "Įjunkite šią parinktį, kad būtų galima reguliuoti detalės aušinimo ventiliatoriaus greitį specialiai iškyšoms, vidiniams ir išoriniams tilteliams. Nustatant ventiliatoriaus greitį specialiai šiems elementams, galima pagerinti bendrą spausdinimo kokybę ir sumažinti deformacijas." - -msgid "Overhangs and external bridges fan speed" -msgstr "Ventiliatoriaus greitis iškyšose ir išoriniuose tiltuose" +msgstr "Priverstinis iškyšų ir tiltelių aušinimas" msgid "" -"Use this part cooling fan speed when printing bridges or overhang walls with an overhang threshold that exceeds the value set in the 'Overhangs cooling threshold' parameter above. Increasing the cooling specifically for overhangs and bridges can improve the overall print quality of these features.\n" -"\n" -"Please note, this fan speed is clamped on the lower end by the minimum fan speed threshold set above. It is also adjusted upwards up to the maximum fan speed threshold when the minimum layer time threshold is not met." +"Enable this option to allow adjustment of the part cooling fan speed for " +"specifically for overhangs, internal and external bridges. Setting the fan " +"speed specifically for these features can improve overall print quality and " +"reduce warping." msgstr "" -"Šį dalies aušinimo ventiliatoriaus greitį naudokite spausdindami tiltus arba iškyšas, kurių iškyšų slenkstis viršija pirmiau nustatyto parametro „Iškyšų aušinimo slenkstis“ vertę. Padidinus specialiai iškyšoms ir tilteliams skirtą aušinimą, gali pagerėti bendra šių elementų spausdinimo kokybė.\n" +"Įjunkite šią parinktį, kad galėtumėte reguliuoti detalės aušinimo " +"ventiliatoriaus greitį specialiai iškyšoms, vidiniams ir išoriniams " +"tilteliams. Parinkus specifinį ventiliatoriaus greitį šiems elementams, " +"galima pagerinti bendrą spausdinimo kokybę ir sumažinti modelio deformacijas " +"(warping)." + +msgid "Overhangs and external bridges fan speed" +msgstr "Ventiliatoriaus greitis iškyšose ir išoriniuose tilteliuose" + +msgid "" +"Use this part cooling fan speed when printing bridges or overhang walls with " +"an overhang threshold that exceeds the value set in the 'Overhangs cooling " +"threshold' parameter above. Increasing the cooling specifically for " +"overhangs and bridges can improve the overall print quality of these " +"features.\n" "\n" -"Atkreipkite dėmesį, kad šis ventiliatoriaus greitis yra ribojamas apatinėje dalyje pagal pirmiau nustatytą mažiausią ventiliatoriaus greičio ribą. Jis taip pat reguliuojamas aukštyn iki didžiausios ventiliatoriaus greičio ribos, kai nepasiekiama minimali sluoksnio trukmės riba." +"Please note, this fan speed is clamped on the lower end by the minimum fan " +"speed threshold set above. It is also adjusted upwards up to the maximum fan " +"speed threshold when the minimum layer time threshold is not met." +msgstr "" +"Šis detalės aušinimo ventiliatoriaus greitis naudojamas spausdinant " +"tiltelius arba iškyšų sieneles, kai iškyšos riba viršija aukščiau nustatyto " +"parametro „Iškyšų aušinimo slenkstis“ reikšmę. Padidinus vėsinimą specialiai " +"iškyšoms ir tilteliams, galima pagerinti šių elementų spausdinimo kokybę.\n" +"\n" +"Atkreipkite dėmesį, kad šį ventiliatoriaus greitį iš apačios riboja aukščiau " +"nustatytas minimalaus ventiliatoriaus greičio slenkstis. Greitis taip pat " +"didinamas iki maksimalios ventiliatoriaus greičio ribos, kai nepasiekiama " +"minimali sluoksnio spausdinimo trukmė." msgid "Overhang cooling activation threshold" -msgstr "Iškyšos vėsinimo aktyvavimo riba" +msgstr "Iškyšų aušinimo aktyvavimo slenkstis" #, no-c-format, no-boost-format -msgid "When the overhang exceeds this specified threshold, force the cooling fan to run at the 'Overhang Fan Speed' set below. This threshold is expressed as a percentage, indicating the portion of each line's width that is unsupported by the layer beneath it. Setting this value to 0% forces the cooling fan to run for all outer walls, regardless of the overhang degree." -msgstr "Kai iškyša viršija šią nustatytą ribą, priverskite aušinimo ventiliatorių veikti toliau nustatytu „Iškyšos ventiliatoriaus greičiu“. Ši riba išreiškiama procentais, nurodant kiekvienos linijos pločio dalį, kurios nepalaiko po ja esantis sluoksnis. Nustačius šią reikšmę 0 %, aušinimo ventiliatorius priverstas veikti visoms išorinėms sienoms, nepriklausomai nuo iškyšos laipsnio." +msgid "" +"When the overhang exceeds this specified threshold, force the cooling fan to " +"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a " +"percentage, indicating the portion of each line's width that is unsupported " +"by the layer beneath it. Setting this value to 0% forces the cooling fan to " +"run for all outer walls, regardless of the overhang degree." +msgstr "" +"Kai iškyša viršija nurodytą slenkstį, aušinimo ventiliatorius priverstinai " +"paleidžiamas žemiau nustatytu „Iškyšų ventiliatoriaus greičiu“. Šis " +"slenkstis išreiškiamas procentais, nurodančiais kiekvienos linijos pločio " +"dalį, esančią pakibusioje būsenoje (nepalaikomą po ja esančio sluoksnio). " +"Nustačius reikšmę 0 %, ventiliatorius veiks spausdinant visas išorines " +"sieneles, nepriklausomai nuo iškyšos kampo." msgid "External bridge infill direction" -msgstr "Išorinio tilto užpildymo kryptis" +msgstr "Išorinio tilto užpildo kryptis" #, no-c-format, no-boost-format msgid "" "External Bridging angle override.\n" -"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n" +"If left to zero, the bridging angle will be calculated automatically for " +"each specific bridge.\n" "Otherwise the provided angle will be used according to:\n" " - The absolute coordinates\n" -" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n" -" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n" +" - The absolute coordinates + Model rotation: If Align infill direction to " +"model is enabled\n" +" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is " +"enabled\n" "\n" "Use 180° for zero absolute angle." msgstr "" +"Išorinių tiltelių kampo perrašymas.\n" +"Palikus 0, tiltelio kampas bus apskaičiuojamas automatiškai kiekvienam " +"konkrečiam tilteliui.\n" +"Kitu atveju nurodytas kampas bus naudojamas pagal:\n" +" - absoliučiąsias koordinates;\n" +" - absoliučiąsias koordinates + modelio pasukimą: jei įjungta „Sulygiuoti " +"užpildo kryptį su modeliu“;\n" +" - optimalų automatinį kampą + šią reikšmę: jei įjungta „Santykinis tiltelio " +"kampas“.\n" +"\n" +"Naudokite 180° nulinėms absoliučiosioms koordinatėms." msgid "Internal bridge infill direction" -msgstr "Vidinio tilto užpildymo kryptis" +msgstr "Vidinio tilto užpildo kryptis" msgid "" "Internal Bridging angle override.\n" -"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n" +"If left to zero, the bridging angle will be calculated automatically for " +"each specific bridge.\n" "Otherwise the provided angle will be used according to:\n" " - The absolute coordinates\n" -" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n" -" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n" +" - The absolute coordinates + Model rotation: If Align infill direction to " +"model is enabled\n" +" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is " +"enabled\n" "\n" "Use 180° for zero absolute angle." msgstr "" +"Vidinių tiltelių kampo perrašymas.\n" +"Palikus 0, tiltelio kampas bus apskaičiuojamas automatiškai kiekvienam " +"konkrečiam tilteliui.\n" +"Kitu atveju nurodytas kampas bus naudojamas pagal:\n" +" - absoliučiąsias koordinates;\n" +" - absoliučiąsias koordinates + modelio pasukimą: jei įjungta „Sulygiuoti " +"užpildo kryptį su modeliu“;\n" +" - optimalų automatinį kampą + šią reikšmę: jei įjungta „Santykinis tiltelio " +"kampas“.\n" +"\n" +"Naudokite 180° nulinėms absoliučiosioms koordinatėms." msgid "Relative bridge angle" -msgstr "" +msgstr "Santykinis tiltelio kampas" -msgid "When enabled, the bridge angle values are added to the automatically calculated bridge direction instead of overriding it." +msgid "" +"When enabled, the bridge angle values are added to the automatically " +"calculated bridge direction instead of overriding it." msgstr "" +"Kai įjungta, tiltelio kampo reikšmės pridedamos prie automatiškai " +"apskaičiuotos tiltelio krypties, užuot ją visiškai perrašiusios." msgid "External bridge density" -msgstr "Išorinio tilto tankis" +msgstr "Išorinio tilto užpildo tankis" msgid "" "Controls the density (spacing) of external bridge lines.\n" -"Theoretically, 100% means a solid bridge, but due to the tendency of bridge extrusions to sag, 100% may not be sufficient.\n" +"Theoretically, 100% means a solid bridge, but due to the tendency of bridge " +"extrusions to sag, 100% may not be sufficient.\n" "\n" "- Higher than 100% density (Recommended Max 125%):\n" -" - Pros: Produces smoother bridge surfaces, as overlapping lines provide additional support during printing.\n" -" - Cons: Can cause overextrusion, which may reduce lower and upper surface quality and increase the risk of warping.\n" +" - Pros: Produces smoother bridge surfaces, as overlapping lines provide " +"additional support during printing.\n" +" - Cons: Can cause overextrusion, which may reduce lower and upper surface " +"quality and increase the risk of warping.\n" "\n" "- Lower than 100% density (Min 10%):\n" -" - Pros: Can create a string-like first layer. Faster and with better cooling because there is more space for air to circulate around the extruded bridge.\n" +" - Pros: Can create a string-like first layer. Faster and with better " +"cooling because there is more space for air to circulate around the extruded " +"bridge.\n" " - Cons: May lead to sagging and poorer surface finish." msgstr "" +"Valdo išorinių tiltelių linijų tankį (atstumus tarp jų).\n" +"Teoriškai 100 % reikšmė reiškia vientisą tiltelį, tačiau dėl ekstruduojamo " +"tiltelio polinkio įsmukti (išsigaubti), 100 % gali nepakakti.\n" +" – Didesnis nei 100 % tankis (rekomenduojama maks. 125 %):\n" +" – Privalumai: sukuriami lygesni tiltelių paviršiai, nes persidengiančios " +"linijos suteikia papildomą atramą spausdinimo metu.\n" +" – Trūkumai: gali sukelti perteklinę ekstruziją (over-extrusion), o tai " +"gali pabloginti apatinio bei viršutinio paviršiaus kokybę ir padidinti " +"modelio deformacijos (warping) riziką.\n" +"\n" +" – Mažesnis nei 100 % tankis (min. 10 %):\n" +" – Privalumai: galima suformuoti į stygas panašų pirmąjį sluoksnį. " +"Spausdinama greičiau ir užtikrinamas geresnis aušinimas, nes aplink " +"ekstruduojamą tiltelį lieka daugiau vietos oro cirkuliacijai.\n" +" – Trūkumai: tiltelis gali įsmukti, o paviršiaus apdaila gali būti " +"prastesnė." msgid "Internal bridge density" -msgstr "Vidinių tiltų tankis" +msgstr "Vidinio tilto užpildo tankis" msgid "" "Controls the density (spacing) of internal bridge lines.\n" -"Internal bridges act as intermediate support between sparse infill and top solid infill and can strongly affect top surface quality.\n" +"Internal bridges act as intermediate support between sparse infill and top " +"solid infill and can strongly affect top surface quality.\n" "\n" "- Higher than 100% density (Recommended Max 125%):\n" -" - Pros: Improves internal bridge strength and support under top layers, reducing sagging and improving top-surface finish.\n" -" - Cons: Increases material use and print time; excessive density may cause overextrusion and internal stresses.\n" +" - Pros: Improves internal bridge strength and support under top layers, " +"reducing sagging and improving top-surface finish.\n" +" - Cons: Increases material use and print time; excessive density may cause " +"overextrusion and internal stresses.\n" "\n" "- Lower than 100% density (Min 10%):\n" -" - Pros: Can reduce pillowing and improve cooling (more airflow through the bridge), and may speed up printing.\n" -" - Cons: May reduce internal support, increasing the risk of sagging and top surface defects.\n" +" - Pros: Can reduce pillowing and improve cooling (more airflow through the " +"bridge), and may speed up printing.\n" +" - Cons: May reduce internal support, increasing the risk of sagging and " +"top surface defects.\n" "\n" -"This option works particularly well when combined with the second internal bridge over infill option to improve bridging further before solid infill is extruded." +"This option works particularly well when combined with the second internal " +"bridge over infill option to improve bridging further before solid infill is " +"extruded." msgstr "" +"Valdo vidinių tiltelių linijų tankį (atstumus tarp jų).\n" +"Vidiniai tilteliai veikia kaip tarpinė atrama tarp reto užpildo (sparse " +"infill) ir viršutinio vientiso užpildo, todėl gali stipriai paveikti " +"viršutinio paviršiaus kokybę.\n" +"\n" +"– Didesnis nei 100 % tankis (rekomenduojama maks. 125 %):\n" +" – Privalumai: padidina vidinio tiltelio tvirtumą ir atramą po viršutiniais " +"sluoksniais, sumažina įsmukimą bei pagerina viršutinio paviršiaus apdailą.\n" +" – Trūkumai: padidėja medžiagos sąnaudos ir spausdinimo laikas; per didelis " +"tankis gali sukelti perteklinę ekstruziją bei vidinius įtempius.\n" +"\n" +"– Mažesnis nei 100 % tankis (min. 10 %):\n" +" – Privalumai: gali sumažinti „pagalvių“ susidarymo (pillowing) efektą ir " +"pagerinti aušinimą (didesnis oro srautas pro tiltelį), taip pat gali " +"pagreitinti spausdinimą.\n" +" – Trūkumai: gali sumažėti vidinė atrama, todėl padidėja įsmukimo ir " +"viršutinio paviršiaus defektų rizika.\n" +"\n" +"Ši parinktis ypač gerai veikia kartu su funkcija „antras vidinis tiltelis " +"virš užpildo“, kad dar labiau pagerintų tiltelių formavimą prieš " +"ekstruduojant vientisą užpildą." msgid "Bridge flow ratio" -msgstr "Tilto srauto santykis" +msgstr "Išorinio tilto srauto koeficientas" msgid "" "This value governs the thickness of the external (visible) bridge layer.\n" -"Values above 1.0: Increase the amount of material while maintaining line spacing. This can improve line contact and strength.\n" -"Values below 1.0: Reduce the amount of material while adjusting line spacing to maintain contact. This can improve sagging.\n" +"Values above 1.0: Increase the amount of material while maintaining line " +"spacing. This can improve line contact and strength.\n" +"Values below 1.0: Reduce the amount of material while adjusting line spacing " +"to maintain contact. This can improve sagging.\n" "\n" -"The actual bridge flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio." +"The actual bridge flow used is calculated by multiplying this value with the " +"filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Ši reikšmė nustato išorinio (matomo) tiltelio sluoksnio storį.\n" +"Reikšmės virš 1.0: padidina medžiagos kiekį, išlaikant tuos pačius atstumus " +"tarp linijų. Tai gali pagerinti linijų kontaktą ir tvirtumą.\n" +"Reikšmės žemiau 1.0: sumažina medžiagos kiekį, kartu koreguojant atstumus " +"tarp linijų, kad būtų išlaikytas kontaktas. Tai gali padėti sumažinti " +"įsmukimą.\n" +"\n" +"Faktinis naudojamas tiltelio srautas apskaičiuojamas padauginus šią reikšmę " +"iš gijos srauto koeficiento (filament flow ratio) ir objekto srauto " +"koeficiento (jei jis nustatytas)." msgid "" -"Line width of the Bridge. If expressed as a %, it will be computed over the nozzle diameter.\n" +"Line width of the Bridge. If expressed as a %, it will be computed over the " +"nozzle diameter.\n" "Recommended to use with a higher Bridge density or Bridge flow ratio.\n" "\n" "The maximum value is 100% or the nozzle diameter.\n" "If set to 0, the line width will match the Internal solid infill width." msgstr "" +"Tiltelio linijos plotis. Jei išreikštas procentais (%), jis bus " +"skaičiuojamas nuo purkštuko skersmens.\n" +"Rekomenduojama naudoti su didesniu tiltelio tankiu arba išorinio tilto " +"srauto koeficientu.\n" +"\n" +"Maksimali reikšmė yra 100 % arba purkštuko skersmuo.\n" +"Nustačius 0, linijos plotas sutaps su vidinio vientiso užpildo (internal " +"solid infill) pločiu." msgid "Internal bridge flow ratio" msgstr "Vidinio tilto srauto koeficientas" msgid "" -"This value governs the thickness of the internal bridge layer. This is the first layer over sparse infill so increasing it may increase strength and upper layer quality.\n" -"Values above 1.0: Increase the amount of material while maintaining line spacing. This can improve line contact and strength.\n" -"Values below 1.0: Reduce the amount of material while adjusting line spacing to maintain contact. This can improve sagging.\n" +"This value governs the thickness of the internal bridge layer. This is the " +"first layer over sparse infill so increasing it may increase strength and " +"upper layer quality.\n" +"Values above 1.0: Increase the amount of material while maintaining line " +"spacing. This can improve line contact and strength.\n" +"Values below 1.0: Reduce the amount of material while adjusting line spacing " +"to maintain contact. This can improve sagging.\n" "\n" -"The actual bridge flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio." +"The actual bridge flow used is calculated by multiplying this value with the " +"filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Ši reikšmė nustato vidinio tiltelio sluoksnio storį. Tai yra pirmasis " +"sluoksnis virš reto užpildo (sparse infill), todėl jį padidinus gali išaugti " +"tvirtumas ir viršutinių sluoksnių kokybė.\n" +"Reikšmės virš 1.0: padidina medžiagos kiekį, išlaikant tuos pačius atstumus " +"tarp linijų. Tai gali pagerinti linijų kontaktą ir tvirtumą.\n" +"Reikšmės žemiau 1.0: sumažina medžiagos kiekį, kartu koreguojant atstumus " +"tarp linijų, kad būtų išlaikytas kontaktas. Tai gali padėti sumažinti " +"įsmukimą.\n" +"\n" +"Faktinis naudojamas tiltelio srautas apskaičiuojamas padauginus šią reikšmę " +"iš gijos srauto koeficiento (filament flow ratio) ir objekto srauto " +"koeficiento (jei jis nustatytas)." msgid "Top surface flow ratio" msgstr "Viršutinio paviršiaus srauto koeficientas" msgid "" -"This factor affects the amount of material for top solid infill. You can decrease it slightly to have smooth surface finish.\n" +"This factor affects the amount of material for top solid infill. You can " +"decrease it slightly to have smooth surface finish.\n" "\n" -"The actual top surface flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio." +"The actual top surface flow used is calculated by multiplying this value " +"with the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"Šis veiksnys turi įtakos viršutinio vientiso užpildo medžiagos kiekiui. Galite jį šiek tiek sumažinti, kad paviršius būtų lygus.\n" +"Šis veiksnys turi įtakos viršutinio vientiso užpildo medžiagos kiekiui. " +"Galite jį šiek tiek sumažinti, kad paviršius būtų lygus.\n" "\n" -"Faktinis naudojamas viršutinio paviršiaus srautas apskaičiuojamas padauginus šią reikšmę iš gijų srauto koeficiento ir, jei nustatyta, iš objekto srauto koeficiento." +"Faktinis naudojamas viršutinio paviršiaus srautas apskaičiuojamas padauginus " +"šią reikšmę iš gijų srauto koeficiento ir, jei nustatyta, iš objekto srauto " +"koeficiento." msgid "Bottom surface flow ratio" -msgstr "Dugno paviršiaus srauto koeficientas" +msgstr "Apatinio paviršiaus srauto koeficientas" msgid "" "This factor affects the amount of material for bottom solid infill.\n" "\n" -"The actual bottom solid infill flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio." +"The actual bottom solid infill flow used is calculated by multiplying this " +"value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"Šis veiksnys turi įtakos medžiagos vientiso dugno užpildo kiekiui.\n" +"Šis koeficientas turi įtakos apatinio vientiso užpildo medžiagos kiekiui.\n" "\n" -"Faktinis apatinio vientiso užpildo srautas apskaičiuojamas padauginus šią vertę iš gijų srauto koeficiento ir, jei nustatyta, iš objekto srauto koeficiento." +"Faktinis apatinio vientiso užpildo srautas apskaičiuojamas padauginus šią " +"reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis " +"nustatytas)." msgid "Set other flow ratios" -msgstr "" +msgstr "Nustatyti kitus srauto koeficientus" msgid "Change flow ratios for other extrusion path types." -msgstr "" +msgstr "Keisti kitų ekstruzijos trajektorijų tipų srauto koeficientus." msgid "First layer flow ratio" -msgstr "" +msgstr "Pirmojo sluoksnio srauto koeficientas" msgid "" -"This factor affects the amount of material on the first layer for the extrusion path roles listed in this section.\n" +"This factor affects the amount of material on the first layer for the " +"extrusion path roles listed in this section.\n" "\n" -"For the first layer, the actual flow ratio for each path role (does not affect brims and skirts) will be multiplied by this value." +"For the first layer, the actual flow ratio for each path role (does not " +"affect brims and skirts) will be multiplied by this value." msgstr "" +"Šis koeficientas turi įtakos pirmojo sluoksnio medžiagos kiekiui šioje " +"skiltyje išvardytoms ekstruzijos trajektorijoms.\n" +"\n" +"Pirmiajam sluoksniui faktinis kiekvienos trajektorijos paskirties srauto " +"koeficientas (tai neturi įtakos kraštams ir apvadams – brims/skirts) bus " +"padaugintas iš šios reikšmės." msgid "Outer wall flow ratio" -msgstr "" +msgstr "Išorinės sienelės srauto koeficientas" msgid "" "This factor affects the amount of material for outer walls.\n" "\n" -"The actual outer wall flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual outer wall flow used is calculated by multiplying this value by " +"the filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos išorinių sienelių medžiagos kiekiui.\n" +"\n" +"Faktinis išorinės sienelės srautas apskaičiuojamas padauginus šią reikšmę iš " +"gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Inner wall flow ratio" -msgstr "" +msgstr "Vidinės sienelės srauto koeficientas" msgid "" "This factor affects the amount of material for inner walls.\n" "\n" -"The actual inner wall flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual inner wall flow used is calculated by multiplying this value by " +"the filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos vidinių sienelių medžiagos kiekiui.\n" +"\n" +"Faktinis vidinės sienelės srautas apskaičiuojamas padauginus šią reikšmę iš " +"gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Overhang flow ratio" -msgstr "" +msgstr "Iškyšų srauto koeficientas" msgid "" "This factor affects the amount of material for overhangs.\n" "\n" -"The actual overhang flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual overhang flow used is calculated by multiplying this value by the " +"filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos iškyšų (overhangs) medžiagos kiekiui.\n" +"\n" +"Faktinis iškyšų srautas apskaičiuojamas padauginus šią reikšmę iš gijos " +"srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Sparse infill flow ratio" -msgstr "" +msgstr "Retojo užpildo srauto koeficientas" msgid "" "This factor affects the amount of material for sparse infill.\n" "\n" -"The actual sparse infill flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual sparse infill flow used is calculated by multiplying this value " +"by the filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos retojo užpildo (sparse infill) medžiagos " +"kiekiui.\n" +"\n" +"Faktinis retojo užpildo srautas apskaičiuojamas padauginus šią reikšmę iš " +"gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Internal solid infill flow ratio" -msgstr "" +msgstr "Vidinio vientiso užpildo srauto koeficientas" msgid "" "This factor affects the amount of material for internal solid infill.\n" "\n" -"The actual internal solid infill flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual internal solid infill flow used is calculated by multiplying this " +"value by the filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos vidinio vientiso užpildo (internal solid " +"infill) medžiagos kiekiui.\n" +"\n" +"Faktinis vidinio vientiso užpildo srautas apskaičiuojamas padauginus šią " +"reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis " +"nustatytas)." msgid "Gap fill flow ratio" -msgstr "" +msgstr "Tarpų užpildymo srauto koeficientas" msgid "" "This factor affects the amount of material for filling the gaps.\n" "\n" -"The actual gap filling flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual gap filling flow used is calculated by multiplying this value by " +"the filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos tarpų užpildymo (gap fill) medžiagos kiekiui.\n" +"\n" +"Faktinis tarpų užpildymo srautas apskaičiuojamas padauginus šią reikšmę iš " +"gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Support flow ratio" -msgstr "" +msgstr "Atramų srauto koeficientas" msgid "" "This factor affects the amount of material for support.\n" "\n" -"The actual support flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual support flow used is calculated by multiplying this value by the " +"filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos atramų (support) medžiagos kiekiui.\n" +"\n" +"Faktinis atramų srautas apskaičiuojamas padauginus šią reikšmę iš gijos " +"srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Support interface flow ratio" -msgstr "" +msgstr "Atramų sąsajos srauto koeficientas" msgid "" "This factor affects the amount of material for the support interface.\n" "\n" -"The actual support interface flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio." +"The actual support interface flow used is calculated by multiplying this " +"value by the filament flow ratio, and if set, the object's flow ratio." msgstr "" +"Šis koeficientas turi įtakos atramų sąsajos (support interface) medžiagos " +"kiekiui.\n" +"\n" +"Faktinis atramų sąsajos srautas apskaičiuojamas padauginus šią reikšmę iš " +"gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Precise wall" -msgstr "Tiksli siena" +msgstr "Tiksli sienelė" -msgid "Improve shell precision by adjusting outer wall spacing. This also improves layer consistency. NOTE: This option will be ignored for outer-inner or inner-outer-inner wall sequences." -msgstr "Pagerinkite apvalkalo tikslumą, reguliuodami išorinės sienos tarpą. Tai taip pat pagerina sluoksnių nuoseklumą. PASTABA: Ši parinktis bus ignoruojama išorinės-vidinės arba vidinės-išorinės-vidinės sienos sekose." +msgid "" +"Improve shell precision by adjusting outer wall spacing. This also improves " +"layer consistency. NOTE: This option will be ignored for outer-inner or " +"inner-outer-inner wall sequences." +msgstr "" +"Pagerina korpuso tikslumą koreguojant išorinių sienelių atstumus. Tai taip " +"pat padidina sluoksnių nuoseklumą. PASTABA: ši parinktis bus ignoruojama, " +"jei naudojamos „išorinė–vidinė“ arba „vidinė–išorinė–vidinė“ sienelių " +"spausdinimo sekos." msgid "Only one wall on top surfaces" -msgstr "Tik viena viršutinių paviršių siena" +msgstr "Tik viena sienelė viršutiniuose paviršiuose" -msgid "Use only one wall on flat top surfaces, to give more space to the top infill pattern." -msgstr "Ant lygaus viršutinio paviršiaus naudokite tik vieną sienelę, kad būtų daugiau vietos viršutiniam užpildymo raštui." +msgid "" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." +msgstr "" +"Naudoti tik vieną sienelę plokščiuose viršutiniuose paviršiuose, taip " +"paliekant daugiau vietos viršutinio užpildo raštui." msgid "One wall threshold" -msgstr "Vienos sienos riba" +msgstr "Vienos sienelės slenkstis" #, no-c-format, no-boost-format msgid "" -"If a top surface has to be printed and it's partially covered by another layer, it won't be considered at a top layer where its width is below this value. This can be useful to not let the 'one perimeter on top' trigger on surface that should be covered only by perimeters. This value can be a mm or a % of the perimeter extrusion width.\n" -"Warning: If enabled, artifacts can be created if you have some thin features on the next layer, like letters. Set this setting to 0 to remove these artifacts." +"If a top surface has to be printed and it's partially covered by another " +"layer, it won't be considered at a top layer where its width is below this " +"value. This can be useful to not let the 'one perimeter on top' trigger on " +"surface that should be covered only by perimeters. This value can be a mm or " +"a % of the perimeter extrusion width.\n" +"Warning: If enabled, artifacts can be created if you have some thin features " +"on the next layer, like letters. Set this setting to 0 to remove these " +"artifacts." msgstr "" -"Jei viršutinį paviršių reikia atspausdinti ir jį iš dalies dengia kitas sluoksnis, jis nebus laikomas viršutiniu sluoksniu, jei jo plotis yra mažesnis už šią reikšmę. Tai gali būti naudinga norint, kad nebūtų įjungta funkcija \"vienas perimetras viršuje\" ant paviršiaus, kurį turėtų dengti tik perimetrai. Ši vertė gali būti mm arba % perimetro išspaudimo pločio.\n" -"Įspėjimas: Jei ši funkcija įjungta, gali atsirasti artefaktų, jei kitame sluoksnyje yra plonų elementų, pavyzdžiui, raidžių. Nustatykite šią nuostatą į 0, kad šie artefaktai būtų pašalinti." +"Jei spausdinamas viršutinis paviršius yra iš dalies uždengiamas kito " +"sluoksnio, jis nebus laikomas viršutiniu sluoksniu tose vietose, kur jo " +"plotis yra mažesnis už šią reikšmę. Tai naudinga, kad funkcija „tik viena " +"sienelė viršuje“ nesuveiktų srityse, kurias turėtų sudaryti tik perimetrai. " +"Ši reikšmė gali būti nurodoma milimetrais (mm) arba perimetro ekstruzijos " +"pločio procentais (%).\n" +"Įspėjimas: įjungus šį nustatymą, kitame sluoksnyje esantys smulkūs elementai " +"(pvz., raidės) gali sukurti paviršiaus defektų (artefaktų). Norėdami to " +"išvengti, nustatykite reikšmę 0." msgid "Only one wall on first layer" -msgstr "Tik viena pirmojo sluoksnio siena" +msgstr "Tik viena sienelė pirmajame sluoksnyje" -msgid "Use only one wall on first layer, to give more space to the bottom infill pattern." -msgstr "Pirmajame sluoksnyje naudokite tik vieną sienelę, kad būtų daugiau vietos apatiniam užpildymo raštui." +msgid "" +"Use only one wall on first layer, to give more space to the bottom infill " +"pattern." +msgstr "" +"Naudoti tik vieną sienelę pirmajame sluoksnyje, taip paliekant daugiau " +"vietos apatinio užpildo raštui." msgid "Extra perimeters on overhangs" msgstr "Papildomi iškyšų perimetrai" -msgid "Create additional perimeter paths over steep overhangs and areas where bridges cannot be anchored." -msgstr "Sukurti papildomus perimetrinius takus per stačias iškyšas ir vietas, kuriose negalima įtvirtinti tiltų." +msgid "" +"Create additional perimeter paths over steep overhangs and areas where " +"bridges cannot be anchored." +msgstr "" +"Sukurti papildomas perimetrų trajektorijas ties stačiomis iškyšomis ir " +"vietose, kur neįmanoma įtvirtinti tiltelių." msgid "Reverse on even" -msgstr "Atvirkštinis judėjimas lyginis" +msgstr "Keisti kryptį lyginiuose sluoksniuose" msgid "Overhang reversal" msgstr "Iškyšos apvertimas" msgid "" -"Extrude perimeters that have a part over an overhang in the reverse direction on even layers. This alternating pattern can drastically improve steep overhangs.\n" +"Extrude perimeters that have a part over an overhang in the reverse " +"direction on even layers. This alternating pattern can drastically improve " +"steep overhangs.\n" "\n" -"This setting can also help reduce part warping due to the reduction of stresses in the part walls." +"This setting can also help reduce part warping due to the reduction of " +"stresses in the part walls." msgstr "" -"Perimetrus, kurių dalis yra virš iškyšos, ekstruzijuokite atvirkštine kryptimi lygiuose sluoksniuose. Šis kaitaliojamasis modelis gali smarkiai pagerinti stačias iškyšas.\n" +"Lyginiuose sluoksniuose ekstruduoti perimetrus (arba jų dalis, esančias virš " +"iškyšos) priešinga kryptimi. Šis kintamos krypties raštas gali drastiškai " +"pagerinti stačių iškyšų kokybę.\n" "\n" -"Šis nustatymas taip pat gali padėti sumažinti detalės deformaciją dėl sumažėjusių įtempių detalės sienelėse." +"Šis nustatymas taip pat padeda sumažinti modelio deformacijas (warping), nes " +"sumažina įtempius sienelėse." msgid "Reverse only internal perimeters" -msgstr "Atvirkštinis tik vidinis perimetras" +msgstr "Keisti kryptį tik vidiniuose perimetruose" msgid "" "Apply the reverse perimeters logic only on internal perimeters.\n" "\n" -"This setting greatly reduces part stresses as they are now distributed in alternating directions. This should reduce part warping while also maintaining external wall quality. This feature can be very useful for warp prone material, like ABS/ASA, and also for elastic filaments, like TPU and Silk PLA. It can also help reduce warping on floating regions over supports.\n" +"This setting greatly reduces part stresses as they are now distributed in " +"alternating directions. This should reduce part warping while also " +"maintaining external wall quality. This feature can be very useful for warp " +"prone material, like ABS/ASA, and also for elastic filaments, like TPU and " +"Silk PLA. It can also help reduce warping on floating regions over " +"supports.\n" "\n" -"For this setting to be the most effective, it is recommended to set the Reverse Threshold to 0 so that all internal walls print in alternating directions on even layers irrespective of their overhang degree." +"For this setting to be the most effective, it is recommended to set the " +"Reverse Threshold to 0 so that all internal walls print in alternating " +"directions on even layers irrespective of their overhang degree." msgstr "" -"Atvirkštinių perimetrų logiką taikykite tik vidiniams perimetrams.\n" +"Taikyti priešingos krypties perimetrų logiką tik vidiniams perimetrams.\n" +"Šis nustatymas stipriai sumažina modelio vidinius įtempius, nes jie " +"paskirstomi pakaitomis keičiamomis kryptimis. Tai sumažina modelio " +"deformacijas (warping), kartu išlaikant aukštą išorinių sienelių kokybę. Ši " +"funkcija labai naudinga medžiagoms, linkusioms trauktis (pvz., ABS/ASA), " +"taip pat elastingoms gijoms (pvz., TPU ar „Silk PLA“). Ji taip pat padeda " +"išvengti deformacijų kabančiose srityse virš atramų.\n" "\n" -"Šis nustatymas labai sumažina detalių įtempius, nes dabar jie pasiskirsto pakaitinėmis kryptimis. Tai turėtų sumažinti detalės deformacijas, kartu išlaikant išorinių sienelių kokybę. Ši funkcija gali būti labai naudinga į deformacijas linkusioms medžiagoms, pavyzdžiui, ABS/ASA, taip pat elastingoms gijoms, pavyzdžiui, TPU ir šilko PLA. Ji taip pat gali padėti sumažinti plūduriuojančių sričių virš atramų deformacijas.\n" -"\n" -"Kad šis nustatymas būtų veiksmingiausias, rekomenduojama nustatyti atvirkštinio slenksčio reikšmę 0, kad visos vidinės sienelės būtų spausdinamos pakaitinėmis kryptimis lygiuose sluoksniuose, neatsižvelgiant į jų išsikišimo laipsnį." +"Kad nustatymas būtų kuo efektyvesnis, rekomenduojama „Atvirkštinį slenkstį“ " +"nustatyti į 0 – tuomet visos vidinės sienelės lyginiuose sluoksniuose bus " +"spausdinamos pakaitinėmis kryptimis, nepriklausomai nuo iškyšos kampo." msgid "Bridge counterbore holes" -msgstr "Tilto priešpriešinės skylės" +msgstr "Tiltelių formavimas gilinamoms (counterbore) skylėms" msgid "" -"This option creates bridges for counterbore holes, allowing them to be printed without support. Available modes include:\n" +"This option creates bridges for counterbore holes, allowing them to be " +"printed without support. Available modes include:\n" "1. None: No bridge is created\n" "2. Partially Bridged: Only a part of the unsupported area will be bridged\n" "3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" -"Šia parinktimi sukuriami tilteliai priešpriešinėms skylėms, todėl jas galima spausdinti be atramos. Galimi šie režimai:\n" -"1. Nėra: Nesukuriamas joks tiltelis.\n" -"2. Iš dalies sujungtas tiltas: Tik dalis nepalaikomos srities bus sujungta tiltu.\n" -"3. Apsauginis sluoksnis: Sukuriamas visas paviršinis tilto sluoksnis" +"Ši parinktis suformuoja tiltelius gilinamoms skylėms (counterbore), todėl " +"jas galima kokybiškai atspausdinti be atramų. Galimi režimai:\n" +"1. Nėra: tiltelis nekuriamas.\n" +"2. Iš dalies suformuotas tiltelis: tilteliu užpildoma tik dalis nepalaikomos " +"srities.\n" +"3. Paaukojamas sluoksnis (Sacrificial Layer): sukuriamas pilnas, vėliau " +"pašalinamas tilto sluoksnis." msgid "Partially bridged" msgstr "Iš dalies sujungtas tiltu" msgid "Sacrificial layer" -msgstr "Apsauginis sluoksnis" +msgstr "Paaukojamas sluoksnis" msgid "Reverse threshold" msgstr "Atvirkštinis slenkstis" @@ -11871,42 +14057,91 @@ msgstr "Iškyšos apvertimo slenkstis" #, no-c-format, no-boost-format msgid "" -"Number of mm the overhang need to be for the reversal to be considered useful. Can be a % of the perimeter width.\n" +"Number of mm the overhang need to be for the reversal to be considered " +"useful. Can be a % of the perimeter width.\n" "Value 0 enables reversal on every even layers regardless.\n" -"When Detect overhang wall is not enabled, this option is ignored and reversal happens on every even layers regardless." +"When Detect overhang wall is not enabled, this option is ignored and " +"reversal happens on every even layers regardless." msgstr "" -"Kiek mm turi būti iškyša, kad būtų galima laikyti, jog apvertimas yra naudingas. Gali būti perimetro pločio %.\n" -"Reikšmė 0 įjungia apvertimą kiekviename lyginiame sluoksnyje nepriklausomai.\n" -"Kai aptikti iškyšos sienelę neįjungta, ši parinktis ignoruojama ir apvertimas atliekamas nepriklausomai nuo kiekvieno lyginio sluoksnio." +"Iškyšos dydis milimetrais (mm), nuo kurio krypties keitimas laikomas " +"naudingu. Gali būti nurodomas ir perimetro pločio procentais (%).\n" +"Reikšmė 0 įjungia krypties keitimą visuose lyginiuose sluoksniuose be " +"išimties.\n" +"Jei funkcija „Aptikti iškyšų sieneles“ (Detect overhang wall) išjungta, šis " +"nustatymas ignoruojamas ir kryptis keičiama kiekviename lyginiame sluoksnyje." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Slow down for overhangs" +msgid "Slow down for overhang" msgstr "Sulėtinti greitį dėl iškyšų" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Enable this option to slow down when printing overhangs. The speeds for different overhang percentages are set below." -msgstr "Įjunkite šią parinktį, kad spausdinant iškyšas sulėtėtų spausdinimas." +msgid "Enable this option to slow printing down for different overhang degree." +msgstr "" +"Įjunkite šią parinktį, kad spausdinimo greitis būtų mažinamas proporcingai " +"pagal iškyšos pasvirimo laipsnį." msgid "Slow down for curled perimeters" -msgstr "Sulėtinti greitį, jei perimetras yra vingiuotas" +msgstr "Sulėtinti greitį riečiantis perimetrams" #, no-c-format, no-boost-format msgid "" -"Enable this option to slow down printing in areas where perimeters may have curled upwards.\n" -"For example, additional slowdown will be applied when printing overhangs on sharp corners like the front of the Benchy hull, reducing curling which compounds over multiple layers.\n" +"Enable this option to slow down printing in areas where perimeters may have " +"curled upwards.\n" +"For example, additional slowdown will be applied when printing overhangs on " +"sharp corners like the front of the Benchy hull, reducing curling which " +"compounds over multiple layers.\n" "\n" -"It is generally recommended to have this option switched on unless your printer cooling is powerful enough or the print speed is slow enough that perimeter curling does not happen. \n" -"If printing with a high external perimeter speed, this parameter may introduce wall artifacts when slowing down, due to the potentially large variance in print speeds causing the extruder to be unable to keep up with the requested flow change.\n" -"Root cause of these artifacts is most likely PA tuning being slightly off, especially when combined with a high PA smooth time.\n" +"It is generally recommended to have this option switched on unless your " +"printer cooling is powerful enough or the print speed is slow enough that " +"perimeter curling does not happen. \n" +"If printing with a high external perimeter speed, this parameter may " +"introduce wall artifacts when slowing down, due to the potentially large " +"variance in print speeds causing the extruder to be unable to keep up with " +"the requested flow change.\n" +"Root cause of these artifacts is most likely PA tuning being slightly off, " +"especially when combined with a high PA smooth time.\n" "\n" "Recommendations when enabling this option:\n" -"1. Reduce Pressure Advance smooth time to 0.015 - 0.02 so the extruder reacts quickly to the speed changes.\n" -"2. Increase the minimum print speeds to limit the magnitude of the slowdown and reduce the variance between fast and slow segments.\n" -"3. If artifacts still appear, enable Extrusion Rate Smoothing (ERS) to further smooth the flow transitions.\n" +"1. Reduce Pressure Advance smooth time to 0.015 - 0.02 so the extruder " +"reacts quickly to the speed changes.\n" +"2. Increase the minimum print speeds to limit the magnitude of the slowdown " +"and reduce the variance between fast and slow segments.\n" +"3. If artifacts still appear, enable Extrusion Rate Smoothing (ERS) to " +"further smooth the flow transitions.\n" "\n" -"Note: When this option is enabled, overhang perimeters are treated like overhangs, meaning the overhang speed is applied even if the overhanging perimeter is part of a bridge.\n" -"For example, when the perimeters are 100% overhanging, with no wall supporting them from underneath, the 100% overhang speed will be applied." +"Note: When this option is enabled, overhang perimeters are treated like " +"overhangs, meaning the overhang speed is applied even if the overhanging " +"perimeter is part of a bridge.\n" +"For example, when the perimeters are 100% overhanging, with no wall " +"supporting them from underneath, the 100% overhang speed will be applied." msgstr "" +"Įjunkite šią parinktį, kad sumažintumėte spausdinimo greitį vietose, kur " +"perimetrai linkę riestis į viršų.\n" +"Pavyzdžiui, papildomas sulėtinimas bus taikomas spausdinant iškyšas ties " +"aštriais kampais (kaip „Benchy“ laivelio priekis) – tai apsaugo nuo " +"sluoksnių rietimosi, kuris linkęs kauptis per kelis sluoksnius.\n" +"\n" +"Rekomenduojama visada laikyti šią parinktį įjungtą, nebent spausdintuvo " +"aušinimas yra itin galingas arba spausdinimo greitis toks mažas, kad " +"perimetrų rietimasis nevyksta.\n" +"Jei spausdinama dideliu išorinio perimetro greičiu, šis parametras lėtėjimo " +"metu gali sukelti sienelių artefaktų (defektų), nes dėl didelių greičio " +"šuolių ekstruderis gali nespėti sureguliuoti srauto pokyčio.\n" +"Pagrindinė tokių artefaktų priežastis dažniausiai yra netiksliai suderintas " +"„Pressure Advance“ (PA) parametras, ypač jei naudojama didelė „PA smooth " +"time“ reikšmė.\n" +"\n" +"Rekomendacijos įjungus šią parinktį:\n" +"1. Sumažinkite „Pressure Advance smooth time“ iki 0.015 - 0.02, kad " +"ekstruderis greitai reaguotų į greičio pokyčius.\n" +"2. Padidinkite minimalų spausdinimo greitį, kad apribotumėte sulėtėjimo " +"mastą ir sumažintumėte skirtumą tarp greitų bei lėtų segmentų.\n" +"3. Jei artefaktai išlieka, įjunkite „Ekstruzijos srauto glotninimą“ (ERS), " +"kad sušvelgintumėte srauto perėjimus.\n" +"\n" +"Pastaba: kai ši parinktis įjungta, išsikišę perimetrai yra traktuojami kaip " +"iškyšos, t. y. iškyšų greitis taikomas net ir tada, kai perimetras yra " +"tiltelio dalis.\n" +"Pavyzdžiui, kai perimetrai kyšo 100 % (apačioje nėra jokios palaikančios " +"sienelės), bus taikomas būtent 100 % iškyšos greitis." msgid "mm/s or %" msgstr "mm/s arba %" @@ -11914,363 +14149,523 @@ msgstr "mm/s arba %" msgid "" "Speed of the externally visible bridge extrusions.\n" "\n" -"In addition, if Slow down for curled perimeters is disabled or Classic overhang mode is enabled, it will be the print speed of overhang walls that are supported by less than 13%, whether they are part of a bridge or an overhang." +"In addition, if Slow down for curled perimeters is disabled or Classic " +"overhang mode is enabled, it will be the print speed of overhang walls that " +"are supported by less than 13%, whether they are part of a bridge or an " +"overhang." msgstr "" -"Išoriškai matomų tilto išspaudų greitis.\n" +"Išoriškai matomų tiltelio ekstruzijų greitis.\n" "\n" -"Be to, jei išjungta funkcija Lėtinimas lenktiems perimetrams arba įjungtas klasikinis iškyšų režimas, tai bus spausdinimo greitis iškyšų sienelėms, kurių atramos yra mažesnės nei 13 %, nepriklausomai nuo to, ar jos yra tilto, ar iškyšos dalis." +"Papildomai, jei funkcija „Sulėtinti greitį riesantis perimetrams“ yra " +"išjungta arba įjungtas „Klasikinis iškyšų režimas“, šis greitis bus taikomas " +"iškyšų sienelėms, kurių atrama yra mažesnė nei 13 % (nesvarbu, ar jos yra " +"tiltelio, ar iškyšos dalis)." msgid "Internal" msgstr "Vidinis" -msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%." -msgstr "Vidinių tiltų greitis. Jei reikšmė išreiškiama procentais, ji bus apskaičiuojama pagal bridge_speed. Numatytoji vertė yra 150 %." +msgid "" +"Speed of internal bridges. If the value is expressed as a percentage, it " +"will be calculated based on the bridge_speed. Default value is 150%." +msgstr "" +"Vidinių tiltelių spausdinimo greitis. Jei reikšmė nurodoma procentais, ji " +"apskaičiuojama pagal „bridge_speed“ (tiltelių greitį). Numatytoji reikšmė – " +"150 %." msgid "Brim width" -msgstr "Krašto plotis" +msgstr "Pado apvado plotis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the distance from the model to the outermost brim line." -msgstr "Atstumas nuo modelio iki išorinės krašto linijos." +msgid "Distance from model to the outermost brim line." +msgstr "Atstumas nuo modelio iki tolimiausios apvado linijos." msgid "Brim type" -msgstr "Krašto tipas" +msgstr "Apvado tipas" -msgid "This controls the generation of the brim at outer and/or inner side of models. Auto means the brim width is analyzed and calculated automatically." -msgstr "Taip reguliuojamas modelių išorinės ir (arba) vidinės pusės krašto formavimas. Automatinis reiškia, kad apvado plotis analizuojamas ir apskaičiuojamas automatiškai." +msgid "" +"This controls the generation of the brim at outer and/or inner side of " +"models. Auto means the brim width is analyzed and calculated automatically." +msgstr "" +"Valdo apvado generavimą modelio išorinėje ir (arba) vidinėje pusėje. „Auto“ " +"režimu apvado plotis išanalizuojamas ir apskaičiuojamas automatiškai." msgid "Brim-object gap" -msgstr "Tarpas tarp krašto ir objekto" +msgstr "Tarpas tarp apvado ir objekto" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This creates a gap between the innermost brim line and the object and can make the brim easier to remove." -msgstr "Sukuriamas tarpas tarp vidinės krašto linijos ir objekto, todėl galima lengviau jį atskirti." +msgid "" +"A gap between innermost brim line and object can make brim be removed more " +"easily." +msgstr "" +"Tarpas tarp artimiausios apvado linijos ir objekto leidžia lengviau " +"pašalinti apvadą po spausdinimo." msgid "Brim flow ratio" -msgstr "" +msgstr "Apvado srauto koeficientas" msgid "" "This factor affects the amount of material for brims.\n" "\n" -"The actual brim flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio.\n" +"The actual brim flow used is calculated by multiplying this value by the " +"filament flow ratio, and if set, the object's flow ratio.\n" "\n" "Note: The resulting value will not be affected by the first-layer flow ratio." msgstr "" +"Šis koeficientas turi įtakos pado apvadų medžiagos kiekiui.\n" +"\n" +"Faktinis apvado srautas apskaičiuojamas padauginus šią reikšmę iš gijos " +"srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas).\n" +"\n" +"Pastaba: gautai reikšmei pirmojo sluoksnio srauto koeficientas įtakos " +"neturės." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Brim follows compensated outline" -msgstr "Kraštas atitinka kompensuotą kontūrą" +msgstr "Apvadas atitinka kompensuotą kontūrą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"When enabled, the brim is aligned with the first-layer perimeter geometry after Elephant Foot Compensation is applied.\n" -"This option is intended for cases where Elephant Foot Compensation significantly alters the first-layer footprint.\n" +"When enabled, the brim is aligned with the first-layer perimeter geometry " +"after Elephant Foot Compensation is applied.\n" +"This option is intended for cases where Elephant Foot Compensation " +"significantly alters the first-layer footprint.\n" "\n" -"If your current setup already works well, enabling it may be unnecessary and can cause the brim to fuse with upper layers." +"If your current setup already works well, enabling it may be unnecessary and " +"can cause the brim to fuse with upper layers." msgstr "" -"Kai įjungta, kraštas yra sulygiuotas su pirmojo sluoksnio perimetro geometrija pritaikius dramblio pėdos kompensaciją.\n" -"Ši parinktis skirta tais atvejais, kai kompensuojama dramblio pėda žymiai pakeičia pirmojo sluoksnio pėdsaką.\n" +"Kai įjungta, apvadas sulygiuojamas su pirmojo sluoksnio perimetro geometrija " +"jau pritaikius „Dramblio pėdos kompensaciją“ (Elephant Foot Compensation).\n" "\n" -"Jei dabartinė sąranka jau veikia gerai, jos įjungti gali nebūti ir gali sukelti kraštas susiliejimą su viršutiniais sluoksniais." +"Ši parinktis skirta atvejams, kai dramblio pėdos kompensacija stipriai " +"keičia pirmojo sluoksnio kontūrus.\n" +"\n" +"Jei dabartinė sąranka veikia gerai, šios parinkties įjungti nebūtina, nes " +"apvadas gali per stipriai susilieti su aukštesniais sluoksniais." msgid "Combine brims" -msgstr "" +msgstr "Apjungti apvadus" -msgid "Combine multiple brims into one when they are close to each other. This can improve brim adhesion." +msgid "" +"Combine multiple brims into one when they are close to each other. This can " +"improve brim adhesion." msgstr "" +"Apjungia kelis arti vienas kito esančius apvadus į vieną. Tai gali pagerinti " +"apvado sukibimą su pagrindu." msgid "Brim ears" -msgstr "Krašto \"ausys\"" +msgstr "Apvado „ausys“ (Brim ears)" msgid "Only draw brim over the sharp edges of the model." -msgstr "Generuoti kraštą tik aplink aštrius modelio kraštus." +msgstr "Generuoti apvadą tik aplink aštrius modelio kampus (kraštus)." msgid "Brim ear max angle" -msgstr "Maksimalus krašto \"ausies \" kampas" +msgstr "Maksimalus apvado „ausies“ kampas" msgid "" "Maximum angle to let a brim ear appear.\n" "If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" -"Didžiausias kampas, kad atsirastų ausies kraštas.\n" -"Jei nustatyta 0, kraštas nebus sukurtas.\n" -"Jei nustatyta ~ 180, apvadas bus kuriamas visuose, išskyrus tiesias atkarpas." +"Maksimalus kampas, kuriam esant dar generuojama apvado „ausis“.\n" +"Nustačius 0, apvadas nebus kuriamas.\n" +"Nustačius ~180, apvadas bus kuriamas visur, išskyrus visiškai tiesias " +"atkarpas." msgid "Brim ear detection radius" -msgstr "Kraštų ausies aptikimo spindulys" +msgstr "Apvado „ausų“ aptikimo spindulys" msgid "" -"The geometry will be decimated before detecting sharp angles. This parameter indicates the minimum length of the deviation for the decimation.\n" +"The geometry will be decimated before detecting sharp angles. This parameter " +"indicates the minimum length of the deviation for the decimation.\n" "0 to deactivate." msgstr "" -"Prieš aptikdami aštrius kampus, geometrija bus išskaidyta. Šis parametras nurodo mažiausią nuokrypio ilgį decimavimui.\n" -"0 - išjungti." +"Prieš aptinkant aštrius kampus, geometrija yra supaprastinama (decimuojama). " +"Šis parametras nurodo minimalų nuokrypio ilgį supaprastinimui atlikti.\n" +"Įrašykite 0, kad išjungtumėte." msgid "Select printers" msgstr "Pasirinkite spausdintuvus" msgid "upward compatible machine" -msgstr "į viršų suderinamas įrenginys" +msgstr "atgaliniu būdu suderinamas įrenginys" msgid "Condition" msgstr "Sąlyga" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A Boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile." -msgstr "Loginė išraiška, kurioje naudojamos aktyvaus spausdintuvo profilio konfigūracijos vertės. Jei ši išraiška yra \"tiesa\", šis profilis laikomas suderinamu su aktyviu spausdintuvo profiliu." +msgid "" +"A boolean expression using the configuration values of an active printer " +"profile. If this expression evaluates to true, this profile is considered " +"compatible with the active printer profile." +msgstr "" +"Loginė išraiška, kurioje naudojamos aktyvaus spausdintuvo profilio " +"konfigūracijos vertės. Jei ši išraiška yra \"tiesa\", šis profilis laikomas " +"suderinamu su aktyviu spausdintuvo profiliu." msgid "Select profiles" -msgstr "Pasirinkite profilius" +msgstr "Pasirinkti profilius" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "A Boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile." -msgstr "Loginė išraiška, kurioje naudojamos aktyvaus spausdinimo profilio konfigūracijos reikšmės. Jei ši išraiška lygi „tiesa“, šis profilis laikomas suderinamu su aktyviuoju spausdinimo profiliu." +msgid "" +"A boolean expression using the configuration values of an active print " +"profile. If this expression evaluates to true, this profile is considered " +"compatible with the active print profile." +msgstr "" +"Loginė išraiška, naudojanti aktyvaus spausdinimo profilio konfigūracijos " +"reikšmes. Jei šios išraiškos rezultatas yra teigiamas (true), šis profilis " +"laikomas suderinamu su aktyviuoju spausdinimo profiliu." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This determines the print sequence, allowing you to print layer-by-layer or object-by-object." -msgstr "Spausdinimo seka, leidžianti spausdinti sluoksnį po sluoksnio arba objektą po objekto." +msgid "Print sequence, layer by layer or object by object." +msgstr "Spausdinimo seka: sluoksnis po sluoksnio arba objektas po objekto." msgid "By layer" -msgstr "Pagal sluoksnį" +msgstr "Sluoksnis po sluoksnio" msgid "By object" -msgstr "Pagal objektą" +msgstr "Objektas po objekto" msgid "Intra-layer order" -msgstr "Vidinė sluoksnių tvarka" +msgstr "Eiliškumas sluoksnio viduje" msgid "Print order within a single layer." -msgstr "Spausdinimo eiliškumas viename sluoksnyje." +msgstr "Elementų spausdinimo eiliškumas vieno sluoksnio ribose." msgid "As object list" msgstr "Kaip objektų sąrašas" msgid "Slow printing down for better layer cooling" -msgstr "Sulėtinti spausdinimą, kad geriau būtų aušinami sluoksniai" +msgstr "Sulėtinti spausdinimą geresniam sluoksnių aušinimui" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details." -msgstr "Įjunkite šią parinktį, jei norite sulėtinti spausdinimo greitį, kad galutinė sluoksnio trukmė nebūtų trumpesnė už maksimalaus ventiliatoriaus greičio slenkstičio nustatytą sluoksnio trukmės ribą, kad sluoksnį būtų galima aušinti ilgiau. Tai gali pagerinti smulkių detalių kokybę." +msgid "" +"Enable this option to slow printing speed down to make the final layer time " +"not shorter than the layer time threshold in \"Max fan speed threshold\", so " +"that layer can be cooled for longer time. This can improve the cooling " +"quality for needle and small details." +msgstr "" +"Įjunkite šią parinktį, kad sumažintumėte spausdinimo greitį, užtikrinant, " +"jog sluoksnio spausdinimo laikas nebūtų trumpesnis už ribą, nurodytą " +"nustatyme „Maksimalaus ventiliatoriaus greičio slenkstis“. Taip sluoksnis " +"aušinamas ilgiau, o tai pastebimai pagerina smailių viršūnių bei smulkių " +"elementų spausdinimo kokybę." msgid "Normal printing" msgstr "Įprastas spausdinimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the default acceleration for both normal printing and travel after the first layer." -msgstr "Tai numatytasis pagreitis tiek įprastam spausdinimui, tiek judėjimui po pirmojo sluoksnio." - -msgid "Acceleration of travel moves." -msgstr "Judėjimo judesių pagreitis." - -msgid "First layer travel" -msgstr "" - msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." +"The default acceleration of both normal printing and travel except initial " +"layer." msgstr "" - -msgid "mm/s² or %" -msgstr "mm/s² arba %" - -msgid "Acceleration of bridges. If the value is expressed as a percentage (e.g. 50%), it will be calculated based on the outer wall acceleration." -msgstr "Tiltų pagreitis. Jei reikšmė išreikšta procentais (pvz., 50 %), ji bus apskaičiuota pagal išorinės sienos pagreitį." +"Numatytasis pagreitis tiek spausdinimo, tiek tuščiosios eigos (travel) " +"judesiams, išskyrus pirmąjį sluoksnį." msgid "Default filament profile" -msgstr "Numatytasis gijų profilis" +msgstr "Numatytasis gijos profilis" msgid "Default filament profile when switching to this machine profile." -msgstr "Numatytasis gijos profilis, kai pereinama prie šio įrenginio profilio." +msgstr "" +"Numatytasis gijos profilis, automatiškai pasirenkamas perjungus šį " +"spausdintuvo profilį." msgid "Default process profile" msgstr "Numatytasis proceso profilis" msgid "Default process profile when switching to this machine profile." -msgstr "Numatytasis proceso profilis, kai pereinama prie šio įrenginio profilio." +msgstr "" +"Numatytasis proceso profilis, automatiškai pasirenkamas perjungus šį " +"spausdintuvo profilį." msgid "Activate air filtration" msgstr "Įjungti oro filtravimą" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" -msgstr "Suaktyvinkite, kad geriau filtruotumėte orą. G-kodo komanda: M106 P3 S(0-255)" - -msgid "Enable this to override the fan speed set in custom G-code during print." msgstr "" +"Įjungti efektyvesniam oro filtravimui. G-kodo komanda: M106 P3 S(0-255)" + +msgid "" +"Enable this to override the fan speed set in custom G-code during print." +msgstr "" +"Įjunkite, kad spausdinimo metu nepaisytumėte ventiliatoriaus greičio, " +"nurodyto pasirinktiniame G-kode." msgid "On completion" -msgstr "" +msgstr "Baigus spausdinti" -msgid "Enable this to override the fan speed set in custom G-code after print completion." +msgid "" +"Enable this to override the fan speed set in custom G-code after print " +"completion." msgstr "" +"Įjunkite, kad baigus spausdinti nepaisytumėte ventiliatoriaus greičio, " +"nurodyto pasirinktiniame G-kode." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Speed of exhaust fan during printing. This speed will override the speed in filament custom G-code." -msgstr "Ištraukimo ventiliatoriaus greitis spausdinimo metu. Šis greitis bus viršesnis už greitį, nurodytą gijos pasirinktiniame G-kodo." +msgid "" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." +msgstr "" +"Ištraukimo (išmetimo) ventiliatoriaus greitis spausdinimo metu. Šis " +"nustatymas yra viršesnis už greitį, nurodytą gijos pasirinktiniame G-kode." msgid "Speed of exhaust fan after printing completes." -msgstr "Ištraukimo ventiliatoriaus greitis baigus spausdinti." +msgstr "Ištraukimo (išmetimo) ventiliatoriaus greitis baigus spausdinti." msgid "No cooling for the first" -msgstr "Nėra aušinimo pirmiesiems" +msgstr "Neaušinti pirmųjų" -msgid "Turn off all cooling fans for the first few layers. This can be used to improve build plate adhesion." -msgstr "Pirmiesiems sluoksniams išjungti visus aušinimo ventiliatorius. Tai gali būti naudojama siekiant pagerinti sluoksnio sukibimą." +msgid "" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." +msgstr "" +"Išjungti visus aušinimo ventiliatorius pirmuosiuose keliuose sluoksniuose. " +"Tai naudojama siekiant pagerinti modelio sukibimą su pagrindu." msgid "Don't support bridges" -msgstr "Nekurti atramų tiltams" +msgstr "Nekurti atramų tilteliams" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This disables supporting bridges, which decreases the amount of support required. Bridges can usually be printed directly without support over a reasonable distance." -msgstr "Taip išjungiami atraminiai tilteliai, todėl sumažėja reikalingų atramų kiekis. Tiltus paprastai galima spausdinti tiesiogiai be atramų priimtinu atstumu." +msgid "" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." +msgstr "" +"Nekurti atramų po ištisomis tiltelių sritimis, dėl kurių atramų struktūros " +"tampa labai didelės. Jei tilteliai nėra itin ilgi, jie paprastai gali būti " +"sėkmingai atspausdinami tiesiai ore be jokių atramų." msgid "Thick external bridges" -msgstr "Stori vidiniai tiltai" +msgstr "Stori išoriniai tilteliai" msgid "" -"If enabled, bridge extrusion uses a line height equal to the nozzle diameter.\n" -"This increases bridge strength and reliability, allowing longer spans, but may worsen appearance.\n" -"If disabled, bridges may look better but are generally reliable only for shorter spans." +"If enabled, bridge extrusion uses a line height equal to the nozzle " +"diameter.\n" +"This increases bridge strength and reliability, allowing longer spans, but " +"may worsen appearance.\n" +"If disabled, bridges may look better but are generally reliable only for " +"shorter spans." msgstr "" +"Jei įjungta, tiltelių ekstruzijai naudojamas sluoksnio aukštis, lygus " +"purkštuko skersmeniui.\n" +"Tai padidina tiltelių tvirtumą bei patikimumą ir leidžia atspausdinti " +"ilgesnius tarpsnius ore, tačiau gali nukentėti išvaizda.\n" +"Jei išjungta, tilteliai gali atrodyti estetiškiau, tačiau patikimai " +"spausdinami tik trumpesni tarpsniai." msgid "Thick internal bridges" -msgstr "Stori vidiniai tiltai" +msgstr "Stori vidiniai tilteliai" msgid "" -"If enabled, internal bridge extrusion uses a line height equal to the nozzle diameter.\n" -"This increases internal bridge strength and reliability when printed over sparse infill, but may worsen appearance.\n" -"If disabled, internal bridges may look better but can be less reliable over sparse infill." +"If enabled, internal bridge extrusion uses a line height equal to the nozzle " +"diameter.\n" +"This increases internal bridge strength and reliability when printed over " +"sparse infill, but may worsen appearance.\n" +"If disabled, internal bridges may look better but can be less reliable over " +"sparse infill." msgstr "" +"Jei įjungta, vidinių tiltelių ekstruzijai naudojamas sluoksnio aukštis, " +"lygus purkštuko skersmeniui.\n" +"Tai padidina vidinių tiltelių tvirtumą ir patikimumą, kai jie spausdinami " +"virš retojo užpildo, tačiau gali pabloginti išvaizdą.\n" +"Jei išjungta, vidiniai tilteliai gali atrodyti geriau, tačiau spausdinant " +"virš retojo užpildo jie gali būti mažiau patikimi." msgid "Extra bridge layers (beta)" -msgstr "Papildomi tilto sluoksniai (beta)" +msgstr "Papildomi tiltelių sluoksniai (beta)" msgid "" -"This option enables the generation of an extra bridge layer over internal and/or external bridges.\n" +"This option enables the generation of an extra bridge layer over internal " +"and/or external bridges.\n" "\n" -"Extra bridge layers help improve bridge appearance and reliability, as the solid infill is better supported. This is especially useful in fast printers, where the bridge and solid infill speeds vary greatly. The extra bridge layer results in reduced pillowing on top surfaces, as well as reduced separation of the external bridge layer from its surrounding perimeters.\n" +"Extra bridge layers help improve bridge appearance and reliability, as the " +"solid infill is better supported. This is especially useful in fast " +"printers, where the bridge and solid infill speeds vary greatly. The extra " +"bridge layer results in reduced pillowing on top surfaces, as well as " +"reduced separation of the external bridge layer from its surrounding " +"perimeters.\n" "\n" -"It is generally recommended to set this to at least 'External bridge only', unless specific issues with the sliced model are found.\n" +"It is generally recommended to set this to at least 'External bridge only', " +"unless specific issues with the sliced model are found.\n" "\n" "Options:\n" -"1. Disabled - does not generate second bridge layers. This is the default and is set for compatibility purposes\n" -"2. External bridge only - generates second bridge layers for external-facing bridges only. Please note that small bridges that are shorter or narrower than the set number of perimeters will be skipped as they would not benefit from a second bridge layer. If generated, the second bridge layer will be extruded parallel to the first bridge layer to reinforce the bridge strength\n" -"3. Internal bridge only - generates second bridge layers for internal bridges over sparse infill only. Please note that the internal bridges count towards the top shell layer count of your model. The second internal bridge layer will be extruded as close to perpendicular to the first as possible. If multiple regions in the same island, with varying bridge angles are present, the last region of that island will be selected as the angle reference\n" -"4. Apply to all - generates second bridge layers for both internal and external-facing bridges\n" +"1. Disabled - does not generate second bridge layers. This is the default " +"and is set for compatibility purposes\n" +"2. External bridge only - generates second bridge layers for external-facing " +"bridges only. Please note that small bridges that are shorter or narrower " +"than the set number of perimeters will be skipped as they would not benefit " +"from a second bridge layer. If generated, the second bridge layer will be " +"extruded parallel to the first bridge layer to reinforce the bridge " +"strength\n" +"3. Internal bridge only - generates second bridge layers for internal " +"bridges over sparse infill only. Please note that the internal bridges count " +"towards the top shell layer count of your model. The second internal bridge " +"layer will be extruded as close to perpendicular to the first as possible. " +"If multiple regions in the same island, with varying bridge angles are " +"present, the last region of that island will be selected as the angle " +"reference\n" +"4. Apply to all - generates second bridge layers for both internal and " +"external-facing bridges\n" msgstr "" -"Ši parinktis leidžia sukurti papildomą tilto sluoksnį virš vidinių ir (arba) išorinių tiltų.\n" +"Ši parinktis leidžia sugeneruoti papildomą tiltelio sluoksnį virš vidinių ir " +"(arba) išorinių tiltelių.\n" "\n" -"Papildomi tiltų sluoksniai padeda pagerinti tiltų išvaizdą ir patikimumą, nes kietasis užpildas geriau atremiamas. Tai ypač naudinga greituosiuose spausdintuvuose, kuriuose tilto ir kietojo užpildo greitis labai skiriasi. Dėl papildomo tiltelio sluoksnio sumažėja viršutinių paviršių pagalvėlių, taip pat sumažėja išorinio tiltelio sluoksnio atsiskyrimas nuo jį supančių perimetrų.\n" +"Papildomi tiltelių sluoksniai pagerina jų išvaizdą bei patikimumą, nes " +"tvirtas užpildas (solid infill) gauna geresnį pagrindą. Tai ypač aktualu " +"greitaeigiams spausdintuvams, kur tiltelių ir tvirto užpildo spausdinimo " +"greičiai stipriai skiriasi. Papildomas tiltelio sluoksnis sumažina " +"viršutinių paviršių išsipūtimą (pillowing) bei išorinio tiltelio sluoksnio " +"atsiskyrimą nuo jį supančių perimetrų.\n" "\n" -"Paprastai rekomenduojama nustatyti bent jau „External bridge only“ (tik išorinis tiltelis), nebent būtų nustatyta specifinių problemų, susijusių su supjaustytu modeliu.\n" +"Rekomenduojama pasirinkti bent „Tik išorinis tiltelis“, nebent supjaustytame " +"(sliced) modelyje pastebimos specifinės klaidos.\n" "\n" "Parinktys:\n" -"1. Išjungta - negeneruojami antrojo tilto sluoksniai. Tai numatytasis nustatymas, kuris nustatytas suderinamumo tikslais.\n" -"2. Tik išorinis tiltas - generuoja antrojo tilto sluoksnius tik į išorę orientuotiems tiltams. Atkreipkite dėmesį, kad maži tiltai, kurie yra trumpesni arba siauresni už nustatytą perimetrų skaičių, bus praleisti, nes jiems antrasis tilto sluoksnis nebus naudingas. Jei sugeneruojamas, antrasis tilto sluoksnis bus išspaustas lygiagrečiai pirmajam tilto sluoksniui, kad būtų sustiprintas tilto tvirtumas.\n" -"3. Tik vidinis tiltas - generuojami antrieji tilto sluoksniai, skirti tik vidiniams tiltams virš reto užpildo. Atkreipkite dėmesį, kad vidiniai tiltai įskaičiuojami į modelio viršutinio apvalkalo sluoksnių skaičių. Antrasis vidinio tilto sluoksnis bus išspaustas kuo arčiau statmenai pirmajam. Jei toje pačioje saloje yra keli regionai su skirtingais tiltelių kampais, kaip atskaitos kampas bus pasirinktas paskutinis tos salos regionas.\n" -"4. Taikyti visiems - sukuriami antrieji tiltų sluoksniai, skirti tiek į vidiniams, tiek į išoriniams tiltams.\n" +"1. Išjungta – antrasis tiltelio sluoksnis negeneruojamas. Tai numatytasis " +"nustatymas, naudojamas suderinamumui palaikyti.\n" +"2. Tik išorinis tiltelis – antrasis sluoksnis generuojamas tik išorėje " +"matomiems tilteliams. Maži tilteliai, kurie yra trumpesni arba siauresni už " +"nustatytą perimetrų skaičių, bus praleidžiami, nes jiems antrasis sluoksnis " +"neduotų naudos. Jei generuojama, antrasis tiltelio sluoksnis ekstruduojamas " +"lygiagrečiai pirmajam, taip sustiprinant konstrukciją.\n" +"3. Tik vidinis tiltelis – antrasis sluoksnis generuojamas tik vidiniams " +"tilteliams virš retojo užpildo. Atminkite, kad vidiniai tilteliai " +"įskaičiuojami į bendrą modelio viršutinio sluoksnio (top shell) skaičių. " +"Antrasis vidinis tiltelio sluoksnis ekstruduojamas kuo statmeniau pirmajam. " +"Jei toje pačioje „saloje“ yra kelios sritys su skirtingais tiltelių kampais, " +"kampo atskaita taps paskutinė tos salos sritis.\n" +"4. Taikyti visiems – antrasis tiltelio sluoksnis generuojamas tiek " +"vidiniams, tiek išorėje matomiems tilteliams.\n" msgid "External bridge only" -msgstr "Tik išorinis tiltas" +msgstr "Tik išorinis tiltelis" msgid "Internal bridge only" -msgstr "Tik vidinis tiltas" +msgstr "Tik vidinis tiltelis" msgid "Apply to all" msgstr "Taikyti visiems" msgid "Filter out small internal bridges" -msgstr "Filtruoti mažus vidinius tiltus" +msgstr "Atfiltruoti mažus vidinius tilteliu" msgid "" -"This option can help reduce pillowing on top surfaces in heavily slanted or curved models.\n" -"By default, small internal bridges are filtered out and the internal solid infill is printed directly over the sparse infill. This works well in most cases, speeding up printing without too much compromise on top surface quality.\n" -"However, in heavily slanted or curved models, especially where too low a sparse infill density is used, this may result in curling of the unsupported solid infill, causing pillowing.\n" -"Enabling limited filtering or no filtering will print internal bridge layer over slightly unsupported internal solid infill. The options below control the sensitivity of the filtering, i.e. they control where internal bridges are created:\n" -"1. Filter - enables this option. This is the default behavior and works well in most cases\n" -"2. Limited filtering - creates internal bridges on heavily slanted surfaces while avoiding unnecessary bridges. This works well for most difficult models\n" -"3. No filtering - creates internal bridges on every potential internal overhang. This option is useful for heavily slanted top surface models; however, in most cases, it creates too many unnecessary bridges." +"This option can help reduce pillowing on top surfaces in heavily slanted or " +"curved models.\n" +"By default, small internal bridges are filtered out and the internal solid " +"infill is printed directly over the sparse infill. This works well in most " +"cases, speeding up printing without too much compromise on top surface " +"quality.\n" +"However, in heavily slanted or curved models, especially where too low a " +"sparse infill density is used, this may result in curling of the unsupported " +"solid infill, causing pillowing.\n" +"Enabling limited filtering or no filtering will print internal bridge layer " +"over slightly unsupported internal solid infill. The options below control " +"the sensitivity of the filtering, i.e. they control where internal bridges " +"are created:\n" +"1. Filter - enables this option. This is the default behavior and works well " +"in most cases\n" +"2. Limited filtering - creates internal bridges on heavily slanted surfaces " +"while avoiding unnecessary bridges. This works well for most difficult " +"models\n" +"3. No filtering - creates internal bridges on every potential internal " +"overhang. This option is useful for heavily slanted top surface models; " +"however, in most cases, it creates too many unnecessary bridges." msgstr "" -"Ši parinktis gali padėti sumažinti viršutinių paviršių, esančių smarkiai nuožulniuose ar išlenktuose modeliuose, iškilimą.\n" -"Pagal numatytuosius nustatymus nedideli vidiniai tiltai filtruojami, o vidinis vientisas užpildas spausdinamas tiesiai ant reto užpildo. Daugeliu atvejų tai gerai veikia, nes pagreitina spausdinimą per daug nepakenkiant viršutinio paviršiaus kokybei.\n" -"Tačiau smarkiai pasvirusiuose ar išlenktuose modeliuose, ypač jei naudojamas per mažas reto užpildo tankis, gali susiraukšlėti nepalaikomas vientisas užpildas, todėl gali atsirasti iškilimų.\n" -"Įjungus ribotą filtravimą arba jo neįjungus, vidinis tilto sluoksnis bus spausdinamas ant šiek tiek nepalaikomo vidinio vientiso užpildo. Toliau pateiktomis parinktimis valdomas filtravimo jautrumas, t. y. jomis nustatoma, kurioje vietoje sukuriami vidiniai tiltai.\n" -"1. Filtruoti - įjungiama ši parinktis. Tai numatytoji elgsena, kuri daugeliu atvejų veikia gerai.\n" -"2. Ribotas filtravimas - sukuriami vidiniai tiltai smarkiai nuožulniuose paviršiuose, išvengiant nereikalingų tiltų. Tai gerai veikia daugumai sudėtingų modelių.\n" -"3. Be filtravimo - sukuria vidinius tiltus kiekvienoje potencialioje vidinėje iškyšoje. Ši parinktis naudinga stipriai nuožulnių viršutinių paviršių modeliams, tačiau daugeliu atvejų ji sukuria per daug nereikalingų tiltų." +"Ši parinktis padeda sumažinti viršutinių paviršių išsipūtimą (pillowing) " +"stipriai nuožulniuose arba išlenktuose modeliuose.\n" +"Numatytuoju atveju maži vidiniai tilteliai yra atfiltruojami, o vidinis " +"tvirtas užpildas (solid infill) spausdinamas tiesiai ant retojo užpildo. " +"Dažniausiai tai veikia puikiai: pagreitina spausdinimą ir pastebimai " +"nepakenkia viršutinio paviršiaus kokybei.\n" +"Tačiau labai nuožulniuose ar išlenktuose modeliuose (ypač kai retojo užpildo " +"tankis mažas) nepalaikomas tvirtas užpildas gali sukristi arba riestis, taip " +"sukeldamas išsipūtimus.\n" +"Įjungus ribotą filtravimą arba filtravimą išjungus, vidinis tiltelio " +"sluoksnis bus formuojamas virš tų vietų, kur vidinis tvirtas užpildas lieka " +"be pakankamos atramos. Parinktys žemiau valdo šio filtravimo jautrumą (t. y. " +"nustato, kur bus kuriami vidiniai tilteliai):\n" +"1. Filtruoti – įjungia standartinį filtravimą. Tai numatytoji elgsena, " +"tinkanti daugeliui atvejų.\n" +"2. Ribotas filtravimas – sukuria vidinius tiltelius tik ant stipriai " +"nuožulnių paviršių, išvengiant perteklinio jų generavimo. Puikiai tinka " +"sudėtingiems modeliams.\n" +"3. Be filtravimo – sukuria vidinius tiltelius ties kiekviena potencialia " +"vidine iškyša. Naudinga modeliams su itin nuožulniais viršutiniais " +"paviršiais, tačiau dažniausiai sugeneruoja per daug nereikalingų tiltelių." msgid "Limited filtering" msgstr "Ribotas filtravimas" msgid "No filtering" -msgstr "Išjungta" +msgstr "Be filtravimo" msgid "Max bridge length" -msgstr "Maksimalus tilto ilgis" +msgstr "Maksimalus tiltelio ilgis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the maximum length of bridges that don't need support. Set it to 0 if you want all bridges to be supported, and set it to a very large value if you don't want any bridges to be supported." -msgstr "Maksimalus tiltų, kuriems nereikia atramos, ilgis. Nustatykite 0, jei norite, kad būtų remiami visi tiltai, ir labai didelę reikšmę, jei nenorite, kad būtų remiami jokie tiltai." +msgid "" +"Max length of bridges that don't need support. Set it to 0 if you want all " +"bridges to be supported, and set it to a very large value if you don't want " +"any bridges to be supported." +msgstr "" +"Maksimalus tiltelių, kuriems nereikia atramų, ilgis. Nustatykite 0, jei " +"norite, kad atramos būtų kuriamos po visais tilteliais. Įrašykite labai " +"didelę reikšmę, jei norite, kad tilteliai visada būtų spausdinami be atramų." msgid "End G-code" msgstr "Pabaigos G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add end G-Code when finishing the entire print." -msgstr "Pridėti pabaigos G-kodą, kai bus baigtas visas spausdinimas." +msgid "End G-code when finishing the entire print." +msgstr "Pabaigos G-kodas, vykdomas baigus visą spausdinimą." msgid "Between Object G-code" msgstr "Tarp objektų G-kodas" -msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object." -msgstr "Įterpti G kodą tarp objektų. Šis parametras bus taikomas tik tada, kai spausdinsite modelius po vieną objektą." +msgid "" +"Insert G-code between objects. This parameter will only come into effect " +"when you print your models object by object." +msgstr "" +"Įterpti G-kodą tarp objektų. Šis parametras įsigalioja tik tada, kai " +"pasirinkta spausdinimo seka „Objektas po objekto“." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Add end G-code when finishing the printing of this filament." -msgstr "Pridėti pabaigos G-kodą, kai bus baigta spausdinti ši gija." +msgid "End G-code when finishing the printing of this filament." +msgstr "Pabaigos G-kodas, vykdomas baigus spausdinti šią giją." msgid "Ensure vertical shell thickness" msgstr "Užtikrinti vertikalaus apvalkalo storį" msgid "" -"Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)\n" -"None: No solid infill will be added anywhere. Caution: Use this option carefully if your model has sloped surfaces\n" +"Add solid infill near sloping surfaces to guarantee the vertical shell " +"thickness (top+bottom solid layers)\n" +"None: No solid infill will be added anywhere. Caution: Use this option " +"carefully if your model has sloped surfaces\n" "Critical Only: Avoid adding solid infill for walls\n" "Moderate: Add solid infill for heavily sloping surfaces only\n" "All: Add solid infill for all suitable sloping surfaces\n" "Default value is All." msgstr "" -"Prie nuožulnių paviršių pridėti kietąjį užpildą, kad būtų užtikrintas vertikalus apvalkalo storis (viršutinis ir apatinis vientisi sluoksniai).\n" -"Nėra: Vientisas užpildas niekur nepridedamas. Dėmesio: Jei jūsų modelyje yra nuožulnių paviršių, naudokite šią parinktį atsargiai.\n" -"Tik kritiniai: Venkite pridėti vientisą sienų užpildą\n" -"Vidutiniai: Pridėti vientisą užpildą tik smarkiai nuožulniems paviršiams\n" -"Visi: pridėkite vientisą užpildą visiems tinkamiems nuožulniems paviršiams\n" -"Numatytoji reikšmė yra Visi." +"Pridėti tvirtąjį užpildą (solid infill) šalia nuožulnių paviršių, kad būtų " +"užtikrintas vertikalus sienelės storis (viršutiniai ir apatiniai tvirti " +"sluoksniai).\n" +"Nėra: tvirtas užpildas papildomai nepridedamas niekur. Įspėjimas: naudokite " +"šią parinktį atsargiai, jei modelis turi nuožulnių paviršių.\n" +"Tik kritinėse vietose: vengiama pridėti tvirtą užpildą po sienelėmis.\n" +"Vidutiniškai: tvirtas užpildas pridedamas tik esant labai dideliam " +"nuolydžiui.\n" +"Visi: tvirtas užpildas pridedamas po visais tinkamais nuožulniais " +"paviršiais.\n" +"Numatytoji reikšmė – Visi." msgid "Critical Only" -msgstr "Tik kritiniai" +msgstr "Tik kritinėse vietose" msgid "Moderate" -msgstr "Vidutiniai" +msgstr "Vidutiniškai" msgid "Top surface pattern" -msgstr "Viršutinio paviršiaus raštas" +msgstr "Viršutinio paviršiaus užpildo linijų raštas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the line pattern for top surface infill." +msgid "Line pattern of top surface infill." msgstr "Tai viršutinio paviršiaus užpildymo linijomis modelis." msgid "Monotonic" -msgstr "Monotoniškas" +msgstr "Monotoniškas (Monotonic)" msgid "Monotonic line" -msgstr "Monotoniška linija" +msgstr "Monotoniškos linijos" msgid "Rectilinear" -msgstr "Tiesia linija" +msgstr "Tiesiaeigis (Rectilinear)" msgid "Aligned Rectilinear" -msgstr "Tiesiai sulygiuota" +msgstr "Sulygiuotas tiesiaeigis" msgid "Concentric" msgstr "Koncentrinis" @@ -12284,104 +14679,159 @@ msgstr "Archimedo akordai" msgid "Octagram Spiral" msgstr "Oktagramos spiralė" -msgid "Top surface density" -msgstr "Viršutinio paviršiaus tankis" - -msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion." -msgstr "Viršutinio paviršiaus sluoksnio tankis. 100 % vertė sukuria visiškai vientisą, lygų viršutinį sluoksnį. Sumažinus šią vertę, viršutinis paviršius tampa tekstūruotas, atsižvelgiant į pasirinktą viršutinio paviršiaus raštą. 0 % vertė reiškia, kad bus sukurti tik ant viršutinio sluoksnio sienos. Skirta estetiniais ar funkciniais tikslais, ne tam, kad išspręstų tokias problemas kaip per didelis ekstruzijos kiekis." - msgid "Bottom surface pattern" -msgstr "Apatinio paviršiaus užpildo linijų raštas" +msgstr "Apatinio paviršiaus raštas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the line pattern of bottom surface infill, not including bridge infill." -msgstr "Tai apatinio paviršiaus užpildymo linijioms raštas, išskyrus tiltų užpildymą." - -msgid "Bottom surface density" -msgstr "Apatinio paviršiaus tankis" - -msgid "" -"Density of the bottom surface layer. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion.\n" -"WARNING: Lowering this value may negatively affect bed adhesion." +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" -"Apatinio paviršiaus sluoksnio tankis. Skirtas estetinėms arba funkcinėms reikmėms, ne tam, kad išspręstų tokias problemas kaip per didelis ekstruzijos kiekis. \n" -"ĮSPĖJIMAS: Šio parametro sumažinimas gali neigiamai paveikti sluoksnio sukibimą su pagrindu." +"Tai apatinio paviršiaus užpildymo linijioms raštas, išskyrus tiltų užpildymą." msgid "Internal solid infill pattern" -msgstr "Vidinis vientiso užpildo raštas" +msgstr "Vidinio tvirto užpildo raštas" -msgid "Line pattern of internal solid infill. if the detect narrow internal solid infill be enabled, the concentric pattern will be used for the small area." -msgstr "Vidinio vientiso užpildo linijų raštas. Jei įjungta funkcija aptikti siaurą vidinį vientisą užpildą, mažam plotui bus naudojamas koncentrinis raštas." +msgid "" +"Line pattern of internal solid infill. if the detect narrow internal solid " +"infill be enabled, the concentric pattern will be used for the small area." +msgstr "" +"Vidinio tvirto užpildo linijų raštas. Jei įjungta funkcija „Aptikti siaurą " +"vidinį tvirtą užpildą“, mažame plote bus automatiškai naudojamas " +"koncentrinis raštas." -msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Išorinės sienos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgid "" +"Line width of outer wall. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Išorinės sienelės linijos plotis. Jei nurodomas procentais (%), jis " +"apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the printing speed for the outer walls of parts. These are generally printed slower than inner walls for higher quality." -msgstr "Išorinės sienos, kuri yra išorinė ir matoma, greitis. Naudojamas lėtesnis nei vidinės sienelės greitis, kad būtų pasiekta geresnė kokybė." +msgid "" +"Speed of outer wall which is outermost and visible. It's used to be slower " +"than inner wall speed to get better quality." +msgstr "" +"Išorinės (pačios labiausiai matomos) sienelės spausdinimo greitis. Siekiant " +"geresnės vizualinės kokybės, jis paprastai nustatomas mažesnis nei vidinių " +"sienelių greitis." msgid "Small perimeters" -msgstr "Maži perimetrai" +msgstr "Mažos trajektorijos (Small perimeters)" -msgid "This separate setting will affect the speed of perimeters having radius <= small_perimeter_threshold (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the outer wall speed setting above. Set to zero for auto." -msgstr "Šis atskiras nustatymas turės įtakos perimetrų, kurių spindulys <= small_perimeter_threshold (paprastai skylės), greičiui. Jei jis išreikštas procentais (pvz., 80 %), jis bus apskaičiuojamas pagal pirmiau nurodytą išorinės sienos greičio nustatymą. Nustatykite nulį, jei norite, kad greitis būtų automatinis." +msgid "" +"This separate setting will affect the speed of perimeters having radius <= " +"small_perimeter_threshold (usually holes). If expressed as percentage (for " +"example: 80%) it will be calculated on the outer wall speed setting above. " +"Set to zero for auto." +msgstr "" +"Šis nustatymas valdo perimetrų, kurių spindulys $\\le$ „Mažų perimetrų riba“ " +"(dažniausiai tai nedidelės skylės), spausdinimo greitį. Jei nurodomas " +"procentais (pvz., 80 %), jis apskaičiuojamas pagal viršuje nustatytą " +"išorinės sienelės greitį. Nustačius 0, greitis parandamas automatiškai." msgid "Small perimeters threshold" -msgstr "Mažo perimetro ribos" +msgstr "Mažų perimetrų riba" -msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." -msgstr "Nustatoma mažo perimetro ilgio riba. Numatytoji riba yra 0 mm." +msgid "" +"This sets the threshold for small perimeter length. Default threshold is 0mm." +msgstr "" +"Nustato mažų perimetrų ilgio arba spindulio ribą. Numatytoji reikšmė – 0 mm." msgid "Walls printing order" -msgstr "Sienų spausdinimo eiliškumas" +msgstr "Sienelių spausdinimo eiliškumas" msgid "" "Print sequence of the internal (inner) and external (outer) walls.\n" "\n" -"Use Inner/Outer for best overhangs. This is because the overhanging walls can adhere to a neighbouring perimeter while printing. However, this option results in slightly reduced surface quality as the external perimeter is deformed by being squashed to the internal perimeter.\n" +"Use Inner/Outer for best overhangs. This is because the overhanging walls " +"can adhere to a neighbouring perimeter while printing. However, this option " +"results in slightly reduced surface quality as the external perimeter is " +"deformed by being squashed to the internal perimeter.\n" "\n" -"Use Inner/Outer/Inner for the best external surface finish and dimensional accuracy as the external wall is printed undisturbed from an internal perimeter. However, overhang performance will reduce as there is no internal perimeter to print the external wall against. This option requires a minimum of 3 walls to be effective as it prints the internal walls from the 3rd perimeter onwards first, then the external perimeter and, finally, the first internal perimeter. This option is recommended against the Outer/Inner option in most cases.\n" +"Use Inner/Outer/Inner for the best external surface finish and dimensional " +"accuracy as the external wall is printed undisturbed from an internal " +"perimeter. However, overhang performance will reduce as there is no internal " +"perimeter to print the external wall against. This option requires a minimum " +"of 3 walls to be effective as it prints the internal walls from the 3rd " +"perimeter onwards first, then the external perimeter and, finally, the first " +"internal perimeter. This option is recommended against the Outer/Inner " +"option in most cases.\n" "\n" -"Use Outer/Inner for the same external wall quality and dimensional accuracy benefits of Inner/Outer/Inner option. However, the Z seams will appear less consistent as the first extrusion of a new layer starts on a visible surface." +"Use Outer/Inner for the same external wall quality and dimensional accuracy " +"benefits of Inner/Outer/Inner option. However, the Z seams will appear less " +"consistent as the first extrusion of a new layer starts on a visible surface." msgstr "" -"Vidinių (vidinių) ir išorinių (išorinių) sienų spausdinimo seka.\n" +"Vidinių (inner) ir išorinių (outer) sienelių spausdinimo seka.\n" "\n" -"Naudokite Vidinės / Išorinės, jei norite, kad iškyšos būtų geriausios. Taip yra todėl, kad spausdinant išsikišusios sienos gali prilipti prie kaimyninio perimetro. Tačiau dėl šios parinkties šiek tiek suprastėja paviršiaus kokybė, nes išorinis perimetras deformuojamas prispaudžiant jį prie vidinio perimetro.\n" +"„Vidinis / išorinis“ (Inner/Outer) užtikrina geriausią iškyšų kokybę, nes " +"spausdinama iškyšos sienelė turi prie ko prisitvirtinti (prie vidinio " +"perimetro). Tačiau išorinio paviršiaus kokybė gali nežymiai nukentėti, nes " +"išorinis perimetras gali būti šiek tiek deformuojamas (išspaudžiamas) " +"vidinio perimetro įtakos.\n" "\n" -"Naudokite Vidinis / išorinis / vidinis, jei norite gauti geriausią išorinio paviršiaus apdailą ir matmenų tikslumą, nes išorinė siena spausdinama nepažeista vidinio perimetro. Tačiau iškyšų kokybė sumažėja, nes nėra vidinio perimetro, prie kurio būtų galima atspausdinti išorinę sienelę. Kad ši parinktis būtų veiksminga, reikia mažiausiai 3 sienų, nes pirmiausia atspausdinamos vidinės sienos nuo trečiojo perimetro, tada išorinis perimetras ir galiausiai pirmasis vidinis perimetras. Šią parinktį daugeliu atvejų rekomenduojama rinktis ne kaip išorinę / vidinę parinktį.\n" +"„Vidinis / išorinis / vidinis“ (Inner/Outer/Inner) užtikrina geriausią " +"išorinio paviršiaus kokybę ir matmenų tikslumą, nes išorinė sienelė " +"spausdinama netrikdomai. Visgi, iškyšų kokybė sumažėja, nes nėra pilno " +"vidinio pagrindo išorinei sienelei prilaikyti. Šis nustatymas efektyvus tik " +"turint bent 3 sieneles – pjaustyklė pirmiausia spausdina vidines sieneles " +"nuo 3-iojo perimetro gilyn, tada išorinį perimetrą, ir galiausiai pirmąjį " +"vidinį perimetrą. Daugeliu atvejų tai yra pranašesnis pasirinkimas nei " +"„Išorinis / vidinis“.\n" "\n" -"Naudokite Išorinė / vidinė, kad išorinių sienų kokybė ir matmenų tikslumas būtų tokie patys, kaip ir pasirinkus Vidinė / išorinė / vidinė parinktį. Tačiau z siūlės atrodys ne tokios nuoseklios, nes pirmasis naujo sluoksnio išspaudimas prasideda matomame paviršiuje." +"„Išorinis / vidinis“ (Outer/Inner) suteikia panašų paviršiaus švarumą ir " +"matmenų tikslumą kaip ir „Vidinis / išorinis / vidinis“, tačiau vertikalios " +"siūlės (Z seam) gali atrodyti mažiau tvarkingos, nes naujas sluoksnis " +"pradedamas spausdinti tiesiai ant matomo išorinio paviršiaus." msgid "Inner/Outer" -msgstr "Vidinės/Išorinės" +msgstr "Vidinis / išorinis" msgid "Outer/Inner" -msgstr "Išorinės/Vidinės" +msgstr "Išorinis / vidinis" msgid "Inner/Outer/Inner" -msgstr "Vidinės/Išorinės/Vidinės" +msgstr "Vidinis / išorinis / vidinis" msgid "Print infill first" msgstr "Pirmiausia spausdinti užpildą" msgid "" -"Order of wall/infill. When the tickbox is unchecked the walls are printed first, which works best in most cases.\n" +"Order of wall/infill. When the tickbox is unchecked the walls are printed " +"first, which works best in most cases.\n" "\n" -"Printing infill first may help with extreme overhangs as the walls have the neighbouring infill to adhere to. However, the infill will slightly push out the printed walls where it is attached to them, resulting in a worse external surface finish. It can also cause the infill to shine through the external surfaces of the part." +"Printing infill first may help with extreme overhangs as the walls have the " +"neighbouring infill to adhere to. However, the infill will slightly push out " +"the printed walls where it is attached to them, resulting in a worse " +"external surface finish. It can also cause the infill to shine through the " +"external surfaces of the part." msgstr "" -"Sienų ir (arba) užpildymo tvarka. Kai žymės langelis nepažymėtas, sienos spausdinamos pirmosios, o tai daugeliu atvejų veikia geriausiai.\n" +"Sienelių ir užpildo spausdinimo tvarka. Kai parinktis nepažymėta, pirmiausia " +"spausdinamos sienelės – tai geriausias pasirinkimas daugeliu atvejų.\n" "\n" -"Spausdinti užpildą pirmiausia gali būti lengviau, kai yra labai dideli iškyšuliai, nes sienos turi laikytis gretimo užpildo. Tačiau užpildas šiek tiek išstumia atspausdintas sienas ten, kur jis prie jų pritvirtintas, todėl išorinio paviršiaus apdaila būna prastesnė. Dėl to užpildas taip pat gali persišviesti per išorinius detalės paviršius." +"Pirmiausia spausdinant užpildą, galima pasiekti geresnių rezultatų esant " +"ekstremalioms iškyšoms, nes spausdinamos sienelės turi prie ko prilipti " +"(prie gretimo užpildo krašto). Tačiau užpildas gali nežymiai išstumti " +"išorines sieneles jų tvirtinimo vietose, todėl suprastėja išorinio " +"paviršiaus kokybė. Taip pat užpildo struktūra gali pradėti persišviesti per " +"išorines detalės sieneles." msgid "Wall loop direction" -msgstr "Sienos kontūro kryptis" +msgstr "Sienelių kontūro kryptis" msgid "" -"The direction which the contour wall loops are extruded when looking down from the top.\n" -"Holes are printed in the opposite direction to the contour to maintain alignment with layers whose contour polygons are incomplete and change direction, also partially forming the contour of a hole.\n" +"The direction which the contour wall loops are extruded when looking down " +"from the top.\n" +"Holes are printed in the opposite direction to the contour to maintain " +"alignment with layers whose contour polygons are incomplete and change " +"direction, also partially forming the contour of a hole.\n" "\n" "This option will be disabled if spiral vase mode is enabled." msgstr "" +"Kryptis, kuria ekstruduojami išorinio kontūro sienelių žiedai, žiūrint iš " +"viršaus.\n" +"Skylės yra spausdinamos priešinga kryptimi nei išorinis kontūras. Tai " +"leidžia išlaikyti taisyklingą sluoksnių suderinamumą, kai kontūrų poligonai " +"yra nepilni, keičia kryptį ar iš dalies formuoja skylės perimetrą.\n" +"\n" +"Ši parinktis automatiškai išjungiama, jei aktyvuotas „Vazos režimas“ (spiral " +"vase)." msgid "Counter clockwise" msgstr "Prieš laikrodžio rodyklę" @@ -12390,181 +14840,354 @@ msgid "Clockwise" msgstr "Pagal laikrodžio rodyklę" msgid "Height to rod" -msgstr "Aukštis iki strypo" +msgstr "Aukštis iki ašies (strypo)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Distance from the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." -msgstr "Atstumas nuo purkštuko galo iki apatinio strypo. Naudojamas siekiant išvengti susidūrimų spausdinant pagal objektus." +msgid "" +"Distance of the nozzle tip to the lower rod. Used for collision avoidance in " +"by-object printing." +msgstr "" +"Atstumas nuo purkštuko galiuko iki žemiausio ašies strypo. Naudojamas " +"siekiant išvengti spausdinimo galvutės susidūrimų, kai pasirinkta seka " +"„Objektas po objekto“." msgid "Height to lid" msgstr "Aukštis iki dangtelio" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Distance from the nozzle tip to the lid. Used for collision avoidance in by-object printing." -msgstr "Atstumas nuo antgalio galo iki dangtelio. Naudojamas siekiant išvengti susidūrimų spausdinant pagal objektus." +msgid "" +"Distance of the nozzle tip to the lid. Used for collision avoidance in by-" +"object printing." +msgstr "" +"Atstumas nuo purkštuko galiuko iki korpuso dangčio. Naudojamas siekiant " +"išvengti spausdinimo galvutės susidūrimų, kai pasirinkta seka „Objektas po " +"objekto“." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Clearance radius around extruder: used for collision avoidance in by-object printing." -msgstr "Tarpas aplink ekstruderį. Naudojamas siekiant išvengti susidūrimų spausdinant pagal objektus." +msgid "" +"Clearance radius around extruder. Used for collision avoidance in by-object " +"printing." +msgstr "" +"Laisvos vietos spindulys (clearance) aplink ekstruderį. Naudojamas saugaus " +"atstumo išlaikymui spausdinant sekone „Objektas po objekto“." msgid "Nozzle height" msgstr "Purkštuko aukštis" msgid "The height of nozzle tip." -msgstr "Purkštuko antgalio aukštis." +msgstr "Purkštuko galiuko aukštis." msgid "Bed mesh min" -msgstr "Pagrindo figūros min" +msgstr "Pagrindo nelygumų žemėlapio (Mesh) min. taškas" -msgid "This option sets the min point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (-99999, -99999), which means there are no limits, thus allowing probing across the entire bed." -msgstr "Šia parinktimi nustatomas mažiausias leistinas pagrindo ploto taškas. Dėl zondo XY poslinkio dauguma spausdintuvų negali zonduoti viso pagrindo. Siekiant užtikrinti, kad zondo taškas neišeitų už pagrindo ploto ribų, reikia tinkamai nustatyti minimalų ir maksimalų pagrindo figūros taškus. OrcaSlicer užtikrina, kad adaptive_bed_mesh_min/adaptive_bed_mesh_max vertės neviršytų šių min. ir maks. taškų. Šią informaciją paprastai galima gauti iš spausdintuvo gamintojo. Numatytoji nuostata yra (-99999, -99999), t. y. nėra jokių apribojimų, todėl galima zonduoti visą pagrindą." +msgid "" +"This option sets the min point for the allowed bed mesh area. Due to the " +"probe's XY offset, most printers are unable to probe the entire bed. To " +"ensure the probe point does not go outside the bed area, the minimum and " +"maximum points of the bed mesh should be set appropriately. OrcaSlicer " +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (-99999, -99999), which " +"means there are no limits, thus allowing probing across the entire bed." +msgstr "" +"Šis nustatymas nurodo minimalų tašką leistinoje pagrindo niveliavimo (mesh) " +"srityje. Dėl jutiklio (zondo) XY poslinkio purkštuko atžvilgiu, dauguma " +"spausdintuvų fiziškai negali išmatuoti viso stalo paviršiaus. Kad jutiklis " +"neišvažiuotų už stalo ribų, minimalūs ir maksimalūs taškai turi būti " +"nustatyti tiksliai. „OrcaSlicer“ užtikrina, kad adaptyvaus niveliavimo ribos " +"(„adaptive_bed_mesh_min/max“) neviršytų šių reikšmių. Šiuos duomenis " +"paprastai pateikia spausdintuvo gamintojas. Numatytasis nustatymas (-99999, " +"-99999) reiškia, kad jokie limitai netaikomi ir jutikliui leidžiama judėti " +"per visą plotą." msgid "Bed mesh max" -msgstr "Pagrindo figūros maks" +msgstr "Pagrindo nelygumų žemėlapio (Mesh) maks. taškas" -msgid "This option sets the max point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (99999, 99999), which means there are no limits, thus allowing probing across the entire bed." -msgstr "Šia parinktimi nustatomas didžiausias leistinas pagrindo ploto taškas. Dėl zondo XY poslinkio dauguma spausdintuvų negali zonduoti viso pagrindo. Siekiant užtikrinti, kad zondo taškas neišeitų už pagrindo ploto ribų, reikia tinkamai nustatyti minimalų ir maksimalų pagrindo figūros taškus. OrcaSlicer užtikrina, kad adaptive_bed_mesh_min/adaptive_bed_mesh_max vertės neviršytų šių min. ir maks. taškų. Šią informaciją paprastai galima gauti iš spausdintuvo gamintojo. Numatytoji nuostata yra (99999, 99999), t. y. nėra jokių apribojimų, todėl galima zonduoti visą pagrindą." +msgid "" +"This option sets the max point for the allowed bed mesh area. Due to the " +"probe's XY offset, most printers are unable to probe the entire bed. To " +"ensure the probe point does not go outside the bed area, the minimum and " +"maximum points of the bed mesh should be set appropriately. OrcaSlicer " +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (99999, 99999), which " +"means there are no limits, thus allowing probing across the entire bed." +msgstr "" +"Šis nustatymas nurodo maksimalų tašką leistinoje pagrindo niveliavimo (mesh) " +"srityje. Dėl jutiklio (zondo) XY poslinkio purkštuko atžvilgiu, dauguma " +"spausdintuvų fiziškai negali išmatuoti viso stalo paviršiaus. Kad jutiklis " +"neišvažiuotų už stalo ribų, minimalūs ir maksimalūs taškai turi būti " +"nustatyti tiksliai. „OrcaSlicer“ užtikrina, kad adaptyvaus niveliavimo ribos " +"(„adaptive_bed_mesh_min/max“) neviršytų šių reikšmių. Šiuos duomenis " +"paprastai pateikia spausdintuvo gamintojas. Numatytasis nustatymas (99999, " +"99999) reiškia, kad jokie limitai netaikomi ir jutikliui leidžiama judėti " +"per visą plotą." msgid "Probe point distance" msgstr "Atstumas iki zondo taško" -msgid "This option sets the preferred distance between probe points (grid size) for the X and Y directions, with the default being 50mm for both X and Y." -msgstr "Šia parinktimi nustatomas pageidaujamas atstumas tarp zondo taškų (tinklelio dydis) X ir Y kryptimis; pagal numatytuosius nustatymus tiek X, tiek Y kryptimis nustatomas 50 mm atstumas." +msgid "" +"This option sets the preferred distance between probe points (grid size) for " +"the X and Y directions, with the default being 50mm for both X and Y." +msgstr "" +"Nustato pageidaujamą atstumą tarp matavimo taškų (tinklelio tankį) X ir Y " +"kryptimis. Numatytasis atstumas abiem kryptimis yra 50 mm." msgid "Mesh margin" -msgstr "Figūros riba" +msgstr "Niveliavimo zonos paraštė (Mesh margin)" -msgid "This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions." -msgstr "Šia parinktimi nustatomas papildomas atstumas, kuriuo XY kryptimis turėtų būti išplėsta adaptyviojo pagrindo figūros sritis." +msgid "" +"This option determines the additional distance by which the adaptive bed " +"mesh area should be expanded in the XY directions." +msgstr "" +"Šis nustatymas nurodo papildomą atstumą, kuriuo XY kryptimis išplečiama " +"adaptyvaus pagrindo niveliavimo (mesh) sritis." msgid "Grab length" -msgstr "" +msgstr "Sugriebimo ilgis (Grab length)" msgid "Extruder Color" msgstr "Ekstruderio spalva" msgid "Only used as a visual help on UI." -msgstr "Naudojama tik kaip vaizdinė pagalba vartotojo sąsajai." +msgstr "Naudojama tik kaip vaizdinė pagalba naudotojo sąsajoje." msgid "Extruder offset" -msgstr "Ekstruderio poslinkis" - -msgid "The material may have volumetric change after switching between molten and crystalline states. This setting changes all extrusion flow of this filament in G-code proportionally. The recommended value range is between 0.95 and 1.05. You may be able to tune this value to get a nice flat surface if there is slight overflow or underflow." -msgstr "Medžiaga gali keisti tūrį, kai pereina iš lydyto į kristalinį būvį. Šis nustatymas proporcingai keičia visą šios gijos ekstruzijos srautą G kodu. Rekomenduojamas vertės diapazonas yra nuo 0,95 iki 1,05. Jei yra nedidelis perteklius arba trūkumas, galite sureguliuoti šią vertę, kad gautumėte gražų lygų paviršių." +msgstr "Ekstruderio poslinkis (offset)" msgid "" -"The material may have volumetric change after switching between molten and crystalline states. This setting changes all extrusion flow of this filament in G-code proportionally. The recommended value range is between 0.95 and 1.05. You may be able to tune this value to get a nice flat surface if there is slight overflow or underflow.\n" -"\n" -"The final object flow ratio is this value multiplied by the filament flow ratio." +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" -"Medžiaga gali keisti tūrį, pereidama iš lydyto į kristalinį būvį. Šis nustatymas proporcingai keičia visą šios gijos ekstruzijos srautą G kodu. Rekomenduojamas vertės diapazonas yra nuo 0,95 iki 1,05. Jei yra nedidelis perteklius arba trūkumas, galite sureguliuoti šią vertę, kad gautumėte gražų lygų paviršių.\n" +"Pereidama iš išsilydžiusios būsenos į kristalinę, medžiaga gali pakeisti " +"savo tūrį. Šis nustatymas proporcingai koreguoja visą šio plastiko (gijos) " +"srautą G-kode. Rekomenduojamas rėžis yra tarp 0,95 ir 1,05. Pastebėjus " +"nedidelį plastiko perteklių ar trūkumą, šią reikšmę galima suderinti " +"idealiai lygiam paviršiui gauti." + +msgid "" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" -"Galutinis objekto srauto santykis yra ši vertė, padauginta iš gijos srauto santykio." +"The final object flow ratio is this value multiplied by the filament flow " +"ratio." +msgstr "" +"Pereidama iš išsilydžiusios būsenos į kristalinę, medžiaga gali pakeisti " +"savo tūrį. Šis nustatymas proporcingai koreguoja visą šio plastiko (gijos) " +"srautą G-kode. Rekomenduojamas rėžis yra tarp 0,95 ir 1,05. Pastebėjus " +"nedidelį plastiko perteklių ar trūkumą, šią reikšmę galima suderinti " +"idealiai lygiam paviršiui gauti.\n" +"\n" +"Galutinis objekto srauto koeficientas gaunamas šią reikšmę padauginus iš " +"plastiko srauto koeficiento (filament flow ratio)." msgid "Enable pressure advance" -msgstr "Įjungti išankstinį slėgio didinimą" +msgstr "Įjungti slėgio kompensavimą (Pressure Advance)" -msgid "Enable pressure advance, auto calibration result will be overwritten once enabled." -msgstr "Įjunkite išankstinį slėgį, įjungus automatinio kalibravimo rezultatą, jis bus perrašytas." +msgid "" +"Enable pressure advance, auto calibration result will be overwritten once " +"enabled." +msgstr "" +"Įjungia slėgio kompensavimą (Pressure Advance). Jį aktyvavus, automatinio " +"kalibravimo rezultatai bus nepaisomi." msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." -msgstr "Išankstinis slėgis (Klipper) arba linijinis išankstinis veiksnys (Marlin)" +msgstr "" +"Slėgio kompensavimas (Pressure Advance „Klipper“ mikroprogramoje) arba " +"linijinis kompensavimas (Linear Advance „Marlin“ mikroprogramoje)." msgid "Enable adaptive pressure advance (beta)" -msgstr "Įjungti prisitaikantį išankstinį slėgį (beta)" +msgstr "Įjungti adaptyvų slėgio kompensavimą (beta)" #, no-c-format, no-boost-format msgid "" -"With increasing print speeds (and hence increasing volumetric flow through the nozzle) and increasing accelerations, it has been observed that the effective PA value typically decreases. This means that a single PA value is not always 100% optimal for all features and a compromise value is usually used that does not cause too much bulging on features with lower flow speed and accelerations while also not causing gaps on faster features.\n" +"With increasing print speeds (and hence increasing volumetric flow through " +"the nozzle) and increasing accelerations, it has been observed that the " +"effective PA value typically decreases. This means that a single PA value is " +"not always 100% optimal for all features and a compromise value is usually " +"used that does not cause too much bulging on features with lower flow speed " +"and accelerations 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 volumetric flow speed and acceleration it is printing at. Internally, it generates a fitted model that can extrapolate the needed pressure advance for any given volumetric flow speed and acceleration, which is then emitted to the printer depending on the current print conditions.\n" +"This feature aims to address this limitation by modeling the response of " +"your printer's extrusion system depending on the volumetric flow speed and " +"acceleration it is printing at. Internally, it generates a fitted model that " +"can extrapolate the needed pressure advance for any given volumetric flow " +"speed and acceleration, which is then emitted to the printer depending on " +"the current print conditions.\n" "\n" -"When enabled, the pressure advance value above is overridden. However, a reasonable default value above is strongly recommended to act as a fallback and for when tool changing.\n" +"When enabled, the pressure advance value above is overridden. However, a " +"reasonable default value above is strongly recommended to act as a fallback " +"and for when tool changing.\n" "\n" msgstr "" -"Pastebėta, kad didėjant spausdinimo greičiui (taigi ir tūriniam srautui per purkštuką) ir didėjant pagreičiui, efektyvioji IS vertė paprastai mažėja. Tai reiškia, kad viena IS reikšmė ne visada yra 100 % optimali visiems elementams ir paprastai naudojama kompromisinė reikšmė, kuri nesukelia per didelio išgaubimo elementams, kurių srauto greitis ir pagreičiai yra mažesni, ir kartu nesukelia spragų greitesniems elementams.\n" +"Pastebėta, kad didėjant spausdinimo greičiui (kartu ir tūriniam srautui per " +"purkštuką) bei didėjant pagreičiui, efektyvioji PA (Pressure Advance) " +"reikšmė dažniausiai mažėja. Tai reiškia, kad viena statinė PA reikšmė nėra " +"100 % optimali visiems elementams – dažniausiai tenka rinktis kompromisą, " +"kuris nesukeltų kampų išsipūtimo važiuojant lėčiau, bet ir nepaliktų tuščių " +"tarpų spausdinant greitai.\n" "\n" -"Šia funkcija siekiama išspręsti šį apribojimą modeliuojant spausdintuvo išspaudimo sistemos reakciją priklausomai nuo tūrinio srauto greičio ir pagreičio, kuriuo spausdinama. Viduje sukuriamas pritaikytas modelis, pagal kurį galima ekstrapoliuoti reikiamą slėgio padidėjimą bet kokiam tūrio srauto greičiui ir pagreičiui, kuris tada siunčiamas spausdintuvui, atsižvelgiant į esamas spausdinimo sąlygas.\n" +"Ši funkcija sprendžia minėtą problemą: ji modeliuoja spausdintuvo " +"ekstruzijos sistemos elgseną pagal esamą tūrinį srautą bei pagreitį. " +"Algoritmas sukuria matematinį modelį, leidžiantį ekstrapoliuoti tikslią " +"reikalingą PA reikšmę bet kokiam greičiui ar pagreičiui, ir dinamiškai " +"siunčia ją į spausdintuvą realiu laiku.\n" "\n" -"Kai ši funkcija įjungta, pirmiau nurodyta išankstinio slėgio vertė pakeičiama. Tačiau rekomenduojama nustatyti pagrįstą numatytąją pirmiau nurodytą vertę, kad ji veiktų kaip atsarginis variantas ir būtų naudojama keičiant įrankį.\n" +"Šią funkciją įjungus, viršuje įvesta statinė PA reikšmė bus nepaisoma. Vis " +"dėlto, rekomenduojama ten palikti protingą numatytąją reikšmę, kuri " +"pasitarnautų kaip atsarginė (fallback) keičiant narvelius / įrankius.\n" msgid "Adaptive pressure advance measurements (beta)" -msgstr "Adaptyvūs išankstinio slėgio matavimai (beta)" +msgstr "Adaptyvaus slėgio kompensavimo (PA) matavimai (beta)" #, no-c-format, no-boost-format msgid "" -"Add sets of pressure advance (PA) values, the volumetric flow speeds and accelerations they were measured at, separated by a comma. One set of values per line. For example\n" +"Add sets of pressure advance (PA) values, the volumetric flow speeds and " +"accelerations they were measured at, separated by a comma. One set of values " +"per line. For example\n" "0.04,3.96,3000\n" "0.033,3.96,10000\n" "0.029,7.91,3000\n" "0.026,7.91,10000\n" "\n" "How to calibrate:\n" -"1. Run the pressure advance test for at least 3 speeds per acceleration value. It is recommended that the test is run for 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). Then run them for the same speeds for the slowest and fastest print accelerations, and no faster than the recommended maximum acceleration as given by the Klipper input shaper\n" -"2. Take note of the optimal PA value for each volumetric flow speed and acceleration. You can find the flow number by selecting flow from the color scheme drop down and move the horizontal slider over the PA pattern lines. The number should be visible at the bottom of the page. The ideal PA value should be decreasing the higher the volumetric flow is. If it is not, confirm that your extruder is functioning correctly. The slower and with less acceleration you print, the larger the range of acceptable PA values. If no difference is visible, use the PA value from the faster test\n" -"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." +"1. Run the pressure advance test for at least 3 speeds per acceleration " +"value. It is recommended that the test is run for 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). Then run them for the same speeds for the slowest and fastest print " +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" +"2. Take note of the optimal PA value for each volumetric flow speed and " +"acceleration. You can find the flow number by selecting flow from the color " +"scheme drop down and move the horizontal slider over the PA pattern lines. " +"The number should be visible at the bottom of the page. The ideal PA value " +"should be decreasing the higher the volumetric flow is. If it is not, " +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile." msgstr "" -"Pridėkite išankstinio slėgio (IS) verčių rinkinius, tūrinius srauto greičius ir pagreičius, kuriems esant jie buvo išmatuoti, atskirti kableliu. Vienoje eilutėje pateikite po vieną verčių rinkinį. Pavyzdžiui\n" +"Įveskite slėgio kompensavimo (PA) reikšmių rinkinius, nurodydami tūrinį " +"srautą bei pagreitį, prie kurių jie buvo išmatuoti, atskirdami kableliais. " +"Vienoje eilutėje – vienas trejetas. Pavyzdžiui:\n" "0.04,3.96,3000\n" "0.033,3.96,10000\n" "0.029,7.91,3000\n" "0.026,7.91,10000\n" "\n" "Kaip kalibruoti:\n" -"1. Atlikite slėgio avanso bandymą bent 3 greičiams pagal kiekvieną pagreičio reikšmę. Rekomenduojama testą atlikti bent išorinių perimetrų greičiui, vidinių perimetrų greičiui ir greičiausiam jūsų profilio funkcijos spausdinimo greičiui (paprastai tai būna retas arba vientisas užpildas). Tada paleiskite juos tokiems pat greičiams, kai spausdinama lėčiausiu ir sparčiausiu greičiu, ir ne didesniu nei rekomenduojamas didžiausias pagreitis, nurodytas „Klipper“ įvesties formuotuve.\n" -"2. Atkreipkite dėmesį į optimalią IS vertę kiekvienam tūrinio srauto greičiui ir pagreičiui. Srauto skaičių galite rasti pasirinkę srautą iš spalvų schemos išskleidžiamojo sąrašo ir perkeldami horizontalųjį slankiklį virš IS modelio linijų. Skaičius turėtų būti matomas puslapio apačioje. Ideali IS vertė turėtų mažėti, kuo didesnis tūrinis srautas. Jei taip nėra, įsitikinkite, kad jūsų ekstruderis veikia tinkamai. kuo lėčiau ir su mažesniu pagreičiu spausdinate, tuo didesnis priimtinų IS verčių diapazonas. Jei jokio skirtumo nematyti, naudokite IS vertę, gautą atliekant greitesnį bandymą.\n" -"3. Čia esančiame teksto laukelyje įveskite IS verčių, srauto ir pagreičio reikšmes ir išsaugokite gijos profilį." +"1. Paleiskite „Pressure Advance“ testą bent 3 skirtingiems greičiams su " +"kiekviena pasirinkta pagreičio reikšme. Rekomenduojama testuoti greičius, " +"atitinkančius išorines sieneles, vidines sieneles ir greičiausiai " +"spausdinamus elementus (dažniausiai tai retasis arba tvirtasis užpildas). " +"Atlikite testus su mažiausiu bei didžiausiu profilio pagreičiu " +"(nepaviršijant maksimalaus saugaus pagreičio, kurį nurodo jūsų „Klipper " +"Input Shaper“).\n" +"2. Užfiksuokite optimalią PA reikšmę kiekvienam tūriniam srautui ir " +"pagreičiui. Tikslų srauto skaičių (Flow) sužinosite peržiūros lange spalvų " +"schemoje pasirinkę „Flow“ ir vedžiodami horizontalųjį slankiklį virš " +"atspausdinto PA šablono linijų. Skaičius rodomas puslapio apačioje. Idealiu " +"atveju PA reikšmė turėtų mažėti didėjant tūriniam srautui. Jei taip nėra, " +"patikrinkite, ar ekstruderis veikia sklandžiai. Spausdinant lėčiau ir su " +"mažesniu pagreičiu, tinkamų PA reikšmių rėžis yra platesnis – jei vizualiai " +"skirtumo nematyti, rinkitės greitesnio testo rezultatą.\n" +"3. Įveskite gautus PA, srauto (Flow) ir pagreičio trejetus į šį teksto lauką " +"ir išsaugokite plastiko profilį." msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Įjungti prisitaikantį išankstinį slėgį iškyšoms (beta versija)" +msgstr "Įjungti adaptyvų slėgio kompensavimą (PA) iškyšoms (beta)" msgid "" -"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +"Enable adaptive PA for overhangs as well as when flow changes within the " +"same feature. This is an experimental option, as if the PA profile is not " +"set accurately, it will cause uniformity issues on the external surfaces " +"before and after overhangs.\n" msgstr "" +"Įjungti prisitaikantį (PA) iškyšoms, taip pat kai srautas keičiasi tame " +"pačiame elemente. Tai eksperimentinė parinktis, nes jei (PA) profilis " +"nustatomas netiksliai, gali kilti išorinių paviršių vienodumo problemų prieš " +"iškyšas ir už jų.\n" +"\n" msgid "Pressure advance for bridges" -msgstr "Tiltų išankstinis slėgis" +msgstr "Tiltų slėgio kompensavimas (PA)" msgid "" "Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." +"A lower PA value when printing bridges helps reduce the appearance of slight " +"under extrusion immediately after bridges. This is caused by the pressure " +"drop in the nozzle when printing in the air and a lower PA helps counteract " +"this." msgstr "" -"Išankstinio slėgio vertė tiltams. Nustatykite 0, kad išjungtumėte.\n" +"Slėgio kompensavimo (PA) reikšmė spausdinant tiltus. Nustatykite 0, jei " +"norite išjungti.\n" "\n" -" Mažesnė IS vertė spausdinant tiltus padeda sumažinti nedidelį nepakankamą išspaudimą iškart po tiltų. Taip atsitinka dėl slėgio kritimo purkštuke, kai spausdinama ore, o mažesnė IS vertė padeda tai neutralizuoti." +"Mažesnė PA reikšmė spausdinant tiltus padeda sumažinti nežymų plastiko " +"trūkumą (under-extrusion) iškart po tilto formavimo. Šį trūkumą sukelia " +"slėgio kritimas purkštuke spausdinant „ore“, o mažesnė PA reikšmė padeda šį " +"efektą kompensuoti." -msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Numatytasis linijos plotis, jei kitų linijų plotis lygus 0. Jei išreiškiamas %, apskaičiuojamas pagal purkštuko skersmenį." +msgid "" +"Default line width if other line widths are set to 0. If expressed as a %, " +"it will be computed over the nozzle diameter." +msgstr "" +"Numatytasis linijos plotis, jei kitų linijų pločiai nustatyti į 0. Jei " +"nurodoma procentais (%), reikšmė apskaičiuojama pagal purkštuko skersmenį." msgid "Keep fan always on" msgstr "Visada laikyti ventiliatorių įjungtą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Enabling this setting means that part cooling fan will never stop entirely and will instead run at least at minimum speed to reduce the frequency of starting and stopping." -msgstr "Jei įjungsite šį nustatymą, aušinimo ventiliatorius niekada nebus sustabdytas ir veiks bent minimaliu greičiu, kad sumažėtų įjungimo ir išjungimo dažnis." +msgid "" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." +msgstr "" +"Aktyvavus šį nustatymą, detalės aušinimo ventiliatorius niekada visiškai " +"nesustos ir suksis bent minimaliu greičiu – tai sumažina nuolatinio " +"ventiliatoriaus stabdymo ir paleidimo dažnį." msgid "Don't slow down outer walls" -msgstr "Nelėtinti išorinių sienų" +msgstr "Nelėtinti išorinių sienelių" msgid "" -"If enabled, this setting will ensure external perimeters are not slowed down to meet the minimum layer time. This is particularly helpful in the below scenarios:\n" +"If enabled, this setting will ensure external perimeters are not slowed down " +"to meet the minimum layer time. This is particularly helpful in the below " +"scenarios:\n" "1. To avoid changes in shine when printing glossy filaments\n" -"2. To avoid changes in external wall speed which may create slight wall artifacts that appear like Z banding\n" -"3. To avoid printing at speeds which cause VFAs (fine artifacts) on the external walls" +"2. To avoid changes in external wall speed which may create slight wall " +"artifacts that appear like Z banding\n" +"3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " +"external walls" msgstr "" -"Jei šis nustatymas įjungtas, bus užtikrinta, kad išoriniai perimetrai nebūtų sulėtinti, kad būtų pasiektas minimalus sluoksnio laikas. Tai ypač naudinga toliau nurodytais scenarijais:\n" -"1. Norint išvengti blizgesio pokyčių spausdinant blizgius siūlus\n" -"2. Norint išvengti išorinių sienelių greičio pokyčių, dėl kurių gali atsirasti nedidelių sienelių artefaktų, kurie atrodo kaip z juostos.\n" -"3. Kad būtų išvengta spausdinimo greičio, dėl kurio ant išorinių sienelių atsiranda VFA (smulkūs artefaktai)" +"Jei įjungta, šis nustatymas užtikrins, kad išorinių sienelių spausdinimas " +"nebūtų lėtinamas siekiant išlaikyti minimalų sluoksnio aušinimo laiką. Tai " +"ypač naudinga šiais atvejais:\n" +"1. Norint išvengti blizgumo netolygumų spausdinant blizgiais (glossy) " +"plastikais.\n" +"2. Norint išvengti išorinių sienelių spausdinimo greičio šuolių, kurie " +"sukelia smulkius paviršiaus defektus, panašius į Z ašies netolygumus (Z " +"banding).\n" +"3. Norint išvengti tokių greičių, kurie ant išorinių sienelių sukelia VFA " +"(smulkius periodinius virpesių artefaktus)." msgid "Layer time" msgstr "Sluoksnio laikas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The part cooling fan will be enabled for layers where the estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time." -msgstr "Dalių aušinimo ventiliatorius bus įjungtas sluoksniams, kurių numatomas laikas yra trumpesnis už šią vertę. Ventiliatoriaus greitis nustatomas tarp mažiausio ir didžiausio ventiliatoriaus greičio pagal sluoksnio spausdinimo laiką." +msgid "" +"Part cooling fan will be enabled for layers of which estimated time is " +"shorter than this value. Fan speed is interpolated between the minimum and " +"maximum fan speeds according to layer printing time." +msgstr "" +"Detalės aušinimo ventiliatorius bus suaktyvintas tiems sluoksniams, kurių " +"preliminarus spausdinimo laikas yra trumpesnis už šią reikšmę. " +"Ventiliatoriaus sūkiai bus interpoliuojami tarp minimalaus ir maksimalaus " +"greičio, priklausomai nuo sluoksnio spausdinimo trukmės." msgid "s" msgstr "s" @@ -12577,7 +15200,8 @@ msgid "" "Right click to reset value to system default." msgstr "" "Numatytoji gijos spalva.\n" -"Dešiniuoju pelės mygtuku spustelėkite, kad nustatytumėte sistemos numatytąją vertę." +"Spustelėkite dešiniuoju pelės mygtuku, kad atkurtumėte sistemos numatytąją " +"reikšmę." msgid "Filament notes" msgstr "Gijos pastabos" @@ -12586,165 +15210,261 @@ msgid "You can put your notes regarding the filament here." msgstr "Čia galite įdėti pastabas apie giją." msgid "Required nozzle HRC" -msgstr "Būtinas antgalis HRC" +msgstr "Reikalaujamas purkštuko HRC" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Minimum HRC of nozzle required to print the filament. A value of 0 means no checking of the nozzle's HRC." -msgstr "Mažiausia antgalio HRC, kurios reikia norint spausdinti gijomis. Nulis reiškia, kad antgalio HRC netikrinama." +msgid "" +"Minimum HRC of nozzle required to print the filament. Zero means no checking " +"of nozzle's HRC." +msgstr "" +"Minimalus purkštuko HRC, reikalingas spausdinti šia gija. Nulis reiškia, kad " +"purkštuko HRC netikrinama." msgid "Filament map to extruder" -msgstr "" +msgstr "Gijos susiejimas su ekstruderiu" msgid "Filament map to extruder." -msgstr "" +msgstr "Gijos susiejimas su ekstruderiu." msgid "Auto For Flush" -msgstr "" +msgstr "Automatiškai pravalymui" msgid "Auto For Match" -msgstr "" +msgstr "Automatiškai pritaikymui" + +msgid "Enable filament dynamic map" +msgstr "Įjungti dinaminį gijų susiejimą" + +msgid "Enable dynamic filament mapping during print." +msgstr "Įjungti dinaminį gijų susiejimą spausdinimo metu." + +msgid "Has filament switcher" +msgstr "Turi gijos keitiklį" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "Spausdintuvas turi gijos keitimo įrangą (pvz., AMS)." msgid "Flush temperature" -msgstr "" +msgstr "Pravalymo temperatūra" -msgid "Temperature when flushing filament. 0 indicates the upper bound of the recommended nozzle temperature range." +msgid "" +"Temperature when flushing filament. 0 indicates the upper bound of the " +"recommended nozzle temperature range." msgstr "" +"Temperatūra pravalant giją. 0 nurodo viršutinę rekomenduojamos purkštuko " +"temperatūros diapazono ribą." msgid "Flush volumetric speed" -msgstr "" +msgstr "Pravalymo tūrinis greitis" -msgid "Volumetric speed when flushing filament. 0 indicates the max volumetric speed." -msgstr "" +msgid "" +"Volumetric speed when flushing filament. 0 indicates the max volumetric " +"speed." +msgstr "Tūrinis greitis pravalant giją. 0 nurodo maksimalų tūrinį greitį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This setting is the volume of filament that can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. This value cannot be zero." -msgstr "Gijos tūris, kurį galima išlydyti ir išspausti per sekundę. Jei nustatytas per didelis ir nepagrįstas greitis, spausdinimo greitį riboja maksimalus tūrinis greitis. Ši reikšmė negali būti lygi nuliui." +msgid "" +"This setting stands for how much volume of filament can be melted and " +"extruded per second. Printing speed is limited by max volumetric speed, in " +"case of too high and unreasonable speed setting. Can't be zero." +msgstr "" +"Gijos tūris, kurį galima išlydyti ir išspausti per sekundę. Jei nustatytas " +"per didelis ir nepagrįstas greitis, spausdinimo greitį riboja maksimalus " +"tūrinis greitis. Ši reikšmė negali būti lygi nuliui." msgid "Filament load time" msgstr "Gijos įkrovimo laikas" -msgid "Time to load new filament when switch filament. It's usually applicable for single-extruder multi-material machines. For tool changers or multi-tool machines, it's typically 0. For statistics only." -msgstr "Naujos gijos įkrovimo laikas, kai perjungiama gija. Tai paprastai taikoma vieno ekstruderio daugialypės terpės mašinoms. Įrankių keitimo arba daugiafunkcinėms mašinoms paprastai taikomas 0. Tik statistiniams duomenims." +msgid "" +"Time to load new filament when switch filament. It's usually applicable for " +"single-extruder multi-material machines. For tool changers or multi-tool " +"machines, it's typically 0. For statistics only." +msgstr "" +"Naujos gijos įkrovimo laikas, kai perjungiama gija. Tai paprastai taikoma " +"vieno ekstruderio kelių medžiagų įrenginiams. Įrankių keitikliams ar kelių " +"įrankių įrenginiams šis laikas paprastai yra 0. Naudojama tik statistikai." msgid "Filament unload time" msgstr "Gijos iškrovimo laikas" -msgid "Time to unload old filament when switch filament. It's usually applicable for single-extruder multi-material machines. For tool changers or multi-tool machines, it's typically 0. For statistics only." -msgstr "Laikas senos gijos iškrovimui, kai keičiama gija. Tai paprastai taikoma vieno ekstruderio kelių medžiagų mašinoms. Įrankių keitimo arba daugiafunkcinėms mašinoms paprastai taikomas 0. Tik statistiniams duomenims." +msgid "" +"Time to unload old filament when switch filament. It's usually applicable " +"for single-extruder multi-material machines. For tool changers or multi-tool " +"machines, it's typically 0. For statistics only." +msgstr "" +"Senos gijos iškrovimo laikas, kai perjungiama gija. Tai paprastai taikoma " +"vieno ekstruderio kelių medžiagų įrenginiams. Įrankių keitikliams ar kelių " +"įrankių įrenginiams šis laikas paprastai yra 0. Naudojama tik statistikai." msgid "Tool change time" msgstr "Įrankių keitimo laikas" -msgid "Time taken to switch tools. It's usually applicable for tool changers or multi-tool machines. For single-extruder multi-material machines, it's typically 0. For statistics only." -msgstr "Įrankių keitimo laikas. Jis paprastai taikomas įrankių keitimo įrenginiams arba daugiafunkcinėms staklėms. Vieno ekstruderio kelių medžiagų mašinoms jis paprastai lygus 0. Tik statistiniams duomenims." +msgid "" +"Time taken to switch tools. It's usually applicable for tool changers or " +"multi-tool machines. For single-extruder multi-material machines, it's " +"typically 0. For statistics only." +msgstr "" +"Įrankių keitimo laikas. Jis paprastai taikomas įrankių keitimo įrenginiams " +"arba daugiafunkcinėms staklėms. Vieno ekstruderio kelių medžiagų mašinoms " +"jis paprastai lygus 0. Tik statistiniams duomenims." msgid "Bed temperature type" -msgstr "" +msgstr "Pagrindo temperatūros tipas" -msgid "This option determines how the bed temperature is set during slicing: based on the temperature of the first filament or the highest temperature of the printed filaments." +msgid "" +"This option determines how the bed temperature is set during slicing: based " +"on the temperature of the first filament or the highest temperature of the " +"printed filaments." msgstr "" +"Ši parinktis nustato, kaip pjaustymo metu nustatoma pagrindo temperatūra: " +"pagal pirmosios gijos temperatūrą arba pagal aukščiausią spausdinamų gijų " +"temperatūrą." msgid "By First filament" -msgstr "" +msgstr "Pagal pirmąją giją" msgid "By Highest Temp" -msgstr "" +msgstr "Pagal aukščiausią temperatūrą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament diameter is used to calculate extrusion variables in G-code, so it is important that this is accurate and precise." -msgstr "G-kodo ekstruzijos apskaičiavimui naudojamas gijos skersmuo, todėl jis yra svarbus ir turi būti tikslus." +msgid "" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." +msgstr "" +"G-kodo ekstruzijos apskaičiavimui naudojamas gijos skersmuo, todėl jis yra " +"svarbus ir turi būti tikslus." msgid "Pellet flow coefficient" msgstr "Granulių srauto koeficientas" msgid "" -"Pellet flow coefficient is empirically derived and allows for volume calculation for pellet printers.\n" +"Pellet flow coefficient is empirically derived and allows for volume " +"calculation for pellet printers.\n" "\n" -"Internally it is converted to filament_diameter. All other volume calculations remain the same.\n" +"Internally it is converted to filament_diameter. All other volume " +"calculations remain the same.\n" "\n" "filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )" msgstr "" -"Granulių srauto koeficientas nustatomas empiriškai ir leidžia apskaičiuoti granulių spausdintuvų tūrį.\n" +"Granulių srauto koeficientas nustatomas empiriškai ir leidžia apskaičiuoti " +"granulių spausdintuvų tūrį.\n" "\n" -"Viduje jis konvertuojamas į filament_diameter. Visi kiti tūrio skaičiavimai išlieka tokie patys.\n" +"Programos viduje jis konvertuojamas į filament_diameter. Visi kiti tūrio " +"skaičiavimai išlieka tokie patys.\n" "\n" -"filament_diameter = sqrt( (4 * granulių srauto koeficientas) / PI )" +"filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )" msgid "Adaptive volumetric speed" -msgstr "" +msgstr "Prisitaikantis tūrinis greitis" msgid "" -"When enabled, the extrusion flow is limited by the smaller of the fitted value (calculated from line width and layer height) and the user-defined maximum flow. When disabled, only the user-defined maximum flow is applied.\n" +"When enabled, the extrusion flow is limited by the smaller of the fitted " +"value (calculated from line width and layer height) and the user-defined " +"maximum flow. When disabled, only the user-defined maximum flow is applied.\n" "\n" -"Note: Experimental and incomplete feature imported from BBS. Functional for some profiles that already have the variable saved." +"Note: Experimental and incomplete feature imported from BBS. Functional for " +"some profiles that already have the variable saved." msgstr "" +"Kai įjungta, ekstruzijos srautas ribojamas pasirinkus mažesnę reikšmę iš " +"pritaikytosios (apskaičiuotos pagal linijos plotį ir sluoksnio aukštį) bei " +"vartotojo nurodyto maksimalaus srauto. Kai išjungta, taikomas tik vartotojo " +"nurodytas maksimalus srautas.\n" +"\n" +"Pastaba: eksperimentinė ir nebaigta funkcija, perkelta iš BBS. Veikia tik su " +"tam tikrais profiliais, kurie jau turi išsaugotą šį kintamąjį." msgid "Max volumetric speed multinomial coefficients" -msgstr "" +msgstr "Maksimalaus tūrinio greičio daugianario koeficientai" msgid "Shrinkage (XY)" msgstr "Susitraukimas (XY)" #, no-c-format, no-boost-format msgid "" -"Enter the shrinkage percentage that the filament will get after cooling (94% if you measure 94mm instead of 100mm). The part will be scaled in XY to compensate. For multi-material prints, ensure filament shrinkage matches across all used filaments\n" -"Be sure to allow enough space between objects, as this compensation is done after the checks." +"Enter the shrinkage percentage that the filament will get after cooling (94% " +"if you measure 94mm instead of 100mm). The part will be scaled in XY to " +"compensate. For multi-material prints, ensure filament shrinkage matches " +"across all used filaments\n" +"Be sure to allow enough space between objects, as this compensation is done " +"after the checks." msgstr "" -"Įveskite susitraukimo procentą, kurį gija gaus po aušinimo (94%, jei matuojate 94 mm, o ne 100 mm). Dalis bus keičiama XY masteliu, kad būtų kompensuota. Atsižvelgiama tik į perimetrui naudojamą giją.\n" -"Būtinai palikite pakankamai vietos tarp objektų, nes ši kompensacija atliekama po patikrinimų." +"Įveskite susitraukimo procentą, kurį gija pasieks po aušinimo (pvz., 94%, " +"jei vietoj 100 mm išmatuojate 94 mm). Detalės mastelis bus pakeistas XY " +"ašyse, kad tai kompensuotų. Spausdinant iš kelių medžiagų, įsitikinkite, kad " +"visų naudojamų gijų susitraukimas sutampa.\n" +"Būtinai palikite pakankamai vietos tarp objektų, nes ši kompensacija " +"atliekama po patikrinimų." msgid "Shrinkage (Z)" msgstr "Susitraukimas (Z)" #, no-c-format, no-boost-format -msgid "Enter the shrinkage percentage that the filament will get after cooling (94% if you measure 94mm instead of 100mm). The part will be scaled in Z to compensate." -msgstr "Įveskite susitraukimo procentą, kurį gija gaus po aušinimo (94 %, jei matuojate 94 mm, o ne 100 mm). Dalis bus keičiama Z masteliu, kad tai būtų kompensuota." +msgid "" +"Enter the shrinkage percentage that the filament will get after cooling (94% " +"if you measure 94mm instead of 100mm). The part will be scaled in Z to " +"compensate." +msgstr "" +"Įveskite susitraukimo procentą, kurį gija pasieks po aušinimo (pvz., 94%, " +"jei vietoj 100 mm išmatuojate 94 mm). Detalės mastelis bus pakeistas Z " +"ašyje, kad tai kompensuotų." msgid "Adhesiveness Category" -msgstr "" +msgstr "Sukibimo kategorija" msgid "Filament category." -msgstr "" +msgstr "Gijos kategorija." msgid "Loading speed" -msgstr "Pakrovimo greitis" +msgstr "Įkrovimo greitis" msgid "Speed used for loading the filament on the wipe tower." -msgstr "Greitis, naudojamas kaitinamojo siūlelio uždėjimui ant šluostymo bokštelio." +msgstr "Greitis, naudojamas gijos įkrovimui ant valymo bokštelio." msgid "Loading speed at the start" -msgstr "Pakrovimo greitis pradžioje" +msgstr "Įkrovimo greitis pradžioje" msgid "Speed used at the very beginning of loading phase." -msgstr "Greitis, naudojamas pačioje pakrovimo fazės pradžioje." +msgstr "Greitis, naudojamas pačioje įkrovimo fazės pradžioje." msgid "Unloading speed" msgstr "Iškrovimo greitis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." -msgstr "Greitis, naudojamas gijos išleidimui ant valymo bokštelio (neturi įtakos pradinei išleidimo daliai iškart po lyginimo)." +msgid "" +"Speed used for unloading the filament on the wipe tower (does not affect " +"initial part of unloading just after ramming)." +msgstr "" +"Greitis, naudojamas gijos iškrovimui ant valymo bokštelio (neturi įtakos " +"pradinei iškrovimo daliai iškart po gijos suformavimo/lyginimo)." msgid "Unloading speed at the start" msgstr "Iškrovimo greitis pradžioje" -msgid "Speed used for unloading the tip of the filament immediately after ramming." -msgstr "Greitis, naudojamas gijos galiuko iškrovimui iš karto po ramingo." +msgid "" +"Speed used for unloading the tip of the filament immediately after ramming." +msgstr "" +"Greitis, naudojamas gijos galiuko iškrovimui iškart po suformavimo (ramming)." msgid "Delay after unloading" -msgstr "Vėlavimas po išleidimo" +msgstr "Delsa po iškrovimo" -msgid "Time to wait after the filament is unloaded. May help to get reliable tool changes with flexible materials that may need more time to shrink to original dimensions." -msgstr "Laukimo laikas po to, kai gija išleista. Gali padėti naudojant lanksčias medžiagas, kurioms gali prireikti daugiau laiko susitraukti iki pradinių matmenų." +msgid "" +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " +"original dimensions." +msgstr "" +"Laukimo laikas po to, kai gija iškraunama. Tai gali padėti užtikrinti " +"patikimą įrankių keitimą naudojant lanksčias medžiagas, kurioms reikia " +"daugiau laiko susitraukti iki pradinių matmenų." msgid "Number of cooling moves" msgstr "Aušinimo judesių skaičius" -msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." -msgstr "Gija aušinama judant pirmyn ir atgal aušinimo vamzdeliuose. Nurodykite pageidaujamą šių judesių skaičių." +msgid "" +"Filament is cooled by being moved back and forth in the cooling tubes. " +"Specify desired number of these moves." +msgstr "" +"Gija aušinama judant pirmyn ir atgal aušinimo vamzdeliuose. Nurodykite " +"pageidaujamą šių judesių skaičių." msgid "Stamping loading speed" -msgstr "Antspaudų užkrovimo greitis" +msgstr "Štampavimo (stamping) įkrovimo greitis" msgid "Speed used for stamping." msgstr "Greitis, naudojamas štampavimui." @@ -12752,8 +15472,14 @@ msgstr "Greitis, naudojamas štampavimui." msgid "Stamping distance measured from the center of the cooling tube" msgstr "Štampavimo atstumas, matuojamas nuo aušinimo vamzdelio centro" -msgid "If set to non-zero value, filament is moved toward the nozzle between the individual cooling moves (\"stamping\"). This option configures how long this movement should be before the filament is retracted again." -msgstr "Jei nustatyta nenulinė reikšmė, gija tarp atskirų aušinimo judesių judinama link purkštuko („štampavimas“). Šia parinktimi nustatoma, kiek laiko turi trukti šis judėjimas, kol gija vėl įtraukiama." +msgid "" +"If set to non-zero value, filament is moved toward the nozzle between the " +"individual cooling moves (\"stamping\"). This option configures how long " +"this movement should be before the filament is retracted again." +msgstr "" +"Jei nustatyta nenulinė reikšmė, gija tarp atskirų aušinimo judesių " +"pastumiama link purkštuko („štampavimas“). Ši parinktis konfigūruoja, kokio " +"ilgio turi būti šis judesys prieš vėl įtraukiant giją." msgid "Speed of the first cooling move" msgstr "Pirmojo aušinimo judesio greitis" @@ -12764,47 +15490,78 @@ msgstr "Aušinimo judesiai palaipsniui greitėja, pradedant tokiu greičiu." msgid "Minimal purge on wipe tower" msgstr "Minimalus valymas ant šluostymo bokštelio" -msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Orca Slicer will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." -msgstr "Pakeitus įrankį, gali būti nežinoma tiksli naujai įdėtos gijos padėtis purkštuke, o gijos slėgis greičiausiai dar nėra stabilus. Prieš spausdinimo galvutei prapučiant užpildą arba apsauginį objektą, \"Orca Slicer\" visuomet paruoš tokį medžiagos kiekį į valymo bokštą, kad būtų patikimai gaminami vienas po kito einantys užpildų arba apsauginių objektų išspaudimai." +msgid "" +"After a tool change, the exact position of the newly loaded filament inside " +"the nozzle may not be known, and the filament pressure is likely not yet " +"stable. Before purging the print head into an infill or a sacrificial " +"object, Orca Slicer will always prime this amount of material into the wipe " +"tower to produce successive infill or sacrificial object extrusions reliably." +msgstr "" +"Pakeitus įrankį, tiksli naujai įkrautos gijos padėtis purkštuke gali būti " +"nežinoma, o slėgis gijoje greičiausiai dar nėra stabilus. Prieš nukreipiant " +"spausdinimo galvutės prapūtimą į užpildą arba pagalbinį objektą, " +"„OrcaSlicer“ visada paruoš šį medžiagos kiekį valymo bokštelyje, kad būtų " +"patikimai suformuoti tolesni užpildo ar pagalbinio objekto sluoksniai." msgid "Wipe tower cooling" -msgstr "" +msgstr "Valymo bokštelio aušinimas" msgid "Temperature drop before entering filament tower" -msgstr "" +msgstr "Temperatūros sumažinimas prieš įeinant į gijos bokštelį" msgid "Interface layer pre-extrusion distance" -msgstr "" +msgstr "Skiriamojo sluoksnio pradinio išspaudimo atstumas" -msgid "Pre-extrusion distance for prime tower interface layer (where different materials meet)." +msgid "" +"Pre-extrusion distance for prime tower interface layer (where different " +"materials meet)." msgstr "" +"Pradinio išspaudimo atstumas paruošimo bokštelio skiriamajam sluoksniui (kur " +"susitinka skirtingos medžiagos)." msgid "Interface layer pre-extrusion length" -msgstr "" +msgstr "Skiriamojo sluoksnio pradinio išspaudimo ilgis" -msgid "Pre-extrusion length for prime tower interface layer (where different materials meet)." +msgid "" +"Pre-extrusion length for prime tower interface layer (where different " +"materials meet)." msgstr "" +"Pradinio išspaudimo ilgis paruošimo bokštelio skiriamajam sluoksniui (kur " +"susitinka skirtingos medžiagos)." msgid "Tower ironing area" -msgstr "" +msgstr "Bokštelio lyginimo plotas" -msgid "Ironing area for prime tower interface layer (where different materials meet)." +msgid "" +"Ironing area for prime tower interface layer (where different materials " +"meet)." msgstr "" +"Lyginimo plotas paruošimo bokštelio skiriamajam sluoksniui (kur susitinka " +"skirtingos medžiagos)." msgid "mm²" msgstr "mm²" msgid "Interface layer purge length" -msgstr "" +msgstr "Skiriamojo sluoksnio pravalymo ilgis" -msgid "Purge length for prime tower interface layer (where different materials meet)." +msgid "" +"Purge length for prime tower interface layer (where different materials " +"meet)." msgstr "" +"Pravalymo ilgis paruošimo bokštelio skiriamajam sluoksniui (kur susitinka " +"skirtingos medžiagos)." msgid "Interface layer print temperature" -msgstr "" +msgstr "Skiriamojo sluoksnio spausdinimo temperatūra" -msgid "Print temperature for prime tower interface layer (where different materials meet). If set to -1, use max recommended nozzle temperature." +msgid "" +"Print temperature for prime tower interface layer (where different materials " +"meet). If set to -1, use max recommended nozzle temperature." msgstr "" +"Spausdinimo temperatūra paruošimo bokštelio skiriamajam sluoksniui (kur " +"susitinka skirtingos medžiagos). Jei nustatyta -1, naudojama maksimali " +"rekomenduojama purkštuko temperatūra." msgid "Speed of the last cooling move" msgstr "Paskutinio aušinimo judesio greitis" @@ -12813,146 +15570,210 @@ msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Aušinimo judesiai palaipsniui greitėja link šio greičio." msgid "Ramming parameters" -msgstr "Įspaudimo parametrai" +msgstr "Gijos suformavimo (ramming) parametrai" -msgid "This string is edited by RammingDialog and contains ramming specific parameters." -msgstr "Šią eilutę redaguoja RammingDialog ir joje yra specifiniai įspaudimo parametrai." +msgid "" +"This string is edited by RammingDialog and contains ramming specific " +"parameters." +msgstr "" +"Šią eilutę redaguoja RammingDialog lange ir joje yra specifiniai gijos " +"suformavimo (ramming) parametrai." msgid "Enable ramming for multi-tool setups" -msgstr "Įgalinti daugiafunkcinių įrankių nustatymų tankinimą" +msgstr "Įjungti gijos suformavimą (ramming) kelių įrankių konfigūracijoms" -msgid "Perform ramming when using multi-tool printer (i.e. when the 'Single Extruder Multimaterial' in Printer Settings is unchecked). When checked, a small amount of filament is rapidly extruded on the wipe tower just before the tool change. This option is only used when the wipe tower is enabled." -msgstr "Atlikti tankinimą, kai naudojamas daugiafunkcinis spausdintuvas (t. y. kai spausdintuvo nustatymuose nepažymėta parinktis „Vienas išspaudiklis, įvairios medžiagos“). Kai ši parinktis pažymėta, nedidelis gijos kiekis greitai išspaudžiamas ant valymo bokšto prieš pat įrankio keitimą. Ši parinktis naudojama tik tada, kai įjungtas valymo bokštas." +msgid "" +"Perform ramming when using multi-tool printer (i.e. when the 'Single " +"Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " +"small amount of filament is rapidly extruded on the wipe tower just before " +"the tool change. This option is only used when the wipe tower is enabled." +msgstr "" +"Atlikti gijos suformavimą (ramming), kai naudojamas kelių įrankių " +"spausdintuvas (t. y., kai spausdintuvo nustatymuose nepažymėta parinktis " +"„Vienas ekstruderis, kelios medžiagos“). Kai pažymėta, nedidelis gijos " +"kiekis yra greitai išspaudžiamas ant valymo bokštelio prieš pat įrankio " +"keitimą. Ši parinktis naudojama tik tada, kai įjungtas valymo bokštelis." msgid "Multi-tool ramming volume" -msgstr "Daugiafunkcinių įrankių tankinimo tūris" +msgstr "Kelių įrankių gijos suformavimo (ramming) tūris" msgid "The volume to be rammed before the tool change." -msgstr "Tūris, kuris turi būti įspaustas prieš keičiant įrankį." +msgstr "Tūris, kuris turi būti suformuotas (rammed) prieš keičiant įrankį." msgid "Multi-tool ramming flow" -msgstr "Daugiafunkcinių įrankių tankinimo srautas" +msgstr "Kelių įrankių gijos suformavimo (ramming) srautas" msgid "Flow used for ramming the filament before the tool change." -msgstr "Srautas, naudojamas gijai įspausti prieš keičiant įrankį." +msgstr "" +"Srautas, naudojamas gijos suformavimui (ramming) prieš keičiant įrankį." msgid "Density" msgstr "Tankis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament density, for statistical purposes only." +msgid "Filament density. For statistics only." msgstr "Gijų tankis, tik statistikai." msgid "g/cm³" msgstr "g/cm³" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament material type" +msgid "The material type of filament." msgstr "Gijos medžiagos tipas." msgid "Soluble material" -msgstr "Tirpi medžiaga" +msgstr "Tirpi gija" -msgid "Soluble material is commonly used to print supports and support interfaces." -msgstr "Tirpi medžiaga paprastai naudojama spausdinant atramą ir atramos sąsają." +msgid "" +"Soluble material is commonly used to print supports and support interfaces." +msgstr "" +"Tirpi gija paprastai naudojama spausdinant atramas ir atramų skiriamuosius " +"sluoksnius." msgid "Filament ramming length" -msgstr "" +msgstr "Gijos suformavimo (ramming) ilgis" -msgid "When changing the extruder, it is recommended to extrude a certain length of filament from the original extruder. This helps minimize nozzle oozing." +msgid "" +"When changing the extruder, it is recommended to extrude a certain length of " +"filament from the original extruder. This helps minimize nozzle oozing." msgstr "" +"Keičiant ekstruderį, rekomenduojama išspausti tam tikrą gijos ilgį iš " +"pradinio ekstruderio. Tai padeda sumažinti medžiagos varvėjimą iš purkštuko." msgid "Support material" -msgstr "Atramų medžiaga" +msgstr "Atramų gija" -msgid "Support material is commonly used to print supports and support interfaces." -msgstr "Pagalbinė medžiaga paprastai naudojama pagalbinėms ir atraminėms sąsajoms spausdinti." +msgid "" +"Support material is commonly used to print supports and support interfaces." +msgstr "" +"Atramų gija paprastai naudojama atramoms ir atramų skiriamiesiems " +"sluoksniams spausdinti." msgid "Filament printable" -msgstr "" +msgstr "Gija tinkama spausdinti" msgid "The filament is printable in extruder." -msgstr "" +msgstr "Gija yra tinkama spausdinti pasirinktame ekstruderyje." msgid "Softening temperature" msgstr "Minkštėjimo temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The material softens at this temperature, so when the bed temperature is equal to or greater than this, it's highly recommended to open the front door and/or remove the upper glass to avoid clogs." -msgstr "Esant tokiai temperatūrai medžiaga suminkštėja, todėl, kai pagrindo temperatūra yra lygi arba didesnė už ją, labai rekomenduojama atidaryti priekines dureles ir (arba) nuimti viršutinį stiklą, kad būtų išvengta užsikimšimo." +msgid "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." +msgstr "" +"Esant tokiai temperatūrai medžiaga suminkštėja, todėl, kai pagrindo " +"temperatūra yra lygi arba didesnė už ją, labai rekomenduojama atidaryti " +"priekines dureles ir (arba) nuimti viršutinį stiklą, kad būtų išvengta " +"užsikimšimo." msgid "Price" msgstr "Kaina" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament price, for statistical purposes only." +msgid "Filament price. For statistics only." msgstr "Gijos kaina, tik statistikai." msgid "money/kg" msgstr "pinigų/kg" msgid "Vendor" -msgstr "Pardavėjas" +msgstr "Prekės ženklas" msgid "Vendor of filament. For show only." -msgstr "Gijos pardavėjas. Tik parodymui." +msgstr "Gijos prekės ženklas. Tik parodymui." msgid "(Undefined)" msgstr "(Nenurodyta)" msgid "Sparse infill direction" -msgstr "Reto užpildymo kryptis" +msgstr "Reto užpildo kryptis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the angle for sparse infill pattern, which controls the start or main direction of lines." -msgstr "Reto užpildymo rašto kampas, kuriuo nustatoma linijų pradžios arba pagrindinė kryptis." +msgid "" +"Angle for sparse infill pattern, which controls the start or main direction " +"of line." +msgstr "" +"Reto užpildo rašto kampas, kuris valdo linijos pradžią arba pagrindinę " +"kryptį." msgid "Solid infill direction" msgstr "Vientiso užpildo kryptis" -msgid "Angle for solid infill pattern, which controls the start or main direction of line." -msgstr "Vientiso užpildo rašto kampas, kuriuo nustatoma linijos pradžios arba pagrindinė kryptis." +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line." +msgstr "" +"Vientiso užpildo rašto kampas, kuris valdo linijos pradžią arba pagrindinę " +"kryptį." msgid "Sparse infill density" -msgstr "Reto užpildymo tankis" +msgstr "Reto užpildo tankis" #, no-c-format, no-boost-format -msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used." -msgstr "Vidinio reto užpildymo tankis, 100% paverčia visą retą užpildymą vientisu užpildymu, tuomet bus naudojamas vidinis vientiso užpildymo raštas." +msgid "" +"Density of internal sparse infill, 100% turns all sparse infill into solid " +"infill and internal solid infill pattern will be used." +msgstr "" +"Vidinio reto užpildo tankis. 100% paverčia visą retą užpildą vientisu " +"užpildu ir tuomet bus naudojamas vidinio vientiso užpildo raštas." msgid "Align infill direction to model" -msgstr "Suderinti užpildymo kryptį su modeliu" +msgstr "Suderinti užpildo kryptį su modeliu" msgid "" -"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n" -"When enabled, directions rotate with the model to maintain optimal strength characteristics." +"Aligns infill, bridge, ironing and surface fill directions to follow the " +"model's orientation on the build plate.\n" +"When enabled, directions rotate with the model to maintain optimal strength " +"characteristics." msgstr "" +"Sulygiuoja užpildo, tiltelių, lyginimo ir paviršiaus užpildymo kryptis pagal " +"modelio orientaciją ant pagrindo.\n" +"Kai įjungta, kryptys sukasi kartu su modeliu, kad būtų išlaikytos optimalios " +"tvirtumo charakteristikos." msgid "Insert solid layers" msgstr "Įterpti vientisus sluoksnius" -msgid "Insert solid infill at specific layers. Use N to insert every Nth layer, N#K to insert K consecutive solid layers every N layers (K is optional, e.g. '5#' equals '5#1'), or a comma-separated list (e.g. 1,7,9) to insert at explicit layers. Layers are 1-based." -msgstr "Įterpkite vientisą užpildą tam tikruose sluoksniuose. Naudokite N, kad įterptumėte kas N-tą sluoksnį, N#K, kad įterptumėte K iš eilės einančius vientisus sluoksnius kas N sluoksnius (K yra neprivalomas, pvz., „5#“ yra lygus „5#1“), arba kableliais atskirtą sąrašą (pvz., 1,7,9), kad įterptumėte aiškiai nurodytuose sluoksniuose. Sluoksniai yra numeruojami nuo 1." +msgid "" +"Insert solid infill at specific layers. Use N to insert every Nth layer, N#K " +"to insert K consecutive solid layers every N layers (K is optional, e.g. " +"'5#' equals '5#1'), or a comma-separated list (e.g. 1,7,9) to insert at " +"explicit layers. Layers are 1-based." +msgstr "" +"Įterpti vientisą užpildą tam tikruose sluoksniuose. Naudokite N, kad " +"įterptumėte kas N-tą sluoksnį, N#K, kad įterptumėte K iš eilės einančių " +"vientisų sluoksnių kas N sluoksnių (K yra neprivalomas, pvz., „5#“ atitinka " +"„5#1“), arba kableliais atskirtą sąrašą (pvz., 1,7,9), kad įterptumėte " +"konkrečiuose sluoksniuose. Sluoksniai skaičiuojami nuo 1." msgid "Fill Multiline" msgstr "Užpildyti kelias eilutes" -msgid "Using multiple lines for the infill pattern, if supported by infill pattern." -msgstr "Naudoti kelias linijas užpildymo šablonui, jei tai palaiko užpildymo šablonas." +msgid "" +"Using multiple lines for the infill pattern, if supported by infill pattern." +msgstr "" +"Kelių linijų naudojimas užpildo raštui, jei tai palaiko pats užpildo raštas." msgid "Z-buckling bias optimization (experimental)" -msgstr "" +msgstr "Z ašies išklumpavimo (buckling) optimizavimas (eksperimentinis)" -#, no-c-format, no-boost-format -msgid "Tightens the gyroid wave along the Z (vertical) axis at low infill density to shorten the effective vertical column length and improve Z-axis compression buckling resistance. Filament use is preserved. No effect at ~30% sparse infill density and above. Only applies when Sparse infill pattern is set to Gyroid." +msgid "" +"Tightens the gyroid wave along the Z (vertical) axis at low infill density " +"to shorten the effective vertical column length and improve Z-axis " +"compression buckling resistance. Filament use is preserved. No effect at " +"~30% sparse infill density and above. Only applies when Sparse infill " +"pattern is set to Gyroid." msgstr "" +"Sutankina giroido bangą išilgai Z (vertikalios) ašies esant mažam užpildo " +"tankiui, kad sutrumpėtų efektyvusis vertikalios kolonėlės ilgis ir pagerėtų " +"atsparumas gniuždymui bei išklumpavimui (buckling) išilgai Z ašies. Gijos " +"sąnaudos išlieka tokios pačios. Neturi įtakos esant ~30% ar didesniam reto " +"užpildo tankiui. Taikoma tik tada, kai reto užpildo raštas nustatytas kaip " +"Giroidas." msgid "Sparse infill pattern" -msgstr "Reto užpildymo raštas" +msgstr "Reto užpildo raštas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the line pattern for internal sparse infill." -msgstr "Vidinio reto užpildymo linijomis modelis." +msgid "Line pattern for internal sparse infill." +msgstr "Linijų raštas vidiniam retam užpildui." msgid "Zig Zag" msgstr "Zigzagas" @@ -12982,10 +15803,10 @@ msgid "Quarter Cubic" msgstr "Ketvirtis kubo" msgid "Support Cubic" -msgstr "Atrama kubinė" +msgstr "Atraminis kubinis (Support Cubic)" msgid "Lightning" -msgstr "Apšvietimas" +msgstr "Žaibas (Lightning)" msgid "Honeycomb" msgstr "Korys" @@ -13011,182 +15832,401 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Giroidas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." -msgstr "Viršutinio paviršiaus užpildymo pagreitis. Naudojant mažesnę vertę gali pagerėti viršutinio paviršiaus kokybė." +msgid "Lateral lattice angle 1" +msgstr "Rašto kampas 1" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Acceleration of outer wall: using a lower value can improve quality." -msgstr "Išorinės sienos pagreitis: naudojant mažesnę vertę galima pagerinti kokybę." +msgid "" +"The angle of the first set of Lateral lattice elements in the Z direction. " +"Zero is vertical." +msgstr "" +"Pirmojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra " +"vertikalus." + +msgid "Lateral lattice angle 2" +msgstr "Rašto kampas 2" + +msgid "" +"The angle of the second set of Lateral lattice elements in the Z direction. " +"Zero is vertical." +msgstr "" +"Antrojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra " +"vertikalus." + +msgid "Infill overhang angle" +msgstr "Užpildo iškyšos kampas" + +msgid "" +"The angle of the infill angled lines. 60° will result in a pure honeycomb." +msgstr "" +"Užpildo kampinių linijų kampas. Esant 180°C, 60° kampas sukurs gryną korį." + +msgid "Lightning overhang angle" +msgstr "Žaibo (Lightning) užpildo iškyšos kampas" + +msgid "Maximum overhang angle for Lightning infill support propagation." +msgstr "Maksimalus iškyšos kampas Žaibo (Lightning) užpildo atramų plitimui." + +msgid "Prune angle" +msgstr "Genėjimo kampas" + +msgid "" +"Controls how aggressively short or unsupported Lightning branches are " +"pruned.\n" +"This angle is converted internally to a per-layer distance." +msgstr "" +"Valdo, kaip agresyviai apkerpamos (genėjamos) trumpos arba neatremtos Žaibo " +"(Lightning) užpildo šakos.\n" +"Šis kampas programos viduje konvertuojamas į atstumą vienam sluoksniui." + +msgid "Straightening angle" +msgstr "Tiesinimo kampas" + +msgid "Maximum straightening angle used to simplify Lightning branches." +msgstr "" +"Maksimalus tiesinimo kampas, naudojamas Žaibo (Lightning) užpildo šakų " +"supaprastinimui." + +msgid "Sparse infill anchor length" +msgstr "Reto užpildo tvirtinimo ilgis" + +msgid "" +"Connect an infill line to an internal perimeter with a short segment of an " +"additional perimeter. If expressed as percentage (example: 15%) it is " +"calculated over infill extrusion width. Orca Slicer tries to connect two " +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than infill_anchor_max is found, the infill line is " +"connected to a perimeter segment at just one side and the length of the " +"perimeter segment taken is limited to this parameter, but no longer than " +"anchor_length_max.\n" +"Set this parameter to zero to disable anchoring perimeters connected to a " +"single infill line." +msgstr "" +"Sujungia užpildo liniją su vidiniu perimetru trumpa papildomo perimetro " +"atkarpa. Jei išreiškiama procentais (pvz., 10%), ji apskaičiuojama pagal " +"užpildo ekstruzijos plotį. „OrcaSlicer“ bando sujungti dvi artimas užpildo " +"linijas trumpu perimetro segmentu. Jei tokio perimetro segmento, trumpesnio " +"už infill_anchor_max, nerandama, užpildo linija sujungiama su perimetro " +"segmentu tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas " +"šiuo parametru, bet ne ilgiau nei anchor_length_max.\n" +"Nustatykite šį " +"parametrą lygų nuliui, jei norite išjungti perimetrų tvirtinimą, kai jie " +"sujungti su viena užpildo linija." + +msgid "0 (no open anchors)" +msgstr "0 (nėra atvirų tvirtinimų)" + +msgid "1000 (unlimited)" +msgstr "1000 (neribota)" + +msgid "Maximum length of the infill anchor" +msgstr "Maksimalus užpildo tvirtinimo ilgis" + +msgid "" +"Connect an infill line to an internal perimeter with a short segment of an " +"additional perimeter. If expressed as percentage (example: 15%) it is " +"calculated over infill extrusion width. Orca Slicer tries to connect two " +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than this parameter is found, the infill line is connected " +"to a perimeter segment at just one side and the length of the perimeter " +"segment taken is limited to infill_anchor, but no longer than this " +"parameter.\n" +"If set to 0, the old algorithm for infill connection will be used, it should " +"create the same result as with 1000 & 0." +msgstr "" +"Sujungia užpildo liniją su vidiniu perimetru trumpa papildomo perimetro " +"atkarpa. Jei išreiškiama procentais (pvz., 10%), ji apskaičiuojama pagal " +"užpildo ekstruzijos plotį. „OrcaSlicer“ bando sujungti dvi artimas užpildo " +"linijas trumpu perimetro segmentu. Jei tokio perimetro segmento, trumpesnio " +"už šį parametrą, nerandama, užpildo linija sujungiama su perimetro segmentu " +"tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas iki " +"infill_anchor, bet ne ilgiau nei šis parametras.\n" +"Jei nustatyta 0, bus naudojamas senasis užpildo sujungimo algoritmas, kuris " +"turėtų sukurti tokį patį rezultatą kaip ir nustačius 1000 ir 0." + +msgid "0 (Simple connect)" +msgstr "0 (paprastas prijungimas)" msgid "Acceleration of inner walls." -msgstr "Vidinių sienų pagreitis." +msgstr "Vidinių sienelių pagreitis." -msgid "Acceleration of sparse infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration." -msgstr "Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji bus apskaičiuota pagal numatytąjį pagreitį." +msgid "Acceleration of travel moves." +msgstr "Judėjimo judesių pagreitis." -msgid "Acceleration of internal solid infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration." -msgstr "Vidinio vientiso užpildo pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji bus apskaičiuota pagal numatytąjį pagreitį." +msgid "" +"Acceleration of top surface infill. Using a lower value may improve top " +"surface quality." +msgstr "" +"Viršutinio paviršiaus užpildo pagreitis. Naudojant mažesnę vertę gali " +"pagerėti viršutinio paviršiaus kokybė." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." -msgstr "Tai pirmojo sluoksnio spausdinimo pagreitis. Naudojant ribotą pagreitį galima pagerinti sukibimą su pagrindu." +msgid "Acceleration of outer wall. Using a lower value can improve quality." +msgstr "" +"Išorinės sienelės pagreitis. Naudojant mažesnę vertę galima pagerinti kokybę." + +msgid "" +"Acceleration of bridges. If the value is expressed as a percentage (e.g. " +"50%), it will be calculated based on the outer wall acceleration." +msgstr "" +"Tiltelių pagreitis. Jei vertė išreikšta procentais (pvz., 50%), ji bus " +"apskaičiuojama pagal išorinės sienelės pagreitį." + +msgid "mm/s² or %" +msgstr "mm/s² arba %" + +msgid "" +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." +msgstr "" +"Reto užpildo pagreitis. Jei vertė išreikšta procentais (pvz., 100%), ji bus " +"apskaičiuojama pagal numatytąjį pagreitį." + +msgid "" +"Acceleration of internal solid infill. If the value is expressed as a " +"percentage (e.g. 100%), it will be calculated based on the default " +"acceleration." +msgstr "" +"Vidinio vientiso užpildo pagreitis. Jei vertė išreikšta procentais (pvz., " +"100%), ji bus apskaičiuojama pagal numatytąjį pagreitį." + +msgid "" +"Acceleration of the first layer. Using a lower value can improve build plate " +"adhesion." +msgstr "" +"Tai pirmojo sluoksnio spausdinimo pagreitis. Naudojant ribotą pagreitį " +"galima pagerinti sukibimą su pagrindu." + +msgid "First layer travel" +msgstr "Pirmojo sluoksnio tuščioji eiga (travel)" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"Pirmojo sluoksnio tuščiosios eigos (travel) pagreitis.\n" +"Procentinė vertė yra santykinė su tuščiosios eigos pagreičiu." msgid "Enable accel_to_decel" -msgstr "Įjungti accel_to_decel" +msgstr "Įjungti greitėjimą iki lėtėjimo (accel_to_decel)" msgid "Klipper's max_accel_to_decel will be adjusted automatically." -msgstr "\"Klipper\" max_accel_to_decel bus nustatytas automatiškai." +msgstr "" +"„Klipper“ programinės įrangos max_accel_to_decel bus pritaikytas " +"automatiškai." msgid "accel_to_decel" msgstr "accel_to_decel" #, c-format, boost-format -msgid "Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." -msgstr "\"Klipper\" max_accel_to_decel bus pakoreguotas pagal šį pagreičio %%." +msgid "" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." +msgstr "" +"„Klipper“ programinės įrangos max_accel_to_decel bus pakoreguotas iki šios " +"pagreičio procentinės dalies (%%)." msgid "Default jerk." msgstr "Numatytasis trūkčiojimas." -msgid "Marlin Firmware Junction Deviation (replaces the traditional XY Jerk setting)." -msgstr "Marlin Firmware jungties nuokrypis (pakeičia tradicinį XY trūkčiojimo nustatymą)." +msgid "" +"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk " +"setting)." +msgstr "" +"„Marlin“ programinės įrangos jungties nuokrypis (pakeičia tradicinį XY " +"trūkčiojimo (Jerk) nustatymą)." msgid "Jerk of outer walls." -msgstr "Išorinių sienų trūkčiojimas." +msgstr "Išorinių sienelių trūkčiojimas (Jerk)." msgid "Jerk of inner walls." -msgstr "Vidinių sienų trūkčiojimas." +msgstr "Vidinių sienelių trūkčiojimas (Jerk)." msgid "Jerk for top surface." -msgstr "Viršutinio paviršiaus trūkčiojimas." +msgstr "Viršutinio paviršiaus trūkčiojimas (Jerk)." msgid "Jerk for infill." -msgstr "Užpildymo trūkčiojimas." +msgstr "Užpildo trūkčiojimas (Jerk)." msgid "Jerk for the first layer." -msgstr "Pradinio sluoksnio trūkčiojimas." +msgstr "Pirmojo sluoksnio trūkčiojimas (Jerk)." msgid "Jerk for travel." -msgstr "Judėjimo trūkčiojimas." +msgstr "Tuščiosios eigos (travel) trūkčiojimas (Jerk)." msgid "" "Travel jerk of first layer.\n" "The percentage value is relative to Travel Jerk." msgstr "" +"Pirmojo sluoksnio tuščiosios eigos (travel) trūkčiojimas.\n" +"Procentinė vertė yra santykinė su tuščiosios eigos trūkčiojimu (Travel Jerk)." -msgid "Line width of the first layer. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Pradinio sluoksnio linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgid "" +"Line width of the first layer. If expressed as a %, it will be computed over " +"the nozzle diameter." +msgstr "" +"Pirmojo sluoksnio linijos plotis. Jei išreikštas procentais (%), jis " +"apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer height" -msgstr "Pradinio sluoksnio aukštis" +msgstr "Pirmojo sluoksnio aukštis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Height of the first layer. Making the first layer height thicker can improve build plate adhesion." -msgstr "Pradinio sluoksnio aukštis. Šiek tiek padidinus pradinio sluoksnio aukštį galima pagerinti pagrindo plokštės sukibimą." +msgid "" +"Height of the first layer. Making the first layer height thicker can improve " +"build plate adhesion." +msgstr "" +"Pirmojo sluoksnio aukštis. Padarius pirmąjį sluoksnį storesnį, galima " +"pagerinti sukibimą su pagrindu." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for the first layer except for solid infill sections." -msgstr "Greitis taikomas pirmajam sluoksniui, išskyrus vientiso užpildo ruožus." +msgid "Speed of the first layer except the solid infill part." +msgstr "Pirmojo sluoksnio greitis, išskyrus vientiso užpildo dalį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer infill" -msgstr "Pradinio sluoksnio užpildymas" +msgstr "Pirmojo sluoksnio užpildas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for solid infill parts of the first layer." -msgstr "Pirmojo sluoksnio vientiso užpildo dalių greitis." +msgid "Speed of solid infill part of the first layer." +msgstr "Pirmojo sluoksnio vientiso užpildo dalies greitis." msgid "First layer travel speed" -msgstr "Pradinio sluoksnio judėjimo greitis" +msgstr "Pirmojo sluoksnio tuščiosios eigos (travel) greitis" msgid "Travel speed of the first layer." -msgstr "Pradinio sluoksnio judėjimo greitis." +msgstr "Pirmojo sluoksnio tuščiosios eigos (travel) greitis." msgid "Number of slow layers" +msgstr "Lėtųjų sluoksnių skaičius" + +msgid "" +"The first few layers are printed slower than normal. The speed is gradually " +"increased in a linear fashion over the specified number of layers." msgstr "" +"Keli pirmieji sluoksniai spausdinami lėčiau nei įprastai. Greitis " +"palaipsniui linijiniu būdu didinamas per nurodytą sluoksnių skaičių." -msgid "The first few layers are printed slower than normal. The speed is gradually increased in a linear fashion over the specified number of layers." -msgstr "Keli pirmieji sluoksniai spausdinami lėčiau nei įprastai. Greitis palaipsniui linijiniu būdu didinamas per nurodytą sluoksnių skaičių." - -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer nozzle temperature" -msgstr "Pradinė sluoksnio purkštuko temperatūra" +msgstr "Pirmojo sluoksnio purkštuko temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Nozzle temperature for printing the first layer with this filament" -msgstr "Purkštuko temperatūra pradiniam sluoksniui spausdinti, kai naudojama ši gija." +msgid "" +"Nozzle temperature for printing the first layer when using this filament." +msgstr "" +"Purkštuko temperatūra pradiniam sluoksniui spausdinti, kai naudojama ši gija." msgid "Full fan speed at layer" msgstr "Visas ventiliatoriaus greitis sluoksnyje" -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." -msgstr "Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje \"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje \"full_fan_speed_layer\". Į \"full_fan_speed_layer\" bus neatsižvelgiama, jei jis bus mažesnis už \"close_fan_the_first_x_layers\"; tokiu atveju ventiliatorius veiks didžiausiu leistinu greičiu sluoksnyje \"close_fan_the_first_x_layers\" + 1." +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." +msgstr "" +"Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje " +"\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje " +"\"full_fan_speed_layer\". Į \"full_fan_speed_layer\" bus neatsižvelgiama, " +"jei jis bus mažesnis už \"close_fan_the_first_x_layers\"; tokiu atveju " +"ventiliatorius veiks didžiausiu leistinu greičiu sluoksnyje " +"\"close_fan_the_first_x_layers\" + 1." msgid "layer" msgstr "sluoksnis" msgid "Support interface fan speed" -msgstr "Atramų sąsajos ventiliatoriaus greitis" +msgstr "Atramų skiriamųjų sluoksnių ventiliatoriaus greitis" msgid "" -"This part cooling fan speed is applied when printing support interfaces. Setting this parameter to a higher than regular speed reduces the layer binding strength between supports and the supported part, making them easier to separate.\n" +"This part cooling fan speed is applied when printing support interfaces. " +"Setting this parameter to a higher than regular speed reduces the layer " +"binding strength between supports and the supported part, making them easier " +"to separate.\n" "Set to -1 to disable it.\n" "This setting is overridden by disable_fan_first_layers." msgstr "" -"Šis dalies aušinimo ventiliatoriaus greitis taikomas spausdinant atramines sąsajas. Nustačius šį parametrą didesniu nei įprastai greičiu, sumažėja sluoksnių surišimo stiprumas tarp atramų ir remiamos dalies, todėl jas lengviau atskirti.\n" -"Nustatykite -1, kad išjungtumėte šį parametrą.\n" -"Šis parametras pakeičiamas parametru \"Išjungti pirmųjų sluoksnių aušinimą\"." +"Šis detalės aušinimo ventiliatoriaus greitis yra taikomas spausdinant atramų " +"skiriamuosius sluoksnius. Nustačius didesnį nei įprasta šio parametro " +"greitį, sumažėja sluoksnių sukibimo stiprumas tarp atramų ir remiamos " +"detalės, todėl jas lengviau atskirti.\n" +"Nustatykite -1, kad išjungtumėte.\n" +"Šį nustatymą perrašo disable_fan_first_layers." msgid "Internal bridges fan speed" -msgstr "Vidinių tiltų ventiliatoriaus greitis" +msgstr "Vidinių tiltelių ventiliatoriaus greitis" msgid "" -"The part cooling fan speed used for all internal bridges. Set to -1 to use the overhang fan speed settings instead.\n" +"The part cooling fan speed used for all internal bridges. Set to -1 to use " +"the overhang fan speed settings instead.\n" "\n" -"Reducing the internal bridges fan speed, compared to your regular fan speed, can help reduce part warping due to excessive cooling applied over a large surface for a prolonged period of time." +"Reducing the internal bridges fan speed, compared to your regular fan speed, " +"can help reduce part warping due to excessive cooling applied over a large " +"surface for a prolonged period of time." msgstr "" -"Dalies aušinimo ventiliatoriaus greitis, naudojamas visiems vidiniams tilteliams. Nustatykite į -1, kad vietoj to būtų naudojami iškyšos ventiliatoriaus greičio nustatymai.\n" +"Detalės aušinimo ventiliatoriaus greitis, naudojamas visiems vidiniams " +"tilteliams. Nustatykite vertę -1, kad vietoj to būtų naudojami iškyšų " +"ventiliatoriaus greičio nustatymai.\n" "\n" -"Sumažinus vidinių tiltelių ventiliatoriaus greitį, palyginti su įprastu ventiliatoriaus greičiu, galima sumažinti detalės deformaciją dėl per didelio aušinimo, ilgą laiką taikomo dideliam paviršiui." +"Sumažintas vidinių tiltelių ventiliatoriaus greitis, lyginant su įprastu " +"greičiu, padeda sumažinti detalės deformavimąsi (warping) dėl per didelio " +"aušinimo, kuris ilgą laiką taikomas dideliam paviršiui." msgid "Ironing fan speed" msgstr "Lyginimo ventiliatoriaus greitis" msgid "" -"This part cooling fan speed is applied when ironing. Setting this parameter to a lower than regular speed reduces possible nozzle clogging due to the low volumetric flow rate, making the interface smoother.\n" +"This part cooling fan speed is applied when ironing. Setting this parameter " +"to a lower than regular speed reduces possible nozzle clogging due to the " +"low volumetric flow rate, making the interface smoother.\n" "Set to -1 to disable it." msgstr "" -"Šis dalies aušinimo ventiliatoriaus greitis taikomas lyginant. Nustačius šį parametrą mažesniu nei įprastas greitis, sumažėja galimas purkštuko užsikimšimas dėl mažo tūrinio srauto, todėl sąsaja tampa sklandesnė.\n" -"Norėdami išjungti, nustatykite -1." +"Šis detalės aušinimo ventiliatoriaus greitis yra taikomas lyginant paviršių. " +"Nustačius mažesnį nei įprasta šio parametro greitį, sumažėja purkštuko " +"užsikimšimo rizika dėl mažo tūrinio srauto, todėl paviršius tampa lygesnis.\n" +"Nustatykite -1, kad išjungtumėte." msgid "Ironing flow" msgstr "Lyginimo srautas" -msgid "Filament-specific override for ironing flow. This allows you to customize the ironing flow for each filament type. Too high value results in overextrusion on the surface." +msgid "" +"Filament-specific override for ironing flow. This allows you to customize " +"the ironing flow for each filament type. Too high value results in " +"overextrusion on the surface." msgstr "" +"Konkrečiai gijai taikomas lyginimo srauto nepaisymas. Tai leidžia pritaikyti " +"lyginimo srauto nustatymus kiekvienam gijos tipui. Per didelė vertė sukelia " +"perteklinį medžiagos išspaudimą (overextrusion) ant paviršiaus." msgid "Ironing line spacing" -msgstr "Tarpai tarp lyginimo linijų" +msgstr "Lyginimo linijų tankumas (žingsnis)" -msgid "Filament-specific override for ironing line spacing. This allows you to customize the spacing between ironing lines for each filament type." +msgid "" +"Filament-specific override for ironing line spacing. This allows you to " +"customize the spacing between ironing lines for each filament type." msgstr "" +"Konkrečiai gijai taikomas lyginimo linijų tankumo nepaisymas. Tai leidžia " +"pritaikyti atstumus tarp lyginimo linijų kiekvienam gijos tipui." msgid "Ironing inset" -msgstr "Lyginimo intarpas" +msgstr "Lyginimo atitraukimas (inset)" -msgid "Filament-specific override for ironing inset. This allows you to customize the distance to keep from the edges when ironing for each filament type." +msgid "" +"Filament-specific override for ironing inset. This allows you to customize " +"the distance to keep from the edges when ironing for each filament type." msgstr "" +"Konkrečiai gijai taikomas lyginimo atitraukimo nepaisymas. Tai leidžia " +"pritaikyti išlaikomą atstumą nuo kraštų lyginimo metu kiekvienam gijos tipui." msgid "Ironing speed" msgstr "Lyginimo greitis" -msgid "Filament-specific override for ironing speed. This allows you to customize the print speed of ironing lines for each filament type." +msgid "" +"Filament-specific override for ironing speed. This allows you to customize " +"the print speed of ironing lines for each filament type." msgstr "" +"Konkrečiai gijai taikomas lyginimo greičio nepaisymas. Tai leidžia " +"pritaikyti lyginimo linijų spausdinimo greitį kiekvienam gijos tipui." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This setting makes the toolhead randomly jitter while printing walls so that the surface has a rough textured look. This setting controls the fuzzy position." -msgstr "Dėl šio nustatymo spausdinant sienas įrankio galvutė atsitiktinai trūkčioja, todėl paviršius atrodo grublėtas. Šiuo nustatymu kontroliuojama grublėtumo padėtis." +msgid "" +"Randomly jitter while printing the wall, so that the surface has a rough " +"look. This setting controls the fuzzy position." +msgstr "" +"Atsitiktinis virpesys spausdinant sienelę, kad paviršius įgautų grublėtą " +"išvaizdą. Šis nustatymas valdo grublėtumo (fuzzy skin) poziciją.." msgid "Painted only" msgstr "Tik dažytas" @@ -13201,131 +16241,221 @@ msgid "Contour and hole" msgstr "Kontūras ir skylė" msgid "All walls" -msgstr "Visos sienos" +msgstr "Visos sienelės" msgid "Fuzzy skin thickness" msgstr "Grublėto paviršiaus storis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The width of jittering: it’s recommended to keep this lower than the outer wall line width." -msgstr "Plotis, kurio ribose turi būti drebėjimas. Rekomenduojama, kad jis būtų mažesnis už išorinės sienos linijos plotį." +msgid "" +"The width within which to jitter. It's advised to be below outer wall line " +"width." +msgstr "" +"Plotis, kurio ribose atliekamas virpesys. Rekomenduojama, kad jis būtų " +"mažesnis už išorinės sienelės linijos plotį." msgid "Fuzzy skin point distance" msgstr "Grublėto paviršiaus taško atstumas" -msgid "The average distance between the random points introduced on each line segment." -msgstr "Vidutinis atstumas tarp atsitiktinių taškų, įvestų kiekvienoje linijos atkarpoje." +msgid "" +"The average distance between the random points introduced on each line " +"segment." +msgstr "" +"Vidutinis atstumas tarp atsitiktinių taškų, įvestų kiekvienoje linijos " +"atkarpoje." msgid "Apply fuzzy skin to first layer" -msgstr "Taikyti grublėtą paviršių pirmajam sluoksniui" +msgstr "Taikyti grublėtą paviršių (fuzzy skin) pirmajam sluoksniui" msgid "Whether to apply fuzzy skin on the first layer." -msgstr "Ar taikyti grublėtą paviršių pirmajame sluoksnyje." +msgstr "Ar taikyti grublėtą paviršių (fuzzy skin) ant pirmojo sluoksnio." msgid "Fuzzy skin generator mode" -msgstr "Grublėto paviršiaus generatoriaus režimas" +msgstr "Grublėto paviršiaus (fuzzy skin) generatoriaus režimas" #, c-format, boost-format msgid "" "Fuzzy skin generation mode. Works only with Arachne!\n" -"Displacement: Сlassic mode when the pattern is formed by shifting the nozzle sideways from the original path.\n" -"Extrusion: The mode when the pattern formed by the amount of extruded plastic. This is the fast and straight algorithm without unnecessary nozzle shake that gives a smooth pattern. But it is more useful for forming loose walls in the entire they array.\n" -"Combined: Joint mode [Displacement] + [Extrusion]. The appearance of the walls is similar to [Displacement] Mode, but it leaves no pores between the perimeters.\n" +"Displacement: Сlassic mode when the pattern is formed by shifting the nozzle " +"sideways from the original path.\n" +"Extrusion: The mode when the pattern formed by the amount of extruded " +"plastic. This is the fast and straight algorithm without unnecessary nozzle " +"shake that gives a smooth pattern. But it is more useful for forming loose " +"walls in the entire they array.\n" +"Combined: Joint mode [Displacement] + [Extrusion]. The appearance of the " +"walls is similar to [Displacement] Mode, but it leaves no pores between the " +"perimeters.\n" "\n" -"Attention! The [Extrusion] and [Combined] modes works only the fuzzy_skin_thickness parameter not more than the thickness of printed loop. At the same time, the width of the extrusion for a particular layer should also not be below a certain level. It is usually equal 15-25%% of a layer height. Therefore, the maximum fuzzy skin thickness with a perimeter width of 0.4 mm and a layer height of 0.2 mm will be 0.4-(0.2*0.25)=±0.35mm! If you enter a higher parameter than this, the error Flow::spacing() will displayed, and the model will not be sliced. You can choose this number until this error is repeated." +"Attention! The [Extrusion] and [Combined] modes works only the " +"fuzzy_skin_thickness parameter not more than the thickness of printed loop. " +"At the same time, the width of the extrusion for a particular layer should " +"also not be below a certain level. It is usually equal 15-25%% of a layer " +"height. Therefore, the maximum fuzzy skin thickness with a perimeter width " +"of 0.4 mm and a layer height of 0.2 mm will be 0.4-(0.2*0.25)=±0.35mm! If " +"you enter a higher parameter than this, the error Flow::spacing() will " +"displayed, and the model will not be sliced. You can choose this number " +"until this error is repeated." msgstr "" -"Grublėto paviršiaus generavimo režimas. Veikia tik su Arachne!\n" -"Perkėlimas: Klasikinis režimas, kai raštas formuojamas šoniniu purkštuvo poslinkiu nuo pradinio kelio.\n" -"Ekstruzija: režimas, kai raštas formuojamas ekstruzuojamo plastiko kiekiu. Tai greitas ir tiesus algoritmas be nereikalingo purkštuvo judėjimo, kuris suteikia lygų raštą. Tačiau jis yra naudingesnis formuojant laisvas sienas visame jų masyve.\n" -"Kombinuotas: jungtinis režimas [Perkėlimas] + [Ekstruzija]. Sienų išvaizda yra panaši į [Perkėlimo] režimą, tačiau tarp perimetrų nelieka porų.\n" +"Grublėto paviršiaus (fuzzy skin) generavimo režimas. Veikia tik naudojant " +"„Arachne“ sienelių generatorių!\n" +"Poslinkis (Displacement): Klasikinis režimas, kai raštas formuojamas " +"stumiant purkštuką į šoną nuo pradinės trajektorijos.\n" +"Išspaudimas (Extrusion): Režimas, kai raštas suformuojamas keičiant " +"išspaudžiamo plastiko kiekį. Tai greitas ir tiesus algoritmas be " +"nereikalingo purkštuko purtymo, sukuriantis švelnesnį raštą. Tačiau jis " +"labiau naudingas formuojant laisvas sieneles visame jų masyve.\n" +"Kombinuotas (Combined): Jungtinis režimas [Poslinkis] + [Išspaudimas]. " +"Sienelių išvaizda panaši į [Poslinkio] režimą, tačiau tarp perimetrų nelieka " +"tuštumų.\n" "\n" -"Dėmesio! [Ekstruzijos] ir [Kombinuoto] režimai veikia tik tada, kai parametras fuzzy_skin_thickness yra ne didesnis už spausdintos kilpos storį. Tuo pačiu metu ekstruzijos plotis tam tikram sluoksniui taip pat neturėtų būti mažesnis už tam tikrą lygį. Paprastai jis yra lygus 15–25%% sluoksnio aukščio. Todėl maksimalus grublėto paviršiaus storis, kai perimetro plotis yra 0,4 mm, o sluoksnio aukštis – 0,2 mm, bus 0,4-(0,2*0,25)=±0,35 mm! Jei įvesite didesnį parametrą, bus rodomas klaidos pranešimas Flow::spacing(), o modelis nebus supjaustytas. Galite parinkinėti šį skaičių, kol šios klaidos neliks." +"Dėmesio! [Išspaudimo] ir [Kombinuotas] režimai veikia tik tada, kai " +"fuzzy_skin_thickness parametras neviršija spausdinamos kilpos storio. Tuo " +"pat metu ekstruzijos plotis konkrečiame sluoksnyje taip pat neturi būti " +"mažesnis už tam tikrą lygį. Paprastai jis lygus 15–25%% sluoksnio aukščio. " +"Todėl maksimalus grublėto paviršiaus storis, kai perimetro plotis yra 0,4 " +"mm, o sluoksnio aukštis – 0,2 mm, bus 0,4-(0,2*0,25)=±0,35 mm! Jei įvesite " +"didesnę vertę, bus parodyta klaida Flow::spacing() ir modelis nebus " +"suslupksniuotas (sliced). Galite keisti šį skaičių, kol ši klaida nustos " +"kartotis." msgid "Displacement" -msgstr "Perkėlimas" +msgstr "Poslinkis (Displacement)" msgid "Extrusion" -msgstr "Ekstruzija" +msgstr "Išspaudimas (Extrusion)" msgid "Combined" msgstr "Kombinuotas" msgid "Fuzzy skin noise type" -msgstr "Grublėto paviršiaus nelygumų tipas" +msgstr "Grublėto paviršiaus (fuzzy skin) triukšmo tipas" msgid "" "Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" -"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates marble-like textures.\n" -"Voronoi: Divides the surface into voronoi cells, and displaces each one by a random amount. Creates a patchwork texture.\n" -"Ripple: Uniform ripple pattern that ripples left and right of the original path. Repeating pattern, woven appearance." +"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates " +"marble-like textures.\n" +"Voronoi: Divides the surface into voronoi cells, and displaces each one by a " +"random amount. Creates a patchwork texture.\n" +"Ripple: Uniform ripple pattern that ripples left and right of the original " +"path. Repeating pattern, woven appearance." msgstr "" +"Triukšmo tipas, naudojamas grublėto paviršiaus generavimui:\n" +"Klasikinis (Classic): Klasikinis tolygus atsitiktinis triukšmas.\n" +"Perlin: Perlino triukšmas, sukuriantis nuoseklesnę tekstūrą.\n" +"Billow: Panašus į Perlino triukšmą, bet labiau gubruotas (gabalinis).\n" +"Keterinis multifraktalas (Ridged Multifractal): Keterinis triukšmas su " +"aštriais, dantytais bruožais. Sukuria į marmurą panašias tekstūras.\n" +"Voronoi: Padalija paviršių į Voronojaus ląsteles ir pastumia kiekvieną iš jų " +"atsitiktiniu dydžiu. Sukuria lopinėlių tekstūrą.\n" +"Vilnelės (Ripple): Tolygus vilnelių raštas, kuris banguoja į kairę ir į " +"dešinę nuo pradinės trajektorijos. Pasikartojantis raštas, sukuriantis austo " +"audinio išvaizdą." msgid "Classic" msgstr "Klasikinis" msgid "Perlin" -msgstr "Perlin" +msgstr "Perlino (Perlin)" msgid "Billow" -msgstr "Billow" +msgstr "Gubruotas (Billow)" msgid "Ridged Multifractal" -msgstr "" +msgstr "Keterinis multifraktalas (Ridged Multifractal)" msgid "Voronoi" -msgstr "Voronoi" +msgstr "Voronojaus (Voronoi)" msgid "Ripple" -msgstr "Ripple" +msgstr "Vilnelės (Ripple)" msgid "Fuzzy skin feature size" -msgstr "Grublėto paviršiaus elementų dydis" +msgstr "Grublėto paviršiaus (fuzzy skin) elementų dydis" -msgid "The base size of the coherent noise features, in mm. Higher values will result in larger features." -msgstr "Koherentinio triukšmo elementų bazinis dydis, mm. Didesnės reikšmės reiškia didesnius elementus." +msgid "" +"The base size of the coherent noise features, in mm. Higher values will " +"result in larger features." +msgstr "" +"Koherentinio triukšmo elementų bazinis dydis milimetrais. Didesnės vertės " +"sukuria didesnius elementus." msgid "Fuzzy Skin Noise Octaves" -msgstr "Grublėto paviršiaus nelygumų oktavos" +msgstr "Grublėto paviršiaus (fuzzy skin) triukšmo oktavos" -msgid "The number of octaves of coherent noise to use. Higher values increase the detail of the noise, but also increase computation time." -msgstr "Koherentinio triukšmo oktavų skaičius, kuris bus naudojamas. Didesnės reikšmės padidina triukšmo detalumą, tačiau taip pat pailgina skaičiavimo laiką." +msgid "" +"The number of octaves of coherent noise to use. Higher values increase the " +"detail of the noise, but also increase computation time." +msgstr "" +"Koherentinio triukšmo oktavų skaičius, kuris bus naudojamas. Didesnės " +"reikšmės padidina triukšmo detalumą, tačiau taip pat pailgina skaičiavimo " +"laiką." msgid "Fuzzy skin noise persistence" -msgstr "Grublėto paviršiaus nelygumų patvarumas" +msgstr "Grublėto paviršiaus (fuzzy skin) triukšmo išlaikymas (persistence)" -msgid "The decay rate for higher octaves of the coherent noise. Lower values will result in smoother noise." -msgstr "Aukštesnių oktavų koherentinio triukšmo silpnėjimo greitis. Dėl mažesnių verčių triukšmas bus lygesnis." +msgid "" +"The decay rate for higher octaves of the coherent noise. Lower values will " +"result in smoother noise." +msgstr "" +"Aukštesnių koherentinio triukšmo oktavų silpnėjimo greitis. Mažesnės vertės " +"sukuria tolygesnį triukšmą." msgid "Number of ripples per layer" -msgstr "" +msgstr "Vilnelių skaičius sluoksnyje" msgid "Controls how many full cycles of ripples will be added per layer." -msgstr "" +msgstr "Valdo, kiek pilnų vilnelių ciklų bus pridėta viename sluoksnyje." msgid "Ripple offset" -msgstr "" +msgstr "Vilnelių poslinkis (offset)" msgid "" -"Shifts the ripple phase forward along the print path by the specified percentage of a wavelength each layer period.\n" +"Shifts the ripple phase forward along the print path by the specified " +"percentage of a wavelength each layer period.\n" "- 0% keeps every layer identical.\n" -"- 50% shifts the pattern by half a wavelength, effectively inverting the phase.\n" -"- 100% shifts the pattern by a full wavelength, returning to the original phase.\n" +"- 50% shifts the pattern by half a wavelength, effectively inverting the " +"phase.\n" +"- 100% shifts the pattern by a full wavelength, returning to the original " +"phase.\n" "\n" -"The shift is applied once every number of layers set by Layers between ripple offset, so layers within the same group are printed identically." +"The shift is applied once every number of layers set by Layers between " +"ripple offset, so layers within the same group are printed identically." msgstr "" +"Pastumia vilnelės fazę į priekį išilgai spausdinimo trajektorijos nurodytu " +"bangos ilgio procentu kiekviename sluoksnių periode.\n" +"– 0% išlaiko kiekvieną sluoksnį identišką.\n" +"– 50% pastumia raštą puse bangos ilgio, efektyviai invertuodamas fazę.\n" +"– 100% pastumia raštą visu bangos ilgiu, sugrąžindamas pradinę fazę.\n" +"\n" +"Poslinkis taikomas kas tiek sluoksnių, kiek nurodyta parametre „Sluoksnių " +"skaičius tarp vilnelių poslinkio“, todėl tos pačios grupės sluoksniai " +"spausdinami identiškai." msgid "Layers between ripple offset" -msgstr "" +msgstr "Sluoksnių skaičius tarp vilnelių poslinkio" msgid "" -"Specifies how many consecutive layers share the same ripple phase before the offset is applied.\n" +"Specifies how many consecutive layers share the same ripple phase before the " +"offset is applied.\n" "For example:\n" -"- 1 = Layer 1 is printed with the base ripple pattern, then layer 2 is shifted by the configured offset, then layer 3 returns to the base pattern, and so on.\n" -"- 3 = Layers 1 to 3 are printed with the base ripple pattern, then layers 4 to 6 are shifted by the configured offset, then layers 7 to 9 return to the base pattern, etc." +"- 1 = Layer 1 is printed with the base ripple pattern, then layer 2 is " +"shifted by the configured offset, then layer 3 returns to the base pattern, " +"and so on.\n" +"- 3 = Layers 1 to 3 are printed with the base ripple pattern, then layers 4 " +"to 6 are shifted by the configured offset, then layers 7 to 9 return to the " +"base pattern, etc." msgstr "" +"Nurodo, kiek iš eilės einančių sluoksnių naudoja tą pačią vilnelių fazę " +"prieš pritaikant poslinkį.\n" +"Pavyzdžiui:\n" +"– 1 = 1 sluoksnis spausdinamas su baziniu vilnelių raštu, tada 2 sluoksnis " +"pastumiamas sukonfigūruotu poslinkiu, 3 sluoksnis grįžta prie bazinio rašto " +"ir t. t.\n" +"– 3 = sluoksniai nuo 1 iki 3 spausdinami su baziniu vilnelių raštu, tada " +"sluoksniai nuo 4 iki 6 pastumiami sukonfigūruotu poslinkiu, sluoksniai nuo 7 " +"iki 9 grįžta prie bazinio rašto ir t. t." msgid "Filter out tiny gaps" msgstr "Filtruoti mažus tarpus" @@ -13333,59 +16463,105 @@ msgstr "Filtruoti mažus tarpus" msgid "Layers and Perimeters" msgstr "Sluoksniai ir perimetrai" -msgid "Don't print gap fill with a length is smaller than the threshold specified (in mm). This setting applies to top, bottom and solid infill and, if using the classic perimeter generator, to wall gap fill." -msgstr "Nespausdinti tarpo užpildymo, kurio ilgis yra mažesnis už nurodytą ribą (mm). Šis nustatymas taikomas viršutiniam, apatiniam ir vientisam užpildui, o jei naudojamas klasikinis perimetro generatorius - ir sienos tarpo užpildymui." +msgid "" +"Don't print gap fill with a length is smaller than the threshold specified " +"(in mm). This setting applies to top, bottom and solid infill and, if using " +"the classic perimeter generator, to wall gap fill." +msgstr "" +"Nespausdinti tarpų užpildymo, kurio ilgis mažesnis už nurodytą ribą " +"milimetrais. Šis nustatymas taikomas viršutiniam, apatiniam ir vientisam " +"užpildui, o naudojant klasikinį perimetro generatorių – ir sienelių tarpų " +"užpildymui." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for gap infill. Gaps usually have irregular line width and should be printed more slowly." -msgstr "Tarpų užpildymo greitis. Tarpai paprastai būna netaisyklingo pločio, todėl juos reikia spausdinti lėčiau." +msgid "" +"Speed of gap infill. Gap usually has irregular line width and should be " +"printed more slowly." +msgstr "" +"Tarpų užpildo greitis. Tarpai paprastai būna netaisyklingo linijos pločio, " +"todėl juos reikėtų spausdinti lėčiau." msgid "Precise Z height" msgstr "Tikslus Z aukštis" -msgid "Enable this to get precise Z height of object after slicing. It will get the precise object height by fine-tuning the layer heights of the last few layers. Note that this is an experimental parameter." -msgstr "Įjunkite šią funkciją, jei norite gauti tikslų objekto z aukštį po sluoksniavimo. Tikslus objekto aukštis bus gautas tiksliai nustatant kelių paskutinių sluoksnių aukštį. Atkreipkite dėmesį, kad tai eksperimentinis parametras." +msgid "" +"Enable this to get precise Z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." +msgstr "" +"Įjunkite, kad gautumėte tikslų objekto Z-ašies aukštį po supjaustymo " +"(slicing). Tikslus objekto aukštis pasiekiamas tiksliai sureguliuojant kelių " +"paskutinių sluoksnių aukštį. Atkreipkite dėmesį, kad tai yra eksperimentinis " +"parametras." msgid "Arc fitting" -msgstr "Lanko talpinimas" +msgstr "Lankų pritaikymas (Arc fitting)" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. The fitting tolerance is same as the resolution.\n" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution.\n" "\n" -"Note: For Klipper machines, this option is recommended to be disabled. Klipper does not benefit from arc commands as these are split again into line segments by the firmware. This results in a reduction in surface quality as line segments are converted to arcs by the slicer and then back to line segments by the firmware." +"Note: For Klipper machines, this option is recommended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Įgalinkite šią funkciją, kad gautumėte G-kodo failą su G2 ir G3 judesiais. Montavimo tolerancija yra tokia pati kaip skiriamoji geba.\n" +"Įjunkite, kad gautumėte G-kodo failą su G2 ir G3 judesiais. Pritaikymo " +"tolerancija yra tokia pati kaip skiriamoji geba (resolution).\n" "\n" -"Pastaba: „Klipper“ mašinoms šią parinktį rekomenduojama išjungti. Klipper neturi naudos iš lanko komandų, nes jas programinė įranga vėl suskaido į linijų segmentus. Dėl to suprastėja paviršiaus kokybė, nes linijiniai segmentai pjaustytuve paverčiami lankais, o programinėje įrangoje vėl paverčiami linijiniais segmentais." +"Pastaba: „Klipper“ valdomiems spausdintuvams šią parinktį rekomenduojama " +"išjungti. „Klipper“ programinė įranga neduoda jokios naudos iš lankų " +"komandų, nes ji jas vėl suskaido į tiesių segmentus. Dėl to gali suprastėti " +"paviršiaus kokybė, kadangi tiesių segmentai pjaustytuve paverčiami lankais, " +"o programinėje įrangoje – vėl atgal į tiesių segmentus." msgid "Add line number" msgstr "Pridėti eilutės numerį" -msgid "Enable this to add line number(Nx) at the beginning of each G-code line." -msgstr "Įjunkite šią funkciją, kad kiekvienos G kodo eilutės pradžioje būtų įterptas eilutės numeris (Nx)." +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." +msgstr "" +"Įjunkite, kad pridėtumėte eilutės numerį (Nx) kiekvienos G-kodo eilutės " +"pradžioje." msgid "Scan first layer" msgstr "Nuskaityti pirmąjį sluoksnį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Enable this to allow the camera on the printer to check the quality of the first layer." -msgstr "Įjunkite šią funkciją, kad spausdintuvo kamera būtų galima patikrinti pirmojo sluoksnio kokybę." +msgid "" +"Enable this to enable the camera on printer to check the quality of first " +"layer." +msgstr "Įjunkite, kad spausdintuvo kamera patikrintų pirmojo sluoksnio kokybę." msgid "Power Loss Recovery" -msgstr "" +msgstr "Spausdinimo atnaujinimas dingus maitinimui (Power Loss Recovery)" -msgid "Choose how to control power loss recovery. When set to Printer configuration, the slicer will not emit power loss recovery G-code and will leave the printer's configuration unchanged. Applicable to Bambu Lab or Marlin 2 firmware based printers." +msgid "" +"Choose how to control power loss recovery. When set to Printer " +"configuration, the slicer will not emit power loss recovery G-code and will " +"leave the printer's configuration unchanged. Applicable to Bambu Lab or " +"Marlin 2 firmware based printers." msgstr "" +"Pasirinkite, kaip valdyti spausdinimo atnaujinimą dingus maitinimui. " +"Pasirinkus „Spausdintuvo konfigūracija“, pjaustytuvas neįterps papildomo " +"atstatymo G-kodo ir paliks nepakeistą paties spausdintuvo konfigūraciją. " +"Taikoma „Bambu Lab“ arba „Marlin 2“ programine įranga pagrįstiems " +"spausdintuvams." msgid "Printer configuration" -msgstr "" +msgstr "Spausdintuvo konfigūracija" msgid "Nozzle type" msgstr "Purkštuko tipas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The metallic material of the nozzle: This determines the abrasive resistance of the nozzle and what kind of filament can be printed." -msgstr "Nuo purkštuko medžiagos priklauso antgalio atsparumas abrazyvui ir tai, kokią giją galima spausdinti." +msgid "" +"The metallic material of nozzle. This determines the abrasive resistance of " +"nozzle, and what kind of filament can be printed." +msgstr "" +"Purkštuko metalo lydinys. Tai lemia purkštuko atsparumą abrazyvui ir nurodo, " +"kokias gijas galima spausdinti." + +msgid "Undefine" +msgstr "Neapibrėžta" msgid "Hardened steel" msgstr "Kietintas plienas" @@ -13394,14 +16570,17 @@ msgid "Stainless steel" msgstr "Nerūdijantis plienas" msgid "Tungsten carbide" -msgstr "" +msgstr "Volframo karbidas" msgid "Nozzle HRC" msgstr "Purkštuko HRC" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The nozzle's hardness. Zero means no checking for nozzle hardness during slicing." -msgstr "Antgalio kietumas. Nulis reiškia, kad sluoksniavimo antgalio kietumas netikrinamas." +msgid "" +"The nozzle's hardness. Zero means no checking for nozzle's hardness during " +"slicing." +msgstr "" +"Purkštuko kietumas. Nulis reiškia, kad pjaustymo metu purkštuko kietumas " +"nebus tikrinamas." msgid "HRC" msgstr "HRC" @@ -13428,48 +16607,99 @@ msgid "Best object position" msgstr "Geriausia objekto padėtis" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." -msgstr "Geriausia automatinio išdėstymo padėtis intervale [0,1] pagal pagrindo formą." - -msgid "Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255)." -msgstr "Įjunkite šią parinktį, jei mašinoje yra papildomas dalių aušinimo ventiliatorius. G-kodo komanda: M106 P2 S(0-255)." +msgstr "" +"Geriausia automatinio išdėstymo padėtis intervale [0,1] pagal pagrindo formą." msgid "" -"Start the fan this number of seconds earlier than its target start time (you can use fractional seconds). It assumes infinite acceleration for this time estimation, and will only take into account G1 and G0 moves (arc fitting is unsupported).\n" -"It won't move fan commands from custom G-code (they act as a sort of 'barrier').\n" -"It won't move fan commands into the start G-code if the 'only custom start G-code' is activated.\n" +"Enable this option if machine has auxiliary part cooling fan. G-code " +"command: M106 P2 S(0-255)." +msgstr "" +"Įjunkite šią parinktį, jei įrenginyje yra papildomas detalės aušinimo " +"ventiliatorius (auxiliary fan). G-kodo komanda: M106 P2 S(0-255)." + +msgid "" +"Start the fan this number of seconds earlier than its target start time (you " +"can use fractional seconds). It assumes infinite acceleration for this time " +"estimation, and will only take into account G1 and G0 moves (arc fitting is " +"unsupported).\n" +"It won't move fan commands from custom G-code (they act as a sort of " +"'barrier').\n" +"It won't move fan commands into the start G-code if the 'only custom start G-" +"code' is activated.\n" "Use 0 to deactivate." msgstr "" -"Įjunkite ventiliatorių šiuo sekundžių skaičiumi anksčiau už jo tikslinį paleidimo laiką (galite naudoti sekundžių dalis). Įvertinant šį laiką daroma prielaida, kad pagreitis yra begalinis, ir atsižvelgiama tik į G1 ir G0 judesius (lanko pritaikymas nepalaikomas).\n" -"Jis neperkelia ventiliatoriaus komandų iš pasirinktinių G-kodą (jie veikia kaip tam tikras „barjeras“).\n" -"Jis neperkelia ventiliatoriaus komandų į pradžios G-kodą, jei įjungta parinktis „tik pasirinktinis pradžios gkodas“.\n" -"Jei norite išjungti, naudokite 0." +"Paleisti ventiliatorių nurodytu sekundžių skaičiumi anksčiau (galima naudoti " +"trupmenines dalis). Šiam laiko skaičiavimui daroma prielaida, kad pagreitis " +"yra begalinis, ir atsižvelgiama tik į G1 bei G0 judesius (lankų pritaikymas " +"nepalaikomas).\n" +"Šis nustatymas neperkels ventiliatoriaus komandų iš pasirinktinio G-kodo " +"(jie veikia kaip tam tikras barjeras).\n" +"Komandos nebus perkeltos į pradinį G-kodą, jei suaktyvinta parinktis „tik " +"pasirinktinis pradžios G-kodas“.\n" +"Įrašykite 0, kad išjungtumėte." msgid "Only overhangs" msgstr "Tik iškyšos" msgid "Will only take into account the delay for the cooling of overhangs." -msgstr "Atsižvelgs tik į iškyšų aušinimo vėlavimą." +msgstr "Bus atsižvelgiama tik į iškyšų aušinimo vėlavimą." msgid "Fan kick-start time" -msgstr "Ventiliatoriaus paleidimo laikas" +msgstr "Ventiliatoriaus „kick-start“ (priverstinio paleidimo) laikas" msgid "" -"Emit a max fan speed command for this amount of seconds before reducing to target speed to kick-start the cooling fan.\n" -"This is useful for fans where a low PWM/power may be insufficient to get the fan started spinning from a stop, or to get the fan up to speed faster.\n" +"Emit a max fan speed command for this amount of seconds before reducing to " +"target speed to kick-start the cooling fan.\n" +"This is useful for fans where a low PWM/power may be insufficient to get the " +"fan started spinning from a stop, or to get the fan up to speed faster.\n" "Set to 0 to deactivate." msgstr "" -"Šį kiekį sekundžių siunčia maksimalaus ventiliatoriaus greičio komandą, o po to sumažina greitį, kad aušinimo ventiliatorius pradėtų veikti.\n" -"Tai naudinga ventiliatoriams, kai mažos PWM / galios gali nepakakti, kad ventiliatorius pradėtų suktis nuo sustojimo, arba kad ventiliatorius greičiau įsibėgėtų.\n" +"Nurodytą sekundžių skaičių siunčiama maksimalaus ventiliatoriaus greičio " +"komanda prieš jį sumažinant iki tikslinio greičio, kad aušinimo " +"ventiliatorius būtų priverstinai paleistas (kick-start).\n" +"Tai naudinga ventiliatoriams, kuriems esant mažam PWM signalui / galiai gali " +"nepakakti jėgos pradėti suktis iš sustojimo būsenos arba norint greičiau " +"pasiekti reikiamą greitį.\n" "Nustatykite 0, kad išjungtumėte." msgid "Minimum non-zero part cooling fan speed" -msgstr "" +msgstr "Minimalus ne nulinis detalės aušinimo ventiliatoriaus greitis" msgid "" -"Some part-cooling fans cannot start spinning when commanded below a certain PWM duty cycle. When set above 0, any non-zero part-cooling fan command will be raised to at least this percentage so the fan reliably starts. A fan command of 0 (fan off) is always honoured exactly. This clamp is applied after every other fan calculation (first-layer ramp, layer-time interpolation, overhang/bridge/support-interface/ironing overrides), so scaling still operates within the range [this value, 100%].\n" -"If your firmware already disables the fan below a threshold (for example Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded duty cycle is below 10%), this option and the firmware threshold should ideally be set to the same value. Matching them (e.g. off_below: 0.10 in Klipper and 10% here) guarantees the slicer never emits a non-zero value that the firmware would silently drop, and the fan never receives a value below the one you know it can actually spool at.\n" +"Some part-cooling fans cannot start spinning when commanded below a certain " +"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will " +"be raised to at least this percentage so the fan reliably starts. A fan " +"command of 0 (fan off) is always honoured exactly. This clamp is applied " +"after every other fan calculation (first-layer ramp, layer-time " +"interpolation, overhang/bridge/support-interface/ironing overrides), so " +"scaling still operates within the range [this value, 100%].\n" +"If your firmware already disables the fan below a threshold (for example " +"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded " +"duty cycle is below 10%), this option and the firmware threshold should " +"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in " +"Klipper and 10% here) guarantees the slicer never emits a non-zero value " +"that the firmware would silently drop, and the fan never receives a value " +"below the one you know it can actually spool at.\n" "Set to 0 to deactivate." msgstr "" +"Kai kurie detalių aušinimo ventiliatoriai negali pradėti suktis, kai komanda " +"yra mažesnė už tam tikrą PWM užpildymo koeficientą. Nustačius didesnę nei 0 " +"vertę, bet kokia ne nulinė ventiliatoriaus komanda bus padidinta bent iki " +"šio procento, kad ventiliatorius patikimai įsijungtų. Ventiliatoriaus " +"komanda 0 (ventiliatorius išjungtas) visada vykdoma tiksliai. Šis ribojimas " +"taikomas po visų kitų ventiliatoriaus skaičiavimų (pirmojo sluoksnio " +"greitėjimo, sluoksnio laiko interpoliacijos, iškyšų / tiltelių / atramų " +"skiriamųjų sluoksnių / lyginimo nepaisymų), todėl mastelio keitimas vis tiek " +"veikia rėžiuose nuo [šios vertės] iki 100%%.\n" +"Jei jūsų programinė įranga jau išjungia ventiliatorių žemiau tam tikros " +"ribos (pavyzdžiui, „Klipper“ nustatymas [fan] off_below: 0.10 išjungia " +"ventiliatorių, kai nurodytas užpildymo koeficientas yra mažesnis nei 10%), " +"ši parinktis ir programinės įrangos riba idealiai turėtų būti nustatytos į " +"tą pačią vertę. Jas suderinus (pvz., off_below: 0.10 „Klipper“ programoje ir " +"10% čia), užtikrinama, kad pjaustytuvas niekada neišsiųs ne nulinės vertės, " +"kurią programinė įranga tyliai atmestų, o ventiliatorius niekada negaus " +"vertės, mažesnės už tą, kuria jis realiai sugeba pradėti suktis.\n" +"Nustatykite 0, kad išjungtumėte." msgid "%" msgstr "%" @@ -13483,15 +16713,14 @@ msgstr "Spausdintuvo valandos kaina." msgid "money/h" msgstr "pinigai/h" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Support controlling chamber temperature" -msgstr "Kameros temperatūros kontrolės palaikymas" +msgid "Support control chamber temperature" +msgstr "Kameros temperatūros valdymo palaikymas" msgid "" "This option is enabled if machine support controlling chamber temperature\n" "G-code command: M141 S(0-255)" msgstr "" -"Ši parinktis įjungiama, jei mašina palaiko kameros temperatūros kontrolę.\n" +"Ši parinktis įjungiama, jei įrenginys palaiko kameros temperatūros valdymą.\n" "G-kodo komanda: M141 S(0-255)" msgid "Support air filtration" @@ -13501,7 +16730,7 @@ msgid "" "Enable this if printer support air filtration\n" "G-code command: M106 P3 S(0-255)" msgstr "" -"Įjunkite šią funkciją, jei spausdintuvas palaiko oro filtravimą\n" +"Įjunkite, jei spausdintuvas palaiko oro filtravimą.\n" "G-kodo komanda: M106 P3 S(0-255)" msgid "G-code flavor" @@ -13514,13 +16743,14 @@ msgid "Klipper" msgstr "Klipper" msgid "Pellet Modded Printer" -msgstr "Modifikuotas granulių spausdintuvas" +msgstr "Modifikuotas granulinis spausdintuvas" msgid "Enable this option if your printer uses pellets instead of filaments." -msgstr "Įjunkite šią parinktį, jei spausdintuve vietoj gijų naudojamos granulės." +msgstr "" +"Įjunkite šią parinktį, jei spausdintuve vietoj gijų naudojamos granulės." msgid "Support multi bed types" -msgstr "Kelių tipų pagrindų palaikymas" +msgstr "Kelių pagrindo tipų palaikymas" msgid "Enable this option if you want to use multiple bed types." msgstr "Įjunkite šią parinktį, jei norite naudoti kelių tipų pagrindus." @@ -13528,8 +16758,17 @@ msgstr "Įjunkite šią parinktį, jei norite naudoti kelių tipų pagrindus." msgid "Label objects" msgstr "Objektų žymėjimas" -msgid "Enable this to add comments into the G-code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plug-in. This setting is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill." -msgstr "Įgalinkite šią funkciją, jei norite pridėti komentarų prie G-kodo žymėjimo spausdinimo judesių su objektu, kuriam jie priklauso. Tai naudinga „Octoprint CancelObject“ papildiniui. Šie nustatymai NĖRA suderinami su Vieno Ekstruderio Kelių Medžiagų sąranka ir Valyti Objekte / Valyti Užpildyme." +msgid "" +"Enable this to add comments into the G-code labeling print moves with what " +"object they belong to, which is useful for the Octoprint CancelObject plug-" +"in. This setting is NOT compatible with Single Extruder Multi Material setup " +"and Wipe into Object / Wipe into Infill." +msgstr "" +"Įjunkite, kad į G-kodą būtų įtraukti komentarai, pažymintys, kuriam objektui " +"priklauso spausdinimo judesiai – tai naudinga „Octoprint CancelObject“ " +"papildiniui. Šis nustatymas NĖRA suderinamas su vieno ekstruderio kelių " +"medžiagų (Multi Material) sąranka bei su parinktimis „Valyti į objektą“ / " +"„Valyti į užpildą“." msgid "Exclude objects" msgstr "Išskirti objektus" @@ -13538,56 +16777,117 @@ msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "Įjunkite šią parinktį, kad G-kode būtų pridėta komanda EXCLUDE OBJECT." msgid "Verbose G-code" -msgstr "Išsamus G-kodas" +msgstr "Išsamus G-kodas (Verbose)" -msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down." -msgstr "Įjunkite tai, kad gautumėte komentuojamą G-kodo failą su kiekviena eilute paaiškinta aprašomuoju tekstu. Jei spausdinate iš SD kortelės, dėl papildomo failo dydžio gali sulėtėti veikimas." +msgid "" +"Enable this to get a commented G-code file, with each line explained by a " +"descriptive text. If you print from SD card, the additional weight of the " +"file could make your firmware slow down." +msgstr "" +"Įjunkite, kad gautumėte failą su pakomentuotu G-kodu, kuriame kiekviena " +"eilutė paaiškinta aprašomuoju tekstu. Jei spausdinate iš SD kortelės, dėl " +"padidėjusio failo dydžio programinė įranga gali veikti lėčiau." msgid "Infill combination" -msgstr "Užpildymo derinys" +msgstr "Užpildo derinimas (apjungimas)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Automatically combine sparse infill of several layers to print together in order to reduce time. Walls are still printed with original layer height." -msgstr "Automatiškai sujungti kelių sluoksnių retą užpildą, kad būtų spausdinama kartu ir sutrumpėtų laikas. Siena vis tiek spausdinama su pradiniu sluoksnio aukščiu." +msgid "" +"Automatically Combine sparse infill of several layers to print together to " +"reduce time. Wall is still printed with original layer height." +msgstr "" +"Automatiškai apjungia kelių sluoksnių retą užpildą bendram spausdinimui, kad " +"sutrumpėtų laikas. Sienelė vis tiek spausdinama išlaikant pradinį sluoksnio " +"aukštį." msgid "Infill shift step" -msgstr "Užpildymo poslinkio žingsnis" +msgstr "Užpildo poslinkio žingsnis" -msgid "This parameter adds a slight displacement to each layer of infill to create a cross texture." -msgstr "Šis parametras prideda nedidelį poslinkį kiekvienam užpildo sluoksniui, kad būtų sukurta kryžminė tekstūra." +msgid "" +"This parameter adds a slight displacement to each layer of infill to create " +"a cross texture." +msgstr "" +"Šis parametras prideda nedidelį poslinkį kiekvienam užpildo sluoksniui, kad " +"sukurtų kryžminę tekstūrą." msgid "Sparse infill rotation template" -msgstr "Retas užpildymo rotacijos šablonas" +msgstr "Reto užpildo pasukimo šablonas" -msgid "Rotate the sparse infill direction per layer using a template of angles. Enter comma-separated degrees (e.g., '0,30,60,90'). Angles are applied in order by layer and repeat when the list ends. Advanced syntax is supported: '+5' rotates +5° every layer; '+5#5' rotates +5° every 5 layers. See the Wiki for details. When a template is set, the standard infill direction setting is ignored. Note: some infill patterns (e.g., Gyroid) control rotation themselves; use with care." -msgstr "Pasukite retą užpildymo kryptį pagal sluoksnį naudodami kampų šabloną. Įveskite kableliais atskirtus laipsnius (pvz., „0,30,60,90“). Kampai taikomi pagal sluoksnį ir kartojami, kai sąrašas baigiasi. Palaikoma išplėstinė sintaksė: „+5“ pasuka +5° kiekviename sluoksnyje; „+5#5“ pasuka +5° kas 5 sluoksnius. Daugiau informacijos rasite Wiki. Kai nustatytas šablonas, standartinis užpildymo krypties nustatymas ignoruojamas. Pastaba: kai kurie užpildymo modeliai (pvz., Gyroid) patys kontroliuoja pasukimą; naudokite atsargiai." +msgid "" +"Rotate the sparse infill direction per layer using a template of angles. " +"Enter comma-separated degrees (e.g., '0,30,60,90'). Angles are applied in " +"order by layer and repeat when the list ends. Advanced syntax is supported: " +"'+5' rotates +5° every layer; '+5#5' rotates +5° every 5 layers. See the " +"Wiki for details. When a template is set, the standard infill direction " +"setting is ignored. Note: some infill patterns (e.g., Gyroid) control " +"rotation themselves; use with care." +msgstr "" +"Keičia reto užpildo kryptį kiekviename sluoksnyje pagal kampų šabloną. " +"Įveskite kableliais atskirtas laipsnių vertes (pvz., „0,30,60,90“). Kampai " +"taikomi iš eilės pagal sluoksnius, o sąrašui pasibaigus – kartojami. " +"Palaikoma išplėstinė sintaksė: „+5“ pasuka +5° kas sluoksnį; „+5#5“ pasuka " +"+5° kas 5 sluoksnius. Išsamesnės informacijos ieškokite „Wiki“ puslapyje. " +"Nustačius šabloną, standartinis užpildo krypties nustatymas ignoruojamas. " +"Pastaba: kai kurie užpildo raštai (pvz., „Gyroid“) pasukimą valdo patys, " +"todėl naudokite atsargiai." msgid "Solid infill rotation template" msgstr "Vientiso užpildo pasukimo šablonas" -msgid "This parameter adds a rotation of solid infill direction to each layer according to the specified template. The template is a comma-separated list of angles in degrees, e.g. '0,90'. The first angle is applied to the first layer, the second angle to the second layer, and so on. If there are more layers than angles, the angles will be repeated. Note that not all solid infill patterns support rotation." -msgstr "Šis parametras prideda kiekvienam sluoksniui vientiso užpildo krypties pasukimą pagal nurodytą šabloną. Šablonas yra kableliais atskirtas kampų laipsnių sąrašas, pvz., „0,90“. Pirmasis kampas taikomas pirmajam sluoksniui, antrasis kampas – antrajam sluoksniui ir t. t. Jei sluoksnių yra daugiau nei kampų, kampai bus kartojami. Atkreipkite dėmesį, kad ne visi vientiso užpildo modeliai palaiko pasukimą." +msgid "" +"This parameter adds a rotation of solid infill direction to each layer " +"according to the specified template. The template is a comma-separated list " +"of angles in degrees, e.g. '0,90'. The first angle is applied to the first " +"layer, the second angle to the second layer, and so on. If there are more " +"layers than angles, the angles will be repeated. Note that not all solid " +"infill patterns support rotation." +msgstr "" +"Šis parametras kiekvienam sluoksniui prideda vientiso užpildo krypties " +"pasukimą pagal nurodytą šabloną. Šablonas yra kableliais atskirtas kampų " +"sąrašas laipsniais (pvz., „0,90“). Pirmasis kampas taikomas pirmajam " +"sluoksniui, antrasis – antrajam sluoksniui ir t. t. Jei sluoksnių yra " +"daugiau nei nurodytų kampų, jie bus kartojami iš naujo. Atkreipkite dėmesį, " +"kad ne visi vientiso užpildo raštai palaiko pasukimą." msgid "Skeleton infill density" -msgstr "Karkaso užpildymo tankis" +msgstr "Karkaso užpildo tankis" -msgid "The remaining part of the model contour after removing a certain depth from the surface is called the skeleton. This parameter is used to adjust the density of this section. When two regions have the same sparse infill settings but different skeleton densities, their skeleton areas will develop overlapping sections. Default is as same as infill density." -msgstr "Modelio kontūro dalis, likusi po tam tikro gylio pašalinimo nuo paviršiaus, vadinama skeletu. Šis parametras naudojamas šio skirsnio tankiui reguliuoti. Kai dvi sritys turi tuos pačius retų užpildų nustatymus, bet skirtingą skeleto tankį, jų karkaso sritys susidurs su persidengiančiais skirsniais. Numatytasis nustatymas yra toks pat kaip užpildų tankis." +msgid "" +"The remaining part of the model contour after removing a certain depth from " +"the surface is called the skeleton. This parameter is used to adjust the " +"density of this section. When two regions have the same sparse infill " +"settings but different skeleton densities, their skeleton areas will develop " +"overlapping sections. Default is as same as infill density." +msgstr "" +"Modelio kontūro dalis, likusi atėmus tam tikrą gylį nuo paviršiaus, vadinama " +"karkasu (skeleton). Šis parametras naudojamas šios dalies tankiui " +"reguliuoti. Kai dvi sritys naudoja tuos pačius reto užpildo nustatymus, bet " +"skirtingus karkaso tankius, jų karkaso zonos suformuos persidengiančias " +"dalis. Numatytasis nustatymas sutampa su užpildo tankiu." msgid "Skin infill density" -msgstr "Paviršiaus užpildymo tankis" +msgstr "Paviršinio sluoksnio (skin) užpildo tankis" -msgid "The portion of the model's outer surface within a certain depth range is called the skin. This parameter is used to adjust the density of this section. When two regions have the same sparse infill settings but different skin densities, this area will not be split into two separate regions. Default is as same as infill density." -msgstr "Modelio išorinio paviršiaus dalis tam tikrame gylio intervale vadinama paviršiumi. Šis parametras naudojamas šio skirsnio tankiui reguliuoti. Kai dvi sritys turi tuos pačius retų užpildų nustatymus, bet skirtingą paviršiaus tankį, ši sritis nebus padalyta į dvi atskiras sritis. Numatytasis nustatymas yra toks pat kaip užpildų tankis." +msgid "" +"The portion of the model's outer surface within a certain depth range is " +"called the skin. This parameter is used to adjust the density of this " +"section. When two regions have the same sparse infill settings but different " +"skin densities, this area will not be split into two separate regions. " +"Default is as same as infill density." +msgstr "" +"Modelio išorinio paviršiaus dalis tam tikrame gylio rėžyje yra vadinama " +"paviršiniu sluoksniu (skin). Šis parametras naudojamas šios dalies tankiui " +"reguliuoti. Kai dvi sritys naudoja tuos pačius reto užpildo nustatymus, bet " +"skirtingus paviršinio sluoksnio tankius, ši zona nebus išskirta į du " +"atskirus regionus. Numatytasis nustatymas sutampa su užpildo tankiu." msgid "Skin infill depth" -msgstr "Paviršiaus užpildymo gylis" +msgstr "Paviršinio sluoksnio (skin) užpildo gylis" msgid "The parameter sets the depth of skin." msgstr "Parametras nustato paviršiaus gylį." msgid "Infill lock depth" -msgstr "Užpildymo fiksavimo gylis" +msgstr "Užpildo fiksavimo gylis" msgid "The parameter sets the overlapping depth between the interior and skin." msgstr "Šis parametras nustato vidaus ir išorės sluoksnių persidengimo gylį." @@ -13605,174 +16905,162 @@ msgid "Adjust the line width of the selected skeleton paths." msgstr "Nustatykite pasirinktų karkaso kontūrų linijų plotį." msgid "Symmetric infill Y axis" -msgstr "Simetriškas užpildymas Y ašies" +msgstr "Simetriškas užpildas pagal Y ašį" -msgid "If the model has two parts that are symmetric about the Y axis, and you want these parts to have symmetric textures, please click this option on one of the parts." -msgstr "Jei modelis turi dvi dalis, kurios yra simetriškos Y ašies atžvilgiu, ir norite, kad šios dalys turėtų simetriškas tekstūras, spustelėkite šią parinktį vienoje iš dalių." +msgid "" +"If the model has two parts that are symmetric about the Y axis, and you want " +"these parts to have symmetric textures, please click this option on one of " +"the parts." +msgstr "" +"Jei modelis turi dvi dalis, kurios yra simetriškos Y ašies atžvilgiu, ir " +"norite, kad šios dalys turėtų simetriškas tekstūras, spustelėkite šią " +"parinktį vienoje iš dalių." msgid "Infill combination - Max layer height" -msgstr "Užpildų derinys - Maksimalus sluoksnio aukštis" +msgstr "Užpildo derinimas – maksimalus sluoksnio aukštis" msgid "" "Maximum layer height for the combined sparse infill.\n" "\n" -"Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in print time) or a value of ~80% to maximize sparse infill strength.\n" +"Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " +"print time) or a value of ~80% to maximize sparse infill strength.\n" "\n" -"The number of layers over which infill is combined is derived by dividing this value with the layer height and rounded down to the nearest decimal.\n" +"The number of layers over which infill is combined is derived by dividing " +"this value with the layer height and rounded down to the nearest decimal.\n" "\n" -"Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values (eg 80%). This value must not be larger than the nozzle diameter." +"Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " +"(eg 80%). This value must not be larger than the nozzle diameter." msgstr "" -"Didžiausias kombinuoto reto užpildo sluoksnio aukštis.\n" +"Maksimalus sluoksnio aukštis derinamam (apjungtam) retam užpildui.\n" "\n" -"Nustatykite 0 arba 100 %, jei norite naudoti purkštuko skersmenį (kad maksimaliai sutrumpėtų spausdinimo laikas), arba ~80 %, jei norite maksimaliai padidinti reto užpildo stiprumą.\n" +"Nustatykite 0 arba 100%, kad būtų naudojamas purkštuko skersmuo (maksimaliam " +"spausdinimo laiko sutrumpinimui), arba maždaug 80% vertę, kad maksimaliai " +"padidintumėte reto užpildo tvirtumą.\n" "\n" -"Sluoksnių, per kuriuos derinamas užpildas, skaičius gaunamas dalijant šią vertę iš sluoksnio aukščio ir suapvalinant žemyn iki artimiausio dešimtainio skaičiaus.\n" +"Sluoksnių skaičius, per kuriuos užpildas yra derinamas, gaunamas dalijant " +"šią vertę iš pagrindinio sluoksnio aukščio ir suapvalinant žemyn iki sveiko " +"skaičiaus.\n" "\n" -"Naudokite absoliučias mm vertes (pvz., 0,32 mm 0,4 mm antgaliui) arba % vertes (pvz., 80 %). Ši vertė neturi būti didesnė už purkštuko skersmenį." +"Naudokite absoliučias vertes milimetrais arba procentines vertes (pvz., " +"80%). Ši vertė negali būti didesnė už purkštuko skersmenį." msgid "Enable clumping detection" -msgstr "" +msgstr "Įjungti sankaupų (clumping) aptikimą" msgid "Clumping detection layers" -msgstr "" +msgstr "Sankaupų aptikimo sluoksniai" msgid "Clumping detection layers." -msgstr "" +msgstr "Sankaupų aptikimo sluoksniai." msgid "Probing exclude area of clumping" -msgstr "" +msgstr "Zonduojamos sankaupų išimties zonos" msgid "Probing exclude area of clumping." -msgstr "" - -msgid "Lateral lattice angle 1" -msgstr "Rašto kampas 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Pirmojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra vertikalus." - -msgid "Lateral lattice angle 2" -msgstr "Rašto kampas 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Antrojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra vertikalus." - -msgid "Infill overhang angle" -msgstr "Užpildymo iškyšos kampas" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -msgstr "Užpildymo kampuoto linijų kampas. 60° kampas sukurs gryną korį." - -msgid "Lightning overhang angle" -msgstr "" - -msgid "Maximum overhang angle for Lightning infill support propagation." -msgstr "" - -msgid "Prune angle" -msgstr "" - -msgid "" -"Controls how aggressively short or unsupported Lightning branches are pruned.\n" -"This angle is converted internally to a per-layer distance." -msgstr "" - -msgid "Straightening angle" -msgstr "" - -msgid "Maximum straightening angle used to simplify Lightning branches." -msgstr "" - -msgid "Sparse infill anchor length" -msgstr "Reto užpildo tvirtinimo ilgis" - -msgid "" -"Connect an infill line to an internal perimeter with a short segment of an additional perimeter. If expressed as percentage (example: 15%) it is calculated over infill extrusion width. Orca Slicer tries to connect two close infill lines to a short perimeter segment. If no such perimeter segment shorter than infill_anchor_max is found, the infill line is connected to a perimeter segment at just one side and the length of the perimeter segment taken is limited to this parameter, but no longer than anchor_length_max.\n" -"Set this parameter to zero to disable anchoring perimeters connected to a single infill line." -msgstr "" -"Sujunkite užpildymo liniją su vidiniu perimetru trumpa papildomo perimetro atkarpa. Jei išreiškiama procentais (pvz., 15 %), ji apskaičiuojama per užpildymo ekstruzijos plotį. Programa \"Orca Slicer\" bando sujungti dvi artimas užpildymo linijas su trumpu perimetro segmentu. Jei tokio perimetro segmento, trumpesnio už infill_anchor_max, nerandama, užpildo linija sujungiama su perimetro segmentu tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas šiuo parametru, bet ne ilgesnis už anchor_length_max.\n" -"Nustatykite šį parametrą lygų nuliui, jei norite išjungti perimetro, sujungto su viena užpildo linija, įtvirtinimą." - -msgid "0 (no open anchors)" -msgstr "0 (nėra atvirų tvirtinimų)" - -msgid "1000 (unlimited)" -msgstr "1000 (neribota)" - -msgid "Maximum length of the infill anchor" -msgstr "Maksimalus užpildymo tvirtinimų ilgis" - -msgid "" -"Connect an infill line to an internal perimeter with a short segment of an additional perimeter. If expressed as percentage (example: 15%) it is calculated over infill extrusion width. Orca Slicer tries to connect two close infill lines to a short perimeter segment. If no such perimeter segment shorter than this parameter is found, the infill line is connected to a perimeter segment at just one side and the length of the perimeter segment taken is limited to infill_anchor, but no longer than this parameter.\n" -"If set to 0, the old algorithm for infill connection will be used, it should create the same result as with 1000 & 0." -msgstr "" -"Sujunkite užpildymo liniją su vidiniu perimetru trumpa papildomo perimetro atkarpa. Jei išreiškiama procentais (pvz., 15 %), ji apskaičiuojama per užpildymo ekstruzijos plotį. Programa \"Orca Slicer\" bando sujungti dvi artimas užpildymo linijas su trumpu perimetro segmentu. Jei tokio trumpesnio už šį parametrą perimetro segmento nerandama, užpildo linija prijungiama prie perimetro segmento tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas iki infill_anchor, bet ne ilgesnis už šį parametrą.\n" -"Jei nustatyta 0, bus naudojamas senasis užpildymo sujungimo algoritmas, jis turėtų sukurti tokį patį rezultatą kaip ir naudojant 1000 & 0." - -msgid "0 (Simple connect)" -msgstr "0 (paprastas prijungimas)" +msgstr "Zonduojamos sankaupų išimties zonos." msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama vidiniam retam užpildui spausdinti.\n" +"Pasirinkus „Default“ (numatytasis), naudojama aktyvaus objekto / dalies gija." -msgid "Line width of internal sparse infill. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Vidinio reto užpildo linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgid "" +"Line width of internal sparse infill. If expressed as a %, it will be " +"computed over the nozzle diameter." +msgstr "" +"Vidinio reto užpildo linijos plotis. Jei išreiškiama procentais (%%), " +"skaičiuojama nuo purkštuko skersmens." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Infill/wall overlap" -msgstr "Užpildo ir sienos persidengimas" +msgid "Infill/Wall overlap" +msgstr "Užpildo ir sienelės persidengimas" -# TODO: Review, changed by lang refactor. PR 14254 #, no-c-format, no-boost-format -msgid "This allows the infill area to be enlarged slightly to overlap with walls for better bonding. The percentage value is relative to line width of sparse infill. Set this value to ~10-15% to minimize potential over extrusion and accumulation of material resulting in rough top surfaces." -msgstr "Užpildo plotas šiek tiek padidintas, kad persidengtų su siena ir geriau sukibtų. Procentinė vertė yra santykinė su reto užpildo linijos pločiu. Nustatykite šią vertę ~10-15 %, kad sumažintumėte galimą perteklinį išspaudimą ir medžiagos sankaupas, dėl kurių susidaro šiurkštus viršutinis paviršius." +msgid "" +"Infill area is enlarged slightly to overlap with wall for better bonding. " +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" +"Užpildo plotas yra šiek tiek padidinamas, kad persidengtų su sienele " +"geresniam sukibimui. Procentinė vertė yra santykinė su reto užpildo linijos " +"pločiu. Nustatykite šią vertę ties ~10–15%%, kad sumažintumėte perteklinio " +"išspaudimo (overextrusion) ir medžiagos sankaupų riziką, dėl kurios " +"viršutiniai paviršiai tampa šiurkštūs." msgid "Top/Bottom solid infill/wall overlap" -msgstr "Viršutinio ir apatinio vientiso užpildo ir sienos persidengimas" +msgstr "Viršutinio / apatinio vientiso užpildo ir sienelės persidengimas" #, no-c-format, no-boost-format -msgid "Top solid infill area is enlarged slightly to overlap with wall for better bonding and to minimize the appearance of pinholes where the top infill meets the walls. A value of 25-30% is a good starting point, minimizing the appearance of pinholes. The percentage value is relative to line width of sparse infill." -msgstr "Viršutinė vientiso užpildo sritis šiek tiek padidinta, kad geriau sutaptų su siena ir kad viršutinio užpildo vietoje, kur jis jungiasi su sienomis, atsirastų kuo mažiau skylučių. 25-30 % vertė yra geras pradinis taškas, sumažinantis skylučių atsiradimą. Procentinė vertė yra santykinė su reto užpildo linijos pločiu." +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimizing the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill." +msgstr "" +"Viršutinio vientiso užpildo plotas yra šiek tiek padidinamas, kad " +"persidengtų su sienele geresniam sukibimui ir sumažintų mikroskylučių " +"(pinholes) susidarymą sandūroje. 25–30%% vertė yra geras pradinis taškas, " +"sumažinantis skylučių matomumą. Procentinė vertė yra santykinė su reto " +"užpildo linijos pločiu." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for internal sparse infill." -msgstr "Vidinio reto užpildymo greitis." +msgid "Speed of internal sparse infill." +msgstr "Vidinio reto užpildo greitis." msgid "Inherits profile" msgstr "Paveldi profilį" msgid "Name of parent profile." -msgstr "Pirminio profilio pavadinimas." +msgstr "Pagrindinio (pirminio) profilio pavadinimas." msgid "Interface shells" -msgstr "Sąsajos apvalkalai" +msgstr "Skiriamieji apvalkalai (Interface shells)" -msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material." -msgstr "Priverstinai sukuriami vientisi apvalkalai tarp gretimų medžiagų ir (arba) tūrių. Naudinga spausdinant daugiasluoksniais ekstruderiais su permatomomis medžiagomis arba rankiniu būdu tirpiomis pagalbinėmis medžiagomis." +msgid "" +"Force the generation of solid shells between adjacent materials/volumes. " +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material." +msgstr "" +"Priverstinai generuoja vientisus apvalkalus tarp besiribojančių medžiagų / " +"tūrių. Naudinga spausdinant keliais ekstruderiais iš skaidrių medžiagų arba " +"naudojant rankiniu būdu pašalinamas tirpias atramines medžiagas." msgid "Maximum width of a segmented region" msgstr "Didžiausias segmentuotos srities plotis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Maximum width of a segmented region. A value of 0 disables this feature." +msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "Didžiausias segmentuotos srities plotis. Nulis išjungia šią funkciją." msgid "Interlocking depth of a segmented region" msgstr "Segmentuotos srities susikirtimo gylis" -msgid "Interlocking depth of a segmented region. It will be ignored if \"mmu_segmented_region_max_width\" is zero or if \"mmu_segmented_region_interlocking_depth\" is bigger than \"mmu_segmented_region_max_width\". Zero disables this feature." -msgstr "Segmentuoto regiono susikirtimo gylis. Jis bus ignoruojamas, jei „mmu_segmented_region_max_width“ yra nulis arba jei „mmu_segmented_region_interlocking_depth“ yra didesnis už „mmu_segmented_region_max_width“. Nulis išjungia šią funkciją." +msgid "" +"Interlocking depth of a segmented region. It will be ignored if " +"\"mmu_segmented_region_max_width\" is zero or if " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " +"\"mmu_segmented_region_max_width\". Zero disables this feature." +msgstr "" +"Segmentuoto regiono susikirtimo gylis. Jis bus ignoruojamas, jei " +"„mmu_segmented_region_max_width“ yra nulis arba jei " +"„mmu_segmented_region_interlocking_depth“ yra didesnis už " +"„mmu_segmented_region_max_width“. Nulis išjungia šią funkciją." msgid "Use beam interlocking" -msgstr "Naudoti pluošto blokavimą" +msgstr "Naudoti sijų sujungimą (interlocking)" -msgid "Generate interlocking beam structure at the locations where different filaments touch. This improves the adhesion between filaments, especially models printed in different materials." -msgstr "Vietose, kuriose liečiasi skirtingos gijos, sukurkite susisiekiančių sijų struktūrą. Tai pagerina sukibimą tarp gijų, ypač modelių, atspausdintų iš skirtingų medžiagų." +msgid "" +"Generate interlocking beam structure at the locations where different " +"filaments touch. This improves the adhesion between filaments, especially " +"models printed in different materials." +msgstr "" +"Generuoja susijungiančių sijų struktūrą vietose, kur liečiasi skirtingos " +"gijos. Tai pagerina gijų tarpusavio sukibimą, ypač kai modeliai spausdinami " +"iš skirtingų medžiagų." msgid "Interlocking beam width" -msgstr "Blokavimo sijų plotis" +msgstr "Sujungimo sijų plotis" msgid "The width of the interlocking structure beams." msgstr "Susikertančių konstrukcijos sijų plotis." @@ -13781,48 +17069,61 @@ msgid "Interlocking direction" msgstr "Susiejimo kryptis" msgid "Orientation of interlock beams." -msgstr "Blokavimo sijų kryptis." +msgstr "Sujungimo sijų orientacija." msgid "Interlocking beam layers" -msgstr "Tarpusavyje besijungiantys sijų sluoksniai" +msgstr "Sujungimo sijų sluoksniai" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Sujungtos konstrukcijos sijų aukštis, matuojamas sluoksnių skaičiumi. Mažesnis sluoksnių skaičius yra tvirtesnis, bet labiau linkęs į defektus." +msgid "" +"The height of the beams of the interlocking structure, measured in number of " +"layers. Less layers is stronger, but more prone to defects." +msgstr "" +"Sujungtos konstrukcijos sijų aukštis, matuojamas sluoksnių skaičiumi. " +"Mažesnis sluoksnių skaičius yra tvirtesnis, bet labiau linkęs į defektus." msgid "Interlocking depth" -msgstr "Blokavimo gylis" +msgstr "Sujungimo gylis" -msgid "The distance from the boundary between filaments to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Atstumas nuo ribos tarp gijų iki susikertančios struktūros, matuojamas ląstelėmis. Dėl per mažo ląstelių skaičiaus sukibimas bus silpnas." +msgid "" +"The distance from the boundary between filaments to generate interlocking " +"structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "" +"Atstumas nuo gijų sąlyčio ribos, kuriame generuojama sujungimo struktūra, " +"matuojamas ląstelėmis. Esant per mažam ląstelių skaičiui sukibimas bus " +"prastas." msgid "Interlocking boundary avoidance" -msgstr "Blokuotų ribų vengimas" +msgstr "Sujungimo ribų vengimas" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Atstumas nuo modelio išorės, kai nesukuriamos susikertančios struktūros, matuojamas ląstelėmis." +msgid "" +"The distance from the outside of a model where interlocking structures will " +"not be generated, measured in cells." +msgstr "" +"Atstumas nuo modelio išorės, kai nesukuriamos susikertančios struktūros, " +"matuojamas ląstelėmis." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Ironing type" +msgid "Ironing Type" msgstr "Lyginimo tipas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Ironing uses a small flow to print at the same height of a surface to make flat surfaces smoother. This setting controls which layers are being ironed." -msgstr "Lyginant naudojamas nedidelis srautas, kuris spausdina tame pačiame paviršiaus aukštyje, kad plokšti paviršiai būtų lygesni. Šis nustatymas kontroliuoja, kurie sluoksniai lyginami." +msgid "" +"Ironing is using small flow to print on same height of surface again to make " +"flat surface more smooth. This setting controls which layer being ironed." +msgstr "" +"Lyginimo metu naudojamas nedidelis medžiagos srautas, pakartotinai " +"spausdinant tame pačiame paviršiaus aukštyje, kad plokščia dalis taptų " +"lygesnė. Šis nustatymas valdo, kurie sluoksniai yra lyginami." msgid "No ironing" msgstr "Nėra lyginimo" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "All top surfaces" +msgid "Top surfaces" msgstr "Viršutiniai paviršiai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Topmost surface only" -msgstr "Aukščiausias paviršius" +msgid "Topmost surface" +msgstr "Pats viršutinis paviršius (Topmost)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "All solid layers" -msgstr "Visas vientisas sluoksnis" +msgstr "Visi vientisi sluoksniai" msgid "Ironing Pattern" msgstr "Lyginimo raštas" @@ -13830,97 +17131,123 @@ msgstr "Lyginimo raštas" msgid "The pattern that will be used when ironing." msgstr "Raštas, kuris bus naudojamas lyginant." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the amount of material to be extruded during ironing. It is relative to the flow of normal layer height. Too high a value will result in overextrusion on the surface." -msgstr "Medžiagos kiekis, kuris turi būti išspaustas lyginimo metu. Jis yra susijęs su įprasto sluoksnio aukščio srautu. Dėl per didelės vertės paviršiuje atsiras perteklinis išspaudimas." +msgid "" +"The amount of material to extrude during ironing. Relative to flow of normal " +"layer height. Too high value results in overextrusion on the surface." +msgstr "" +"Medžiagos kiekis, išspaudžiamas lyginimo metu. Santykinis dydis, " +"skaičiuojamas pagal įprasto sluoksnio aukščio srautą. Per didelė vertė " +"sukelia perteklinį medžiagos išspaudimą (overextrusion) ant paviršiaus." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the distance between the lines used for ironing." +msgid "The distance between the lines of ironing." msgstr "Atstumas tarp lyginimui naudojamų linijų." -msgid "The distance to keep from the edges. A value of 0 sets this to half of the nozzle diameter." -msgstr "Atstumas, kurį reikia išlaikyti nuo kraštų. Jei reikšmė 0, nustatoma pusė purkštuko skersmens." +msgid "" +"The distance to keep from the edges. A value of 0 sets this to half of the " +"nozzle diameter." +msgstr "" +"Atstumas, kurį reikia išlaikyti nuo kraštų. Įrašius 0, nustatoma pusė " +"purkštuko skersmens vertės." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the print speed for ironing lines." +msgid "Print speed of ironing lines." msgstr "Lyginimo linijų spausdinimo greitis." msgid "Ironing angle offset" -msgstr "" +msgstr "Lyginimo kampo nuokrypis (offset)" msgid "The angle of ironing lines offset from the top surface." msgstr "" +"Lyginimo linijų kampo nuokrypis nuo viršutinio paviršiaus linijų krypties." msgid "Fixed ironing angle" -msgstr "" +msgstr "Fiksuotas lyginimo kampas" msgid "Use a fixed absolute angle for ironing." -msgstr "" +msgstr "Naudoti fiksuotą absoliutų lyginimo kampą." msgid "Ironing expansion" -msgstr "" +msgstr "Lyginimo zonos išplėtimas" msgid "Expand or contract the ironing area." -msgstr "" +msgstr "Išplėsti arba susiaurinti lyginamąjį plotą." msgid "Z contouring enabled" -msgstr "" +msgstr "Įjungtas Z-ašies kontūravimas" msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)." msgstr "" +"Įjungti Z-sluoksnių kontūravimą (dar žinomą kaip Z-sluoksnių glotninimą / " +"anti-aliasing)." msgid "Minimize wall height angle" -msgstr "" +msgstr "Sienelės aukščio kampo minimizavimas" msgid "" "Reduce the height of top-surface perimeters to match the model edge height.\n" "Affects perimeters with a slope less than this angle (degrees).\n" "A reasonable value is 35. Set to 0 to disable." msgstr "" +"Sumažinti viršutinio paviršiaus perimetrų aukštį, kad jis sutaptų su modelio " +"krašto aukščiu.\n" +"Paveikia perimetrus, kurių nuolydis yra mažesnis už šį " +"kampą (laipsniais).\n" +"Protinga vertė yra 35. Nustatykite 0, kad išjungtumėte." msgid "Don't alternate fill direction" -msgstr "" +msgstr "Nekeisti užpildymo krypties pakaitomis" msgid "Disable alternating fill direction when using Z contouring." msgstr "" +"Išjungti pakaitomis keičiamą užpildo kryptį naudojant Z-ašies kontūravimą." msgid "Minimum Z height" -msgstr "" +msgstr "Minimalus Z-ašies aukštis" msgid "" "Minimum Z-layer height.\n" "Also controls the slicing plane." msgstr "" +"Minimalus Z-sluoksnio aukštis.\n" +"Taip pat valdo pjaustymo plokštumą." msgid "This G-code is inserted at every layer change after the Z lift." -msgstr "Šis G kodas įterpiamas po kiekvieno sluoksnio keitimo po Z pakėlimo." +msgstr "" +"Šis G-kodas įterpiamas atliekant kiekvieną sluoksnio pakeitimą po Z-ašies " +"pakėlimo." msgid "Clumping detection G-code" -msgstr "" +msgstr "Sankaupų (clumping) aptikimo G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Silent Mode" +msgid "Supports silent mode" msgstr "Palaikomas tylusis režimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Whether the machine supports silent mode in which machine uses lower acceleration to print more quietly" -msgstr "Ar įrenginys palaiko tylųjį režimą, kai spausdindamas naudoja mažesnį pagreitį." +msgid "" +"Whether the machine supports silent mode in which machine use lower " +"acceleration to print." +msgstr "" +"Ar įrenginys palaiko tylųjį režimą, kai spausdindamas naudoja mažesnį " +"pagreitį." msgid "Emit limits to G-code" -msgstr "Išsiųsti apribojimus į G-kodą" +msgstr "Įrašyti apribojimus į G-kodą (Emit)" msgid "Machine limits" -msgstr "Mašinos ribos" +msgstr "Įrenginio apribojimai (Machine limits)" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" "This option will be ignored if the G-code flavor is set to Klipper." msgstr "" -"Jei įjungta, įrenginio apribojimai bus perduodami į G-kodo failą.\n" -"Ši parinktis bus ignoruojama, jei g-kodo tipas nustatytas kaip Klipper." +"Jei įjungta, įrenginio apribojimai bus įrašyti į G-kodo failą.\n" +"Ši parinktis ignoruojama, jei G-kodo tipas (flavor) nustatytas kaip " +"„Klipper“." -msgid "This G-code will be used as a code for the pause print. Users can insert pause G-code in the G-code viewer." -msgstr "Šis G kodas bus naudojamas kaip pauzės spausdinimo kodas. Vartotojai gali įterpti pauzės G kodą G kodo peržiūroje." +msgid "" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." +msgstr "" +"Šis G-kodas bus naudojamas spausdinimo pauzei. Naudotojai gali įterpti " +"pauzės G-kodą per G-kodo peržiūros langą." msgid "This G-code will be used as a custom code." msgstr "Šis G-kodas bus naudojamas kaip pasirinktinis kodas." @@ -13929,25 +17256,33 @@ msgid "Small area flow compensation (beta)" msgstr "Mažo ploto srauto kompensavimas (beta)" msgid "Enable flow compensation for small infill areas." -msgstr "Įgalinti srauto kompensavimą mažuose užpildymo plotuose." +msgstr "Įjungti srauto kompensavimą mažiems užpildo plotams." msgid "Flow Compensation Model" msgstr "Srauto kompensavimo modelis" -msgid "Flow Compensation Model, used to adjust the flow for small infill areas. The model is expressed as a comma separated pair of values for extrusion length and flow correction factor. Each pair is on a separate line, followed by a semicolon, in the following format: \"1.234, 5.678;\"" -msgstr "Srauto kompensavimo modelis, naudojamas srautui mažose užpildymo srityse reguliuoti. Modelis išreiškiamas kaip kableliu atskirtos ekstruzijos ilgio ir srauto korekcijos koeficiento poros. Kiekviena pora yra atskiroje eilutėje, po kurios eina kabliataškis, tokio formato: „1,234, 5,678;“." +msgid "" +"Flow Compensation Model, used to adjust the flow for small infill areas. The " +"model is expressed as a comma separated pair of values for extrusion length " +"and flow correction factor. Each pair is on a separate line, followed by a " +"semicolon, in the following format: \"1.234, 5.678;\"" +msgstr "" +"Srauto kompensavimo modelis, naudojamas srautui mažuose užpildo plotuose " +"koreguoti. Modelis pateikiamas kableliu atskirtų verčių poromis: ekstruzijos " +"ilgis ir srauto korekcijos koeficientas. Kiekviena pora rašoma atskiroje " +"eilutėje su kabliataškiu gale, pavyzdžiui: „1.234, 5.678;“" msgid "Maximum speed X" -msgstr "Didžiausias greitis X" +msgstr "Didžiausias X greitis" msgid "Maximum speed Y" -msgstr "Didžiausias greitis Y" +msgstr "Didžiausias Y greitis" msgid "Maximum speed Z" -msgstr "Didžiausias greitis Z" +msgstr "Didžiausias Z greitis" msgid "Maximum speed E" -msgstr "Didžiausias greitis E" +msgstr "Didžiausias E greitis" msgid "Maximum X speed" msgstr "Didžiausias X greitis" @@ -14010,30 +17345,34 @@ msgid "Maximum jerk of the E axis" msgstr "Didžiausias E ašies trūkčiojimas" msgid "Maximum Junction Deviation" -msgstr "Maksimalus jungties nuokrypis" +msgstr "Didžiausias posūkio nuokrypis" msgid "" -"Maximum junction deviation (M205 J, only apply if JD > 0 for Marlin Firmware\n" +"Maximum junction deviation (M205 J, only apply if JD > 0 for Marlin " +"Firmware\n" "If your Marlin 2 printer uses Classic Jerk set this value to 0.)" msgstr "" +"Didžiausias posūkio nuokrypis (M205 J, taikoma tik jei JD > 0 „Marlin“ " +"programinėje aparatinėje įrangoje. Jei jūsų Marlin 2 spausdintuvas naudoja " +"klasikinį trūkčiojimą, nustatykite šią reikšmę į 0.)" msgid "Minimum speed for extruding" -msgstr "Mažiausias ekstruzijos greitis" +msgstr "Mažiausias išstūmimo greitis" msgid "Minimum speed for extruding (M205 S)" -msgstr "" +msgstr "Mažiausias išstūmimo greitis (M205 S)" msgid "Minimum travel speed" -msgstr "Mažiausias judėjimo greitis" +msgstr "Mažiausias tuščios eigos greitis" msgid "Minimum travel speed (M205 T)" -msgstr "Mažiausias judėjimo greitis (M205 T)" +msgstr "Mažiausias tuščios eigos greitis (M205 T)" msgid "Maximum acceleration for extruding" -msgstr "Didžiausias ekstruzijos pagreitis" +msgstr "Didžiausias išstūmimo pagreitis" msgid "Maximum acceleration for extruding (M204 P)" -msgstr "Didžiausias ekstruzijos pagreitis (M204 P)" +msgstr "Didžiausias išstūmimo pagreitis (M204 P)" msgid "Maximum acceleration for retracting" msgstr "Didžiausias įtraukimo pagreitis" @@ -14042,23 +17381,26 @@ msgid "Maximum acceleration for retracting (M204 R)" msgstr "Didžiausias įtraukimo pagreitis (M204 R)" msgid "Maximum acceleration for travel" -msgstr "Didžiausias judėjimo pagreitis" +msgstr "Didžiausias tuščios eigos pagreitis" msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." -msgstr "Didžiausias judėjimo pagreitis (M204 T), jis taikomas tik \"Marlin 2\"." +msgstr "" +"Didžiausias tuščios eigos pagreitis (M204 T), jis taikomas tik „Marlin 2“." msgid "Resonance avoidance" msgstr "Rezonanso vengimas" msgid "" -"By reducing the speed of the outer wall to avoid the resonance zone of the printer, ringing on the surface of the model are avoided.\n" +"By reducing the speed of the outer wall to avoid the resonance zone of the " +"printer, ringing on the surface of the model are avoided.\n" "Please turn this option off when testing ringing." msgstr "" -"Sumažinus išorinės sienos greitį, kad būtų išvengta spausdintuvo rezonanso zonos, išvengiama modelio paviršiaus bangavimo.\n" -"Prašome išjungti šią parinktį, kai bandote bangavimą." +"Sumažinus išorinės sienelės greitį, kad būtų išvengta spausdintuvo rezonanso " +"zonos, išvengiama modelio paviršiaus virpėjimo (VFA). \n" +"Išjunkite šią parinktį, kai testuojate virpėjimą (VFA)." msgid "Min" -msgstr "" +msgstr "Min" msgid "Minimum speed of resonance avoidance." msgstr "Minimalus greitis, leidžiantis išvengti rezonanso." @@ -14070,21 +17412,27 @@ msgid "Maximum speed of resonance avoidance." msgstr "Maksimalus greitis, leidžiantis išvengti rezonanso." msgid "Emit input shaping" -msgstr "" +msgstr "Įtraukti įvesties formavimą (Input shaping)" msgid "" "Override firmware input shaping settings.\n" "If disabled, firmware settings are used." msgstr "" +"Perrašyti programinės aparatinės įrangos įvesties formavimo (Input shaping) " +"nustatymus. Jei išjungta, naudojami numatytieji aparatinės įrangos " +"nustatymai." msgid "Input shaper type" -msgstr "" +msgstr "Įvesties formuotojo (Input shaper) tipas" msgid "" "Choose the input shaper algorithm.\n" "Default uses the firmware default settings.\n" "Disable turns off input shaping in the firmware." msgstr "" +"Pasirinkite įvesties formuotojo (Input shaper) algoritmą. Pasirinkus " +"numatytąjį, naudojami programinės aparatinės įrangos nustatymai. Pasirinkus " +"„Išjungta“, įvesties formavimas aparatinėje įrangoje yra išjungiamas." msgid "MZV" msgstr "MZV" @@ -14128,6 +17476,10 @@ msgid "" "To disable input shaping, use the Disable type.\n" "RRF: X and Y values are equal." msgstr "" +"X ašies įvesties formuotojo (Input shaper) rezonansinis dažnis. \n" +"Įrašius nulį, bus naudojamas aparatinės įrangos dažnis. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“.\n" +" RRF: X ir Y reikšmės yra lygios." msgid "Y" msgstr "Y" @@ -14137,6 +17489,9 @@ msgid "" "Zero will use the firmware frequency.\n" "To disable input shaping, use the Disable type." msgstr "" +"Y ašies įvesties formuotojo (Input shaper) rezonansinis dažnis. \n" +"Įrašius nulį, bus naudojamas aparatinės įrangos dažnis. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“." msgid "" "Damping ratio for the X axis input shaper.\n" @@ -14144,51 +17499,94 @@ msgid "" "To disable input shaping, use the Disable type.\n" "RRF: X and Y values are equal." msgstr "" +"X ašies įvesties formuotojo (Input shaper) slopinimo koeficientas.\n" +"Įrašius nulį, bus naudojamas aparatinės įrangos slopinimo koeficientas. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“.\n" +"RRF: X ir Y reikšmės yra lygios." msgid "" "Damping ratio for the Y axis input shaper.\n" "Zero will use the firmware damping ratio.\n" "To disable input shaping, use the Disable type." msgstr "" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed for the part cooling fan." -msgstr "Kai įjungtas automatinis aušinimas, dalių ventiliatoriaus greitis gali būti padidintas. Tai didžiausias dalių aušinimo ventiliatoriaus greitis." - -msgid "The highest printable layer height for the extruder. Used to limit the maximum layer height when enable adaptive layer height." -msgstr "Didžiausias spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas norint apriboti maksimalų sluoksnio aukštį, kai įjungtas prisitaikantis sluoksnio aukštis." - -msgid "Extrusion rate smoothing" -msgstr "Ekstruzijos greičio išlyginimas" +"Y ašies įvesties formuotojo (Input shaper) slopinimo koeficientas. \n" +"Įrašius nulį, bus naudojamas aparatinės įrangos slopinimo koeficientas. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“." msgid "" -"This parameter smooths out sudden extrusion rate changes that happen when the printer transitions from printing a high flow (high speed/larger width) extrusion to a lower flow (lower speed/smaller width) extrusion and vice versa.\n" +"Part cooling fan speed may be increased when auto cooling is enabled. This " +"is the maximum speed for the part cooling fan." +msgstr "" +"Kai įjungtas automatinis aušinimas, modelio aušinimo ventiliatoriaus greitis " +"gali būti padidintas. Tai yra didžiausias modelio aušinimo ventiliatoriaus " +"greitis." + +msgid "" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when enable adaptive layer height." +msgstr "" +"Didžiausias galimas spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas " +"maksimaliam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis " +"sluoksnio aukštis." + +msgid "Extrusion rate smoothing" +msgstr "Išstūmimo greičio išlyginimas" + +msgid "" +"This parameter smooths out sudden extrusion rate changes that happen when " +"the printer transitions from printing a high flow (high speed/larger width) " +"extrusion to a lower flow (lower speed/smaller width) extrusion and vice " +"versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm³/s can change over time. Higher values mean higher extrusion rate changes are allowed, resulting in faster speed transitions.\n" +"It defines the maximum rate by which the extruded volumetric flow in mm³/s " +"can change over time. Higher values mean higher extrusion rate changes are " +"allowed, resulting in faster speed transitions.\n" "\n" "A value of 0 disables the feature.\n" "\n" -"For a high speed, high flow direct drive printer (like the Bambu lab or Voron) this value is usually not needed. However it can provide some marginal benefit in certain cases where feature speeds vary greatly. For example, when there are aggressive slowdowns due to overhangs. In these cases a high value of around 300-350 mm³/s² is recommended as this allows for just enough smoothing to assist pressure advance achieve a smoother flow transition.\n" +"For a high speed, high flow direct drive printer (like the Bambu lab or " +"Voron) this value is usually not needed. However it can provide some " +"marginal benefit in certain cases where feature speeds vary greatly. For " +"example, when there are aggressive slowdowns due to overhangs. In these " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " +"transition.\n" "\n" -"For slower printers without pressure advance, the value should be set much lower. A value of 10-15 mm³/s² is a good starting point for direct drive extruders and 5-10 mm³/s² for Bowden style.\n" +"For slower printers without pressure advance, the value should be set much " +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" "Note: this parameter disables arc fitting." msgstr "" -"Šis parametras išlygina staigius išspaudimo greičio pokyčius, kurie įvyksta spausdintuvui pereinant nuo didelio srauto (didelio greičio / didesnio pločio) išspaudimo prie mažesnio srauto (mažesnio greičio / mažesnio pločio) išspaudimo ir atvirkščiai.\n" +"Siūlomas lietuviškas tekstas: Šis parametras išlygina staigius išstūmimo " +"greičio pokyčius, kurie įvyksta spausdintuvui pereinant nuo didelio srauto " +"(didelio greičio / didesnio pločio) išstūmimo prie mažesnio srauto (mažesnio " +"greičio / mažesnio pločio) ir atvirkščiai.\n" "\n" -"Jis apibrėžia didžiausią greitį, kuriuo gali kisti išspaustas tūrinis srautas mm³/s. Didesnės vertės reiškia, kad leidžiami didesni ekstruzijos greičio pokyčiai, todėl greitis pereina greičiau.\n" +"Jis apibrėžia didžiausią spartą, kuria tūrinis srautas (mm³/s) gali kisti " +"per laiko vienetą. Didesnės reikšmės reiškia, kad leidžiami staigesni " +"išstūmimo srauto pokyčiai, užtikrinantys greitesnį greičio perėjimą.\n" "\n" "Reikšmė 0 išjungia šią funkciją.\n" "\n" -"Didelio greičio ir didelio srauto tiesioginės pavaros spausdintuvams (pvz., \"Bambu lab\" arba \"Voron\") ši vertė paprastai nereikalinga. Tačiau tam tikrais atvejais, kai funkcijos greičiai labai skiriasi, ji gali duoti nedidelę naudą. Pavyzdžiui, kai yra agresyvių sulėtėjimų dėl iškyšų. Tokiais atvejais rekomenduojama didelė vertė, maždaug 300-350 mm³/s² , nes tai leidžia pakankamai išlyginti, kad padedant slėgio avansui būtų pasiektas sklandesnis srauto perėjimas.\n" +"Spartiems, didelio srauto tiesioginės pavaros (Direct Drive) spausdintuvams " +"(tokiems kaip „Bambu Lab“ arba „Voron“) ši reikšmė paprastai nėra būtina. " +"Vis dėlto ji gali duoti nedidelės naudos tais atvejais, kai spausdinimo " +"elementų greičiai labai skiriasi – pavyzdžiui, esant žymiems sulėtėjimams " +"ties iškyšomis. Tokiais atvejais rekomenduojama didelė reikšmė (apie 300–350 " +"mm³/s²), kuri užtikrina pakankamą išlyginimą, padedantį slėgio kompensavimo " +"(Pressure Advance) algoritmui pasiekti sklandesnį srauto perėjimą.\n" "\n" -"Lėtesniems spausdintuvams, kuriuose nėra slėgio didinimo, vertė turėtų būti nustatyta daug mažesnė. Tiesioginės pavaros ekstruderiams gera pradinė vertė yra 10-15 mm³/s², o Bowdeno tipo ekstruderiams - 5-10 mm³/s².\n" +"Lėtesniems spausdintuvams be slėgio kompensavimo (Pressure Advance) šią " +"reikšmę reikėtų nustatyti gerokai mažesnę. Tiesioginės pavaros (Direct " +"Drive) ekstruderiams gera pradinė reikšmė yra 10–15 mm³/s², o „Bowden“ tipo " +"– 5–10 mm³/s².\n" "\n" -"Ši funkcija \"Prusa\" programoje \"Prusa slicer\" vadinama slėgio išlyginimo funkcija.\n" +"„PrusaSlicer“ programoje ši funkcija vadinama „Pressure Equalizer“.\n" "\n" -"Pastaba: šis parametras išjungia lanko tvirtinimą." +"Pastaba: šis parametras išjungia lankų aproksimaciją (Arc fitting)." msgid "mm³/s²" msgstr "mm³/s²" @@ -14197,77 +17595,131 @@ msgid "Smoothing segment length" msgstr "Išlyginamojo segmento ilgis" msgid "" -"A lower value results in smoother extrusion rate transitions. However, this results in a significantly larger G-code file and more instructions for the printer to process.\n" +"A lower value results in smoother extrusion rate transitions. However, this " +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" -"Default value of 3 works well for most cases. If your printer is stuttering, increase this value to reduce the number of adjustments made.\n" +"Default value of 3 works well for most cases. If your printer is stuttering, " +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" -"Mažesnė vertė užtikrina sklandesnius ekstruzijos greičio pokyčius. Tačiau dėl to G kodo failas tampa žymiai didesnis, o spausdintuvas turi apdoroti daugiau instrukcijų.\n" +"Mažesnė reikšmė užtikrina sklandesnius išstūmimo greičio perėjimus. Tačiau " +"dėl to G-kodo (G-code) failas tampa žymiai didesnis ir spausdintuvas turi " +"apdoroti daugiau instrukcijų.\n" "\n" -"Daugeliu atvejų gerai tinka numatytoji vertė 3. Jei spausdintuvas striginėja, padidinkite šią vertę, kad sumažintumėte atliekamų koregavimų skaičių.\n" +"Numatytoji reikšmė 3 puikiai tinka daugumai atvejų. Jei spausdintuvas " +"striginėja, padidinkite šią reikšmę, kad sumažintumėte atliekamų koregavimų " +"skaičių.\n" "\n" -"Leidžiamos vertės: 0,5–5" +"Leidžiamos reikšmės: 0.5–5" msgid "Apply only on external features" msgstr "Taikyti tik išoriniams elementams" -msgid "Applies extrusion rate smoothing only on external perimeters and overhangs. This can help reduce artefacts due to sharp speed transitions on externally visible overhangs without impacting the print speed of features that will not be visible to the user." -msgstr "Išspaudimo greičio išlyginimas taikomas tik išoriniams perimetrams ir iškyšoms. Tai gali padėti sumažinti artefaktus, atsirandančius dėl staigių greičio perėjimų išorėje matomose iškyšuose, nedarant poveikio elementų, kurie nebus matomi naudotojui, spausdinimo greičiui." +msgid "" +"Applies extrusion rate smoothing only on external perimeters and overhangs. " +"This can help reduce artefacts due to sharp speed transitions on externally " +"visible overhangs without impacting the print speed of features that will " +"not be visible to the user." +msgstr "" +"Išstūmimo greičio išlyginimas taikomas tik išoriniams perimetrams ir " +"iškyšoms. Tai padeda sumažinti artefaktus, atsirandančius dėl staigių " +"greičio perėjimų išorėje matomose iškyšose, nedarant įtakos nematomų " +"elementų spausdinimo greičiui." msgid "Minimum speed for part cooling fan." -msgstr "Mažiausias dalies aušinimo ventiliatoriaus greitis." +msgstr "Mažiausias modelio aušinimo ventiliatoriaus greitis." msgid "" -"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed during printing except the first several layers which is defined by no cooling layers.\n" -"Please enable auxiliary_fan in printer settings to use this feature. G-code command: M106 P2 S(0-255)" +"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " +"during printing except the first several layers which is defined by no " +"cooling layers.\n" +"Please enable auxiliary_fan in printer settings to use this feature. G-code " +"command: M106 P2 S(0-255)" msgstr "" -"Pagalbinės dalies aušinimo ventiliatoriaus greitis. Pagalbinis ventiliatorius veiks šiuo greičiu spausdinimo metu, išskyrus pirmuosius kelis sluoksnius, kuriems netaikomas sluoksnių aušinimas.\n" -"Norėdami naudotis šia funkcija, spausdintuvo nustatymuose įjunkite auxiliary_fan. G-kodo komanda: M106 P2 S(0-255)" +"Papildomo modelio aušinimo ventiliatoriaus greitis. Papildomas " +"ventiliatorius veiks šiuo greičiu spausdinimo metu, išskyrus pirmuosius " +"kelis sluoksnius, nurodytus neaušinamų sluoksnių nustatymuose.\n" +"Norėdami " +"naudoti šią funkciją, spausdintuvo nustatymuose įjunkite „auxiliary_fan“. G-" +"kodo komanda: M106 P2 S(0-255)" msgid "For the first" -msgstr "" +msgstr "Pirmiesiems" msgid "Set special auxiliary cooling fan for the first certain layers." msgstr "" +"Nustatyti specialų papildomo ventiliatoriaus aušinimą pirmiesiems " +"nurodytiems sluoksniams." msgid "" -"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" to maximum at layer \"Full fan speed at layer\".\n" -"\"Full fan speed at layer\" will be ignored if lower than \"For the first\", in which case the fan will run at maximum allowed speed at layer \"For the first\" + 1." +"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" " +"to maximum at layer \"Full fan speed at layer\".\n" +"\"Full fan speed at layer\" will be ignored if lower than \"For the first\", " +"in which case the fan will run at maximum allowed speed at layer \"For the " +"first\" + 1." msgstr "" +"Papildomo ventiliatoriaus greitis bus didinamas tiesiškai nuo sluoksnio " +"„Pirmiesiems“ iki maksimumo ties sluoksniu „Pilnas ventiliatoriaus greitis " +"ties sluoksniu“.\n" +"Sluoksnis „Pilnas ventiliatoriaus greitis ties sluoksniu“ bus ignoruojamas, " +"jei jis yra žemesnis nei „Pirmiesiems“ – tokiu atveju ventiliatorius veiks " +"maksimaliu leidžiamu greičiu ties sluoksniu „Pirmiesiems“ + 1." -msgid "Special auxiliary cooling fan speed, effective only for the first x layers." +msgid "" +"Special auxiliary cooling fan speed, effective only for the first x layers." msgstr "" +"Specialus papildomo aušinimo ventiliatoriaus greitis, galiojantis tik " +"pirmiesiems x sluoksnių." -msgid "The lowest printable layer height for the extruder. Used to limit the minimum layer height when enable adaptive layer height." -msgstr "Mažiausias spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas norint apriboti minimalų sluoksnio aukštį, kai įjungtas prisitaikantis sluoksnio aukštis." +msgid "" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when enable adaptive layer height." +msgstr "" +"Mažiausias galimas spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas " +"minimaliam sluoksnio aukštį apriboti, kai įjungtas prisitaikantis sluoksnio " +"aukštis." msgid "Min print speed" msgstr "Minimalus spausdinimo greitis" -msgid "The minimum print speed to which the printer slows down to maintain the minimum layer time defined above when the slowdown for better layer cooling is enabled." -msgstr "Mažiausias spausdinimo greitis, iki kurio spausdintuvas sulėtėja, kad išlaikytų pirmiau apibrėžtą minimalų sluoksnio laiką, kai įjungtas sulėtinimas dėl geresnio sluoksnių aušinimo." +msgid "" +"The minimum print speed to which the printer slows down to maintain the " +"minimum layer time defined above when the slowdown for better layer cooling " +"is enabled." +msgstr "" +"Mažiausias spausdinimo greitis, iki kurio spausdintuvas sulėtėja, kad " +"išlaikytų pirmiau apibrėžtą minimalų sluoksnio laiką, kai įjungtas " +"sulėtinimas dėl geresnio sluoksnių aušinimo." msgid "The diameter of nozzle." -msgstr "Purkštuvo skersmuo." +msgstr "Purkštuko skersmuo." msgid "Configuration notes" msgstr "Konfigūracijos pastabos" -msgid "You can put here your personal notes. This text will be added to the G-code header comments." -msgstr "Čia galite įdėti savo asmeninius užrašus. Šis tekstas bus pridėtas prie G kodo antraštės komentarų." +msgid "" +"You can put here your personal notes. This text will be added to the G-code " +"header comments." +msgstr "" +"Čia galite įdėti savo asmeninius užrašus. Šis tekstas bus pridėtas prie G " +"kodo antraštės komentarų." msgid "Host Type" -msgstr "Hosto tipas" +msgstr "Serverio (Host) tipas" -msgid "Orca Slicer can upload G-code files to a printer host. This field must contain the kind of the host." -msgstr "\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvą. Šiame lauke turi būti įrašyta įrenginio rūšis." +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field must " +"contain the kind of the host." +msgstr "" +"„OrcaSlicer“ gali įkelti G-kodo (G-code) failus į spausdintuvo serverį " +"(Host). Šiame lauke turi būti nurodytas serverio tipas." msgid "Nozzle volume" msgstr "Purkštuko tūris" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Volume of nozzle between the filament cutter and the end of the nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Purkštuko tūris tarp pjaustytuvo ir purkštuko galo." msgid "Cooling tube position" @@ -14280,128 +17732,205 @@ msgid "Cooling tube length" msgstr "Aušinimo vamzdžio ilgis" msgid "Length of the cooling tube to limit space for cooling moves inside it." -msgstr "Aušinimo vamzdžio ilgis, kad būtų apribota erdvė aušinimo judesiams viduje." +msgstr "" +"Aušinimo vamzdžio ilgis, kad būtų apribota erdvė aušinimo judesiams viduje." msgid "High extruder current on filament swap" -msgstr "Didelė ekstruderio srovė keičiant giją" +msgstr "Padidinta ekstruderio srovė keičiant giją" -msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip." -msgstr "Gali būti naudinga padidinti ekstruderio variklio srovę vykstant gijos keitimo sekai, kad būtų užtikrintas greitas tiekimo greitis ir įveiktų pasipriešinimą apkraunant giją su netipinės formos antgaliu." +msgid "" +"It may be beneficial to increase the extruder motor current during the " +"filament exchange sequence to allow for rapid ramming feed rates and to " +"overcome resistance when loading a filament with an ugly shaped tip." +msgstr "" +"Gali būti naudinga padidinti ekstruderio variklio srovę gijos keitimo sekos " +"metu – tai leidžia užtikrinti didelę gijos kalimo (ramming) spartą ir " +"įveikti pasipriešinimą prastumiant giją su netaisyklingos formos galiuku." msgid "Filament parking position" -msgstr "Gijos stovėjimo padėtis" +msgstr "Gijos parkavimo padėtis" -msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware." -msgstr "Ekstruderio antgalio atstumas nuo padėties, kurioje gija yra pastatyta, kai ji išimama. Tai turėtų atitikti spausdintuvo programinės įrangos reikšmę." +msgid "" +"Distance of the extruder tip from the position where the filament is parked " +"when unloaded. This should match the value in printer firmware." +msgstr "" +"Ekstruderio antgalio atstumas nuo padėties, kurioje gija yra priparkuojama " +"ją iškrovus. Ši reikšmė turi sutapti su nurodyta spausdintuvo aparatinėje " +"įrangoje (firmware)." msgid "Extra loading distance" -msgstr "Papildomas pakrovimo atstumas" +msgstr "Papildomas gijos įkrovimo atstumas" -msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading." -msgstr "Nustačius nulį, atstumas, kuriuo gija išleidžiama iš stovėjimo padėties įdėjimo metu, yra lygiai toks pat, koks buvo perkeltas atgal išėmimo metu. Jei parametras teigiamas, įdėjimo atstumas didesnis, jei neigiamas, - įdėjimo atstumas yra mažesnis nei išėmimo." +msgid "" +"When set to zero, the distance the filament is moved from parking position " +"during load is exactly the same as it was moved back during unload. When " +"positive, it is loaded further, if negative, the loading move is shorter " +"than unloading." +msgstr "" +"Nustačius nulį, atstumas, kuriuo gija pastumiama iš parkavimo padėties " +"įkrovimo metu, yra tiksliai toks pat, kokiu ji buvo atitraukta iškrovimo " +"metu. Esant teigiamai reikšmei, gija įkraunama giliau, esant neigiamai – " +"įkrovimo judesys yra trumpesnis nei iškrovimo." msgid "Start end points" msgstr "Pradžios ir pabaigos taškai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The start and end points which are from the cutter area to the excess chute." -msgstr "Pradžios ir pabaigos taškai, t. y. nuo pjaustymo zonos iki šiukšliadėžės." +msgid "The start and end points which is from cutter area to garbage can." +msgstr "" +"Pradžios ir pabaigos taškai, esantys tarp gijos kirpimo zonos ir atliekų " +"konteinerio." msgid "Reduce infill retraction" -msgstr "Sumažinti užpildų įtraukimą" +msgstr "Sumažinti užpildo įtraukimą (Retraction)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Don't retract when the travel is entirely within an infill area. That means the oozing can't been seen. This can reduce times of retraction for complex model and save printing time, but make slicing and G-code generating slower. Note that z-hop is also not performed in areas where retraction is skipped." -msgstr "Neįtraukti, kai judėjimas vyksta tik užpildytoje zonoje. Tai reiškia, kad ištekėjimo nematyti. Tai gali sutrumpinti įtraukimo laiką sudėtingam modeliui ir sutaupyti laiką spausdinimui, tačiau sluoksniavimas ir G kodo generavimas bus lėtesni." +msgid "" +"Don't retract when the travel is entirely within an infill area. That means " +"the oozing can't been seen. This can reduce times of retraction for complex " +"model and save printing time, but make slicing and G-code generating slower. " +"Note that z-hop is also not performed in areas where retraction is skipped." +msgstr "" +"Neatlikti gijos įtraukimo, kai tuščioji eiga vyksta tik užpildo zonoje. " +"Tokiu atveju gijos varvėjimas (oozing) išorėje bus nematomas. Tai leidžia " +"sumažinti įtraukimų skaičių sudėtingiems modeliams ir sutaupyti spausdinimo " +"laiko, tačiau sulėtina sluoksniavimą bei G-kodo (G-code) generavimą. " +"Pastaba: zonose, kuriose įtraukimas praleidžiamas, „Z-hop“ judesys taip pat " +"neatliekamas." -msgid "This option will drop the temperature of the inactive extruders to prevent oozing." -msgstr "Pasirinkus šią parinktį sumažės neaktyvių ekstruderių temperatūra, kad būtų išvengta išsiliejimo." +msgid "" +"This option will drop the temperature of the inactive extruders to prevent " +"oozing." +msgstr "" +"Ši parinktis sumažina neaktyvių ekstruderių temperatūrą, kad būtų išvengta " +"gijos varvėjimo (oozing)." msgid "Filename format" msgstr "Failų pavadinimų formatas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Users can decide project file names when exporting." +msgid "Users can define the project file name when exporting." msgstr "Eksportuodami vartotojai gali pasirinkti projekto failų pavadinimus." msgid "Make overhangs printable" msgstr "Padaryti iškyšas spausdinamas" msgid "Modify the geometry to print overhangs without support material." -msgstr "Pakeisti geometriją, kad būtų galima spausdinti iškyšas be atraminės medžiagos." +msgstr "" +"Pakeisti geometriją, kad būtų galima spausdinti iškyšas be atraminės " +"medžiagos." msgid "Make overhangs printable - Maximum angle" -msgstr "Spausdintinos iškyšos - Didžiausias kampas" +msgstr "Padaryti iškyšas spausdinamas – didžiausias kampas" -msgid "Maximum angle of overhangs to allow after making more steep overhangs printable.90° will not change the model at all and allow any overhang, while 0 will replace all overhangs with conical material." -msgstr "Didžiausias leistinas iškyšų kampas, kurį galima spausdinti padarius statesnes iškyšas. 90° visiškai nepakeis modelio ir leis bet kokią iškyšą, o 0 - visas iškyšas pakeis kūgio formos medžiaga." +msgid "" +"Maximum angle of overhangs to allow after making more steep overhangs " +"printable.90° will not change the model at all and allow any overhang, while " +"0 will replace all overhangs with conical material." +msgstr "" +"Didžiausias leistinas iškyšų kampas, pritaikius algoritmą. 90° kampas " +"visiškai nepakeis modelio ir leis bet kokias iškyšas, o 0° reikšmė visas " +"iškyšas pakeis po jomis esančia kūgine atramine medžiaga." msgid "Make overhangs printable - Hole area" -msgstr "Spausdintinos iškyšos - Skylės plotas" +msgstr "Padaryti iškyšas spausdinamas – kiaurymės plotas" -msgid "Maximum area of a hole in the base of the model before it's filled by conical material. A value of 0 will fill all the holes in the model base." -msgstr "Didžiausias modelio pagrindo skylės plotas prieš ją užpildant kūgine medžiaga. 0 reikšmė užpildys visas modelio pagrindo skyles." +msgid "" +"Maximum area of a hole in the base of the model before it's filled by " +"conical material. A value of 0 will fill all the holes in the model base." +msgstr "" +"Didžiausias modelio pagrinde esančios kiaurymės plotas, kurį viršijus ji " +"užpildoma kūgine medžiaga. Reikšmė 0 užpildys visas modelio pagrinde " +"esančias kiaurymes." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect overhang walls" -msgstr "Aptikti išsikišusią sieną" +msgstr "Aptikti iškyšų sieneles" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "This detects the overhang percentage relative to line width and uses a different speed to print. For 100%% overhang, bridging speed is used." -msgstr "Nustatykite iškyšos procentinę dalį, palyginti su linijos pločiu, ir naudokite skirtingą spausdinimo greitį. Jei iškyša 100%%, naudojamas tilto greitis." +msgid "" +"Detect the overhang percentage relative to line width and use different " +"speed to print. For 100%% overhang, bridge speed is used." +msgstr "" +"Nustatyti iškyšos procentinę dalį, palyginti su linijos pločiu, ir " +"spausdinimui naudoti skirtingą greitį. Esant 100%% iškyšai, naudojamas " +"tiltelių (bridging) greitis." msgid "Outer walls" -msgstr "" +msgstr "Išorinės sienelės" msgid "" "Filament to print outer walls.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama išorinėms sienelėms spausdinti. Pasirinkus „Numatytasis“, " +"naudojama aktyvaus objekto / dalies gija." msgid "Inner walls" -msgstr "" +msgstr "Vidinės sienelės" msgid "" "Filament to print inner walls.\n" "\"Default\" uses the active object/part filament." msgstr "" - -msgid "Line width of inner wall. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Vidinės sienos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for inner walls." -msgstr "Tai vidinių sienų greitis." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the number of walls per layer." -msgstr "Vieno sluoksnio sienų skaičius." - -msgid "Alternate extra wall" -msgstr "Alternatyvi papildoma siena" +"Gija, naudojama vidinėms sienelėms spausdinti. Pasirinkus „Numatytasis“, " +"naudojama aktyvaus objekto / dalies gija." msgid "" -"This setting adds an extra wall to every other layer. This way the infill gets wedged vertically between the walls, resulting in stronger prints.\n" -"\n" -"When this option is enabled, the ensure vertical shell thickness option needs to be disabled.\n" -"\n" -"Using lightning infill together with this option is not recommended as there is limited infill to anchor the extra perimeters to." +"Line width of inner wall. If expressed as a %, it will be computed over the " +"nozzle diameter." msgstr "" -"Šis nustatymas prie kiekvieno kito sluoksnio prideda papildomą sienelę. Taip užpildas vertikaliai įsiterpia tarp sienelių, todėl atspaudai tampa tvirtesni.\n" -"\n" -"Kai ši parinktis įjungta, reikia išjungti parinktį Užtikrinti vertikalų apvalkalo storį.\n" -"\n" -"Naudoti žaibo užpildą kartu su šia parinktimi nerekomenduojama, nes yra nedaug užpildo, prie kurio būtų galima pritvirtinti papildomą perimetrą." +"Vidinės sienelės linijos plotis. Jei išreiškiama %, reikšmė apskaičiuojama " +"pagal purkštuko skersmenį." -msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Orca Slicer config settings by reading environment variables." -msgstr "Jei norite apdoroti išvesties G-kodą naudodami pasirinktinius scenarijus, tiesiog nurodykite jų absoliučius kelius. Keletą scenarijų atskirkite kabliataškiu. Skriptams kaip pirmasis argumentas bus perduotas absoliutus kelias iki G-kodo failo ir jie galės pasiekti \"Orca Slicer\" konfigūracijos nustatymus skaitydami aplinkos kintamuosius." +msgid "Speed of inner wall." +msgstr "Vidinių sienelių greitis." + +msgid "Number of walls of every layer." +msgstr "Sienelių skaičius kiekviename sluoksnyje." + +msgid "Alternate extra wall" +msgstr "Alternatyvi papildoma sienelė" + +msgid "" +"This setting adds an extra wall to every other layer. This way the infill " +"gets wedged vertically between the walls, resulting in stronger prints.\n" +"\n" +"When this option is enabled, the ensure vertical shell thickness option " +"needs to be disabled.\n" +"\n" +"Using lightning infill together with this option is not recommended as there " +"is limited infill to anchor the extra perimeters to." +msgstr "" +"Šis nustatymas prie kiekvieno kito sluoksnio prideda papildomą sienelę. Taip " +"užpildas vertikaliai įsiterpia tarp sienelių, todėl atspaudai tampa " +"tvirtesni.\n" +"\n" +"Kai ši parinktis įjungta, reikia išjungti parinktį Užtikrinti vertikalų " +"apvalkalo storį.\n" +"\n" +"Naudoti žaibo užpildą kartu su šia parinktimi nerekomenduojama, nes yra " +"nedaug užpildo, prie kurio būtų galima pritvirtinti papildomą perimetrą." + +msgid "" +"If you want to process the output G-code through custom scripts, just list " +"their absolute paths here. Separate multiple scripts with a semicolon. " +"Scripts will be passed the absolute path to the G-code file as the first " +"argument, and they can access the Orca Slicer config settings by reading " +"environment variables." +msgstr "" +"Jei norite apdoroti išvesties G-kodą (G-code) per pasirinktinius scenarijus " +"(scripts), nurodykite jų absoliučiuosius kelius čia. Kelis scenarijus " +"atskirkite kabliataškiu. Scenarijams kaip pirmasis argumentas bus perduotas " +"absoliutusis kelias iki G-kodo failo, o „OrcaSlicer“ konfigūracijos " +"nustatymus jie galės pasiekti per aplinkos kintamuosius (environment " +"variables)." msgid "Change extrusion role G-code (process)" -msgstr "" +msgstr "Išstūmimo tipo keitimo G-kodas (procesas)" -msgid "This G-code is inserted when the extrusion role is changed. It runs after the machine and filament extrusion role G-code." +msgid "" +"This G-code is inserted when the extrusion role is changed. It runs after " +"the machine and filament extrusion role G-code." msgstr "" +"Šis G-kodas įterpiamas pasikeitus išstūmimo tipui. Jis vykdomas po " +"spausdintuvo ir gijos išstūmimo tipo G-kodo." msgid "Printer type" msgstr "Spausdintuvo tipas" @@ -14419,115 +17948,155 @@ msgid "Printer variant" msgstr "Spausdintuvo variantas" msgid "Raft contact Z distance" -msgstr "Platformos kontakto Z atstumas" +msgstr "Pagrindo (Raft) kontakto Z atstumas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Z gap between raft and object. If Support Top Z Distance is 0, this value is ignored and the object is printed in direct contact with the raft (no gap)." -msgstr "Z tarpas tarp platformos ir objekto. Jei viršutinis atramos Z atstumas yra 0, ši reikšmė ignoruojama ir objektas spausdinamas tiesiogiai kontaktuojant su platforma (be tarpo)." +msgid "" +"Z gap between raft and object. If Support Top Z Distance is 0, this value is " +"ignored and the object is printed in direct contact with the raft (no gap)." +msgstr "" +"Z ašies tarpas tarp pagrindo (Raft) ir objekto. Jei viršutinis atramų Z " +"atstumas yra 0, ši reikšmė ignoruojama ir objektas spausdinamas tiesiogiai " +"kontaktuojant su pagrindu (Raft) (be tarpo)." msgid "Raft expansion" -msgstr "Platformos išplėtimas" +msgstr "Pagrindo (Raft) išplėtimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This expands all raft layers in XY plane." -msgstr "Tai išplečia visus platformos sluoksnius XY plokštumoje." +msgid "Expand all raft layers in XY plane." +msgstr "Išplėsti visus pagrindo (Raft) sluoksnius XY plokštumoje." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer density" msgstr "Pradinio sluoksnio tankis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the density of the first raft or support layer." -msgstr "Pirmojo platformos arba atraminio sluoksnio tankis." +msgid "Density of the first raft or support layer." +msgstr "Pirmojo pagrindo (Raft) arba atraminio sluoksnio tankis." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer expansion" msgstr "Pradinio sluoksnio išplėtimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This expands the first raft or support layer to improve bed adhesion." -msgstr "Kad pagerėtų sukibimas su pagrindu, išplečiamas pirmasis platformos arba atraminis sluoksnis." +msgid "Expand the first raft or support layer to improve bed plate adhesion." +msgstr "" +"Išplėsti pirmąjį pagrindo (Raft) arba atraminį sluoksnį, kad pagerėtų " +"sukibimas su spausdinimo pagrindu." msgid "Raft layers" -msgstr "Platformos sluoksniai" +msgstr "Pagrindo (Raft) sluoksniai" -msgid "Object will be raised by this number of support layers. Use this function to avoid warping when printing ABS." -msgstr "Objektas bus padidintas šiuo atraminių sluoksnių skaičiumi. Šią funkciją naudokite norėdami išvengti deformacijų spausdinant ABS." +msgid "" +"Object will be raised by this number of support layers. Use this function to " +"avoid warping when printing ABS." +msgstr "" +"Objektas bus pakeltas per nurodytą pagrindo sluoksnių skaičių. Naudokite šią " +"funkciją, kad išvengtumėte deformavimosi (warping) spausdinant ABS gija." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The G-code path is generated after simplifying the contour of models to avoid too many points and G-code lines. Smaller values mean higher resolution and more time required to slice." -msgstr "G kodo kelias generuojamas supaprastinus modelių kontūrus, kad būtų išvengta pernelyg didelio taškų ir G kodo linijų skaičiaus. Mažesnė vertė reiškia didesnę skiriamąją gebą ir ilgesnį sluoksniavimo laiką." +msgid "" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." +msgstr "" +"G-kodo (G-code) trajektorija generuojama supaprastinus modelio kontūrus, kad " +"būtų išvengta per didelio taškų ir G-kodo eilučių skaičiaus. Mažesnė reikšmė " +"užtikrina didesnę skiriamąją gebą, bet pailgina sluoksniavimo laiką." msgid "Travel distance threshold" -msgstr "Judėjimo atstumo riba" +msgstr "Tuščios eigos atstumo riba" -msgid "Only trigger retraction when the travel distance is longer than this threshold." -msgstr "Įtraukimas įjungiamas tik tada, kai judėjimo atstumas yra ilgesnis už šią ribą." +msgid "" +"Only trigger retraction when the travel distance is longer than this " +"threshold." +msgstr "" +"Gijos įtraukimas (Retraction) suveikia tik tada, kai tuščios eigos atstumas " +"yra ilgesnis už šią ribą." msgid "Retract amount before wipe" -msgstr "Įtraukiamas kiekis prieš nuvalymą" +msgstr "Gijos įtraukimo kiekis prieš valymą (Wipe)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the length of fast retraction before a wipe, relative to retraction length." +msgid "" +"The length of fast retraction before wipe, relative to retraction length." msgstr "Greito įtraukimo prieš nuvalymą ilgis, palyginti su įtraukimo ilgiu." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Retract on layer change" +msgid "Retract when change layer" msgstr "Įtraukti, kai keičiamas sluoksnis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This forces a retraction on layer changes." -msgstr "Priverstinis įtraukimas, kai keičiasi sluoksnis." +msgid "Force a retraction when changes layer." +msgstr "Priverstinai atlikti gijos įtraukimą keičiantis sluoksniui." msgid "Retraction Length" -msgstr "Įtraukimo ilgis" +msgstr "Įtraukimo (Retraction) ilgis" -msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction." -msgstr "Tam tikras kiekis medžiagos ekstruderyje yra įtraukiamas atgal, kad ilgos kelionės metu nesusidarytų išsiliejimas. Nustatykite nulį, kad išjungtumėte įtraukimą." +msgid "" +"Some amount of material in extruder is pulled back to avoid ooze during long " +"travel. Set zero to disable retraction." +msgstr "" +"Tam tikras gijos kiekis ekstruderyje yra įtraukiamas atgal, kad ilgos " +"tuščios eigos metu gija nevarvėtų (ooze). Nustatykite nulį, jei norite " +"išjungti įtraukimą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Long retraction when cut (beta)" msgstr "Ilgas įtraukimas, kai pjaunama (beta)" -msgid "Experimental feature: Retracting and cutting off the filament at a longer distance during changes to minimize purge. While this reduces flush significantly, it may also raise the risk of nozzle clogs or other printing problems." -msgstr "Eksperimentinė funkcija: Pakeitimų metu gija įtraukiama ir nukerpama didesniu atstumu, kad būtų sumažintas išleidimas. Nors tai gerokai sumažina išleidimą, taip pat gali padidėti purkštukų užsikimšimo ar kitų spausdinimo problemų rizika." +msgid "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." +msgstr "" +"Eksperimentinė funkcija: keičiant giją, ji įtraukiama ir nukerpama didesniu " +"atstumu, kad būtų sumažintas jos pravalymo (purge) kiekis. Nors tai žymiai " +"sumažina atliekų kiekį, gali padidėti purkštuko užsikimšimo ar kitų " +"spausdinimo problemų rizika." msgid "Retraction distance when cut" msgstr "Įtraukimo atstumas, kai kerpama" -msgid "Experimental feature: Retraction length before cutting off during filament change." +msgid "" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "Eksperimentinė savybė: Įtraukimo ilgis prieš nupjaunant keičiant giją." msgid "Long retraction when extruder change" -msgstr "" +msgstr "Ilgas įtraukimas keičiant ekstruderį" msgid "Retraction distance when extruder change" -msgstr "" +msgstr "Įtraukimo atstumas keičiant ekstruderį" msgid "Z-hop height" -msgstr "Z šuolio aukštis" +msgstr "„Z-hop“ (pakėlimo) aukštis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Whenever there is a retraction, the nozzle is lifted a little to create clearance between the nozzle and the print. This prevents the nozzle from hitting the print when traveling more. Using spiral lines to lift z can prevent stringing." -msgstr "Kiekvieną kartą, kai gija įtraukiama, purkštukas šiek tiek pakeliamas, kad tarp purkštuko ir spaudinio atsirastų tarpas. Taip purkštukas, judėdamas daugiau, neužkliudo spaudinio. Naudojant spiralines linijas z pakėlimui, galima išvengti stygų susidarymo." +msgid "" +"Whenever the retraction is done, the nozzle is lifted a little to create " +"clearance between nozzle and the print. It prevents nozzle from hitting the " +"print when travel move. Using spiral lines to lift Z can prevent stringing." +msgstr "" +"Atlikus įtraukimą, purkštukas šiek tiek pakeliamas virš modelio, kad " +"susidarytų tarpas. Tai apsaugo, kad purkštukas tuščios eigos metu nekliudytų " +"spaudinio. Spiralinis Z ašies kėlimas gali padėti išvengti gijų stygavimosi " +"(stringing)." msgid "Z-hop lower boundary" -msgstr "Z šuolio apatinė riba" +msgstr "Z-hop apatinė riba" -msgid "Z-hop will only come into effect when Z is above this value and is below the parameter: \"Z-hop upper boundary\"." -msgstr "Z šuolis pradės veikti tik tada, kai Z bus didesnis už šią vertę ir mažesnis už parametrą: \"Z šuolio viršutinė riba\"." +msgid "" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." +msgstr "" +"Z-hop įsigalios tik tada, kai Z bus virš šios reikšmės ir žemiau parametro: " +"„Z-hop viršutinė riba“." msgid "Z-hop upper boundary" -msgstr "Z šuolio viršutinė riba" +msgstr "Z-hop viršutinė riba" -msgid "If this value is positive, Z-hop will only come into effect when Z is above the parameter: \"Z-hop lower boundary\" and is below this value." -msgstr "Jei ši vertė yra teigiama, Z-šuolis įsigalios tik tada, kai Z yra virš parametro „Z-šuolio apatinė riba“ ir yra žemiau šios vertės." +msgid "" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." +msgstr "" +"Jei ši reikšmė yra teigiama, Z-hop įsigalios tik tada, kai Z bus virš " +"parametro „Z-hop apatinė riba“ ir žemiau šios reikšmės." msgid "Z-hop type" -msgstr "Z šuolio tipas" +msgstr "Z-hop tipas" msgid "Type of Z-hop." -msgstr "Z-šuolio tipas." +msgstr "Z-hop tipas." msgid "Slope" msgstr "Nuolydis" @@ -14538,26 +18107,42 @@ msgstr "Spiralė" msgid "Traveling angle" msgstr "Judėjimo kampas" -msgid "Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results in Normal Lift." -msgstr "Šlaito ir spiralės Z-šuolio tipo judėjimo kampas. Nustačius jį į 90°, gaunamas normalus pakėlimas." +msgid "" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." +msgstr "" +"Nuolydžio (Slope) ir spiralės (Spiral) Z-hop tipo judėjimo kampas. Nustačius " +"90°, gaunamas įprastas pakėlimas." msgid "Only lift Z above" -msgstr "Pakelti tik Z aukščiau" +msgstr "Pakelti Z tik virš" -msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z." -msgstr "Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik virš nurodytos absoliučiosios Z reikšmės." +msgid "" +"If you set this to a positive value, Z lift will only take place above the " +"specified absolute Z." +msgstr "" +"Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik virš nurodytos " +"absoliučiosios Z reikšmės." msgid "Only lift Z below" -msgstr "Pakelti tik Z žemiau" +msgstr "Pakelti Z tik žemiau" -msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z." -msgstr "Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik žemiau nurodytos absoliučiosios Z reikšmės." +msgid "" +"If you set this to a positive value, Z lift will only take place below the " +"specified absolute Z." +msgstr "" +"Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik žemiau " +"nurodytos absoliučiosios Z reikšmės." msgid "On surfaces" msgstr "Ant paviršių" -msgid "Enforce Z-Hop behavior. This setting is impacted by the above settings (Only lift Z above/below)." -msgstr "Užtikrinkite \"Z šuolio\" elgesį. Šiam nustatymui įtakos turi pirmiau nurodyti nustatymai (tik pakelti Z virš/žemiau)." +msgid "" +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " +"lift Z above/below)." +msgstr "" +"Priverstinis Z-hop taikymas. Šiam nustatymui įtakos turi aukščiau esantys " +"parametrai (Pakelti Z tik virš/žemiau)." msgid "All Surfaces" msgstr "Visi paviršiai" @@ -14572,51 +18157,54 @@ msgid "Top and Bottom" msgstr "Viršus ir apačia" msgid "Direct Drive" -msgstr "Direct Drive" +msgstr "Tiesioginė pavara (Direct Drive)" msgid "Bowden" -msgstr "Bowden" - -msgid "Enable filament dynamic map" -msgstr "" - -msgid "Enable dynamic filament mapping during print." -msgstr "" - -msgid "Has filament switcher" -msgstr "" - -msgid "Printer has a filament switcher hardware (e.g., AMS)." -msgstr "" +msgstr "Bowdeno vamzdelis (Bowden)" msgid "Extra length on restart" -msgstr "Papildomas ilgis paleidus iš naujo" +msgstr "Papildomas ilgis po sugrąžinimo" -msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed." -msgstr "Kai įtraukimas kompensuojamas po judesio, ekstruderis išstums šį papildomą gijos kiekį. Šis nustatymas reikalingas retai." +msgid "" +"When the retraction is compensated after the travel move, the extruder will " +"push this additional amount of filament. This setting is rarely needed." +msgstr "" +"Kai po judėjimo kompensuojamas gijos įtraukimas, ekstruderis papildomai " +"išstums šį gijos kiekį. Šis nustatymas reikalingas retai." -msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." -msgstr "Kai atitraukimas kompensuojamas pakeitus įrankį, ekstruderis išstums šį papildomą gijos kiekį." +msgid "" +"When the retraction is compensated after changing tool, the extruder will " +"push this additional amount of filament." +msgstr "" +"Kai po įrankio pakeitimo kompensuojamas gijos įtraukimas, ekstruderis " +"papildomai išstums šį gijos kiekį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Retraction speed" -msgstr "Įtraukimo greitis" +msgid "Retraction Speed" +msgstr "Gijos įtraukimo greitis" msgid "Speed for retracting filament from the nozzle." -msgstr "Gijos įtraukimo į purkštuką greitis." +msgstr "Gijos įtraukimo iš purkštuko greitis." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Deretraction speed" -msgstr "Atitraukimo greitis" +msgid "De-retraction Speed" +msgstr "Gijos sugrąžinimo greitis" -msgid "Speed for reloading filament into the nozzle. Zero means same speed of retraction." -msgstr "Gijos įtraukimo į purkštuką greitis. Nulis reiškia tokį patį ištraukimo greitį." +msgid "" +"Speed for reloading filament into the nozzle. Zero means same speed of " +"retraction." +msgstr "" +"Gijos sugrąžinimo atgal į purkštuką greitis. Nulis reiškia tokį patį " +"įtraukimo greitį." msgid "Use firmware retraction" -msgstr "Naudoti nustatytąjį įtraukimą" +msgstr "Naudoti aparatinės programinės įrangos įtraukimą" -msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." -msgstr "Šis eksperimentinis nustatymas naudoja G10 ir G11 komandas, kad programinė įranga valdytų įtraukimą. Tai palaikoma tik naujausioje „Marlin“." +msgid "" +"This experimental setting uses G10 and G11 commands to have the firmware " +"handle the retraction. This is only supported in recent Marlin." +msgstr "" +"Šis eksperimentinis nustatymas naudoja G10 ir G11 komandas, leidžiančias " +"aparatinei programinei įrangai valdyti įtraukimą. Tai palaiko tik naujesnės " +"„Marlin“ versijos." msgid "Show auto-calibration marks" msgstr "Rodyti automatinio kalibravimo ženklus" @@ -14624,15 +18212,17 @@ msgstr "Rodyti automatinio kalibravimo ženklus" msgid "Disable set remaining print time" msgstr "Išjungti nustatytą likusį spausdinimo laiką" -msgid "Disable generating of the M73: Set remaining print time in the final G-code." -msgstr "Išjungti M73 generavimą: Nustatyti likusį spausdinimo laiką galutiniame G kode." +msgid "" +"Disable generating of the M73: Set remaining print time in the final G-code." +msgstr "" +"Išjungti M73 komandos (likusio spausdinimo laiko nustatymo) generavimą " +"galutiniame G-kode." msgid "Seam position" msgstr "Siūlės padėtis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the starting position for each part of the outer wall." -msgstr "Kiekvienos išorinės sienos dalies pradinė padėtis." +msgid "The start position to print each part of outer wall." +msgstr "Kiekvienos išorinės sienelės dalies pradinė padėtis." msgid "Nearest" msgstr "Artimiausia" @@ -14641,171 +18231,273 @@ msgid "Aligned" msgstr "Sulygiuota" msgid "Aligned back" -msgstr "Sulygiuotos galinės dalys" +msgstr "Sulygiuota gale" msgid "Random" msgstr "Atsitiktinė" msgid "Staggered inner seams" -msgstr "Vientisos vidinės siūlės" +msgstr "Išmėtytos vidinės siūlės" -msgid "This option causes the inner seams to be shifted backwards based on their depth, forming a zigzag pattern." -msgstr "Vientisos vidinės siūlės Dėl šios parinkties vidinės siūlės bus paslinktos atgal pagal jų gylį, suformuojant zigzago raštą." +msgid "" +"This option causes the inner seams to be shifted backwards based on their " +"depth, forming a zigzag pattern." +msgstr "" +"Pasirinkus šią parinktį, vidinės siūlės yra paslenkamos atgal pagal jų gylį, " +"taip suformuojant zigzago raštą." msgid "Seam gap" msgstr "Siūlės tarpas" msgid "" -"In order to reduce the visibility of the seam in a closed loop extrusion, the loop is interrupted and shortened by a specified amount.\n" -"This amount can be specified in millimeters or as a percentage of the current extruder diameter. The default value for this parameter is 10%." +"In order to reduce the visibility of the seam in a closed loop extrusion, " +"the loop is interrupted and shortened by a specified amount.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current extruder diameter. The default value for this parameter is 10%." msgstr "" -"Siekiant sumažinti uždaros kilpos ekstruzijos siūlės matomumą, kilpa pertraukiama ir sutrumpinama tam tikru dydžiu.\n" -"Šį kiekį galima nurodyti milimetrais arba procentais nuo esamo ekstruderio skersmens. Numatytoji šio parametro vertė yra 10 %." +"Siekiant sumažinti uždaros kilpos ekstruzijos siūlės matomumą, kilpa " +"pertraukiama ir sutrumpinama tam tikru dydžiu.\n" +"Šį kiekį galima nurodyti milimetrais arba procentais nuo esamo ekstruderio " +"skersmens. Numatytoji šio parametro vertė yra 10 %." msgid "Scarf joint seam (beta)" -msgstr "Juostos jungiamoji siūlė (beta)" +msgstr "Įstrižoji jungiamoji siūlė (Scarf joint) (beta)" msgid "Use scarf joint to minimize seam visibility and increase seam strength." -msgstr "Naudokite juostos jungtį, kad siūlės būtų kuo mažiau matomos ir padidėtų siūlės tvirtumas." +msgstr "" +"Naudoti įstrižąją jungtį (Scarf joint), kad siūlė būtų kuo mažiau matoma ir " +"padidėtų jos tvirtumas." msgid "Conditional scarf joint" -msgstr "Sąlyginė juostinė jungtis" - -msgid "Apply scarf joints only to smooth perimeters where traditional seams do not conceal the seams at sharp corners effectively." -msgstr "Skersines siūles naudokite tik ties lygiais perimetrais, kai įprastinės siūlės efektyviai nepaslepia aštrių kampų siūlių." - -msgid "Conditional angle threshold" -msgstr "Sąlyginė kampo riba" +msgstr "Sąlyginė įstrižoji jungtis (Scarf joint)" msgid "" -"This option sets the threshold angle for applying a conditional scarf joint seam.\n" -"If the maximum angle within the perimeter loop exceeds this value (indicating the absence of sharp corners), a scarf joint seam will be used. The default value is 155°." +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." msgstr "" -"Šia parinktimi nustatomas ribinis kampas, kuriuo taikoma sąlyginė juostinė siūlė.\n" -"Jei didžiausias kampas perimetro kilpoje viršija šią vertę (tai rodo, kad nėra aštrių kampų), bus naudojama juostinė siūlė. Numatytoji vertė yra 155°." +"Taikyti įstrižąsias jungtis (Scarf joint) tik ties lygiais perimetrais, kur " +"įprastos siūlės negali būti efektyviai paslėptos aštriuose kampuose." + +msgid "Conditional angle threshold" +msgstr "Sąlyginė kampo ribinė reikšmė" + +msgid "" +"This option sets the threshold angle for applying a conditional scarf joint " +"seam.\n" +"If the maximum angle within the perimeter loop exceeds this value " +"(indicating the absence of sharp corners), a scarf joint seam will be used. " +"The default value is 155°." +msgstr "" +"Ši parinktis nustato ribinį kampą sąlyginės įstrižosios siūlės taikymui.\n" +"Jei didžiausias kampas perimetro kilpoje viršija šią reikšmę (tai rodo, kad " +"nėra aštrių kampų), bus naudojama įstrižoji jungiamoji siūlė (Scarf joint). " +"Numatytoji reikšmė yra 155°." msgid "Conditional overhang threshold" -msgstr "Sąlyginė iškyšos riba" +msgstr "Sąlyginė iškyšos (overhang) ribinė reikšmė" #, no-c-format, no-boost-format -msgid "This option determines the overhang threshold for the application of scarf joint seams. If the unsupported portion of the perimeter is less than this threshold, scarf joint seams will be applied. The default threshold is set at 40% of the external wall's width. Due to performance considerations, the degree of overhang is estimated." -msgstr "Šia parinktimi nustatoma iškyšos riba, kurią pasiekus taikomos juostinės siūlės. Jei perimetro neatraminė dalis yra mažesnė už šią ribą, bus taikomos jungiamosios siūlės. Pagal numatytuosius nustatymus ši riba yra 40 % išorinės sienos pločio. Dėl eksploatacinių sumetimų įvertinamas iškyšos laipsnis." +msgid "" +"This option determines the overhang threshold for the application of scarf " +"joint seams. If the unsupported portion of the perimeter is less than this " +"threshold, scarf joint seams will be applied. The default threshold is set " +"at 40% of the external wall's width. Due to performance considerations, the " +"degree of overhang is estimated." +msgstr "" +"Ši parinktis nustato iškyšos (overhang) ribinę reikšmę įstrižųjų jungiamųjų " +"siūlių taikymui. Jei neatremta perimetro dalis yra mažesnė už šią ribą, bus " +"naudojamos įstrižosios jungiamosios siūlės (Scarf joint). Numatytoji riba " +"yra 40 % išorinės sienelės pločio. Dėl programos našumo iškyšos laipsnis yra " +"apytikslis." msgid "Scarf joint speed" -msgstr "Juostos jungties greitis" +msgstr "Įstrižosios jungties (Scarf joint) greitis" -msgid "This option sets the printing speed for scarf joints. It is recommended to print scarf joints at a slow speed (less than 100 mm/s). It's also advisable to enable 'Extrusion rate smoothing' if the set speed varies significantly from the speed of the outer or inner walls. If the speed specified here is higher than the speed of the outer or inner walls, the printer will default to the slower of the two speeds. When specified as a percentage (e.g., 80%), the speed is calculated based on the respective outer or inner wall speed. The default value is set to 100%." -msgstr "Šia parinktimi nustatomas juostinių jungčių spausdinimo greitis. Rekomenduojama juostines jungtis spausdinti nedideliu greičiu (mažesniu nei 100 mm/s). Taip pat patartina įjungti funkciją \"Spausdinimo greičio išlyginimas\", jei nustatytas greitis labai skiriasi nuo išorinių arba vidinių sienų greičio. Jei čia nustatytas greitis yra didesnis už išorinių arba vidinių sienų greitį, spausdintuvas pagal numatytuosius nustatymus pasirinks lėtesnį iš šių dviejų greičių. Kai nurodyta procentais (pvz., 80 %), greitis apskaičiuojamas pagal atitinkamą išorinių arba vidinių sienų greitį. Numatytoji vertė yra 100 %." +msgid "" +"This option sets the printing speed for scarf joints. It is recommended to " +"print scarf joints at a slow speed (less than 100 mm/s). It's also advisable " +"to enable 'Extrusion rate smoothing' if the set speed varies significantly " +"from the speed of the outer or inner walls. If the speed specified here is " +"higher than the speed of the outer or inner walls, the printer will default " +"to the slower of the two speeds. When specified as a percentage (e.g., 80%), " +"the speed is calculated based on the respective outer or inner wall speed. " +"The default value is set to 100%." +msgstr "" +"Ši parinktis nustato įstrižųjų jungčių (Scarf joint) spausdinimo greitį. " +"Rekomenduojama jas spausdinti nedideliu greičiu (mažiau nei 100 mm/s). Taip " +"pat patartina įjungti ekstruzijos srauto išlyginimą, jei nustatytas greitis " +"stipriai skiriasi nuo išorinių ar vidinių sienelių greičio. Jei čia " +"nurodytas greitis yra didesnis už išorinių ar vidinių sienelių greitį, " +"spausdintuvas automatiškai parinks lėtesnį iš šių dviejų greičių. Nurodžius " +"procentais (pvz., 80 %), greitis apskaičiuojamas pagal atitinkamos išorinės " +"arba vidinės sienelės greitį. Numatytoji reikšmė yra 100 %." msgid "Scarf joint flow ratio" -msgstr "Juostinės jungties srauto koeficientas" +msgstr "Įstrižosios jungties (Scarf joint) srauto koeficientas" msgid "This factor affects the amount of material for scarf joints." -msgstr "Šis veiksnys turi įtakos medžiagos kiekiui, reikalingam juostinėms siūlėms." +msgstr "" +"Šis koeficientas keičia medžiagos kiekį, naudojamą įstrižosioms jungtims " +"(Scarf joint)." msgid "Scarf start height" -msgstr "Juostos pradžios aukštis" +msgstr "Įstrižosios jungties pradžios aukštis" msgid "" "Start height of the scarf.\n" -"This amount can be specified in millimeters or as a percentage of the current layer height. The default value for this parameter is 0." +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgstr "" -"Pradinis juostos aukštis.\n" -"Šį dydį galima nurodyti milimetrais arba kaip dabartinio sluoksnio aukščio procentinę dalį. Numatytoji šio parametro reikšmė yra 0." +"Įstrižosios jungties pradžios aukštis.\n" +"Šį dydį galima nurodyti milimetrais arba esamo sluoksnio aukščio procentais. " +"Numatytoji šio parametro reikšmė yra 0." msgid "Scarf around entire wall" -msgstr "Juosta aplink visą sieną" +msgstr "Įstrižoji jungtis aplink visą sienelę" msgid "The scarf extends to the entire length of the wall." -msgstr "Juosta tęsiasi per visą sienos ilgį." +msgstr "Įstrižoji jungtis tęsiasi per visą sienelės ilgį." msgid "Scarf length" -msgstr "Juostos ilgis" +msgstr "Įstrižosios jungties ilgis" -msgid "Length of the scarf. Setting this parameter to zero effectively disables the scarf." -msgstr "Juostos ilgis. Nustačius šį parametrą lygų nuliui, juosta išjungiama." +msgid "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." +msgstr "" +"Įstrižosios jungties ilgis. Nustačius šį parametrą ties nuliu, įstrižoji " +"jungtis išjungiama." msgid "Scarf steps" -msgstr "Jostos žingsniai" +msgstr "Įstrižosios jungties žingsniai" msgid "Minimum number of segments of each scarf." -msgstr "Mažiausias kiekvienos juostos segmentų skaičius." +msgstr "Mažiausias kiekvienos įstrižosios jungties segmentų skaičius." msgid "Scarf joint for inner walls" -msgstr "Vidinių sienų juostos jungtis" +msgstr "Įstrižoji jungtis (Scarf joint) vidinėms sienelėms" msgid "Use scarf joint for inner walls as well." -msgstr "Vidinėms sienoms taip pat naudoti juostos jungtį." +msgstr "Įstrižąją jungtį (Scarf joint) naudoti ir vidinėms sienelėms." msgid "Role base wipe speed" -msgstr "Vaidmens pagrindo nuvalymo greitis" +msgstr "Valymo greitis pagal elemento tipą" -msgid "The wipe speed is determined by the speed of the current extrusion role. e.g. if a wipe action is executed immediately following an outer wall extrusion, the speed of the outer wall extrusion will be utilized for the wipe action." -msgstr "Jei nuvalymo veiksmas atliekamas iš karto po išorinės sienelės išspaudimo, nuvalymo veiksmui bus naudojamas išorinės sienelės išspaudimo greitis." +msgid "" +"The wipe speed is determined by the speed of the current extrusion role. " +"e.g. if a wipe action is executed immediately following an outer wall " +"extrusion, the speed of the outer wall extrusion will be utilized for the " +"wipe action." +msgstr "" +"Valymo greitį lemia esamo išspaudimo elemento tipas. Pvz., jei valymo " +"veiksmas atliekamas iškart po išorinės sienelės išspaudimo, valymui bus " +"naudojamas išorinės sienelės spausdinimo greitis." msgid "Wipe on loops" msgstr "Nuvalyti kilpas" -msgid "To minimize the visibility of the seam in a closed loop extrusion, a small inward movement is executed before the extruder leaves the loop." -msgstr "Siekiant sumažinti siūlės matomumą uždaroje ekstruzijos kilpoje, prieš ekstruderiui išeinant iš kilpos atliekamas nedidelis judesys į vidų." +msgid "" +"To minimize the visibility of the seam in a closed loop extrusion, a small " +"inward movement is executed before the extruder leaves the loop." +msgstr "" +"Siekiant sumažinti siūlės matomumą uždaroje ekstruzijos kilpoje, prieš " +"ekstruderiui išeinant iš kilpos atliekamas nedidelis judesys į vidų." msgid "Wipe before external loop" -msgstr "Nuvalyti prieš išorinę kilpą" +msgstr "Valymas prieš išorinį kontūrą" msgid "" -"To minimize visibility of potential overextrusion at the start of an external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall print order, the de-retraction is performed slightly on the inside from the start of the external perimeter. That way any potential over extrusion is hidden from the outside surface.\n" +"To minimize visibility of potential overextrusion at the start of an " +"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order, the de-retraction is performed slightly on the inside from the " +"start of the external perimeter. That way any potential over extrusion is " +"hidden from the outside surface.\n" "\n" -"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall print order as in these modes it is more likely an external perimeter is printed immediately after a de-retraction move." +"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order as in these modes it is more likely an external perimeter is " +"printed immediately after a de-retraction move." msgstr "" -"Siekiant sumažinti galimo perteklinio išspaudimo matomumą išorinio perimetro pradžioje, kai spausdinama išorinės / vidinės arba vidinės / išorinės / išorinės / vidinės sienos spausdinimo tvarka, ištraukimas atliekamas šiek tiek į vidų nuo išorinio perimetro pradžios. Taip bet koks galimas perteklinis išspaudimas paslepiamas nuo išorinio paviršiaus.\n" +"Siekiant sumažinti galimo medžiagos pertekliaus (overextrusion) matomumą " +"išorinio perimetro pradžioje, kai naudojama „Išorinė/Vidinė“ arba „Vidinė/" +"Išorinė/Vidinė“ sienelių spausdinimo tvarka, gijos sugrąžinimas atliekamas " +"šiek tiek labiau į vidų nuo išorinio perimetro pradžios. Taip bet koks " +"galimas medžiagos perteklius paslepiamas vidinėje paviršiaus pusėje.\n" "\n" -"Tai naudinga, kai spausdinama naudojant išorinės / vidinės arba vidinės / išorinės / išorinės / vidinės sienos spausdinimo tvarką, nes šiuose režimuose didesnė tikimybė, kad išorinis perimetras bus išspausdintas iš karto po ištraukimo pašalinimo judesio." +"Tai naudinga spausdinant „Išorinė/Vidinė“ arba „Vidinė/Išorinė/Vidinė“ " +"sienelių tvarka, nes šiuose režimuose išorinis perimetras dažniausiai " +"pradedamas spausdinti iškart po gijos sugrąžinimo judesio." msgid "Wipe speed" -msgstr "Valymo greitis" +msgstr "Gijos valymo greitis" -msgid "The wipe speed is determined by the speed setting specified in this configuration. If the value is expressed as a percentage (e.g. 80%), it will be calculated based on the travel speed setting above. The default value for this parameter is 80%." -msgstr "Valymo greitis nustatomas pagal šioje konfigūracijoje nurodytą greičio nustatymą.Jei vertė išreikšta procentais (pvz., 80 %), ji bus apskaičiuota pagal pirmiau nurodytą judėjimo greičio nustatymą. Numatytoji šio parametro vertė yra 80%." +msgid "" +"The wipe speed is determined by the speed setting specified in this " +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." +msgstr "" +"Valymo greitis nustatomas pagal šioje konfigūracijoje nurodytą reikšmę. Jei " +"reikšmė nurodyta procentais (pvz., 80%), ji bus apskaičiuojama pagal " +"aukščiau nustatytą judėjimo (travel) greitį. Numatytoji šio parametro " +"reikšmė yra 80%." msgid "Skirt distance" msgstr "Apvado atstumas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the distance from the skirt to the brim or the object." +msgid "The distance from the skirt to the brim or the object." msgstr "Tai atstumas nuo apvado iki krašto arba objekto." msgid "Skirt start point" msgstr "Apvado pradžios taškas" -msgid "Angle from the object center to skirt start point. Zero is the most right position, counter clockwise is positive angle." -msgstr "Kampas nuo objekto centro iki apvado pradžios taško. Nulis yra labiausiai į dešinę nukreipta padėtis, prieš laikrodžio rodyklę - teigiamas kampas." +msgid "" +"Angle from the object center to skirt start point. Zero is the most right " +"position, counter clockwise is positive angle." +msgstr "" +"Kampas nuo objekto centro iki apvado pradžios taško. Nulis yra labiausiai į " +"dešinę nukreipta padėtis, prieš laikrodžio rodyklę - teigiamas kampas." msgid "Skirt height" msgstr "Apvado aukštis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Number of skirt layers: usually only one" +msgid "How many layers of skirt. Usually only one layer." msgstr "Kiek sluoksnių apvado. Paprastai tik vienas sluoksnis." msgid "Single loop after first layer" -msgstr "Viengubas kontūras po pirmojo sluoksnio" - -msgid "Limits the skirt/draft shield loops to one wall after the first layer. This is useful, on occasion, to conserve filament but may cause the draft shield/skirt to warp / crack." -msgstr "Apriboja apvado/apsauginio skydo kontūrus iki vienos sienos po pirmojo sluoksnio. Tai kartais yra naudinga, norint sutaupyti giją, tačiau gali sukelti apsauginio skydo/apvado deformaciją/įtrūkimus." - -msgid "Draft shield" -msgstr "Apsauginis kokonas" +msgstr "Vienas kontūro sluoksnis po pirmojo sluoksnio" msgid "" -"A draft shield is useful to protect an ABS or ASA print from warping and detaching from print bed due to wind draft. It is usually needed only with open frame printers, i.e. without an enclosure.\n" -"\n" -"Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt height' is used.\n" -"Note: With the draft shield active, the skirt will be printed at skirt distance from the object. Therefore, if brims are active it may intersect with them. To avoid this, increase the skirt distance value.\n" +"Limits the skirt/draft shield loops to one wall after the first layer. This " +"is useful, on occasion, to conserve filament but may cause the draft shield/" +"skirt to warp / crack." msgstr "" -"Apsauginis skydas yra naudingas siekiant apsaugoti ABS arba ASA spaudinį nuo išlinkimo ir atsiskyrimo nuo spausdinimo pagrindo dėl skersvėjo. Jo paprastai reikia tik atviruose rėminiuose spausdintuvuose, t. y. be gaubto.\n" +"Po pirmojo sluoksnio apriboja apvado / apsauginio skydo kontūrus iki vienos " +"sienelės. Tai kartais naudinga norint sutaupyti gijos, tačiau apsauginis " +"skydas ar apvadas gali labiau deformuotis arba įtrūkti." + +msgid "Draft shield" +msgstr "Apsauginis skydas (Draft shield)" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure.\n" "\n" -"Įjungta = apvadas yra tokio aukščio kaip aukščiausias spausdinamas objektas. Priešingu atveju naudojamas „apvado aukštis“.\n" -"Pastaba: Kai įjungtas apsauginis skydas, apvadas bus spausdinamas apvado atstumu nuo objekto. Todėl, jei aktyvuoti apvadai, jis gali su jais susikirsti. Norėdami to išvengti, padidinkite apvado atstumo reikšmę.\n" +"Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " +"height' is used.\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" +"Apsauginis skydas (Draft shield) padeda apsaugoti ABS arba ASA spaudinius " +"nuo deformavimosi ir atšokimo nuo pagrindo dėl skersvėjų. Dažniausiai jis " +"reikalingas tik atviro tipo spausdintuvams be korpuso (enclosure).\n" +"\n" +"Įjungta = apvadas bus tokio paties aukščio kaip ir aukščiausias spausdinamas " +"objektas. Priešingu atveju naudojamas parametras „Apvado aukštis“.\n" +"Pastaba: kai apsauginis skydas aktyvus, apvadas bus spausdinamas nurodytu " +"„Apvado atstumu“ nuo objekto. Jei naudojami pado kraštai (brim), jie gali " +"susikirsti. Norėdami to išvengti, padidinkite apvado atstumo reikšmę.\n" msgid "Enabled" msgstr "Įjungta" @@ -14813,8 +18505,12 @@ msgstr "Įjungta" msgid "Skirt type" msgstr "Apvado tipas" -msgid "Combined - single skirt for all objects, Per object - individual object skirt." -msgstr "Kombinuota - vienas apvadas visiems objektams, Objektui - atskiras objekto apvadas." +msgid "" +"Combined - single skirt for all objects, Per object - individual object " +"skirt." +msgstr "" +"Kombinuotas – vienas bendras apvadas visiems objektams; Kiekvienam objektui " +"– atskiras apvadas kiekvienam spaudiniui." msgid "Per object" msgstr "Objektui" @@ -14822,96 +18518,169 @@ msgstr "Objektui" msgid "Skirt loops" msgstr "Apvado kontūrai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the number of loops for the skirt. 0 means the skirt is disabled." +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Tai yra apvado kontūrų skaičius. 0 reiškia, kad apvadas išjungtas." msgid "Skirt speed" msgstr "Apvado greitis" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." -msgstr "Apvado greitis, mm/s. Nulis reiškia, kad naudojamas numatytasis sluoksnio išspaudimo greitis." +msgstr "" +"Apvado greitis, mm/s. Nulis reiškia, kad naudojamas numatytasis sluoksnio " +"išspaudimo greitis." msgid "Skirt minimum extrusion length" msgstr "Minimalus apvado išspaudimo ilgis" msgid "" -"Minimum filament extrusion length in mm when printing the skirt. Zero means this feature is disabled.\n" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" "\n" -"Using a non-zero value is useful if the printer is set up to print without a prime line.\n" -"Final number of loops is not taking into account while arranging or validating objects distance. Increase loop number in such case." +"Using a non-zero value is useful if the printer is set up to print without a " +"prime line.\n" +"Final number of loops is not taking into account while arranging or " +"validating objects distance. Increase loop number in such case." msgstr "" -"Mažiausias gijos išspaudimo ilgis mm, kai spausdinamas apvadas. Nulis reiškia, kad ši funkcija išjungta.\n" +"Mažiausias gijos išspaudimo ilgis mm, kai spausdinamas apvadas. Nulis " +"reiškia, kad ši funkcija išjungta.\n" "\n" -"Naudoti nenulinę vertę naudinga, jei spausdintuvas nustatytas spausdinti be pirminės linijos.\n" -"Į galutinį kontūrų skaičių neatsižvelgiama, kai organizuojamas arba patvirtinamas objektų atstumas. Tokiu atveju padidinkite kontūrų skaičių." +"Naudoti nenulinę vertę naudinga, jei spausdintuvas nustatytas spausdinti be " +"pirminės linijos.\n" +"Į galutinį kontūrų skaičių neatsižvelgiama, kai organizuojamas arba " +"patvirtinamas objektų atstumas. Tokiu atveju padidinkite kontūrų skaičių." -msgid "The printing speed in exported G-code will be slowed down when the estimated layer time is shorter than this value in order to get better cooling for these layers." -msgstr "Spausdinimo greitis eksportuotame G-kode bus sulėtintas, kai numatomas sluoksnio laikas bus trumpesnis už šią vertę, siekiant užtikrinti geresnį šių sluoksnių aušinimą." +msgid "" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." +msgstr "" +"Spausdinimo greitis eksportuotame G-kode bus sulėtintas, kai numatomas " +"sluoksnio laikas bus trumpesnis už šią vertę, siekiant užtikrinti geresnį " +"šių sluoksnių aušinimą." msgid "Minimum sparse infill threshold" -msgstr "Minimali reto užpildymo riba" +msgstr "Minimali reto užpildo ribinė reikšmė" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Sparse infill areas which are smaller than this threshold value are replaced by internal solid infill." -msgstr "Reto užpildymo sritys, kurios yra mažesnės už šią ribinę vertę, pakeičiamos vidiniu vientisu užpildymu." +msgid "" +"Sparse infill areas smaller than this threshold value are replaced by " +"internal solid infill." +msgstr "" +"Reto užpildo sritys, mažesnės už šią ribinę reikšmę, pakeičiamos vidiniu " +"vientisu užpildu." msgid "" "Filament to print internal solid infill.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama vidiniam vientisam užpildui spausdinti.\n" +"Pasirinkus „Numatytoji“, naudojama aktyvaus objekto / dalies gija." msgid "" "Filament to print top surface.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama viršutiniam paviršiui spausdinti.\n" +"Pasirinkus „Numatytoji“, naudojama aktyvaus objekto / dalies gija." msgid "" "Filament to print bottom surface.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama apatiniam paviršiui spausdinti.\n" +"Pasirinkus „Numatytoji“, naudojama aktyvaus objekto / dalies gija." -msgid "Line width of internal solid infill. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Vidinio vientiso užpildo linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgid "" +"Line width of internal solid infill. If expressed as a %, it will be " +"computed over the nozzle diameter." +msgstr "" +"Vidinio vientiso užpildo linijos plotis. Jei išreiškiamas %, jis " +"apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for internal solid infill, not including the top or bottom surface." -msgstr "Tai vidinio vientiso užpildo greitis, neįskaitant viršutinio ar apatinio paviršiaus." +msgid "Speed of internal solid infill, not the top and bottom surface." +msgstr "" +"Tai vidinio vientiso užpildo greitis, neįskaitant viršutinio ar apatinio " +"paviršiaus." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This enables spiraling, which smooths out the Z moves of the outer contour and turns a solid model into a single walled print with solid bottom layers. The final generated model has no seam." -msgstr "Tai leidžia atlikti spiralinį išlyginimą, kuris išlygina išorinio kontūro Z judesius ir paverčia vientisą modelį į vienos sienelės atspaudą su vientisais apatiniais sluoksniais. Galutiniame sudarytame modelyje nėra siūlės." +msgid "" +"Spiralize smooths out the Z moves of the outer contour. And turns a solid " +"model into a single walled print with solid bottom layers. The final " +"generated model has no seam." +msgstr "" +"Tai leidžia atlikti spiralinį išlyginimą, kuris išlygina išorinio kontūro Z " +"judesius ir paverčia vientisą modelį į vienos sienelės atspaudą su " +"vientisais apatiniais sluoksniais. Galutiniame sudarytame modelyje nėra " +"siūlės." msgid "Smooth Spiral" -msgstr "Lygi spiralė" +msgstr "Sklandi spiralė" -msgid "Smooth Spiral smooths out X and Y moves as well, resulting in no visible seam at all, even in the XY directions on walls that are not vertical." -msgstr "Sklandi spiralė išlygina X ir Y judesius, todėl XY kryptimis ant ne vertikalių sienų visiškai nesimato siūlių." +msgid "" +"Smooth Spiral smooths out X and Y moves as well, resulting in no visible " +"seam at all, even in the XY directions on walls that are not vertical." +msgstr "" +"Sklandi spiralė papildomai išlygina X ir Y judesius, todėl XY kryptimis ant " +"nevertikalių sienelių siūlė tampa visiškai nematoma." msgid "Max XY Smoothing" -msgstr "Didžiausias XY išlyginimas" +msgstr "Maksimalus XY išlyginimas" #, no-c-format, no-boost-format -msgid "Maximum distance to move points in XY to try to achieve a smooth spiral. If expressed as a %, it will be computed over nozzle diameter." -msgstr "Didžiausias atstumas, kuriuo galima perkelti taškus XY kryptimi, kad būtų pasiekta tolygi spiralė. Jei išreiškiamas %, jis bus apskaičiuojamas pagal purkštuko skersmenį." +msgid "" +"Maximum distance to move points in XY to try to achieve a smooth spiral. If " +"expressed as a %, it will be computed over nozzle diameter." +msgstr "" +"Maksimalus atstumas, kuriuo galima pastumti taškus XY plokštumoje, siekiant " +"sklandžios spiralės. Jei nurodoma %, reikšmė apskaičiuojama pagal purkštuko " +"skersmenį." msgid "Spiral starting flow ratio" -msgstr "Pradinis srauto santykis spiralėje" +msgstr "Spiralės pradinis srauto koeficientas" #, no-c-format, no-boost-format -msgid "Sets the starting flow ratio while transitioning from the last bottom layer to the spiral. Normally the spiral transition scales the flow ratio from 0% to 100% during the first loop which can in some cases lead to under extrusion at the start of the spiral." -msgstr "Nustato pradinį srauto santykį pereinant iš paskutinio apatinio sluoksnio į spiralę. Įprastai perėjimo į spiralę metu srauto santykis pirmojo ciklo metu keičiamas nuo 0 % iki 100 %, todėl kai kuriais atvejais spiralės pradžioje gali būti nepakankamas išspaudimas." +msgid "" +"Sets the starting flow ratio while transitioning from the last bottom layer " +"to the spiral. Normally the spiral transition scales the flow ratio from 0% " +"to 100% during the first loop which can in some cases lead to under " +"extrusion at the start of the spiral." +msgstr "" +"Nustato pradinį srauto koeficientą perėjimo iš paskutinio apatinio sluoksnio " +"į spiralę metu. Paprastai perėjimo į spiralę metu srauto koeficientas " +"pirmojo kontūro metu didėja nuo 0% iki 100%, todėl kai kuriais atvejais " +"spiralės pradžioje gali pritrūkti medžiagos (under-extrusion)." msgid "Spiral finishing flow ratio" -msgstr "Galinis srauto santykis spiralėje" +msgstr "Spiralės pabaigos srauto koeficientas" #, no-c-format, no-boost-format -msgid "Sets the finishing flow ratio while ending the spiral. Normally the spiral transition scales the flow ratio from 100% to 0% during the last loop which can in some cases lead to under extrusion at the end of the spiral." -msgstr "Nustato baigiamojo srauto santykį, kai baigiama spiralė. Paprastai spiralės perėjimo metu srauto santykis keičiamas nuo 100 % iki 0 % paskutinio ciklo metu, todėl kai kuriais atvejais spiralės pabaigoje gali būti nepakankamas išspaudimas." +msgid "" +"Sets the finishing flow ratio while ending the spiral. Normally the spiral " +"transition scales the flow ratio from 100% to 0% during the last loop which " +"can in some cases lead to under extrusion at the end of the spiral." +msgstr "" +"Nustato baigiamąjį srauto koeficientą užbaigiant spiralę. Paprastai šio " +"perėjimo metu srauto koeficientas paskutinio kontūro metu mažėja nuo 100% " +"iki 0%, todėl kai kuriais atvejais spiralės pabaigoje gali pritrūkti " +"medžiagos (under-extrusion)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "If smooth or traditional mode is selected, a timelapse video will be generated for each print. After each layer is printed, a snapshot is taken with the chamber camera. All of these snapshots are composed into a timelapse video when printing completes. If smooth mode is selected, the toolhead will move to the excess chute after each layer is printed and then take a snapshot. Since the melt filament may leak from the nozzle during the process of taking a snapshot, a prime tower is required for smooth mode to wipe the nozzle." -msgstr "Jei pasirinktas lygus arba tradicinis režimas, kiekvienam spaudiniui bus sukurtas pakadrinis vaizdo įrašas. Atspausdinus kiekvieną sluoksnį, kameros fotoaparatu padaroma momentinė nuotrauka. Baigus spausdinti, visos šios momentinės nuotraukos sudedamos į laike rodomą vaizdo įrašą. Jei pasirinktas sklandus režimas, po kiekvieno sluoksnio atspausdinimo įrankio galvutė persikels į perteklinį lataką ir tada padarys momentinę nuotrauką. Kadangi darant momentinę nuotrauką iš purkštuko gali ištekėti lydalo gija, norint nuvalyti purkštuką, naudojant sklandųjį režimą reikalingas pirminis bokštelis." +msgid "" +"If smooth or traditional mode is selected, a timelapse video will be " +"generated for each print. After each layer is printed, a snapshot is taken " +"with the chamber camera. All of these snapshots are composed into a " +"timelapse video when printing completes. If smooth mode is selected, the " +"toolhead will move to the excess chute after each layer is printed and then " +"take a snapshot. Since the melt filament may leak from the nozzle during the " +"process of taking a snapshot, a prime tower is required for smooth mode to " +"wipe nozzle." +msgstr "" +"Jei pasirinktas sklandus (smooth) arba tradicinis režimas, kiekvienam " +"spaudiniui bus generuojamas intervalinis vaizdo įrašas (timelapse). " +"Atspausdinus kiekvieną sluoksnį, korpuso kamera padaro nuotrauką. Baigus " +"spausdinti, visos nuotraukos sujungiamos į vieną intervalinį vaizdo įrašą. " +"Jei pasirinktas sklandus režimas, po kiekvieno sluoksnio spausdinimo galvutė " +"pasitrauks prie atliekų latako (excess chute) ir tik tada bus daroma " +"nuotrauka. Kadangi fotografavimo metu iš purkštuko gali ištekėti " +"išsilydžiusi gija, sklandžiam režimui reikalingas valymo bokštelis (prime " +"tower) purkštuko nuvalymui." msgid "Traditional" msgstr "Tradicinis" @@ -14920,8 +18689,14 @@ msgid "Temperature variation" msgstr "Temperatūros kitimas" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" -msgid "Temperature difference to be applied when an extruder is not active. The value is not used when 'idle_temperature' in filament settings is set to non-zero value." -msgstr "Temperatūros skirtumas, taikomas, kai ekstruderis nėra aktyvus. Ši vertė nenaudojama, kai „idle_temperature“ gijų nustatymuose nustatyta ne nulinė vertė." +msgid "" +"Temperature difference to be applied when an extruder is not active. The " +"value is not used when 'idle_temperature' in filament settings is set to non-" +"zero value." +msgstr "" +"Temperatūros skirtumas, taikomas, kai ekstruderis yra neaktyvus. Ši reikšmė " +"nenaudojama, kai gijos nustatymuose „idle_temperature“ (pasyvaus režimo " +"temperatūra) yra nustatyta ne nuliui." msgid "∆℃" msgstr "∆℃" @@ -14929,46 +18704,83 @@ msgstr "∆℃" msgid "Preheat time" msgstr "Įkaitinimo laikas" -msgid "To reduce the waiting time after tool change, Orca can preheat the next tool while the current tool is still in use. This setting specifies the time in seconds to preheat the next tool. Orca will insert a M104 command to preheat the tool in advance." -msgstr "Kad sutrumpėtų laukimo laikas pakeitus įrankį, Orca gali iš anksto įkaitinti kitą įrankį, kol dabartinis įrankis dar naudojamas. Šis nustatymas nurodo kito įrankio įkaitinimo laiką sekundėmis. Orca įterps komandą M104, kad įrankis būtų įkaitintas iš anksto." +msgid "" +"To reduce the waiting time after tool change, Orca can preheat the next tool " +"while the current tool is still in use. This setting specifies the time in " +"seconds to preheat the next tool. Orca will insert a M104 command to preheat " +"the tool in advance." +msgstr "" +"Kad sutrumpėtų laukimo laikas pakeitus įrankį, Orca gali iš anksto įkaitinti " +"kitą įrankį, kol dabartinis įrankis dar naudojamas. Šis nustatymas nurodo " +"kito įrankio įkaitinimo laiką sekundėmis. Orca įterps komandą M104, kad " +"įrankis būtų įkaitintas iš anksto." msgid "Preheat steps" msgstr "Įkaitinimo etapai" -msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1." -msgstr "Įterpkite kelias įkaitinimo komandas (pvz., M104.1). Naudinga tik „Prusa XL“. Kitiems spausdintuvams nustatykite 1." - -msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}." +msgid "" +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. " +"For other printers, please set it to 1." msgstr "" +"Įterpkite kelias įkaitinimo komandas (pvz., M104.1). Naudinga tik „Prusa " +"XL“. Kitiems spausdintuvams nustatykite 1." + +msgid "" +"G-code written at the very top of the output file, before any other content. " +"Useful for adding metadata that printer firmware reads from the first lines " +"of the file (e.g. estimated print time, filament usage). Supports " +"placeholders like {print_time_sec} and {used_filament_length}." +msgstr "" +"G-kodas, įrašomas pačiame išvesties failo viršuje, prieš bet kokį kitą " +"turinį. Naudingas įterpti metaduomenims, kuriuos spausdintuvo aparatinė " +"programinė įranga nuskaito iš pirmųjų failo eilučių (pvz., numatomą " +"spausdinimo laiką, gijos sąnaudas). Palaiko kintamuosius (placeholders), " +"tokius kaip {print_time_sec} ir {used_filament_length}." msgid "Start G-code" msgstr "Pradžios G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "G-code added when starting a print." -msgstr "G kodo paleidimas, kai pradedamas visas spausdinimas." +msgid "Start G-code when starting the entire print." +msgstr "Pradžios G-kodas pradedant visą spausdinimą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "G-code added when the printer starts using this filament" -msgstr "Paleisti G-kodą, kai pradedama spausdinti šia gija." +msgid "Start G-code when starting the printing of this filament." +msgstr "Pradžios G-kodas pradedant spausdinti šia gija." msgid "Single Extruder Multi Material" -msgstr "Vieno ekstruderio daugialypė medžiaga" +msgstr "Vieno ekstruderio daugiamedžiagis spausdinimas (Multi-Material)" msgid "Use single nozzle to print multi filament." -msgstr "Naudoti vieną antgalį spausdinti keliomis gijomis." +msgstr "Naudoti vieną purkštuką spausdinimui keliomis gijomis." msgid "Manual Filament Change" msgstr "Rankinis gijų keitimas" -msgid "Enable this option to omit the custom Change filament G-code only at the beginning of the print. The tool change command (e.g., T0) will be skipped throughout the entire print. This is useful for manual multi-material printing, where we use M600/PAUSE to trigger the manual filament change action." -msgstr "Įjunkite šią parinktį, kad pasirinktinis Keisti gijos G-kodas būtų praleistas tik spausdinimo pradžioje. Įrankio keitimo komanda (pvz., T0) bus praleista viso spausdinimo metu. Tai naudinga spausdinant keliomis medžiagomis rankiniu būdu, kai rankinio gijos keitimo veiksmui įjungti naudojame M600/PAUSE." +msgid "" +"Enable this option to omit the custom Change filament G-code only at the " +"beginning of the print. The tool change command (e.g., T0) will be skipped " +"throughout the entire print. This is useful for manual multi-material " +"printing, where we use M600/PAUSE to trigger the manual filament change " +"action." +msgstr "" +"Įjunkite šią parinktį, kad pasirinktinis gijos keitimo G-kodas būtų " +"praleistas tik spausdinimo pradžioje. Įrankio keitimo komanda (pvz., T0) bus " +"praleidžiama viso spausdinimo metu. Tai naudinga rankiniam daugiamedžiagiam " +"spausdinimui, kai rankiniam gijos keitimui inicijuoti naudojama M600 / PAUSE " +"komanda." msgid "Wipe tower type" msgstr "Valymo bokšto tipas" -msgid "Choose the wipe tower implementation for multi-material prints. Type 1 is recommended for Bambu and Qidi printers with a filament cutter. Type 2 offers better compatibility with multi-tool and MMU printers and provide overall better compatibility." +msgid "" +"Choose the wipe tower implementation for multi-material prints. Type 1 is " +"recommended for Bambu and Qidi printers with a filament cutter. Type 2 " +"offers better compatibility with multi-tool and MMU printers and provide " +"overall better compatibility." msgstr "" +"Pasirinkite valymo bokšto tipą daugiamedžiagiam spausdinimui. 1 tipas " +"rekomenduojamas „Bambu“ ir „Qidi“ spausdintuvams su gijos kirpikliu. 2 tipas " +"užtikrina geresnį suderinamumą su kelių galvučių (multi-tool) bei MMU " +"spausdintuvais ir bendrai pasižymi platesniu suderinamumu." msgid "Type 1" msgstr "1 tipas" @@ -14977,43 +18789,81 @@ msgid "Type 2" msgstr "2 tipas" msgid "Purge in prime tower" -msgstr "Valymas pagrindiniame bokšte" +msgstr "Medžiagos išvalymas valymo bokštelyje" msgid "Purge remaining filament into prime tower." -msgstr "Išstumti likusias gijas į pirminio valymo bokštą." +msgstr "Išvalyti likusios gijos likučius valymo bokštelyje." msgid "Enable filament ramming" -msgstr "Įjungti gijos ramingą" +msgstr "Įjungti gijos sutankinimą (filament ramming)" msgid "Tool change on wipe tower" -msgstr "" +msgstr "Įrankio keitimas virš valymo bokšto" -msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead." +msgid "" +"Force the toolhead to travel to the wipe tower before issuing the tool " +"change command (Tx). Only relevant for multi-extruder (multi-toolhead) " +"printers using a Type 2 wipe tower. By default Orca skips the travel on " +"multi-toolhead machines because the firmware handles the head swap, which " +"can result in the Tx command being issued above the printed part. Enable " +"this option if you want the tool change to always be issued above the wipe " +"tower instead." msgstr "" +"Priverstinai nukreipti spausdinimo galvutę prie valymo bokšto prieš vykdant " +"įrankio keitimo komandą (Tx). Aktualu tik spausdintuvams su keliais " +"ekstruderiais (keliomis galvutėmis), naudojantiems 2 tipo valymo bokštą. " +"Pagal numatytuosius nustatymus „OrcaSlicer“ praleidžia šį judesį kelių " +"galvučių įrenginiuose, nes galvučių sukeitimą valdo aparatinė programinė " +"įranga, todėl Tx komanda gali būti įvykdyta virš spausdinamos detalės. " +"Įjunkite šią parinktį, jei norite, kad įrankio keitimas visada vyktų virš " +"valymo bokšto." msgid "No sparse layers (beta)" msgstr "Nėra retų sluoksnių (beta)" -msgid "If enabled, the wipe tower will not be printed on layers with no tool changes. On layers with a tool change, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print." -msgstr "Jei įjungta, valymo bokštas nebus spausdinamas ant sluoksnių, nepakeitus įrankio. Sluoksniuose, kuriuose keičiamas įrankis, ekstruderis judės žemyn, kad atspausdintų valymo bokštą. Vartotojas yra atsakingas už tai, kad nebūtų susidūrimo su spaudiniu." +msgid "" +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " +"print the wipe tower. User is responsible for ensuring there is no collision " +"with the print." +msgstr "" +"Jei įjungta, valymo bokštas nebus spausdinamas tuose sluoksniuose, kur " +"įrankis nekeičiamas. Sluoksniuose, kur įrankis keičiamas, ekstruderis " +"nusileis žemyn atspausdinti valymo bokšto dalies. Naudotojas pats atsako už " +"tai, kad ekstruderis nesusidurtų su spaudiniu." msgid "Prime all printing extruders" -msgstr "Pripildyti visus spausdinimo ekstruderius" +msgstr "Paruošti (prime) visus spausdinimo ekstruderius" -msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." -msgstr "Jei įjungta, visi spausdinimo ekstruderiai bus užpildyti priekiniame spausdinimo pagrindo krašte spausdinimo pradžioje." +msgid "" +"If enabled, all printing extruders will be primed at the front edge of the " +"print bed at the start of the print." +msgstr "" +"Jei įjungta, visi spausdinimo ekstruderiai spausdinimo pradžioje bus " +"paruošti (primed) prie priekinio spausdinimo pagrindo krašto." msgid "Slice gap closing radius" msgstr "Sluoksniavimo tarpo uždarymo spindulys" -msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low." -msgstr "Plyšiai, mažesni nei 2x tarpo uždarymo spindulys, užpildomi trikampio figūros sluoksniavimo metu. Tarpo uždarymo operacija gali sumažinti galutinę spausdinimo skiriamąją gebą, todėl patartina išlaikyti pakankamai žemą reikšmę." +msgid "" +"Cracks smaller than 2x gap closing radius are being filled during the " +"triangle mesh slicing. The gap closing operation may reduce the final print " +"resolution, therefore it is advisable to keep the value reasonably low." +msgstr "" +"Plyšiai, mažesni nei 2x tarpo uždarymo spindulys, užpildomi trikampio " +"figūros sluoksniavimo metu. Tarpo uždarymo operacija gali sumažinti galutinę " +"spausdinimo skiriamąją gebą, todėl patartina išlaikyti pakankamai žemą " +"reikšmę." msgid "Slicing Mode" msgstr "Sluoksniavimo režimas" -msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." -msgstr "3DLabPrint lėktuvų modeliams naudokite „Lyginis-Nelyginis“. Naudokite „Uždaryti skyles“, kad uždarytumėte visas modelio skyles." +msgid "" +"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " +"close all holes in the model." +msgstr "" +"„3DLabPrint“ lėktuvų modeliams naudokite „Lyginis-nelyginis“. Naudokite " +"„Uždaryti kiaurymes“, kad uždarytumėte visas modelio kiaurymes." msgid "Regular" msgstr "Įprastas" @@ -15022,23 +18872,38 @@ msgid "Even-odd" msgstr "Lyginis-nelyginis" msgid "Close holes" -msgstr "Uždaryti skyles" +msgstr "Uždaryti kiaurymes" msgid "Z offset" msgstr "Z poslinkis" -msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)." -msgstr "Ši vertė bus pridėta (arba atimta) prie visų išvesties G kodo Z koordinačių. Ji naudojama blogai Z galinio ribotuvo padėčiai kompensuoti: pavyzdžiui, jei jūsų nulinis ribotuvas iš tikrųjų palieka purkštuką 0,3 mm atstumu nuo spausdinimo pagrindo, nustatykite šią reikšmę -0,3 (arba pataisykite galinį ribotuvą)." +msgid "" +"This value will be added (or subtracted) from all the Z coordinates in the " +"output G-code. It is used to compensate for bad Z endstop position: for " +"example, if your endstop zero actually leaves the nozzle 0.3mm far from the " +"print bed, set this to -0.3 (or fix your endstop)." +msgstr "" +"Ši vertė bus pridėta (arba atimta) prie visų išvesties G kodo Z koordinačių. " +"Ji naudojama blogai Z galinio ribotuvo padėčiai kompensuoti: pavyzdžiui, jei " +"jūsų nulinis ribotuvas iš tikrųjų palieka purkštuką 0,3 mm atstumu nuo " +"spausdinimo pagrindo, nustatykite šią reikšmę -0,3 (arba pataisykite galinį " +"ribotuvą)." msgid "Enable support" msgstr "Įgalinti atramas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This enables support generation." +msgid "Enable support generation." msgstr "Įgalinti atramų generavimą." -msgid "Normal (auto) and Tree (auto) are used to generate support automatically. If Normal (manual) or Tree (manual) is selected, only support enforcers are generated." -msgstr "Normalus (automatinis) ir Medis (automatinis) naudojamas automatiškai generuoti atramas. Pasirinkus Normalus (rankinis) arba Medis (rankinis), generuojamos tik atramos." +msgid "" +"Normal (auto) and Tree (auto) are used to generate support automatically. If " +"Normal (manual) or Tree (manual) is selected, only support enforcers are " +"generated." +msgstr "" +"Režimai „Įprastas (auto)“ ir „Medis (auto)“ naudojami automatiškai generuoti " +"atramas. Jei pasirinkta „Įprastas (rankinis)“ arba „Medis (rankinis)“, " +"atramos bus generuojamos tik nurodytose priverstinėse vietose (support " +"enforcers)." msgid "Normal (auto)" msgstr "Įprastas (auto)" @@ -15055,8 +18920,7 @@ msgstr "Medis (rankinis)" msgid "Support/object XY distance" msgstr "Atramos/objekto XY atstumas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This controls the XY separation between an object and its support." +msgid "XY separation between an object and its support." msgstr "Šiuo parametru nustatomas objekto ir atramos XY atstumas." msgid "Support/object first layer gap" @@ -15069,82 +18933,106 @@ msgid "Pattern angle" msgstr "Rašto kampas" msgid "Use this setting to rotate the support pattern on the horizontal plane." -msgstr "Šį nustatymą naudokite norėdami pasukti atraminį modelį horizontalioje plokštumoje." +msgstr "" +"Naudokite šį nustatymą, kad pasuktumėte atramų raštą horizontalioje " +"plokštumoje." msgid "On build plate only" msgstr "Tik ant pagrindo plokštės" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This setting only generates supports that begin on the build plate." -msgstr "Šis nustatymas generuoja tik tas atramas, kurios prasideda ant spausdinimo plokštės." +msgid "Don't create support on model surface, only on build plate." +msgstr "" +"Šis nustatymas generuoja tik tas atramas, kurios prasideda ant spausdinimo " +"plokštės." msgid "Support critical regions only" msgstr "Paremti tik kritines sritis" -msgid "Only create support for critical regions including sharp tail, cantilever, etc." -msgstr "Atramas kurkite tik kritinėse srityse, įskaitant aštrų galą, konsolę ir pan." +msgid "" +"Only create support for critical regions including sharp tail, cantilever, " +"etc." +msgstr "" +"Atramas kurkite tik kritinėse srityse, įskaitant aštrų galą, konsolę ir pan." msgid "Ignore small overhangs" -msgstr "" +msgstr "Ignoruoti mažas iškyšas" msgid "Ignore small overhangs that possibly don't require support." msgstr "" +"Ignoruoti mažas iškyšas (overhangs), kurioms greičiausiai nereikia atramų." msgid "Top Z distance" msgstr "Viršutinis Z atstumas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Z gap between the support's top and object." msgstr "Z tarpas tarp atramos viršaus ir objekto." msgid "Bottom Z distance" msgstr "Apatinis Z atstumas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Z gap between the object and the support bottom. If Support Top Z Distance is 0 and the bottom has interface layers, this value is ignored and the support is printed in direct contact with the object (no gap)." -msgstr "Z tarpas tarp objekto ir atramos apačios. Jei viršutinis atramos Z atstumas yra 0 ir apačioje yra sąsajos sluoksniai, ši reikšmė ignoruojama ir atrama spausdinama tiesiogiai kontaktuojant su objektu (be tarpo)." +msgid "" +"Z gap between the object and the support bottom. If Support Top Z Distance " +"is 0 and the bottom has interface layers, this value is ignored and the " +"support is printed in direct contact with the object (no gap)." +msgstr "" +"Z tarpas tarp objekto ir atramos apačios. Jei viršutinis atramos Z atstumas " +"yra 0 ir apačioje yra sąsajos sluoksniai, ši reikšmė ignoruojama ir atrama " +"spausdinama tiesiogiai kontaktuojant su objektu (be tarpo)." msgid "Support/raft base" msgstr "Atraminis ir (arba) platformos pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Filament to print support base and raft.\n" -"\"Default\" means no specific filament for support and current filament is used." -msgstr "Gija, skirta spausdinti atraminį pagrindą ir platformą. \"Numatytoji\" reiškia, kad nėra konkrečios gijos atramai ir naudojama dabartinė gija." +"\"Default\" means no specific filament for support and current filament is " +"used." +msgstr "" +"Gija, naudojama atramų pagrindui ir padui (raft) spausdinti.\n" +"Pasirinkus „Numatytoji“, speciali gija atramoms nenaudojama ir imama šiuo " +"metu aktyvi gija." msgid "Avoid interface filament for base" -msgstr "Venkite pagrindo sąsajos gijų" +msgstr "Nenaudoti sąsajos gijos pagrindui" -msgid "Avoid using support interface filament to print support base if possible." -msgstr "Jei įmanoma, vengti naudoti atraminės sąsajos giją atraminiam pagrindui spausdinti." +msgid "" +"Avoid using support interface filament to print support base if possible." +msgstr "" +"Jei įmanoma, nenaudoti atramų sąsajos (interface) gijos atramų pagrindui " +"spausdinti." -msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Atramos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgid "" +"Line width of support. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Atramos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal " +"purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Loop pattern interface" -msgstr "Sąsaja naudoja kontūro raštą" +msgid "Interface use loop pattern" +msgstr "Sąsajai naudoti kontūro raštą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This covers the top contact layer of the supports with loops. It is disabled by default." -msgstr "Viršutinį kontaktinį atramų sluoksnį uždenkite kilpomis. Išjungta pagal numatytuosius nustatymus." +msgid "" +"Cover the top contact layer of the supports with loops. Disabled by default." +msgstr "" +"Viršutinį kontaktinį atramų sluoksnį užpildyti uždarais kontūrais (loops). " +"Gamykliškai išjungta." msgid "Support/raft interface" msgstr "Atramų ir (arba) platformos sąsaja" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Filament to print support interface.\n" -"\"Default\" means no specific filament for support interface and current filament is used." -msgstr "Gija skirta spausdinti atramos sąsają. \"Numatytoji\" reiškia, kad atramos sąsajai nėra konkrečios gijos ir naudojama dabartinė gija." +"\"Default\" means no specific filament for support interface and current " +"filament is used." +msgstr "" +"Gija, naudojama atramų sąsajai spausdinti.\n" +"Pasirinkus „Numatytoji“, speciali gija atramų sąsajai nenaudojama ir imama " +"šiuo metu aktyvi gija." msgid "Top interface layers" msgstr "Viršutiniai sąsajos sluoksniai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the number of top interface layers." -msgstr "Viršutinių sąsajos sluoksnių skaičius" +msgid "Number of top interface layers." +msgstr "Viršutinių sąsajos sluoksnių skaičius." msgid "Bottom interface layers" msgstr "Apatiniai sąsajos sluoksniai" @@ -15162,30 +19050,43 @@ msgid "" "Spacing of interface lines. Zero means solid interface.\n" "Force using solid interface when support ironing is enabled." msgstr "" -"Sąsajos linijų tarpas. Nulis reiškia vientisą sąsają. \n" -"Naudokite vientisą sąsają, kai įjungta atramų lyginimo funkcija." +"Tarpai tarp sąsajos linijų. Nulis reiškia vientisą (solid) sąsają.\n" +"Vientisa sąsaja naudojama priverstinai, kai įjungtas atramų lyginimas " +"(ironing)." msgid "Bottom interface spacing" msgstr "Apatinės sąsajos tarpas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the spacing of bottom interface lines. 0 means solid interface." +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "Atstumas tarp apatinių sąsajos linijų. 0 reiškia vientisą sąsają." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for support interfaces." +msgid "Speed of support interface." msgstr "Atramų sąsajų greitis." msgid "Base pattern" -msgstr "Pagrindinis raštas" +msgstr "Atramų pagrindo raštas" msgid "" "Line pattern of support.\n" "\n" -"The Default option for Tree supports is Hollow, which means no base pattern. For other support types, the Default option is the Rectilinear pattern.\n" +"The Default option for Tree supports is Hollow, which means no base pattern. " +"For other support types, the Default option is the Rectilinear pattern.\n" "\n" -"NOTE: For Organic supports, the two walls are supported only with the Hollow/Default base pattern. The Lightning base pattern is supported only by Tree Slim/Strong/Hybrid supports. For the other support types, the Rectilinear will be used instead of Lightning." +"NOTE: For Organic supports, the two walls are supported only with the Hollow/" +"Default base pattern. The Lightning base pattern is supported only by Tree " +"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear " +"will be used instead of Lightning." msgstr "" +"Atramų linijų raštas.\n" +"\n" +"Numatytasis pasirinkimas medinėms (Tree) atramoms yra „Tuščiaviduris“ " +"(Hollow), kas reiškia, jog pagrindo raštas nenaudojamas. Kitiems atramų " +"tipams numatytasis pasirinkimas yra tiesiaeigis (Rectilinear) raštas.\n" +"\n" +"PASTABA: organinėms (Organic) atramoms abi sienelės palaikomos tik naudojant " +"„Tuščiavidurį / Numatytąjį“ pagrindo raštą. „Žaibo“ (Lightning) pagrindo " +"raštą palaiko tik „Tree Slim / Strong / Hybrid“ atramos. Kitiems atramų " +"tipams vietoj „Žaibo“ rašto bus naudojamas tiesiaeigis (Rectilinear)." msgid "Rectilinear grid" msgstr "Tiesus tinklelis" @@ -15196,155 +19097,236 @@ msgstr "Tuščiaviduris" msgid "Interface pattern" msgstr "Sąsajos raštas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the line pattern for support interfaces. The default pattern for non-soluble support interfaces is Rectilinear while the default pattern for soluble support interfaces is Concentric." -msgstr "Linijinis atraminės sąsajos raštas. Numatytasis netirpios atraminės sąsajos raštas yra tiesiaeigis, o tirpios atraminės sąsajos numatytasis raštas yra koncentrinis." +msgid "" +"Line pattern of support interface. Default pattern for non-soluble support " +"interface is Rectilinear, while default pattern for soluble support " +"interface is Concentric." +msgstr "" +"Atramų sąsajos linijų raštas. Numatytasis netirpių atramų sąsajos raštas yra " +"tiesiaeigis (Rectilinear), o tirpių atramų sąsajos – koncentrinis " +"(Concentric)." msgid "Rectilinear Interlaced" -msgstr "Tiesiaeigis, persipynęs" +msgstr "Tiesiaeigis persipynęs (Rectilinear Interlaced)" msgid "Base pattern spacing" msgstr "Pagrindinio rašto tarpai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This determines the spacing between support lines." +msgid "Spacing between support lines." msgstr "Atstumai tarp atraminių linijų." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Normal support expansion" -msgstr "Įprastų atramų išplėtimas" +msgid "Normal Support expansion" +msgstr "Įprastų atramų horizontalus išplėtimas" msgid "Expand (+) or shrink (-) the horizontal span of normal support." -msgstr "Padidinkite (+) arba sumažinkite (-) įprastinės atramos horizontalųjį atstumą." +msgstr "Išplėsti (+) arba susiaurinti (-) įprastų atramų horizontalųjį plotą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for support." +msgid "Speed of support." msgstr "Atramų greitis." msgid "" -"Style and shape of the support. For normal support, projecting the supports into a regular grid will create more stable supports (default), while snug support towers will save material and reduce object scarring.\n" -"For tree support, slim and organic style will merge branches more aggressively and save a lot of material (default organic), while hybrid style will create similar structure to normal support under large flat overhangs." +"Style and shape of the support. For normal support, projecting the supports " +"into a regular grid will create more stable supports (default), while snug " +"support towers will save material and reduce object scarring.\n" +"For tree support, slim and organic style will merge branches more " +"aggressively and save a lot of material (default organic), while hybrid " +"style will create similar structure to normal support under large flat " +"overhangs." msgstr "" -"Atramos stilius ir forma. Įprastoms atramoms projektuojant atramas į taisyklingą tinklelį, bus sukurtos stabilesnės atramos (numatytasis nustatymas), o prigludę atramų bokšteliai leis sutaupyti medžiagos ir sumažinti objekto nubrozdinimus.\n" -"Medžių atramoms siauras ir organinis stilius agresyviau sujungs šakas ir sutaupys daug medžiagos (numatytasis organinis), o hibridinis stilius sukurs panašią struktūrą kaip įprastos atramos po didelėmis plokščiomis iškyšomis." +"Atramų stilius ir forma. Naudojant įprastas atramas, jų projektavimas į " +"reguliarų tinklelį sukuria stabilesnes struktūras (numatytasis nustatymas), " +"o prigludusios (snug) atramos taupo medžiagą ir palieka mažiau žymių ant " +"objekto.\n" +"Medinėms (tree) atramoms grakštus (slim) ir organinis (organic) stilius " +"agresyviau sujungia šakas ir sutaupo daug medžiagos (numatytasis organinis), " +"o hibridinis (hybrid) stilius sukuria struktūrą, panašią į įprastas atramas " +"po didelėmis plokščiomis iškyšomis (overhangs)." msgid "Default (Grid/Organic)" -msgstr "Numatytoji reikšmė (Tinklelis/organinis)" +msgstr "Numatytasis (Tinklelis / Organinis)" msgid "Snug" -msgstr "Aptemti" +msgstr "Prigludęs (Snug)" msgid "Organic" -msgstr "Organiškas" +msgstr "Organinis (Organic)" msgid "Tree Slim" -msgstr "Medis plonas" +msgstr "Grakštus medis (Tree Slim)" msgid "Tree Strong" -msgstr "Tvirtas medis" +msgstr "Tvirtas medis (Tree Strong)" msgid "Tree Hybrid" -msgstr "Hibridinis medis" +msgstr "Hibridinis medis (Tree Hybrid)" msgid "Independent support layer height" msgstr "Nepriklausomas atraminio sluoksnio aukštis" -msgid "Support layer uses layer height independent with object layer. This is to support customizing Z-gap and save print time. This option will be invalid when the prime tower is enabled." -msgstr "Atraminis sluoksnis naudoja sluoksnio aukštį, nepriklausomą nuo objekto sluoksnio. Taip palaikomas z tarpo pritaikymas ir taupomas spausdinimo laikas.Ši parinktis negalioja, kai įjungtas pagrindinis bokštas." +msgid "" +"Support layer uses layer height independent with object layer. This is to " +"support customizing Z-gap and save print time. This option will be invalid " +"when the prime tower is enabled." +msgstr "" +"Atramų sluoksniams naudojamas nuo objekto nepriklausomas sluoksnio aukštis. " +"Tai leidžia individualiai pritaikyti Z tarpą ir sutaupyti spausdinimo laiko. " +"Ši parinktis neveikia, kai yra įjungtas valymo bokštelis (prime tower)." msgid "Threshold angle" msgstr "Ribinis kampas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"Support will be generated for overhangs whose slope angle is below the threshold. The smaller this value is, the steeper the overhang that can be printed without support.\n" -"Note: If set to 0, normal supports use the Threshold overlap instead, while tree supports fall back to a default value of 30." +"Support will be generated for overhangs whose slope angle is below the " +"threshold. The smaller this value is, the steeper the overhang that can be " +"printed without support.\n" +"Note: If set to 0, normal supports use the Threshold overlap instead, while " +"tree supports fall back to a default value of 30." msgstr "" -"Atramos bus generuojamos iškyšoms, kurių nuolydžio kampas yra mažesnis už slenkstį.Kuo mažesnė ši reikšmė, tuo statesnę iškyšą galima spausdinti be atramų.\n" -"Pastaba: jei nustatyta 0, įprastos atramos vietoje naudoja Slenksčio persidengimas, o medžio tipo atramos grįžta prie numatytosios 30 reikšmės." +"Atramos bus generuojamos toms iškyšoms, kurių nuolydžio kampas yra mažesnis " +"už šią ribą. Kuo mažesnė ši reikšmė, tuo statesnes iškyšas galima " +"atspausdinti be atramų.\n" +"Pastaba: jei nustatyta 0, įprastos atramos vietoj to naudos slenkstinio " +"persidengimo (Threshold overlap) parametrą, o medinės atramos grįš prie " +"numatytosios 30 laipsnių reikšmės." msgid "Threshold overlap" msgstr "Slenksčio persidengimas" -msgid "If threshold angle is zero, support will be generated for overhangs whose overlap is below the threshold. The smaller this value is, the steeper the overhang that can be printed without support." -msgstr "Jei slenkstinis kampas lygus nuliui, atrama bus sukurta iškyšoms, kurių persidengimas yra mažesnis už slenkstį. Kuo mažesnė ši vertė, tuo statesnė iškyša, kurią galima spausdinti be atramos." +msgid "" +"If threshold angle is zero, support will be generated for overhangs whose " +"overlap is below the threshold. The smaller this value is, the steeper the " +"overhang that can be printed without support." +msgstr "" +"Jei ribinis kampas lygus nuliui, atramos bus generuojamos iškyšoms, kurių " +"persidengimas yra mažesnis už šią ribą. Kuo mažesnė ši reikšmė, tuo " +"statesnes iškyšas galima atspausdinti be atramų." msgid "Tree support branch angle" msgstr "Atraminio medžio šakos kampas" -msgid "This setting determines the maximum overhang angle that the branches of tree support are allowed to make. If the angle is increased, the branches can be printed more horizontally, allowing them to reach farther." -msgstr "Šis nustatymas nustato didžiausią iškyšos kampą, kurį gali sudaryti medžio atramos šakos. Padidinus kampą, šakos gali būti atspausdintos horizontaliau, todėl jos gali siekti toliau." +msgid "" +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " +"printed more horizontally, allowing them to reach farther." +msgstr "" +"Šis nustatymas nurodo didžiausią iškyšos kampą, kurį gali sudaryti medinių " +"atramų šakos. Padidinus šį kampą, šakos gali būti spausdinamos " +"horizontaliau, todėl jos gali pasiekti toliau esančias vietas." msgid "Preferred Branch Angle" msgstr "Pageidaujamas šakos kampas" #. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Pageidaujamas šakų kampas, kai joms nereikia vengti modelio. Naudokite mažesnį kampą, kad jos būtų vertikalesnės ir stabilesnės. Naudokite didesnį kampą, kad šakos greičiau susijungtų." +msgid "" +"The preferred angle of the branches, when they do not have to avoid the " +"model. Use a lower angle to make them more vertical and more stable. Use a " +"higher angle for branches to merge faster." +msgstr "" +"Pageidaujamas šakų kampas, kai joms nereikia vengti modelio. Naudokite " +"mažesnį kampą, kad jos būtų vertikalesnės ir stabilesnės. Naudokite didesnį " +"kampą, kad šakos greičiau susijungtų." msgid "Tree support branch distance" msgstr "Atstumas tarp atraminio medžio šakų" -msgid "This setting determines the distance between neighboring tree support nodes." +msgid "" +"This setting determines the distance between neighboring tree support nodes." msgstr "Šis nustatymas nustato atstumą tarp kaimyninių medžio atraminių mazgų." msgid "Branch Density" msgstr "Šakų tankis" #. TRN PrintSettings: "Organic supports" > "Branch Density" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs but the supports are harder to remove, thus it is recommended to enable top support interfaces instead of a high branch density value if dense interfaces are needed." -msgstr "Reguliuoja atraminės struktūros, naudojamos šakų viršūnėms formuoti, tankį. Pasirinkus didesnę reikšmę, gaunamos geresnės iškyšos, tačiau atramas sunkiau pašalinti, todėl, jei reikia tankios atramos, rekomenduojama įjungti viršutinių atramų sąsajas, o ne didelę šakų tankio reikšmę." +msgid "" +"Adjusts the density of the support structure used to generate the tips of " +"the branches. A higher value results in better overhangs but the supports " +"are harder to remove, thus it is recommended to enable top support " +"interfaces instead of a high branch density value if dense interfaces are " +"needed." +msgstr "" +"Reguliuoja atraminės struktūros tankį ties šakų viršūnėmis. Didesnė reikšmė " +"užtikrina kokybiškesnes iškyšas, tačiau tokias atramas sunkiau pašalinti. " +"Jei reikalingas tankus kontaktas, rekomenduojama įjungti viršutinius atramų " +"sąsajos (interface) sluoksnius, užuot nustačius didelį šakų tankį." msgid "Auto brim width" -msgstr "Automatinis kraštų plotis" +msgstr "Automatinis pagrindo apvado (brim) plotis" -msgid "Enabling this option means the width of the brim for tree support will be automatically calculated." -msgstr "Įjungus šią parinktį, medžio atramos krašto plotis apskaičiuojamas automatiškai." +msgid "" +"Enabling this option means the width of the brim for tree support will be " +"automatically calculated." +msgstr "" +"Įjungus šią parinktį, medinių atramų pagrindo apvado (brim) plotis bus " +"apskaičiuojamas automatiškai." msgid "Tree support brim width" -msgstr "Atraminio medžio krašto plotis" +msgstr "Atraminio medžio pagrindo apvado plotis" msgid "Distance from tree branch to the outermost brim line." -msgstr "Atstumas nuo medžio šakos iki išorinės krašto linijos." +msgstr "" +"Atstumas nuo medžio šakos iki tolimiausios pagrindo apvado (brim) linijos." msgid "Tip Diameter" msgstr "Galo skersmuo" #. TRN PrintSettings: "Organic supports" > "Tip Diameter" msgid "Branch tip diameter for organic supports." -msgstr "Organinių atramų šakos galo skersmuo." +msgstr "Šakos galo skersmuo organinėms atramoms." msgid "Tree support branch diameter" msgstr "Atraminio medžio šakų skersmuo" msgid "This setting determines the initial diameter of support nodes." -msgstr "Šiuo nustatymu nustatomas pradinis atraminių mazgų skersmuo." +msgstr "Šis nustatymas nurodo pradinį medinių atramų mazgų (šakų) skersmenį." #. TRN PrintSettings: #lmFIXME msgid "Branch Diameter Angle" msgstr "Šakų skersmens kampas" #. TRN PrintSettings: "Organic supports" > "Branch Diameter Angle" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the organic support." -msgstr "Šakų skersmens kampas, joms palaipsniui storėjant link apačios. Jei kampas lygus 0, šakos bus vienodo storio per visą ilgį. Šiek tiek didesnis kampas gali padidinti organinės atramos stabilumą." +msgid "" +"The angle of the branches' diameter as they gradually become thicker towards " +"the bottom. An angle of 0 will cause the branches to have uniform thickness " +"over their length. A bit of an angle can increase stability of the organic " +"support." +msgstr "" +"Šakų skersmens kampas, joms palaipsniui storėjant link apačios. Jei kampas " +"lygus 0, šakos bus vienodo storio per visą ilgį. Šiek tiek didesnis kampas " +"gali padidinti organinės atramos stabilumą." msgid "Support wall loops" -msgstr "Atramų sienų kontūrai" +msgstr "Atramų sienelių kontūrai (loops)" -msgid "This setting specifies the count of support walls in the range of [0,2]. 0 means auto." -msgstr "Šis nustatymas nurodo atramų sienų storį intervale [0,2]. 0 reiškia automatinis." +msgid "" +"This setting specifies the count of support walls in the range of [0,2]. 0 " +"means auto." +msgstr "" +"Šis nustatymas nurodo atramų sienelių skaičių intervale [0,2]. 0 reiškia " +"automatiškai." msgid "Tree support with infill" msgstr "Medžių atramos su užpildymu" -msgid "This setting specifies whether to add infill inside large hollows of tree support." -msgstr "Šis nustatymas nurodo, ar į dideles medžio atramos ertmes dėti užpildą." +msgid "" +"This setting specifies whether to add infill inside large hollows of tree " +"support." +msgstr "" +"Šis nustatymas nurodo, ar į dideles medžio atramos ertmes dėti užpildą." msgid "Ironing Support Interface" msgstr "Atramų lyginimo sąsaja" -msgid "Ironing is using small flow to print on same height of support interface again to make it more smooth. This setting controls whether support interface being ironed. When enabled, support interface will be extruded as solid too." -msgstr "Lyginimas – tai mažo srauto naudojimas, kad būtų galima vėl spausdinti ant tos pačios aukščio atramos sąsajos, kad ji taptų lygesnė. Šis nustatymas kontroliuoja, ar atramos sąsaja bus lyginama. Kai šis nustatymas įjungtas, atramos sąsaja taip pat bus išspaudžiama kaip vientisa." +msgid "" +"Ironing is using small flow to print on same height of support interface " +"again to make it more smooth. This setting controls whether support " +"interface being ironed. When enabled, support interface will be extruded as " +"solid too." +msgstr "" +"Lyginimas (ironing) – tai procesas, kai naudojant mažą gijos srautą dar " +"kartą spausdinama tame pačiame atramų sąsajos (interface) aukštyje, kad " +"paviršius būtų lygesnis. Šis nustatymas valdo, ar atramų sąsaja bus " +"lyginama. Įjungus šią funkciją, atramų sąsaja taip pat bus spausdinama kaip " +"vientisas (solid) sluoksnis." msgid "Support Ironing Pattern" msgstr "Atramų lyginimo raštas" @@ -15352,8 +19334,14 @@ msgstr "Atramų lyginimo raštas" msgid "Support Ironing flow" msgstr "Atramų lyginimo srautas" -msgid "The amount of material to extrude during ironing. Relative to flow of normal support interface layer height. Too high value results in overextrusion on the surface." -msgstr "Išspaudžiamo medžiagos kiekis lyginimo metu. Santykinis normalaus atraminio sąsajos sluoksnio aukščio srautas. Per didelė vertė sukelia per didelį išspaudimą ant paviršiaus." +msgid "" +"The amount of material to extrude during ironing. Relative to flow of normal " +"support interface layer height. Too high value results in overextrusion on " +"the surface." +msgstr "" +"Išspaudžiamos medžiagos kiekis lyginimo metu. Jis skaičiuojamas santykinai " +"pagal įprasto atramų sąsajos sluoksnio aukščio srautą. Per didelė reikšmė " +"sukelia medžiagos perteklių (overextrusion) ant paviršiaus." msgid "Support Ironing line spacing" msgstr "Atramų lyginimo linijų tarpai" @@ -15362,264 +19350,461 @@ msgid "Activate temperature control" msgstr "Suaktyvinti temperatūros reguliavimą" msgid "" -"Enable this option for automated chamber temperature control. This option activates the emitting of an M191 command before the \"machine_start_gcode\"\n" -" which sets the chamber temperature and waits until it is reached. In addition, it emits an M141 command at the end of the print to turn off the chamber heater, if present.\n" +"Enable this option for automated chamber temperature control. This option " +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" +" which sets the chamber temperature and waits until it is reached. In " +"addition, it emits an M141 command at the end of the print to turn off the " +"chamber heater, if present.\n" "\n" -"This option relies on the firmware supporting the M191 and M141 commands either via macros or natively and is usually used when an active chamber heater is installed." +"This option relies on the firmware supporting the M191 and M141 commands " +"either via macros or natively and is usually used when an active chamber " +"heater is installed." msgstr "" -"Įjunkite šią parinktį, kad būtų galima automatizuotai valdyti kameros temperatūrą. Ši parinktis įjungia M191 komandos transliavimą prieš „machine_start_gcode“\n" -" kuri nustato kameros temperatūrą ir laukia, kol ji bus pasiekta. Be to, spausdinimo pabaigoje ji išspinduliuoja komandą M141, kad būtų išjungtas kameros šildytuvas, jei toks yra.\n" +"Įjunkite šią parinktį automatiniam kameros temperatūros valdymui. Ši " +"parinktis aktyvuoja M191 komandos įterpimą prieš „machine_start_gcode“\n" +" – ji nustato kameros temperatūrą ir laukia, kol ji bus pasiekta. Taip pat " +"spausdinimo pabaigoje generuojama M141 komanda, skirta išjungti kameros " +"šildytuvą (jei jis yra).\n" "\n" -"Ši parinktis priklauso nuo to, ar programinė įranga palaiko komandas M191 ir M141 per makrokomandas, ar gimtąja kalba, ir paprastai naudojama, kai įrengtas aktyvus kameros šildytuvas." +"Ši funkcija veikia tik jei aparatinė programinė įranga palaiko M191 ir M141 " +"komandas (gimtąja kalba arba per makrokomandas) ir dažniausiai naudojama, " +"kai yra sumontuotas aktyvus kameros šildytuvas." + +msgid "Chamber temperature" +msgstr "Kameros temperatūra" msgid "" -"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber temperature can help suppress or reduce warping and potentially lead to higher interlayer bonding strength. However, at the same time, a higher chamber temperature will reduce the efficiency of air filtration for ABS and ASA.\n" +"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber " +"temperature can help suppress or reduce warping and potentially lead to " +"higher interlayer bonding strength. However, at the same time, a higher " +"chamber temperature will reduce the efficiency of air filtration for ABS and " +"ASA.\n" "\n" -"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option should be disabled (set to 0) as the chamber temperature should be low to avoid extruder clogging caused by material softening at the heat break.\n" +"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " +"should be disabled (set to 0) as the chamber temperature should be low to " +"avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a G-code variable named chamber_temperature, which can be used to pass the desired chamber temperature to your print start macro, or a heat soak macro like this: PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may be useful if your printer does not support M141/M191 commands, or if you desire to handle heat soaking in the print start macro if no active chamber heater is installed." +"If enabled, this parameter also sets a G-code variable named " +"chamber_temperature, which can be used to pass the desired chamber " +"temperature to your print start macro, or a heat soak macro like this: " +"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " +"be useful if your printer does not support M141/M191 commands, or if you " +"desire to handle heat soaking in the print start macro if no active chamber " +"heater is installed." msgstr "" -"Aukštos temperatūros medžiagoms, tokioms kaip ABS, ASA, PC ir PA, aukštesnė temperatūra kameroje gali padėti sumažinti arba sumažinti deformacijas ir padidinti tarpsluoksninio sukibimo stiprumą. Tačiau tuo pat metu aukštesnė kameros temperatūra sumažina ABS ir ASA oro filtravimo efektyvumą.\n" +"Aukštos temperatūros medžiagoms (tokioms kaip ABS, ASA, PC ir PA) aukštesnė " +"kameros temperatūra padeda išvengti deformavimosi (warping) arba jį " +"sumažinti, bei gali padidinti tarpsluoksninį sukibimą. Tačiau kartu " +"aukštesnė kameros temperatūra sumažina ABS ir ASA oro filtravimo " +"efektyvumą.\n" "\n" -"PLA, PETG, TPU, PVA ir kitoms žemos temperatūros medžiagoms ši parinktis turėtų būti išjungta (nustatyta į 0), nes kameros temperatūra turėtų būti žema, kad būtų išvengta ekstruderio užsikimšimo dėl medžiagos suminkštėjimo šilumos slenkstyje.\n" +"Žemos temperatūros medžiagoms (tokioms kaip PLA, PETG, TPU, PVA) ši " +"parinktis turėtų būti išjungta (nustatyta reikšmė 0), nes kameros " +"temperatūra privalo išlikti žema, kad gija nesuminkštėtų termoizoliaciniame " +"vamzdelyje (heatbreak) ir neužkimštų ekstruderio.\n" "\n" -"Jei įjungtas, šis parametras taip pat nustato gkodo kintamąjį chamber_temperature, kuris gali būti naudojamas norimai kameros temperatūrai perduoti spausdinimo pradžios makrokomandai arba tokiai šiluminio įšilimo makrokomandai: (kiti kintamieji) CHAMBER_TEMP=[chamber_temperature]. Tai gali būti naudinga, jei jūsų spausdintuvas nepalaiko M141/M191 komandų arba jei norite, kad spausdinimo pradžios makrokomandoje būtų tvarkomas šilumos įšildymas, jei nėra aktyvaus kameros šildytuvo." +"Jei įjungta, šis parametras taip pat nustato G-kodo kintamąjį " +"„chamber_temperature“, kurį galima naudoti norimai kameros temperatūrai " +"perduoti į spausdinimo pradžios ar pirminio įšildymo (heat soak) " +"makrokomandą, pavyzdžiui: PRINT_START (kiti kintamieji) " +"CHAMBER_TEMP=[chamber_temperature]. Tai naudinga, jei spausdintuvas " +"nepalaiko M141/M191 komandų arba jei norite pradinį įšildymą valdyti pačioje " +"pradžios makrokomandoje, kai nėra įdiegto aktyvaus kameros šildytuvo." -msgid "" -"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" -"\n" -"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" -"\n" -"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." -msgstr "" - -msgid "Chamber minimal temperature" -msgstr "" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Nozzle temperature after the first layer" +msgid "Nozzle temperature for layers after the initial one." msgstr "Po pradinio sluoksnio esančių sluoksnių purkštuko temperatūra." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect thin walls" msgstr "Aptikti plonas sieneles" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This detects thin walls which can’t contain two lines and uses a single line to print. It may not print as well because it’s not a closed loop." -msgstr "Aptikti ploną sienelę, kurioje negali būti dviejų eilučių pločio. Spausdinimui naudoti vieną liniją. Gali būti, kad nebus išspausdinta labai gerai, nes tai nėra uždaras kontūras." +msgid "" +"Detect thin walls which can't contain two line widths, and use single line " +"to print. Maybe not printed very well, because it's not a closed loop." +msgstr "" +"Aptikti plonas sieneles, kuriose netelpa du linijos pločiai, ir spausdinimui " +"naudoti vieną liniją. Gali būti atspausdinta prasčiau, kadangi tai nėra " +"uždaras kontūras (loop)." -msgid "This G-code is inserted when filament is changed, including T commands to trigger tool change." -msgstr "Šis G kodas įterpiamas keičiant giją, įskaitant T komandas, skirtas įrankio keitimui suaktyvinti." +msgid "" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." +msgstr "" +"Šis G-kodas įterpiamas keičiant giją, įskaitant T komandas, skirtas įrankio " +"pakeitimui inicijuoti." msgid "This G-code is inserted when the extrusion role is changed." -msgstr "Šis G kodas įterpiamas, kai keičiamas išspaudimo vaidmuo." +msgstr "Šis G-kodas įterpiamas, kai pasikeičia išspaudimo tipas (vaidmuo)." msgid "Change extrusion role G-code (filament)" +msgstr "Išspaudimo tipo keitimo G-kodas (gijai)" + +msgid "" +"This G-code is inserted when the extrusion role is changed for the active " +"filament." msgstr "" +"Šis G-kodas įterpiamas, kai pasikeičia aktyvios gijos išspaudimo tipas " +"(vaidmuo)." -msgid "This G-code is inserted when the extrusion role is changed for the active filament." +msgid "" +"Line width for top surfaces. If expressed as a %, it will be computed over " +"the nozzle diameter." msgstr "" +"Viršutinių paviršių linijos plotis. Jei išreiškiamas %, jis bus " +"apskaičiuojamas pagal purkštuko skersmenį." -msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Viršutinių paviršių linijos plotis. Jei išreiškiamas %, jis bus apskaičiuojamas pagal purkštuko skersmenį." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed for solid top surface infill." +msgid "Speed of top surface infill which is solid." msgstr "Viršutinio vientiso paviršiaus užpildo greitis." msgid "Top shell layers" msgstr "Viršutiniai apvalkalo sluoksniai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the number of solid layers of top shell, including the top surface layer. When the thickness calculated by this value is thinner than the top shell thickness, the top shell layers will be increased" -msgstr "Tai viršutinio apvalkalo vientisų sluoksnių skaičius, įskaitant viršutinį paviršiaus sluoksnį. Kai pagal šią reikšmę apskaičiuotas storis yra plonesnis už viršutinio apvalkalo storį, viršutinio apvalkalo sluoksnių skaičius bus padidintas." +msgid "" +"This is the number of solid layers of top shell, including the top surface " +"layer. When the thickness calculated by this value is thinner than top shell " +"thickness, the top shell layers will be increased." +msgstr "" +"Tai viršutinio apvalkalo (shell) vientisų sluoksnių skaičius, įskaitant patį " +"viršutinį paviršiaus sluoksnį. Jei pagal šį skaičių apskaičiuotas storis yra " +"mažesnis už nustatytą viršutinio apvalkalo storį, viršutinio apvalkalo " +"sluoksnių skaičius bus automatiškai padidintas." + +msgid "Top solid layers" +msgstr "Viršutiniai vientisi sluoksniai" msgid "Top shell thickness" msgstr "Viršutinio apvalkalo storis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." -msgstr "Sluoksniuojant didinamas viršutinių vientisų sluoksnių skaičius, jei pagal viršutinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra mažas. 0 reiškia, kad šis nustatymas išjungtas ir viršutinio apvalkalo storis visiškai nustatomas pagal viršutinio apvalkalo sluoksnius." +msgid "" +"The number of top solid layers is increased when slicing if the thickness " +"calculated by top shell layers is thinner than this value. This can avoid " +"having too thin shell when layer height is small. 0 means that this setting " +"is disabled and thickness of top shell is absolutely determined by top shell " +"layers." +msgstr "" +"Sluoksniuojant didinamas viršutinių vientisų sluoksnių skaičius, jei pagal " +"viršutinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią " +"vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra " +"mažas. 0 reiškia, kad šis nustatymas išjungtas ir viršutinio apvalkalo " +"storis visiškai nustatomas pagal viršutinio apvalkalo sluoksnius." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the speed at which traveling is done." -msgstr "Judėjimo greitis, kuris yra greitesnis ir be ekstruzijos." +msgid "Top surface density" +msgstr "Viršutinio paviršiaus tankis" + +msgid "" +"Density of top surface layer. A value of 100% creates a fully solid, smooth " +"top layer. Reducing this value results in a textured top surface, according " +"to the chosen top surface pattern. A value of 0% will result in only the " +"walls on the top layer being created. Intended for aesthetic or functional " +"purposes, not to fix issues such as over-extrusion." +msgstr "" +"Viršutinio paviršiaus sluoksnio tankis. Nustačius 100 %, sukuriamas visiškai " +"vientisas ir lygus viršutinis sluoksnis. Sumažinus šią reikšmę, gaunamas " +"tekstūruotas viršutinis paviršius pagal pasirinktą raštą. Nustačius 0 %, " +"viršutiniame sluoksnyje bus spausdinamos tik sienelės. Funkcija skirta " +"estetiniais arba funkciniais tikslais, o ne tokioms problemoms kaip " +"perteklinė ekstruzija (over-extrusion) spręsti." + +msgid "Bottom surface density" +msgstr "Apatinio paviršiaus tankis" + +msgid "" +"Density of the bottom surface layer. Intended for aesthetic or functional " +"purposes, not to fix issues such as over-extrusion.\n" +"WARNING: Lowering this value may negatively affect bed adhesion." +msgstr "" +"Apatinio paviršiaus sluoksnio tankis. Skirtas estetiniais arba funkciniais " +"tikslais, o ne perteklinei ekstruzijai (over-extrusion) taisyti.\n" +"ĮSPĖJIMAS: sumažinus šią reikšmę, gali suprastėti pirmojo sluoksnio " +"sukibimas su spausdinimo pagrindu." + +msgid "Speed of travel which is faster and without extrusion." +msgstr "Tuščiojo judėjimo (travel) greitis, kai galvutė juda nespausdindama." msgid "Wipe while retracting" msgstr "Nuvalyti įtraukiant" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This moves the nozzle along the last extrusion path when retracting to clean any leaked material on the nozzle. This can minimize blobs when printing a new part after traveling." -msgstr "Įtraukiant antgalį judinti išilgai paskutinio išspaudimo kelio, kad būtų išvalyta ant antgalio nutekėjusi medžiaga. Tai gali sumažinti artefaktų kiekį, kai po judėjimo spausdinama nauja dalis." +msgid "" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." +msgstr "" +"Atliekant gijos įtraukimą (retraction), judinti purkštuką išilgai paskutinės " +"ekstruzijos trajektorijos, kad nusivalytų gijos likučiai. Tai padeda " +"sumažinti gumbelių (blobs) susidarymą, kai po tuščiojo judėjimo pradedama " +"spausdinti nauja dalis." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Wipe distance" +msgid "Wipe Distance" msgstr "Valymo atstumas" msgid "" "Describe how long the nozzle will move along the last path when retracting.\n" "\n" -"Depending on how long the wipe operation lasts, how fast and long the extruder/filament retraction settings are, a retraction move may be needed to retract the remaining filament.\n" +"Depending on how long the wipe operation lasts, how fast and long the " +"extruder/filament retraction settings are, a retraction move may be needed " +"to retract the remaining filament.\n" "\n" -"Setting a value in the retract amount before wipe setting below will perform any excess retraction before the wipe, else it will be performed after." +"Setting a value in the retract amount before wipe setting below will perform " +"any excess retraction before the wipe, else it will be performed after." msgstr "" -"Apibūdinkite, kiek laiko antgalis judės paskutiniu keliu, kai bus įtraukiamas.\n" +"Nurodo, kokį atstumą purkštukas nukeliaus paskutine trajektorija atliekant " +"įtraukimą.\n" "\n" -"Priklausomai nuo to, kiek laiko trunka valymo operacija, kokie greiti ir ilgi yra ekstruderio / gijų įtraukimo nustatymai, gali prireikti įtraukimo judesio, kad būtų įtraukta likusi gija.\n" +"Priklausomai nuo nuvalymo (wipe) operacijos trukmės bei ekstruderio gijos " +"įtraukimo (retraction) greičio bei ilgio nustatymų, gali prireikti papildomo " +"judesio likusiai gijai įtraukti.\n" "\n" -"Nustačius toliau esančio įvilkimo kiekio prieš valymą nustatymo reikšmę, bet koks perteklinis įvilkimas bus atliktas prieš valymą, priešingu atveju jis bus atliktas po jo." +"Jei žemiau esančiame nustatyme „Įtraukimo kiekis prieš nuvalymą“ nurodysite " +"reikšmę, perteklinis gijos įtraukimas bus atliktas prieš nuvalymą, kitu " +"atveju – po jo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The wiping tower can be used to clean up residue on the nozzle and stabilize the chamber pressure inside the nozzle in order to avoid appearance defects when printing objects." -msgstr "Valymo bokštas gali būti naudojamas likučiams ant purkštuko išvalyti ir kameros slėgiui purkštuko viduje stabilizuoti, kad spausdinant objektus būtų išvengta paviršiaus defektų." +msgid "" +"The wiping tower can be used to clean up the residue on the nozzle and " +"stabilize the chamber pressure inside the nozzle, in order to avoid " +"appearance defects when printing objects." +msgstr "" +"Valymo bokštelis (wipe tower) naudojamas purkštuko likučiams nuvalyti ir " +"slėgiui jo viduje stabilizuoti, kad spausdinant objektus būtų išvengta " +"vizualių paviršiaus defektų." msgid "Internal ribs" -msgstr "" +msgstr "Vidinės briaunos (ribs)" msgid "Enable internal ribs to increase the stability of the prime tower." msgstr "" +"Įjungti vidines briaunas, kad padidėtų valymo bokštelio (prime tower) " +"stabilumas." msgid "Purging volumes" -msgstr "Valymo tūriai" +msgstr "Gijos pravalymo (purging) tūriai" msgid "Flush multiplier" -msgstr "Išleidimo daugiklis" +msgstr "Pravalymo (flush) daugiklis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The actual flushing volumes is equal to the flush multiplier value multiplied by the flushing volumes in the table." -msgstr "Faktinis išleidimo kiekis yra lygus išleidimo daugikliui, padaugintam iš lentelėje nurodytų išleidimo kiekių." +msgid "" +"The actual flushing volumes is equal to the flush multiplier multiplied by " +"the flushing volumes in the table." +msgstr "" +"Faktinis pravalymo (flushing) tūris yra lygus pravalymo daugikliui, " +"padaugintam iš lentelėje nurodytų tūrių reikšmių." msgid "Prime volume" -msgstr "Pagrindinis tūris" +msgstr "Ekstruderio paruošimo (prime) tūris" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the volume of material to prime the extruder with on the tower." -msgstr "Medžiagos kiekis, skirtas ekstruderiui užpildyti ant bokšto." +msgid "The volume of material to prime extruder on tower." +msgstr "" +"Medžiagos tūris, naudojamas ekstruderiui paruošti (prime) ant valymo " +"bokštelio." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the width of prime towers." -msgstr "Pagrindinio bokšto plotis." +msgid "Width of the prime tower." +msgstr "Valymo bokštelio (prime tower) plotis." msgid "Wipe tower rotation angle" msgstr "Valymo bokšto sukimosi kampas" msgid "Wipe tower rotation angle with respect to X axis." -msgstr "Valymo bokšto sukimosi kampas x ašies atžvilgiu." +msgstr "Valymo bokštelio sukimosi kampas X ašies atžvilgiu." -msgid "Brim width of prime tower, negative number means auto calculated width based on the height of prime tower." +msgid "" +"Brim width of prime tower, negative number means auto calculated width based " +"on the height of prime tower." msgstr "" +"Valymo bokštelio pagrindo apvado (brim) plotis. Neigiama reikšmė nurodo, kad " +"plotis bus apskaičiuojamas automatiškai pagal valymo bokštelio aukštį." msgid "Stabilization cone apex angle" msgstr "Stabilizavimo kūgio viršūnės kampas" -msgid "Angle at the apex of the cone that is used to stabilize the wipe tower. Larger angle means wider base." -msgstr "Kūgio viršūnės kampas, naudojamas valymo bokštui stabilizuoti. Didesnis kampas reiškia platesnį pagrindą." +msgid "" +"Angle at the apex of the cone that is used to stabilize the wipe tower. " +"Larger angle means wider base." +msgstr "" +"Kūgio, naudojamo valymo bokšteliui stabilizuoti, viršūnės kampas. Didesnis " +"kampas reiškia platesnį pagrindą." msgid "Maximum wipe tower print speed" -msgstr "Didžiausias valymo bokšto spausdinimo greitis" +msgstr "Didžiausias valymo bokštelio spausdinimo greitis" msgid "" -"The maximum print speed when purging in the wipe tower and printing the wipe tower sparse layers. When purging, if the sparse infill speed or calculated speed from the filament max volumetric speed is lower, the lowest will be used instead.\n" +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" "\n" -"When printing the sparse layers, if the internal perimeter speed or calculated speed from the filament max volumetric speed is lower, the lowest will be used instead.\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" "\n" -"Increasing this speed may affect the tower's stability as well as increase the force with which the nozzle collides with any blobs that may have formed on the wipe tower.\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90 mm/s, make sure your printer can reliably bridge at the increased speeds and that ooze when tool changing is well controlled.\n" +"Before increasing this parameter beyond the default of 90 mm/s, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" "\n" -"For the wipe tower external perimeters the internal perimeter speed is used regardless of this setting." +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" -"Didžiausias spausdinimo greitis, kai atliekamas valymas valymo bokšte ir spausdinami reti valymo bokšto sluoksniai. Jei valant reto sluoksnio užpildymo greitis arba apskaičiuotas greitis pagal gijos maksimalų tūrinį greitį yra mažesnis, vietoj jo bus naudojamas mažiausias.\n" +"Didžiausias spausdinimo greitis atliekant gijos pravalymą (purging) bei " +"spausdinant valymo bokštelio retuosius (sparse) sluoksnius. Jei pravalymo " +"metu retojo užpildo greitis arba apskaičiuotas greitis pagal maksimalų " +"tūrinį gijos greitį yra mažesnis, bus naudojamas mažiausias iš jų.\n" "\n" -"Spausdinant retus sluoksnius, jei vidinio perimetro greitis arba apskaičiuotas greitis pagal gijos maksimalų tūrinį greitį yra mažesnis, vietoj jo bus naudojamas mažiausias.\n" +"Spausdinant retuosius sluoksnius, jei vidinio perimetro greitis arba " +"apskaičiuotas greitis pagal maksimalų tūrinį gijos greitį yra mažesnis, bus " +"naudojamas mažiausias iš jų.\n" "\n" -"Padidinus šį greitį, gali nukentėti bokšto stabilumas, taip pat padidėti jėga, su kuria purkštuvas susiduria su bet kokiais nelygumais, kurie gali susidaryti ant valymo bokšto.\n" +"Padidinus šį greitį, gali nukentėti bokštelio stabilumas bei padidėti jėga, " +"su kuria purkštukas susidurs su bet kokiais ant valymo bokštelio " +"susidariusiais gijos gumbeliais (blobs).\n" "\n" -"Prieš didindami šį parametrą daugiau nei numatytasis 90 mm/s, įsitikinkite, kad jūsų spausdintuvas gali patikimai nutiesti tiltą didesniu greičiu ir kad gijos pratekėjimas keičiant įrankį yra gerai kontroliuojamas.\n" +"Prieš didindami šį parametrą virš numatytųjų 90 mm/s, įsitikinkite, kad jūsų " +"spausdintuvas patikimai formuoja tiltelius (bridging) esant didesniam " +"greičiui, o gijos nutekėjimas (ooze) keičiant įrankį yra gerai " +"kontroliuojamas.\n" "\n" -"Valymo bokšto išoriniam perimetrui, nepriklausomai nuo šio parametro, naudojamas vidinio perimetro greitis." +"Valymo bokštelio išoriniams perimetrams, nepriklausomai nuo šio nustatymo, " +"visada naudojamas vidinio perimetro greitis." msgid "Wall type" -msgstr "Sienos tipas" +msgstr "Sienelės tipas" msgid "" "Wipe tower outer wall type.\n" -"1. Rectangle: The default wall type, a rectangle with fixed width and height.\n" -"2. Cone: A cone with a fillet at the bottom to help stabilize the wipe tower.\n" +"1. Rectangle: The default wall type, a rectangle with fixed width and " +"height.\n" +"2. Cone: A cone with a fillet at the bottom to help stabilize the wipe " +"tower.\n" "3. Rib: Adds four ribs to the tower wall for enhanced stability." msgstr "" -"Nuvalymo bokšto išorinės sienos tipas. \n" -"1. Stačiakampis: numatytasis sienos tipas, stačiakampis su fiksuotu pločiu ir aukščiu. \n" -"2. Kūgis: kūgis su apatine išgaubta dalimi, padedančia stabilizuoti nuvalymo bokštą. \n" -"3. Briauna: bokšto sienai pridedamos keturios briaunos, padedančios padidinti stabilumą." +"Valymo bokštelio išorinės sienelės tipas.\n" +"1. Stačiakampis (Rectangle): numatytasis sienelės tipas – fiksuoto pločio ir " +"aukščio stačiakampis.\n" +"2. Kūgis (Cone): kūgis su suapvalinimu apačioje, padedantis stabilizuoti " +"valymo bokštelį.\n" +"3. Briauna (Rib): prie bokštelio sienelės pridedamos keturios briaunos " +"geresniam stabilumui užtikrinti." msgid "Rectangle" msgstr "Stačiakampis" msgid "Rib" -msgstr "" +msgstr "Briauna (Rib)" msgid "Extra rib length" -msgstr "Papildomas briaunų ilgis" +msgstr "Papildomas briaunos ilgis" -msgid "Positive values can increase the size of the rib wall, while negative values can reduce the size. However, the size of the rib wall can not be smaller than that determined by the cleaning volume." -msgstr "Teigiami dydžiai gali padidinti šoninės briaunos sienelės dydį, o neigiami dydžiai – sumažinti. Tačiau šoninės briaunos sienelės dydis negali būti mažesnis už nustatytą valymo tūrį." +msgid "" +"Positive values can increase the size of the rib wall, while negative values " +"can reduce the size. However, the size of the rib wall can not be smaller " +"than that determined by the cleaning volume." +msgstr "" +"Teigiamos reikšmės padidina briaunotos sienelės matmenis, o neigiamos – " +"sumažina. Tačiau briaunotos sienelės matmenys negali būti mažesni už tuos, " +"kuriuos nulemia nustatytas gijos pravalymo tūris." msgid "Rib width" msgstr "Briaunų plotis" msgid "Rib width is always less than half the prime tower side length." msgstr "" +"Briaunos plotis visada turi būti mažesnis nei pusė valymo bokštelio šoninės " +"sienelės ilgio." msgid "Fillet wall" -msgstr "Užapvalinta siena" +msgstr "Sienelės suapvalinimas (Fillet)" msgid "The wall of prime tower will fillet." -msgstr "Pagrindinio bokšto siena bus suapvalinta." +msgstr "Valymo bokštelio sienelės kampai bus suapvalinti." -msgid "The extruder to use when printing perimeter of the wipe tower. Set to 0 to use the one that is available (non-soluble would be preferred)." -msgstr "Ekstruderis, naudojamas spausdinant valymo bokšto perimetrą. Nustatykite į 0, kad būtų naudojamas turimas ekstruderis (pageidautina, kad būtų naudojamas netirpus)." +msgid "" +"The extruder to use when printing perimeter of the wipe tower. Set to 0 to " +"use the one that is available (non-soluble would be preferred)." +msgstr "" +"Ekstruderis, naudojamas spausdinant valymo bokštelio perimetrą. Nustatykite " +"reikšmę 0, kad būtų naudojamas bet kuris tuo metu prieinamas (rekomenduojama " +"naudoti netirpų)." msgid "Purging volumes - load/unload volumes" -msgstr "Išleidimo tūriai – pakrovimo/iškrovimo tūriai" +msgstr "Pravalymo tūriai – gijos užpildymo (load) / iškrovimo (unload) tūriai" -msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below." -msgstr "Šis vektorius išsaugo reikiamus tūrius, kad būtų galima pakeisti/į kiekvieną įrankį, naudojamą valymo bokštelyje. Šios vertės naudojamos siekiant supaprastinti toliau pateiktų išvalymo tūrių kūrimą." +msgid "" +"This vector saves required volumes to change from/to each tool used on the " +"wipe tower. These values are used to simplify creation of the full purging " +"volumes below." +msgstr "" +"Šiame masyve (vektoriuje) išsaugomi reikiami gijos tūriai, skirti įrankių " +"sukeitimui ant valymo bokštelio. Šios reikšmės naudojamos žemiau esančios " +"bendros pravalymo tūrių lentelės užpildymui supaprastinti." msgid "Skip points" -msgstr "" +msgstr "Praleidžiami taškai (Skip points)" msgid "The wall of prime tower will skip the start points of wipe path." msgstr "" +"Valymo bokštelio sienelėje bus praleidžiami nuvalymo (wipe) trajektorijos " +"pradiniai taškai." msgid "Enable tower interface features" -msgstr "" +msgstr "Įjungti bokštelio sąsajos (interface) funkcijas" -msgid "Enable optimized prime tower interface behavior when different materials meet." +msgid "" +"Enable optimized prime tower interface behavior when different materials " +"meet." msgstr "" +"Įjungti optimizuotą valymo bokštelio sąsajos elgseną, kai susiduria " +"skirtingos medžiagos." msgid "Cool down from interface boost during prime tower" msgstr "" +"Purkštuko aušinimas valymo bokštelyje po sąsajos temperatūros padidinimo" -msgid "When interface-layer temperature boost is active, set the nozzle back to print temperature at the start of the prime tower so it cools down during the tower." +msgid "" +"When interface-layer temperature boost is active, set the nozzle back to " +"print temperature at the start of the prime tower so it cools down during " +"the tower." msgstr "" +"Kai yra aktyvus sąsajos sluoksnio temperatūros padidinimas, valymo bokštelio " +"pradžioje purkštuko temperatūra vėl sumažinama iki darbinio spausdinimo " +"lygio, kad purkštukas atvėstų spausdinant bokštelį." msgid "Infill gap" -msgstr "" +msgstr "Užpildo tarpas (Infill gap)" msgid "Infill gap." +msgstr "Tarpas tarp užpildo ir vidinių sienelių." + +msgid "" +"Purging after filament change will be done inside objects' infills. This may " +"lower the amount of waste and decrease the print time. If the walls are " +"printed with transparent filament, the mixed color infill will be seen " +"outside. It will not take effect, unless the prime tower is enabled." msgstr "" +"Pakeitus giją, pravalymas (purging) bus atliekamas spausdinamų objektų " +"užpildo viduje. Tai padeda sumažinti gijos atliekų kiekį bei sutrumpinti " +"spausdinimo laiką. Jei išorinės sienelės spausdinamos iš skaidrios gijos, " +"sumaišytų spalvų užpildas gali matytis išorėje. Ši funkcija veikia tik " +"tuomet, kai įjungtas valymo bokštelis." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Purging after filament change will be done inside objects' infills. This may lower the amount of waste and decrease the print time. If the walls are printed with transparent filament, the mixed color infill will be visible. It will not take effect unless the prime tower is enabled." -msgstr "Pakeitus giją, valymas bus atliekamas objektų užpildų viduje. Tai gali sumažinti atliekų kiekį ir sutrumpinti spausdinimo laiką. Jei sienos atspausdintos iš skaidraus filamento, mišrios spalvos užpildas bus matomas išorėje. Jis nebus taikomas, nebent įjungtas pirminis bokštas." +msgid "" +"Purging after filament change will be done inside objects' support. This may " +"lower the amount of waste and decrease the print time. It will not take " +"effect, unless the prime tower is enabled." +msgstr "" +"Pakeitus giją, pravalymas (purging) bus atliekamas objektų atramų (support) " +"viduje. Tai padeda sumažinti gijos atliekų kiekį bei sutrumpinti spausdinimo " +"laiką. Ši funkcija veikia tik tuomet, kai įjungtas valymo bokštelis." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Purging after filament change will be done inside objects' support. This may lower the amount of waste and decrease the print time. It will not take effect unless a prime tower is enabled." -msgstr "Pakeitus giją, valymas bus atliekamas objektų atramos viduje. Tai gali sumažinti atliekų kiekį ir sutrumpinti spausdinimo laiką. Tai nebus veiksminga, jei nebus įjungtas pirminis bokštas." - -msgid "This object will be used to purge the nozzle after a filament change to save filament and decrease the print time. Colors of the objects will be mixed as a result. It will not take effect unless the prime tower is enabled." -msgstr "Šis objektas bus naudojamas purkštuko valymui po filamento keitimo, siekiant sutaupyti filamento ir sutrumpinti spausdinimo laiką. Dėl to objektų spalvos bus sumaišytos. Tai neveiks, jei nebus įjungtas pagrindinis bokštas." +msgid "" +"This object will be used to purge the nozzle after a filament change to save " +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." +msgstr "" +"Šis objektas bus naudojamas purkštuko pravalymui po gijos pakeitimo, " +"siekiant sutaupyti medžiagos ir sutrumpinti spausdinimo laiką. Dėl šios " +"priežasties pereinamieji gijos atspalviai bus sumaišyti pačiame objekte. Ši " +"funkcija veikia tik tuomet, kai įjungtas valymo bokštelis." msgid "Maximal bridging distance" msgstr "Maksimalus tiltelio atstumas" @@ -15634,158 +19819,308 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Valymo bokšto valymo linijų atstumai." msgid "Extra flow for purging" -msgstr "Papildomas srautas valymui" - -msgid "Extra flow used for the purging lines on the wipe tower. This makes the purging lines thicker or narrower than they normally would be. The spacing is adjusted automatically." -msgstr "Papildomas srautas, naudojamas valymo bokšto išleidimo linijoms. Dėl to išleidimo linijos tampa storesnės arba siauresnės nei įprastai. Atstumai reguliuojami automatiškai." - -msgid "Idle temperature" -msgstr "Tuščiosios eigos temperatūra" - -msgid "Nozzle temperature when the tool is currently not used in multi-tool setups. This is only used when 'Ooze prevention' is active in Print Settings. Set to 0 to disable." -msgstr "Purkštuko temperatūra, kai įrankis šiuo metu nenaudojamas kelių įrankių nustatymuose.Tai naudojama tik tada, kai spausdinimo nustatymuose įjungta Išleidimo prevencija. Nustatykite 0, kad išjungtumėte." - -msgid "X-Y hole compensation" -msgstr "X-Y angų kompensavimas" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Holes in objects will expand or contract in the XY plane by the set value. Positive values make holes bigger and negative values make holes smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Objekto angos XY plokštumoje bus padidintos arba sumažintos pagal nustatytą vertę. Teigiama reikšmė didina skyles. Neigiama reikšmė skyles sumažina. Ši funkcija naudojama šiek tiek pakoreguoti dydį, kai objektas turi surinkimo problemų." - -msgid "X-Y contour compensation" -msgstr "X-Y kontūro kompensavimas" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Contours of objects will expand or contract in the XY plane by the set value. Positive values make contours bigger and negative values make contours smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Objekto kontūras XY plokštumoje bus padidintas arba sumažintas pagal nustatytą vertę. Teigiama reikšmė didina kontūrą. Neigiama reikšmė kontūrą sumažina. Ši funkcija naudojama šiek tiek pakoreguoti dydį, kai objektas yra surenkamas." - -msgid "Convert holes to polyholes" -msgstr "Konvertuoti skyles į daugiakampes" +msgstr "Papildomas pravalymo srautas" msgid "" -"Search for almost-circular holes that span more than one layer and convert the geometry to polyholes. Use the nozzle size and the (biggest) diameter to compute the polyhole.\n" +"Extra flow used for the purging lines on the wipe tower. This makes the " +"purging lines thicker or narrower than they normally would be. The spacing " +"is adjusted automatically." +msgstr "" +"Papildomas gijos srautas, naudojamas valymo bokštelio pravalymo linijoms. " +"Jis leidžia suformuoti storesnes arba siauresnes pravalymo linijas nei " +"įprastai. Atstumai tarp linijų pritaikomi automatiškai." + +msgid "Idle temperature" +msgstr "Budėjimo (idle) temperatūra" + +msgid "" +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." +msgstr "" +"Purkštuko temperatūra, kai įrankis nėra naudojamas kelių įrankių (multi-" +"tool) konfigūracijose. Šis parametras taikomas tik tuomet, kai spausdinimo " +"nustatymuose įjungta „Gijos nutekėjimo prevencija“ (Ooze prevention). " +"Nustatykite 0, jei norite išjungti." + +msgid "X-Y hole compensation" +msgstr "XY angų kompensavimas" + +msgid "" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." +msgstr "" +"Objekto angos XY plokštumoje bus praplėstos arba susiaurintos pagal nurodytą " +"reikšmę. Teigiamos reikšmės angas padidina, neigiamos – sumažina. Ši " +"funkcija naudojama matmenims tikslinti, kai kyla spausdintų detalių " +"surinkimo sunkumų." + +msgid "X-Y contour compensation" +msgstr "XY kontūro kompensavimas" + +msgid "" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." +msgstr "" +"Išoriniai objektų kontūrai XY plokštumoje bus praplėsti arba susiaurinti " +"pagal nurodytą reikšmę. Teigiamos reikšmės kontūrą padidina, neigiamos – " +"sumažina. Ši funkcija naudojama matmenims tikslinti, kai kyla spausdintų " +"detalių surinkimo sunkumų." + +msgid "Convert holes to polyholes" +msgstr "Konvertuoti skyles į daugiakampes (polyholes)" + +msgid "" +"Search for almost-circular holes that span more than one layer and convert " +"the geometry to polyholes. Use the nozzle size and the (biggest) diameter to " +"compute the polyhole.\n" "See http://hydraraptor.blogspot.com/2011/02/polyholes.html" msgstr "" -"Ieškokite beveik apskritų skylių, apimančių daugiau nei vieną sluoksnį, ir paverskite geometriją į daugiasluoksnes skyles. Norėdami apskaičiuoti daugialypę skylę, naudokite purkštuko dydį ir (didžiausią) skersmenį.\n" +"Ieško beveik apskritų skylių, kurios tęsiasi per kelis sluoksnius, ir " +"konvertuoja jų geometriją į daugiakampes skyles (polyholes). Daugiakampės " +"skylės skaičiavimui naudojamas purkštuko dydis ir (didžiausias) skersmuo.\n" "Žr. http://hydraraptor.blogspot.com/2011/02/polyholes.html" msgid "Polyhole detection margin" -msgstr "Daugiašakių aptikimo riba" +msgstr "Daugiakampių skylių (polyholes) aptikimo paklaida" #, no-c-format, no-boost-format msgid "" "Maximum defection of a point to the estimated radius of the circle.\n" -"As cylinders are often exported as triangles of varying size, points may not be on the circle circumference. This setting allows you some leeway to broaden the detection.\n" +"As cylinders are often exported as triangles of varying size, points may not " +"be on the circle circumference. This setting allows you some leeway to " +"broaden the detection.\n" "In mm or in % of the radius." msgstr "" "Didžiausias taško nuokrypis nuo apskaičiuoto apskritimo spindulio.\n" -"Kadangi cilindrai dažnai eksportuojami kaip įvairaus dydžio trikampiai, taškai gali būti ne apskritimo perimetre. Šis nustatymas suteikia tam tikrą laisvę išplėsti aptikimą.\n" -"mm arba % spindulio." +"Kadangi cilindriniai paviršiai modeliuose dažnai eksportuojami kaip " +"skirtingo dydžio trikampių tinklas, taškai gali nesutapti su idealiu " +"apskritimo perimetru. Šis nustatymas leidžia išplėsti aptikimo ribas.\n" +"Nurodoma mm arba % nuo spindulio." msgid "Polyhole twist" -msgstr "Daugiašakės sukimas" +msgstr "Daugiakampių skylių persukimas (Polyhole twist)" msgid "Rotate the polyhole every layer." -msgstr "Pasukite daugialypę skylę kiekviename sluoksnyje." +msgstr "Pasukti daugiakampės skylės orientaciją kiekviename sluoksnyje." msgid "G-code thumbnails" msgstr "G-kodo miniatiūros" -msgid "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the following format: \"XxY, XxY, ...\"" -msgstr "Nuotraukų dydžiai, saugomi .gcode ir .sl1 / .sl1s failuose tokiu formatu: \"XxY, XxY, ...\"" +msgid "" +"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " +"following format: \"XxY, XxY, ...\"" +msgstr "" +"Nuotraukų dydžiai, saugomi .gcode ir .sl1 / .sl1s failuose tokiu formatu: " +"\"XxY, XxY, ...\"" msgid "Format of G-code thumbnails" msgstr "G-kodo miniatiūrų formatas" -msgid "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, QOI for low memory firmware." -msgstr "G-kodo miniatiūrų formatas: PNG – geriausia kokybė, JPG – mažiausio dydžio, QOI – mažos atminties programinei įrangai." +msgid "" +"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " +"QOI for low memory firmware." +msgstr "" +"G-kodo miniatiūrų formatas: PNG – geriausia kokybė, JPG – mažiausio dydžio, " +"QOI – mažos atminties programinei įrangai." msgid "Use relative E distances" msgstr "Naudoti santykinius E atstumus" -msgid "Relative extrusion is recommended when using \"label_objects\" option. Some extruders work better with this option unchecked (absolute extrusion mode). Wipe tower is only compatible with relative mode. It is recommended on most printers. Default is checked." -msgstr "Naudojant parinktį „label_objects“ rekomenduojama naudoti santykinį išspaudimą. Kai kurie ekstruzijos įrenginiai veikia geriau, jei ši parinktis nepažymėta (absoliučiosios ekstruzijos režimas). Valymo bokštas suderinamas tik su santykiniu režimu. Jį rekomenduojama naudoti daugumoje spausdintuvų. Pagal numatytuosius nustatymus pažymėta." +msgid "" +"Relative extrusion is recommended when using \"label_objects\" option. Some " +"extruders work better with this option unchecked (absolute extrusion mode). " +"Wipe tower is only compatible with relative mode. It is recommended on most " +"printers. Default is checked." +msgstr "" +"Naudojant parinktį „label_objects“ rekomenduojama naudoti santykinį " +"išspaudimą (relative extrusion). Kai kurie ekstruderiai veikia geriau, kai " +"ši parinktis nepažymėta (absoliutaus išspaudimo režimas). Valymo bokštelis " +"suderinamas tik su santykiniu režimu. Jį rekomenduojama naudoti daugumoje " +"spausdintuvų. Pagal numatytuosius nustatymus parinktis yra įjungta." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The classic wall generator produces walls with constant extrusion width and for very thin areas, gap-fill is used. The Arachne engine produces walls with variable extrusion width." -msgstr "Klasikinis sienų generatorius sukuria pastovaus pločio sieneles, o labai plonoms sritims užpildyti naudojamas tarpų užpildymas. \"Arachnės\" variklis gamina kintamo išspaudimo pločio sienas." +msgid "" +"Classic wall generator produces walls with constant extrusion width and for " +"very thin areas is used gap-fill. Arachne engine produces walls with " +"variable extrusion width." +msgstr "" +"Klasikinis sienelių generatorius sukuria pastovaus išspaudimo pločio " +"sieneles, o labai plonoms sritims naudoja tarpų užpildymą (gap-fill). " +"„Arachne“ variklis sukuria kintamo išspaudimo pločio sieneles." msgid "Arachne" msgstr "Arachnė" msgid "Wall transition length" -msgstr "Sienų perėjimo ilgis" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall segments. It's expressed as a percentage over nozzle diameter." -msgstr "Pereinant nuo vieno sienelių skaičiaus prie kito, kai detalė tampa plonesnė, sienelių segmentams padalyti arba sujungti skiriama tam tikra erdvė. Jis išreiškiamas procentais nuo purkštuko skersmens." - -msgid "Wall transitioning filter margin" -msgstr "Sienos perėjimo filtro riba" - -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of extrusion widths which follow to [Minimum wall width - margin, 2 * Minimum wall width + margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large extrusion width variation can lead to under- or overextrusion problems. It's expressed as a percentage over nozzle diameter." -msgstr "Neleidžia pereiti iš vienos papildomos sienos į kitą. Ši riba išplečia sekančio išspaudimo pločio diapazoną iki [minimalus sienelės plotis - riba, 2 * minimalus sienelės plotis + riba]. Padidinus šią ribą, sumažėja perėjimų skaičius, todėl sumažėja ekstruzijos paleidimų / stabdymų skaičius ir judėjimo laikas. Tačiau dėl didelio ekstruzijos pločio skirtumo gali kilti nepakankamo arba per didelio ekstruzijos pločio problemų. Jis išreiškiamas procentais nuo purkštuko skersmens." - -msgid "Wall transitioning threshold angle" -msgstr "Sienų perėjimo slenksčio kampas" - -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Kai reikia sukurti perėjimus tarp lyginio ir nelyginio sienų skaičiaus. Pleišto formos, kurios kampas didesnis už šį nustatymą, perėjimų nebus, o centre nebus atspausdintos sienos, kad būtų užpildyta likusi erdvė. Sumažinus šį nustatymą, sumažėja šių centrinių sienelių skaičius ir ilgis, tačiau gali likti tarpų arba jos gali būti per daug išsikišusios." - -msgid "Wall distribution count" -msgstr "Sienų pasiskirstymo skaičius" - -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Sienų skaičius, skaičiuojant nuo centro, ant kurių reikia paskirstyti pokytį. Mažesnės reikšmės reiškia, kad išorinių sienų plotis nesikeičia." - -msgid "Minimum feature size" -msgstr "Minimalus elemento dydis" - -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than than this value will be widened to the minimum wall width. It's expressed as a percentage over nozzle diameter." -msgstr "Mažiausias plonų elementų storis. Modelio elementai, kurie yra plonesni už šią vertę, nebus spausdinami, o elementai, kurie yra storesni už šią vertę, bus praplatinti iki minimalaus sienelės storio. Išreiškiama procentais nuo purkštuko skersmens." - -msgid "Minimum wall length" -msgstr "Mažiausias sienos ilgis" +msgstr "Sienelių perėjimo ilgis" msgid "" -"Adjust this value to prevent short, unclosed walls from being printed, which could increase print time. Higher values remove more and longer walls.\n" -"\n" -"NOTE: Bottom and top surfaces will not be affected by this value to prevent visual gaps on the outside of the model. Adjust 'One wall threshold' in the Advanced settings below to adjust the sensitivity of what is considered a top-surface. 'One wall threshold' is only visible if this setting is set above the default value of 0.5, or if single-wall top surfaces is enabled." +"When transitioning between different numbers of walls as the part becomes " +"thinner, a certain amount of space is allotted to split or join the wall " +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" -"Nustatykite šią reikšmę, kad nebūtų spausdinamos trumpos, neuždarytos sienos, dėl kurių gali pailgėti spausdinimo laikas. Didesnės reikšmės pašalina daugiau ir ilgesnių sienelių.\n" +"Pereinant nuo vieno sienelių skaičiaus prie kito, kai detalė tampa plonesnė, " +"sienelių segmentams padalyti arba sujungti skiriama tam tikra erdvė. Jis " +"išreiškiamas procentais nuo purkštuko skersmens." + +msgid "Wall transitioning filter margin" +msgstr "Sienelių perėjimo filtro paklaida (margin)" + +msgid "" +"Prevent transitioning back and forth between one extra wall and one less. " +"This margin extends the range of extrusion widths which follow to [Minimum " +"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " +"margin reduces the number of transitions, which reduces the number of " +"extrusion starts/stops and travel time. However, large extrusion width " +"variation can lead to under- or overextrusion problems. It's expressed as a " +"percentage over nozzle diameter." +msgstr "" +"Neleidžia perėjimo algoritmui nuolat persijungti pirmyn ir atgal tarp vienos " +"papildomos ir viena mažesnės sienelės. Ši paklaida išplečia tolimesnių " +"ekstruzijos pločių diapazoną iki [minimalus sienelės plotis - paklaida, 2 * " +"minimalus sienelės plotis + paklaida]. Padidinus šią paklaidą, sumažėja " +"perėjimų skaičius, o tai sumažina ekstruzijos pradžios / stabdymo taškų " +"skaičių ir tuščiojo judėjimo (travel) laiką. Tačiau dideli ekstruzijos " +"pločio svyravimai gali sukelti nepritekliaus (under-extrusion) arba " +"pertekliaus (over-extrusion) problemų. Reikšmė išreiškiama procentais nuo " +"purkštuko skersmens." + +msgid "Wall transitioning threshold angle" +msgstr "Sienelių perėjimo slenksčio kampas" + +msgid "" +"When to create transitions between even and odd numbers of walls. A wedge " +"shape with an angle greater than this setting will not have transitions and " +"no walls will be printed in the center to fill the remaining space. Reducing " +"this setting reduces the number and length of these center walls, but may " +"leave gaps or overextrude." +msgstr "" +"Nustato, kada kurti perėjimus tarp lyginio ir nelyginio sienelių skaičiaus. " +"Pleišto formos geometrijoje, kurios kampas yra didesnis už šį nustatymą, " +"perėjimai nebus kuriami ir centre nebus spausdinamos papildomos sienelės " +"likusiai erdvei užpildyti. Sumažinus šią reikšmę, sumažėja šių centrinių " +"sienelių skaičius ir ilgis, tačiau gali likti tuštumų arba susidaryti " +"medžiagos perteklius (over-extrusion)." + +msgid "Wall distribution count" +msgstr "Sienelių pasiskirstymo skaičius" + +msgid "" +"The number of walls, counted from the center, over which the variation needs " +"to be spread. Lower values mean that the outer walls don't change in width." +msgstr "" +"Sienelių skaičius, skaičiuojant nuo centro, per kurias turi būti " +"paskirstytas pločio svyravimas. Mažesnės reikšmės reiškia, kad išorinių " +"sienelių plotis išlieka pastovus." + +msgid "Minimum feature size" +msgstr "Minimalus elemento dydis (Minimum feature size)" + +msgid "" +"Minimum thickness of thin features. Model features that are thinner than " +"this value will not be printed, while features thicker than than this value " +"will be widened to the minimum wall width. It's expressed as a percentage " +"over nozzle diameter." +msgstr "" +"Mažiausias plonų elementų storis. Modelio elementai, plonesni už šią " +"reikšmę, nebus spausdinami, o elementai, storesni už šią reikšmę, bus " +"praplatinti iki minimalaus sienelės pločio. Išreiškiama procentais nuo " +"purkštuko skersmens." + +msgid "Minimum wall length" +msgstr "Mažiausias sienelės ilgis" + +msgid "" +"Adjust this value to prevent short, unclosed walls from being printed, which " +"could increase print time. Higher values remove more and longer walls.\n" "\n" -"PASTABA: Apatiniams ir viršutiniams paviršiams ši reikšmė įtakos neturės, kad modelio išorėje nesusidarytų vizualūs tarpai. Toliau esančiuose išplėstiniuose nustatymuose sureguliuokite Vienos sienelės slenkstis, kad nustatytumėte jautrumą, kas laikoma viršutiniu paviršiumi. Vienos sienelės slenkstis matomas tik tada, jei šis nustatymas nustatytas didesnis už numatytąją vertę 0,5 arba jei įjungta vienos sienelės viršutinių paviršių funkcija." +"NOTE: Bottom and top surfaces will not be affected by this value to prevent " +"visual gaps on the outside of the model. Adjust 'One wall threshold' in the " +"Advanced settings below to adjust the sensitivity of what is considered a " +"top-surface. 'One wall threshold' is only visible if this setting is set " +"above the default value of 0.5, or if single-wall top surfaces is enabled." +msgstr "" +"Pakoreguokite šią reikšmę, kad nebūtų spausdinamos trumpos, neuždaros " +"sienelės, galinčios pailginti spausdinimo laiką. Didesnės reikšmės pašalina " +"daugiau ir ilgesnes sieneles.\n" +"\n" +"PASTABA: Šis nustatymas neturi įtakos apatiniams ir viršutiniams paviršiams, " +"kad modelio išorėje neatsirastų matomų tuštumų. Žemiau esančiuose " +"išplėstiniuose nustatymuose pakeiskite parametro „Vienos sienelės slenkstis“ " +"(One wall threshold) jautrumą, apibrėžiantį, kas laikoma viršutiniu " +"paviršiumi. Šis slenkstis matomas tik tada, kai nustatymas viršija " +"numatytąją 0,5 reikšmę arba kai įjungta vienos sienelės viršutinių paviršių " +"funkcija." msgid "Maximum wall resolution" -msgstr "" +msgstr "Didžiausia sienelių skiriamoji geba (resolution)" -msgid "This value determines the smallest wall line segment length in mm. The smaller you set this value, the more accurate and precise the walls will be." +msgid "" +"This value determines the smallest wall line segment length in mm. The " +"smaller you set this value, the more accurate and precise the walls will be." msgstr "" +"Ši reikšmė nustato mažiausią sienelės linijos segmento ilgį milimetrais " +"(mm). Kuo mažesnę reikšmę nustatysite, tuo tikslesnės ir detalesnės bus " +"sienelės." msgid "Maximum wall deviation" -msgstr "" +msgstr "Didžiausias sienelės nuokrypis" -msgid "The maximum deviation allowed when reducing the resolution for the 'Maximum wall resolution' setting. If you increase this, the print will be less accurate, but the G-Code will be smaller. 'Maximum wall deviation' limits 'Maximum wall resolution', so if the two conflict, 'Maximum wall deviation' takes precedence." +msgid "" +"The maximum deviation allowed when reducing the resolution for the 'Maximum " +"wall resolution' setting. If you increase this, the print will be less " +"accurate, but the G-Code will be smaller. 'Maximum wall deviation' limits " +"'Maximum wall resolution', so if the two conflict, 'Maximum wall deviation' " +"takes precedence." msgstr "" +"Didžiausias leidžiamas nuokrypis, mažinant „Didžiausios sienelės raiškos“ " +"nustatymo skiriamąją gebą. Jei jį padidinsite, spaudinys bus mažiau tikslus, " +"tačiau G-kodas (G-Code) bus mažesnės apimties. „Didžiausias sienelės " +"nuokrypis“ riboja „Didžiausią sienelės raišką“, todėl jei šie du nustatymai " +"konfliktuoja, viršenybė teikiama „Didžiausiam sienelės nuokrypiui“." msgid "First layer minimum wall width" -msgstr "Pirmojo sluoksnio mažiausias sienos plotis" +msgstr "Pirmojo sluoksnio mažiausias sienelės plotis" -msgid "The minimum wall width that should be used for the first layer is recommended to be set to the same size as the nozzle. This adjustment is expected to enhance adhesion." -msgstr "Mažiausią sienos plotį, kuris turėtų būti naudojamas pirmajam sluoksniui, rekomenduojama nustatyti tokio pat dydžio, kaip ir purkštukas. Manoma, kad šis nustatymas pagerins sukibimą." +msgid "" +"The minimum wall width that should be used for the first layer is " +"recommended to be set to the same size as the nozzle. This adjustment is " +"expected to enhance adhesion." +msgstr "" +"Mažiausią sienelės plotį, kuris turėtų būti naudojamas pirmajam sluoksniui, " +"rekomenduojama nustatyti tokio pat dydžio, kaip ir purkštuko skersmuo. " +"Tikimasi, kad šis koregavimas pagerins sukibimą." msgid "Minimum wall width" -msgstr "Mažiausias sienos plotis" +msgstr "Mažiausias sienelės plotis" -msgid "Width of the wall that will replace thin features (according to the Minimum feature size) of the model. If the Minimum wall width is thinner than the thickness of the feature, the wall will become as thick as the feature itself. It's expressed as a percentage over nozzle diameter." -msgstr "Sienos, kuri pakeis plonus modelio elementus, plotis (pagal minimalų elemento dydį). Jei Minimalus sienos plotis yra plonesnis už elemento storį, siena taps tokio pat storio kaip ir pats elementas. Jis išreiškiamas procentais nuo purkštuko skersmens." +msgid "" +"Width of the wall that will replace thin features (according to the Minimum " +"feature size) of the model. If the Minimum wall width is thinner than the " +"thickness of the feature, the wall will become as thick as the feature " +"itself. It's expressed as a percentage over nozzle diameter." +msgstr "" +"Sienelės, kuri pakeis plonus modelio elementus (pagal mažiausią elemento " +"dydį), plotis. Jei mažiausias sienelės plotis yra mažesnis už elemento " +"storį, sienelė taps tokio pat storio, kaip ir pats elementas. Jis " +"išreiškiamas procentais nuo purkštuko skersmens." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect narrow internal solid infills" -msgstr "Aptikti siaurą vidinį vientisą užpildą" +msgstr "Aptikti siaurus vidinius vientisus užpildus" -msgid "This option will auto-detect narrow internal solid infill areas. If enabled, the concentric pattern will be used for the area to speed up printing. Otherwise, the rectilinear pattern will be used by default." -msgstr "Ši parinktis automatiškai nustato siaurą vidinę vientiso užpildo sritį. Jei ši parinktis įjungta, šiai sričiai bus naudojamas koncentrinis raštas, kad būtų pagreitintas spausdinimas. Priešingu atveju pagal numatytuosius nustatymus naudojamas tiesiaeigis raštas." +msgid "" +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." +msgstr "" +"Ši parinktis automatiškai aptiks siauras vidines vientiso užpildo sritis. " +"Jei ji įjungta, šiose srityse bus naudojamas koncentrinis raštas, kad " +"spausdinimas būtų pagreitintas. Priešingu atveju pagal numatytuosius " +"nustatymus bus naudojamas tiesiaeigis raštas." msgid "invalid value " msgstr "netinkama reikšmė " @@ -15794,7 +20129,7 @@ msgid "Invalid value when spiral vase mode is enabled: " msgstr "Netinkama reikšmė, kai įjungtas spiralinės vazos režimas: " msgid "Bridge line width must not exceed nozzle diameter: " -msgstr "" +msgstr "Tiltelių linijos plotis negali viršyti purkštuko skersmens: " msgid "too large line width " msgstr "per didelis linijos plotis " @@ -15805,22 +20140,20 @@ msgstr " nepatenka į intervalą " msgid "Export 3MF" msgstr "Eksportuoti 3MF" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This exports the project as a 3MF file." +msgid "Export project as 3MF." msgstr "Eksportuokite projektą kaip 3MF." msgid "Export slicing data" msgstr "Eksportuoti sluoksniavimo duomenis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Export slicing data to a folder" +msgid "Export slicing data to a folder." msgstr "Eksportuoti sluoksniavimo duomenis į katalogą." msgid "Load slicing data" msgstr "Įkelti sluoksniavimo duomenis" msgid "Load cached slicing data from directory." -msgstr "Įkelti į talpyklą įrašytus pjaustymo duomenis iš katalogo." +msgstr "Įkelti į talpyklą įrašytus sluoksniavimo duomenis iš katalogo." msgid "Export STL" msgstr "Eksportuoti STL" @@ -15834,11 +20167,15 @@ msgstr "Eksportuoti kaip kelis STL" msgid "Export the objects as multiple STLs to directory." msgstr "Eksportuokite objektus kaip kelis STL į katalogą." -msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" -msgstr "Sluoksniuoja plokštes: 0-visos plokštės, i-plokštė i, kitos-negaliojančios" +msgid "Slice" +msgstr "Sluoksniuoti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This shows command help." +msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" +msgstr "" +"Sluoksniuoti plokštes: 0 – visos plokštės, i – „i“ plokštė, kitos – " +"netinkamos" + +msgid "Show command help." msgstr "Rodoma komandos pagalba." msgid "UpToDate" @@ -15851,33 +20188,33 @@ msgid "Load default filaments" msgstr "Įkelti numatytąsias gijas" msgid "Load first filament as default for those not loaded." -msgstr "Įkelti pirmąją giją kaip numatytąją neįkeltoms gijoms." +msgstr "Įkelti pirmąją giją kaip numatytąją toms gijoms, kurios nėra įkeltos." msgid "Minimum save" msgstr "Minimalus išsaugojimas" msgid "Export 3MF with minimum size." -msgstr "eksportuoti mažiausio dydžio 3MF." +msgstr "Eksportuoti mažiausio dydžio 3MF." msgid "mtcpp" msgstr "mtcpp" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "max triangle count per plate for slicing" +msgid "max triangle count per plate for slicing." msgstr "maksimalus trikampių skaičius plokštelėje sluoksniavimui." msgid "mstpp" msgstr "mstpp" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "max slicing time per plate in seconds" +msgid "max slicing time per plate in seconds." msgstr "maksimalus vienos plokštės sluoksniavimo laikas sekundėmis." msgid "No check" msgstr "Netikrinama" msgid "Do not run any validity checks, such as G-code path conflicts check." -msgstr "Nevykdyti jokių galiojimo patikrinimų, pvz., gkodo kelio konfliktų patikrinimo." +msgstr "" +"Nevykdyti jokių tinkamumo patikrinimų, pavyzdžiui, G-kodo (G-code) " +"trajektorijų konfliktų patikros." msgid "Normative check" msgstr "Normatyvinė patikra" @@ -15888,16 +20225,14 @@ msgstr "Patikrinti norminius elementus." msgid "Output Model Info" msgstr "Išvesti modelio informaciją" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This outputs the model’s information." -msgstr "Išvedama modelio informacija." +msgid "Output the model's information." +msgstr "Išvesti modelio informaciją." msgid "Export Settings" msgstr "Eksportavimo nustatymai" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This exports settings to a file." -msgstr "Nustatymai eksportuojami į failą." +msgid "Export settings to a file." +msgstr "Eksportuoti nustatymus į failą." msgid "Send progress to pipe" msgstr "Siųsti pažangą į kanalą" @@ -15909,22 +20244,30 @@ msgid "Arrange Options" msgstr "Išdėstymo parinktys" msgid "Arrange options: 0-disable, 1-enable, others-auto" -msgstr "Išdėstymo parinktys: 0-išjungti, 1-įjungti, kiti-automatiniai" +msgstr "Išdėstymo parinktys: 0 – išjungti, 1 – įjungti, kitos – automatiškai" msgid "Repetition count" msgstr "Pakartojimų skaičius" msgid "Repetition count of the whole model." -msgstr "Viso modelio pasikartojimų skaičius." +msgstr "Viso modelio pakartojimų skaičius." msgid "Ensure on bed" msgstr "Užtikrinti ant pagrindo" -msgid "Lift the object above the bed when it is partially below. Disabled by default." -msgstr "Pakelti daiktą virš pagrindo, kai jis iš dalies yra žemiau. Pagal numatytuosius nustatymus išjungta." +msgid "" +"Lift the object above the bed when it is partially below. Disabled by " +"default." +msgstr "" +"Pakelti daiktą virš pagrindo, kai jis iš dalies yra žemiau. Pagal " +"numatytuosius nustatymus išjungta." -msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." -msgstr "Pateiktus modelius išdėstyti ant pagrindo ir sujungti į vieną modelį, kad vieną kartą atliktumėte veiksmus." +msgid "" +"Arrange the supplied models in a plate and merge them in a single model in " +"order to perform actions once." +msgstr "" +"Išdėstyti pateiktus modelius plokštėje ir sujungti juos į vieną modelį, kad " +"veiksmai būtų atliekami vienu metu." msgid "Convert Unit" msgstr "Konvertuoti vienetus" @@ -15936,7 +20279,8 @@ msgid "Orient Options" msgstr "Orientacijos parinktys" msgid "Orient options: 0-disable, 1-enable, others-auto" -msgstr "Orientacijos parinktys: 0-išjungti, 1-įjungti, kiti-automatiniai" +msgstr "" +"Orientacijos parinktys: 0 – išjungti, 1 – įjungti, kitos – automatiškai" msgid "Rotation angle around the Z axis in degrees." msgstr "Sukimosi kampas aplink Z ašį laipsniais." @@ -15948,13 +20292,13 @@ msgid "Rotation angle around the X axis in degrees." msgstr "Pasukimo kampas aplink X ašį laipsniais." msgid "Rotate around Y" -msgstr "Pasukti aplink Y" +msgstr "Pasukti aplink Y ašį" msgid "Rotation angle around the Y axis in degrees." msgstr "Sukimosi kampas aplink Y ašį laipsniais." msgid "Scale the model by a float factor." -msgstr "Modelio mastelio keitimas pagal kintamąjį koeficientą." +msgstr "Keisti modelio mastelį pagal slankiojo kablelio koeficientą." msgid "Load General Settings" msgstr "Įkelti bendruosius nustatymus" @@ -15966,7 +20310,7 @@ msgid "Load Filament Settings" msgstr "Įkelti gijų nustatymus" msgid "Load filament settings from the specified file list." -msgstr "Įkelti gijų nustatymus iš nurodyto failų sąrašo." +msgstr "Įkelti gijos nustatymus iš nurodyto failų sąrašo." msgid "Skip Objects" msgstr "Praleisti objektus" @@ -15978,69 +20322,92 @@ msgid "Clone Objects" msgstr "Klonuoti objektus" msgid "Clone objects in the load list." -msgstr "Įkrovos sąraše esančių objektų klonavimas." +msgstr "Klonuoti įkėlimo sąraše esančius objektus." msgid "Load uptodate process/machine settings when using uptodate" -msgstr "Naudojant „Naujausius“, įkelkite naujausius proceso/mašinos nustatymus" +msgstr "Naudojant „UpToDate“, įkelti naujausius proceso / mašinos nustatymus" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "load up-to-date process/machine settings from the specified file when using up-to-date" -msgstr "Įkelti \"naujausio\" proceso/įrenginio nustatymus iš nurodyto failo, kai naudojamas \"naujausias\"." +msgid "" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." +msgstr "" +"Naudojant „UpToDate“, įkelti naujausius proceso / mašinos nustatymus iš " +"nurodyto failo." msgid "Load uptodate filament settings when using uptodate" -msgstr "Naudojant „naujausius“, įkelkite naujausius gijos nustatymus" +msgstr "Naudojant „UpToDate“, įkelti naujausius gijos nustatymus" -msgid "Load uptodate filament settings from the specified file when using uptodate." -msgstr "Naudojant „naujausius“, įkelti naujausius gijų nustatymus iš nurodyto failo." +msgid "" +"Load uptodate filament settings from the specified file when using uptodate." +msgstr "" +"Naudojant „UpToDate“, įkelti naujausius gijos nustatymus iš nurodyto failo." msgid "Downward machines check" -msgstr "Tolimesnių sąraše esančių mašinų patikra" +msgstr "Atgalinio mašinų suderinamumo patikra" -msgid "If enabled, check whether current machine downward compatible with the machines in the list." -msgstr "Jei įjungta, patikrinkite, ar dabartinė mašina yra suderinama su sąraše esančiomis mašinomis." +msgid "" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." +msgstr "" +"Jei įjungta, tikrinama, ar dabartinė mašina yra suderinama atgaline tvarka " +"su sąraše esančiomis mašinomis." msgid "Downward machines settings" -msgstr "Tolimesnių mašinų nustatymas" +msgstr "Atgalinio mašinų suderinamumo nustatymai" msgid "The machine settings list needs to do downward checking." -msgstr "Mašinos nustatymų sąraše reikia atlikti žemyn einantį tikrinimą." +msgstr "" +"Mašinos nustatymų sąrašas, kuriam reikia atlikti atgalinio suderinamumo " +"patikrą." msgid "Load assemble list" msgstr "Įkelti surinkimo sąrašą" msgid "Load assemble object list from config file." -msgstr "Surinkimo objektų sąrašo įkėlimas iš konfigūracijos failo." +msgstr "Įkelti surinkimo objektų sąrašą iš konfigūracijos failo." msgid "Data directory" msgstr "Duomenų katalogas" -msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." -msgstr "Įkelkite ir išsaugokite nustatymus nurodytame kataloge. Tai naudinga norint išlaikyti skirtingus profilius arba įtraukti konfigūracijas iš tinklo saugyklos." +msgid "" +"Load and store settings at the given directory. This is useful for " +"maintaining different profiles or including configurations from a network " +"storage." +msgstr "" +"Įkelti ir išsaugoti nustatymus nurodytame kataloge. Tai naudinga norint " +"išlaikyti skirtingus profilius arba įtraukti konfigūracijas iš tinklo " +"saugyklos." msgid "Output directory" msgstr "Išvesties katalogas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the output directory for exported files." +msgid "Output directory for the exported files." msgstr "Eksportuojamų failų išvesties katalogas." msgid "Debug level" msgstr "Derinimo lygis" -msgid "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" -msgstr "Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, 3: informacija, 4: derinimas, 5: sekimas\n" +msgid "" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" +msgstr "" +"Nustato derinimo žurnalų lygį. 0: kritinis, 1: klaida, 2: įspėjimas, 3: " +"informacija, 4: derinimas, 5: sekimas\n" +"\n" msgid "Log file" -msgstr "" +msgstr "Žurnalo failas" msgid "Redirects debug logging to file.\n" -msgstr "" +msgstr "Nukreipia derinimo žurnalų įrašymą į failą.\n" msgid "Enable timelapse for print" -msgstr "Laiko intervalų spausdinimui įjungimas" +msgstr "Įjungti laiko intervalų (timelapse) fotografavimą spausdinimui" msgid "If enabled, this slicing will be considered using timelapse." -msgstr "Jei įjungta, šis sluoksniavimas bus atliekamas naudojant laiko intervalą." +msgstr "" +"Jei įjungta, šis sluoksniavimas bus pritaikytas laiko intervalų (timelapse) " +"fotografavimui." msgid "Load custom G-code" msgstr "Įkelti pasirinktinį G-kodą" @@ -16052,7 +20419,7 @@ msgid "Load filament IDs" msgstr "Įkelti gijų ID" msgid "Load filament IDs for each object." -msgstr "Įkelkite kiekvieno objekto gijų identifikatorius." +msgstr "Įkelti kiekvieno objekto gijų ID." msgid "Allow multiple colors on one plate" msgstr "Leisti skirtingas spalvas ant tos pačios plokštės" @@ -16067,16 +20434,22 @@ msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "Jei įjungta, išdėstant objektus bus leidžiami pasukimai." msgid "Avoid extrusion calibrate region when arranging" -msgstr "Išdėstant vengti išspaudimo kalibravimo ploto" +msgstr "Išdėstant vengti išspaudimo (extrusion) kalibravimo srities" -msgid "If enabled, Arrange will avoid extrusion calibrate region when placing objects." -msgstr "Jei įjungta, išdėstant objektus bus vengiama išspaudimo kalibravimo srities." +msgid "" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." +msgstr "" +"Jei įjungta, išdėstymo funkcija vengs išspaudimo (extrusion) kalibravimo " +"srities, kai išdėstys objektus." msgid "Skip modified G-code in 3MF" -msgstr "Praleisti modifikuotus gkodus 3MF" +msgstr "Praleisti modifikuotą G-kodą (G-code) 3MF failuose" msgid "Skip the modified G-code in 3MF from printer or filament presets." -msgstr "Praleiskite modifikuotą G kodą 3MF iš spausdintuvo arba gijos nustatymų." +msgstr "" +"Praleisti modifikuotą G-kodą (G-code) 3MF faile iš spausdintuvo arba gijos " +"profilių." msgid "MakerLab name" msgstr "MakerLab pavadinimas" @@ -16094,13 +20467,13 @@ msgid "Metadata name list" msgstr "Metaduomenų pavadinimų sąrašas" msgid "Metadata name list added into 3MF." -msgstr "" +msgstr "Į 3MF įtrauktų metaduomenų pavadinimų sąrašas." msgid "Metadata value list" msgstr "Metaduomenų reikšmių sąrašas" msgid "Metadata value list added into 3MF." -msgstr "" +msgstr "Į 3MF įtrauktų metaduomenų reikšmių sąrašas." msgid "Allow 3MF with newer version to be sliced" msgstr "Leisti 3MF su naujesne versija sluoksniuoti" @@ -16109,82 +20482,127 @@ msgid "Allow 3MF with newer version to be sliced." msgstr "Leisti sluoksniuoti 3MF su naujesne versija." msgid "Current Z-hop" -msgstr "Dabartinis Z-šuolis" +msgstr "Dabartinis Z-pakėlimas (Z-hop)" msgid "Contains Z-hop present at the beginning of the custom G-code block." -msgstr "Turi Z-šuolį, esantį pasirinktinio G-kodo bloko pradžioje." +msgstr "" +"Apima Z-pakėlimą (Z-hop), esantį pasirinktinio G-kodo (G-code) bloko " +"pradžioje." -msgid "Position of the extruder at the beginning of the custom G-code block. If the custom G-code travels somewhere else, it should write to this variable so OrcaSlicer knows where it travels from when it gets control back." -msgstr "Ekstruderio padėtis pasirinktinio G-kodo bloko pradžioje. Jei pasirinktinis G-kodas juda kur nors kitur, jis turėtų būti įrašytas į šį kintamąjį, kad OrcaSlicer žinotų, iš kur jis juda, kai atgauna valdymą." +msgid "" +"Position of the extruder at the beginning of the custom G-code block. If the " +"custom G-code travels somewhere else, it should write to this variable so " +"OrcaSlicer knows where it travels from when it gets control back." +msgstr "" +"Ekstruderio padėtis pasirinktinio G-kodo (G-code) bloko pradžioje. Jei " +"pasirinktinis G-kodas atlieka judėjimą kitur, jis turėtų įrašyti reikšmę į " +"šį kintamąjį, kad „OrcaSlicer“ žinotų pradinį tašką, kai valdymas bus " +"grąžintas programai." -msgid "Retraction state at the beginning of the custom G-code block. If the custom G-code moves the extruder axis, it should write to this variable so OrcaSlicer de-retracts correctly when it gets control back." -msgstr "Įtraukimo būsena pasirinktinio G-kodo bloko pradžioje. Jei pasirinktinis G-kodas judina ekstruderio ašį, jis turėtų įrašyti į šį kintamąjį, kad OrcaSlicer teisingai atšauktų įtraukimą, kai atgaus valdymą." +msgid "" +"Retraction state at the beginning of the custom G-code block. If the custom " +"G-code moves the extruder axis, it should write to this variable so " +"OrcaSlicer de-retracts correctly when it gets control back." +msgstr "" +"Gijos įtraukimo (retraction) būsena pasirinktinio G-kodo (G-code) bloko " +"pradžioje. Jei pasirinktinis G-kodas judina ekstruderio ašį, jis turėtų " +"įrašyti reikšmę į šį kintamąjį, kad „OrcaSlicer“ teisingai atliktų gijos " +"pastūmimą (de-retract), kai valdymas bus grąžintas programai." msgid "Extra de-retraction" -msgstr "Papildomas ištraukimas" +msgstr "Papildomas pastūmimas po įtraukimo (extra de-retraction)" msgid "Currently planned extra extruder priming after de-retraction." -msgstr "Šiuo metu planuojamas papildomas ekstruderio užpildymas po ištraukimo." +msgstr "" +"Šiuo metu numatytas papildomas ekstruderio užpildymas (priming) po gijos " +"pastūmimo (de-retraction)." msgid "Absolute E position" msgstr "Absoliuti E padėtis" -msgid "Current position of the extruder axis. Only used with absolute extruder addressing." -msgstr "Dabartinė ekstruderio ašies padėtis. Naudojama tik su absoliučiu ekstruderio adresavimu." +msgid "" +"Current position of the extruder axis. Only used with absolute extruder " +"addressing." +msgstr "" +"Dabartinė ekstruderio ašies padėtis. Naudojama tik esant absoliučiajam " +"ekstruderio koordinavimui." msgid "Current extruder" msgstr "Dabartinis ekstruderis" msgid "Zero-based index of currently used extruder." -msgstr "" +msgstr "Dabartinio ekstruderio indeksas, skaičiuojamas nuo nulio." msgid "Current object index" msgstr "Dabartinio objekto indeksas" -msgid "Specific for sequential printing. Zero-based index of currently printed object." -msgstr "Specifinis nuoseklaus spausdinimo būdas. Šiuo metu spausdinamo objekto indeksas (pradedant nuliu)." +msgid "" +"Specific for sequential printing. Zero-based index of currently printed " +"object." +msgstr "" +"Specifinė nuoseklaus spausdinimo informacija. Šiuo metu spausdinamo objekto " +"indeksas, skaičiuojamas nuo nulio." msgid "Has wipe tower" -msgstr "Turi valymo bokštą" +msgstr "Turi valymo bokštelį" msgid "Whether or not wipe tower is being generated in the print." -msgstr "Ar spausdinant generuojamas nuvalymo bokštas." +msgstr "Ar spausdinant yra generuojamas valymo bokštelis." msgid "Initial extruder" msgstr "Pradinis ekstruderis" -msgid "Zero-based index of the first extruder used in the print. Same as initial_tool." -msgstr "Pirmojo spausdinimui naudojamo ekstruderio indeksas (pradedant nuliu). Toks pat kaip initial_tool." +msgid "" +"Zero-based index of the first extruder used in the print. Same as " +"initial_tool." +msgstr "" +"Pirmojo spausdinimui naudojamo ekstruderio indeksas, skaičiuojamas nuo " +"nulio. Toks pat kaip „initial_tool“." msgid "Initial tool" msgstr "Pradinis įrankis" -msgid "Zero-based index of the first extruder used in the print. Same as initial_extruder." -msgstr "Pirmojo spausdinimui naudojamo ekstruderio indeksas pagal nulį. Toks pat kaip initial_extruder." +msgid "" +"Zero-based index of the first extruder used in the print. Same as " +"initial_extruder." +msgstr "" +"Pirmojo spausdinimui naudojamo ekstruderio indeksas, skaičiuojamas nuo " +"nulio. Toks pat kaip „initial_extruder“." msgid "Is extruder used?" msgstr "Ar naudojamas ekstruderis?" -msgid "Vector of booleans stating whether a given extruder is used in the print." -msgstr "Loginių reikšmių vektorius, nurodantis, ar spausdinant naudojamas tam tikras ekstruderis." +msgid "" +"Vector of booleans stating whether a given extruder is used in the print." +msgstr "" +"Loginių reikšmių vektorius, nurodantis, ar spausdinant naudojamas tam tikras " +"ekstruderis." msgid "Number of extruders" msgstr "Ekstruderių skaičius" -msgid "Total number of extruders, regardless of whether they are used in the current print." -msgstr "Bendras ekstruderių skaičius, neatsižvelgiant į tai, ar jie naudojami dabartiniame spausdinime." +msgid "" +"Total number of extruders, regardless of whether they are used in the " +"current print." +msgstr "" +"Bendras ekstruderių skaičius, neatsižvelgiant į tai, ar jie naudojami " +"dabartiniame spausdinime." msgid "Has single extruder MM priming" -msgstr "Turi vieną ekstruderį MM užpildymui" +msgstr "Turi vieno ekstruderio MM užpildymą (MM priming)" msgid "Are the extra multi-material priming regions used in this print?" -msgstr "Ar šiame spaudinyje naudojami papildomi kelių medžiagų pagrindo regionai?" +msgstr "" +"Ar šiame spaudinyje naudojamos papildomos kelių medžiagų užpildymo (priming) " +"sritys?" msgid "Volume per extruder" msgstr "Vieno ekstruderio tūris" msgid "Total filament volume extruded per extruder during the entire print." -msgstr "Bendras gijų tūris, išspaustas iš vieno ekstruderio per visą spausdinimo procesą." +msgstr "" +"Bendras gijos tūris, išspaustas (extruded) kiekvienu ekstruderiu per visą " +"spausdinimo procesą." msgid "Total tool changes" msgstr "Bendras įrankių keitimų skaičius" @@ -16196,19 +20614,28 @@ msgid "Total volume" msgstr "Bendras tūris" msgid "Total volume of filament used during the entire print." -msgstr "Bendras viso spausdinimo metu sunaudotas gijų tūris." +msgstr "Bendras viso spausdinimo metu sunaudotas gijos tūris." msgid "Weight per extruder" msgstr "Svoris vienam ekstruderiui" -msgid "Weight per extruder extruded during the entire print. Calculated from filament_density value in Filament Settings." -msgstr "Vieno ekstruderio išspaustas gijų svoris per visą spausdinimo procesą. Apskaičiuojama pagal filament_density vertę Gijų nustatymuose." +msgid "" +"Weight per extruder extruded during the entire print. Calculated from " +"filament_density value in Filament Settings." +msgstr "" +"Kiekvienu ekstruderiu išspaustas (extruded) gijos svoris per visą " +"spausdinimo procesą. Apskaičiuojama pagal „filament_density“ reikšmę Gijos " +"nustatymuose." msgid "Total weight" msgstr "Bendras svoris" -msgid "Total weight of the print. Calculated from filament_density value in Filament Settings." -msgstr "Bendras spaudinio svoris. Apskaičiuojama pagal filament_density vertę Gijos nustatymuose." +msgid "" +"Total weight of the print. Calculated from filament_density value in " +"Filament Settings." +msgstr "" +"Bendras spaudinio svoris. Apskaičiuojama pagal „filament_density“ reikšmę " +"Gijos nustatymuose." msgid "Total layer count" msgstr "Bendras sluoksnių skaičius" @@ -16217,52 +20644,76 @@ msgid "Number of layers in the entire print." msgstr "Viso spaudinio sluoksnių skaičius." msgid "Print time (normal mode)" -msgstr "" +msgstr "Spausdinimo laikas (normalus režimas)" -msgid "Estimated print time when printed in normal mode (i.e. not in silent mode). Same as print_time." +msgid "" +"Estimated print time when printed in normal mode (i.e. not in silent mode). " +"Same as print_time." msgstr "" +"Numatomas spausdinimo laikas, kai spausdinama normaliu režimu (t. y. ne " +"tyliuoju režimu). Toks pat kaip „print_time“." -msgid "Estimated print time when printed in normal mode (i.e. not in silent mode). Same as normal_print_time." +msgid "" +"Estimated print time when printed in normal mode (i.e. not in silent mode). " +"Same as normal_print_time." msgstr "" +"Numatomas spausdinimo laikas, kai spausdinama normaliu režimu (t. y. ne " +"tyliuoju režimu). Toks pat kaip „normal_print_time“." msgid "Print time (silent mode)" -msgstr "" +msgstr "Spausdinimo laikas (tylusis režimas)" msgid "Estimated print time when printed in silent mode." -msgstr "" +msgstr "Numatomas spausdinimo laikas, kai spausdinama tyliuoju režimu." -msgid "Total cost of all material used in the print. Calculated from filament_cost value in Filament Settings." +msgid "" +"Total cost of all material used in the print. Calculated from filament_cost " +"value in Filament Settings." msgstr "" +"Bendros visų spausdinimui sunaudotų medžiagų sąnaudos. Apskaičiuojama pagal " +"„filament_cost“ reikšmę Gijos nustatymuose." msgid "Total wipe tower cost" -msgstr "" +msgstr "Bendros valymo bokštelio sąnaudos" -msgid "Total cost of the material wasted on the wipe tower. Calculated from filament_cost value in Filament Settings." +msgid "" +"Total cost of the material wasted on the wipe tower. Calculated from " +"filament_cost value in Filament Settings." msgstr "" +"Bendros valymo bokšteliui sunaudotos gijos sąnaudos. Apskaičiuojama pagal " +"„filament_cost“ reikšmę Gijos nustatymuose." msgid "Wipe tower volume" -msgstr "" +msgstr "Valymo bokštelio tūris" msgid "Total filament volume extruded on the wipe tower." -msgstr "" +msgstr "Bendras gijos tūris, išspaustas (extruded) ant valymo bokštelio." msgid "Used filament" msgstr "Naudota gija" msgid "Total length of filament used in the print." -msgstr "" +msgstr "Bendras viso spausdinimo metu sunaudotos gijos ilgis." msgid "Print time (seconds)" -msgstr "" +msgstr "Spausdinimo laikas (sekundėmis)" -msgid "Total estimated print time in seconds. Replaced with actual value during post-processing." +msgid "" +"Total estimated print time in seconds. Replaced with actual value during " +"post-processing." msgstr "" +"Bendras numatomas spausdinimo laikas sekundėmis. Papildomo apdorojimo (post-" +"processing) metu pakeičiama faktine reikšme." msgid "Filament length (meters)" -msgstr "" +msgstr "Gijos ilgis (metrais)" -msgid "Total filament length used in meters. Replaced with actual value during post-processing." +msgid "" +"Total filament length used in meters. Replaced with actual value during post-" +"processing." msgstr "" +"Bendras sunaudotos gijos ilgis metrais. Papildomo apdorojimo (post-" +"processing) metu pakeičiama faktine reikšme." msgid "Number of objects" msgstr "Objektų skaičius" @@ -16274,16 +20725,22 @@ msgid "Number of instances" msgstr "Egzempliorių skaičius" msgid "Total number of object instances in the print, summed over all objects." -msgstr "Bendras atspausdintų objektų egzempliorių skaičius, sumuojamas visiems objektams." +msgstr "" +"Bendras atspausdintų objektų egzempliorių skaičius, sumuojamas visiems " +"objektams." msgid "Scale per object" msgstr "Mastelis pagal objektą" msgid "" -"Contains a string with the information about what scaling was applied to the individual objects. Indexing of the objects is zero-based (first object has index 0).\n" +"Contains a string with the information about what scaling was applied to the " +"individual objects. Indexing of the objects is zero-based (first object has " +"index 0).\n" "Example: 'x:100% y:50% z:100%'." msgstr "" -"Pateikiama eilutė su informacija apie tai, koks mastelio keitimas buvo pritaikytas atskiriems objektams. Objektai indeksuojami nuo nulio (pirmasis objektas turi indeksą 0).\n" +"Pateikiama eilutė su informacija apie tai, koks mastelio keitimas buvo " +"pritaikytas atskiriems objektams. Objektai indeksuojami nuo nulio (pirmasis " +"objektas turi indeksą 0).\n" "Pavyzdys: \"x:100% y:50% z:100%\"." msgid "Input filename without extension" @@ -16292,19 +20749,25 @@ msgstr "Įvesties failo pavadinimas be plėtinio" msgid "Source filename of the first object, without extension." msgstr "Pirmojo objekto šaltinio failo pavadinimas be plėtinio." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The vector has two elements: X and Y coordinate of the point. Values in mm." +msgid "" +"The vector has two elements: X and Y coordinate of the point. Values in mm." msgstr "Vektorių sudaro du elementai: taško x ir y koordinatės. Vertės mm." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The vector has two elements: X and Y dimension of the bounding box. Values in mm." -msgstr "Vektorių sudaro du elementai: x ir y ribojančio bloko matmenys. Reikšmės mm." +msgid "" +"The vector has two elements: X and Y dimension of the bounding box. Values " +"in mm." +msgstr "" +"Vektorių sudaro du elementai: x ir y ribojančio bloko matmenys. Reikšmės mm." msgid "First layer convex hull" msgstr "Pirmojo sluoksnio išgaubtasis korpusas" -msgid "Vector of points of the first layer convex hull. Each element has the following format:'[x, y]' (x and y are floating-point numbers in mm)." -msgstr "Pirmojo sluoksnio išgaubtojo korpuso taškų vektorius. Kiekvienas elementas yra tokio formato: \"[x, y]\" (x ir y yra slankiojo kablelio skaičiai mm)." +msgid "" +"Vector of points of the first layer convex hull. Each element has the " +"following format:'[x, y]' (x and y are floating-point numbers in mm)." +msgstr "" +"Pirmojo sluoksnio išgaubtojo korpuso taškų vektorius. Kiekvienas elementas " +"yra tokio formato: \"[x, y]\" (x ir y yra slankiojo kablelio skaičiai mm)." msgid "Bottom-left corner of the first layer bounding box" msgstr "Pirmojo sluoksnio ribų lango apatinis kairysis kampas" @@ -16337,28 +20800,32 @@ msgid "Hour" msgstr "Valanda" msgid "Minute" -msgstr "Minutės" +msgstr "Minutė" msgid "Second" -msgstr "Antrasis" +msgstr "Sekundė" msgid "Print preset name" -msgstr "Spausdinimo nustatymų pavadinimas" +msgstr "Spausdinimo profilio pavadinimas" msgid "Name of the print preset used for slicing." -msgstr "Spausdinimo nustatymų, naudojamų sluoksniavimui, pavadinimas." +msgstr "Sluoksniavimui naudojamo spausdinimo profilio pavadinimas." msgid "Filament preset name" -msgstr "Gijos nustatymų pavadinimas" +msgstr "Gijos profilio pavadinimas" -msgid "Names of the filament presets used for slicing. The variable is a vector containing one name for each extruder." -msgstr "Sluoksniavimui naudojamų gijų nustatymų pavadinimai. Kintamasis yra vektorius, kuriame yra po vieną kiekvieno ekstruderio pavadinimą." +msgid "" +"Names of the filament presets used for slicing. The variable is a vector " +"containing one name for each extruder." +msgstr "" +"Sluoksniavimui naudojamų gijos profilių pavadinimai. Šis kintamasis yra " +"vektorius, kuriame yra po vieną pavadinimą kiekvienam ekstruderiui." msgid "Printer preset name" -msgstr "Spausdintuvo nustatymų pavadinimas" +msgstr "Spausdintuvo profilio pavadinimas" msgid "Name of the printer preset used for slicing." -msgstr "Sluoksniavimui naudojamo spausdintuvo nustatymų pavadinimas." +msgstr "Sluoksniavimui naudojamo spausdintuvo profilio pavadinimas." msgid "Physical printer name" msgstr "Fizinio spausdintuvo pavadinimas" @@ -16370,22 +20837,28 @@ msgid "Layer number" msgstr "Sluoksnio numeris" msgid "Index of the current layer. One-based (i.e. first layer is number 1)." -msgstr "Dabartinio sluoksnio indeksas (pirmasis sluoksnis turi numerį 1)." +msgstr "" +"Dabartinio sluoksnio indeksas, skaičiuojamas nuo vieneto (t. y. pirmasis " +"sluoksnis yra Nr. 1)." msgid "Layer Z" -msgstr "Sluoksnis z" +msgstr "Sluoksnio Z aukštis" -msgid "Height of the current layer above the print bed, measured to the top of the layer." -msgstr "Dabartinio sluoksnio aukštis virš spausdinimo pagrindo, matuojamas iki sluoksnio viršaus." +msgid "" +"Height of the current layer above the print bed, measured to the top of the " +"layer." +msgstr "" +"Dabartinio sluoksnio aukštis virš spausdinimo pagrindo, matuojamas iki " +"sluoksnio viršaus." msgid "Maximal layer Z" -msgstr "Maksimalusis sluoksnis z" +msgstr "Didžiausias sluoksnio Z aukštis" msgid "Height of the last layer above the print bed." msgstr "Paskutinio sluoksnio aukštis virš spausdinimo pagrindo." msgid "Filament extruder ID" -msgstr "Gijų ekstruderio ID" +msgstr "Gijos ekstruderio ID" msgid "The current extruder ID. The same as current_extruder." msgstr "Dabartinis ekstruderio ID. Toks pat kaip current_extruder." @@ -16394,13 +20867,13 @@ msgid "Error in zip archive" msgstr "Klaida zip archyve" msgid "Generating walls" -msgstr "Sienų generavimas" +msgstr "Sienelių generavimas" msgid "Generating infill regions" -msgstr "Užpildomų regionų kūrimas" +msgstr "Užpildo sričių generavimas" msgid "Generating infill toolpath" -msgstr "Užpildymo įrankių trajektorijų generavimas" +msgstr "Užpildo įrankio trajektorijos (toolpath) generavimas" msgid "Detect overhangs for auto-lift" msgstr "Aptikti iškyšas automatiniam pakėlimui" @@ -16409,7 +20882,7 @@ msgid "Checking support necessity" msgstr "Atramų reikalingumo tikrinimas" msgid "floating regions" -msgstr "ore kabančių sektoriių" +msgstr "ore kabančių sričių" msgid "floating cantilever" msgstr "ore kabančią konstrukciją" @@ -16418,8 +20891,12 @@ msgid "large overhangs" msgstr "didelių iškyšų" #, c-format, boost-format -msgid "It seems object %s has %s. Please re-orient the object or enable support generation." -msgstr "Atrodo, kad objektas %s turi %s. Prašome perorientuoti objektą arba įjungti atramų generavimą." +msgid "" +"It seems object %s has %s. Please re-orient the object or enable support " +"generation." +msgstr "" +"Atrodo, kad objektas %s turi %s. Prašome perorientuoti objektą arba įjungti " +"atramų generavimą." msgid "Generating support" msgstr "Atramų generavimas" @@ -16430,22 +20907,31 @@ msgstr "Įrankių trajektorijų optimizavimas" msgid "Slicing mesh" msgstr "Figūros sluoksniavimas" -msgid "No layers were detected. You might want to repair your STL file(s) or check their size or thickness and retry.\n" -msgstr "Sluoksnių neaptikta. Galbūt reikėtų pataisyti STL failą (-us) arba patikrinti jų dydį ar storį ir bandyti dar kartą.\n" +msgid "" +"No layers were detected. You might want to repair your STL file(s) or check " +"their size or thickness and retry.\n" +msgstr "" +"Sluoksnių neaptikta. Galbūt reikėtų pataisyti STL failą (-us) arba " +"patikrinti jų dydį ar storį ir bandyti dar kartą.\n" msgid "" -"An object's XY size compensation will not be used because it is also color-painted.\n" +"An object's XY size compensation will not be used because it is also color-" +"painted.\n" "XY Size compensation cannot be combined with color-painting." msgstr "" -"Objekto XY dydžio kompensavimas nebus naudojamas, nes objektas taip pat yra spalvotas.\n" +"Objekto XY dydžio kompensavimas nebus naudojamas, nes objektas taip pat yra " +"spalvotas.\n" "XY dydžio kompensavimas negali būti derinamas su spalviniu dažymu." msgid "" -"An object has enabled XY Size compensation which will not be used because it is also fuzzy skin painted.\n" +"An object has enabled XY Size compensation which will not be used because it " +"is also fuzzy skin painted.\n" "XY Size compensation cannot be combined with fuzzy skin painting." msgstr "" -"Objektui įjungtas XY dydžio kompensavimas, kuris nebus naudojamas, nes jis taip pat naudoja grublėtą paviršių.\n" -"XY dydžio kompensavimas negali būti derinamas su nelygiu paviršiumi." +"Objektui įjungtas XY dydžio kompensavimas nebus naudojamas, nes parinkta ir " +"grublėto paviršiaus (fuzzy skin) sritis. \n" +"XY dydžio kompensavimo negalima derinti su grublėto paviršiaus (fuzzy skin) " +"dažymu." msgid "Object name" msgstr "Objekto pavadinimas" @@ -16458,18 +20944,22 @@ msgstr "Nepavyko įkelti modelio failo." msgid "Meshing of a model file failed or no valid shape." msgstr "" +"Nepavyko suformuoti modelio failo poligonažo arba jame nėra tinkamos " +"geometrijos." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The supplied file couldn't be read because it's empty." +msgid "The supplied file couldn't be read because it's empty" msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Unknown file format: input file must have .stl, .obj, or .amf(.xml) extension." -msgstr "Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, .amf(.xml)." +msgid "" +"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." +msgstr "" +"Nežinomas failo formatas. Įvesties failo plėtinys turi " +"būti .stl, .obj, .amf(.xml)." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Unknown file format: input file must have .3mf or .zip.amf extension." -msgstr "Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf arba .zip.amf." +msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." +msgstr "" +"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf " +"arba .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: nepavyko apdoroti" @@ -16490,7 +20980,7 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "Šio OBJ failo nepavyko perskaityti, nes jis tuščias." msgid "Max Volumetric Speed Calibration" -msgstr "Didžiausio tūrio greičio kalibravimas" +msgstr "Didžiausio tūrinio greičio kalibravimas" msgid "Manage Result" msgstr "Tvarkyti rezultatus" @@ -16505,10 +20995,10 @@ msgid "Auto-Calibration" msgstr "Automatinis kalibravimas" msgid "We would use Lidar to read the calibration result" -msgstr "Kalibravimo rezultatams nuskaityti naudotume lidarą" +msgstr "Kalibravimo rezultatams nuskaityti naudotume LiDAR jutiklį (Lidar)" msgid "Prev" -msgstr "Prieš" +msgstr "Atgal" msgid "Recalibration" msgstr "Perkalibruoti" @@ -16519,12 +21009,14 @@ msgstr "Kalibruoti" msgid "Finish" msgstr "Baigti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "How can I use calibration results?" -msgstr "Kaip naudoti kalibravimo rezultatus?" +msgid "How to use calibration result?" +msgstr "Kaip naudoti kalibravimo rezultatą?" -msgid "You could change the Flow Dynamics Calibration Factor in material editing" -msgstr "Srauto dinamikos kalibravimo koeficientą galite pakeisti redaguodami medžiagą" +msgid "" +"You could change the Flow Dynamics Calibration Factor in material editing" +msgstr "" +"Srauto dinamikos kalibravimo koeficientą (Flow Dynamics Calibration Factor) " +"galite pakeisti redaguodami medžiagą" msgid "" "The current firmware version of the printer does not support calibration.\n" @@ -16537,7 +21029,7 @@ msgid "Calibration not supported" msgstr "Kalibravimas nepalaikomas" msgid "Error desc" -msgstr "Klaidų aprašas" +msgstr "Klaidos aprašymas" msgid "Extra info" msgstr "Papildoma informacija" @@ -16560,30 +21052,33 @@ msgstr "" "Pradinė reikšmė: >= %.1f\n" "Galutinė reikšmė: <= %.1f\n" "Galutinė reikšmė: > Pradinė reikšmė\n" -"Reikšmės žingsnis: >= %.3f)" +"Reikšmės žingsnis: >= %.3f" msgid "The name cannot be empty." msgstr "Pavadinimas negali būti tuščias." #, c-format, boost-format msgid "The selected preset: %s was not found." -msgstr "Pasirinktas profilis: %s nerastas." +msgstr "Pasirinktas profilis %s nerastas." msgid "The name cannot be the same as the system preset name." -msgstr "Pavadinimas negali sutapti su nustatytu sistemos pavadinimu." +msgstr "Pavadinimas negali sutapti su sistemos profilio pavadinimu." msgid "The name is the same as another existing preset name" -msgstr "Pavadinimas sutampa su kito nustatymo pavadinimu" +msgstr "Pavadinimas sutampa su kito jau esamo profilio pavadinimu" msgid "create new preset failed." msgstr "sukurti naują profilį nepavyko." #, c-format, boost-format msgid "Could not find parameter: %s." -msgstr "" +msgstr "Nepavyko rasti parametro: %s." -msgid "Are you sure to cancel the current calibration and return to the home page?" -msgstr "Ar tikrai norite atšaukti dabartinį kalibravimą ir grįžti į pagrindinį puslapį?" +msgid "" +"Are you sure to cancel the current calibration and return to the home page?" +msgstr "" +"Ar tikrai norite atšaukti dabartinį kalibravimą ir grįžti į pagrindinį " +"puslapį?" msgid "No Printer Connected!" msgstr "Nėra prijungto spausdintuvo!" @@ -16597,33 +21092,54 @@ msgstr "Pasirinkite giją, kurią norite kalibruoti." msgid "The input value size must be 3." msgstr "Įvesties reikšmės dydis turi būti 3." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"This machine type can only hold 16 historical results per nozzle. You can delete the existing historical results and then start calibration. Or you can continue the calibration, but you cannot create new calibration historical results.\n" +"This machine type can only hold 16 history results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" -"Šio tipo mašinoje galima laikyti tik 16 istorijos rezultatų iš vieno purkštuko. Galite ištrinti turimus ankstesnius rezultatus ir tada pradėti kalibravimą. Arba galite tęsti kalibravimą, tačiau negalite sukurti naujų kalibravimo istorijos rezultatų.\n" +"Šio tipo mašinoje galima laikyti tik 16 istorijos rezultatų iš vieno " +"purkštuko. Galite ištrinti turimus ankstesnius rezultatus ir tada pradėti " +"kalibravimą. Arba galite tęsti kalibravimą, tačiau negalite sukurti naujų " +"kalibravimo istorijos rezultatų.\n" "Ar vis dar norite tęsti kalibravimą?" #, c-format, boost-format -msgid "Only one of the results with the same name: %s will be saved. Are you sure you want to override the other results?" +msgid "" +"Only one of the results with the same name: %s will be saved. Are you sure " +"you want to override the other results?" msgstr "" - -# TODO: Review, changed by lang refactor. PR 14254 -#, c-format, boost-format -msgid "There is already a previous calibration result with the same name: %s. Only one result with a name is saved. Are you sure you want to overwrite the previous result?" -msgstr "Jau yra ankstesnio kalibravimo rezultatas tokiu pačiu pavadinimu: %s. Išsaugomas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai norite pakeisti ankstesnį rezultatą?" +"Bus išsaugotas tik vienas iš rezultatų tuo pačiu pavadinimu: %s. Ar tikrai " +"norite perrašyti kitus rezultatus?" #, c-format, boost-format msgid "" -"Within the same extruder, the name(%s) must be unique when the filament type, nozzle diameter, and nozzle flow are the same.\n" +"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 override the historical result?" +msgstr "" +"Jau yra ankstesnio kalibravimo rezultatas tokiu pačiu pavadinimu: %s. " +"Išsaugomas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai norite " +"pakeisti ankstesnį rezultatą?" + +#, c-format, boost-format +msgid "" +"Within the same extruder, the name(%s) must be unique when the filament " +"type, nozzle diameter, and nozzle flow are the same.\n" "Are you sure you want to override the historical result?" msgstr "" +"Tam pačiam ekstruderiui pavadinimas (%s) turi būti unikalus, kai gijos " +"tipas, purkštuko skersmuo ir purkštuko srautas sutampa.\n" +"Ar tikrai norite perrašyti ankstesnį rezultatą?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "This machine type can only hold %d historical results per nozzle. This result will not be saved." -msgstr "Šis įrenginio tipas gali talpinti tik %d istorijos rezultatų iš vieno purkštuko. Šis rezultatas nebus išsaugotas." +msgid "" +"This machine type can only hold %d history results per nozzle. This result " +"will not be saved." +msgstr "" +"Šis įrenginio tipas gali talpinti tik %d istorijos rezultatų iš vieno " +"purkštuko. Šis rezultatas nebus išsaugotas." msgid "Connecting to printer..." msgstr "Jungiamasi prie spausdintuvo..." @@ -16641,24 +21157,31 @@ msgid "Please select at least one filament for calibration" msgstr "Kalibravimui pasirinkite bent vieną giją" msgid "Flow rate calibration result has been saved to preset." -msgstr "Srauto kalibravimo rezultatas įrašytas į profilį." +msgstr "Srauto greičio kalibravimo rezultatas įrašytas į profilį." msgid "Max volumetric speed calibration result has been saved to preset." -msgstr "Maksimalaus tūrio greičio kalibravimo rezultatas įrašytas į profilį." +msgstr "Maksimalaus tūrinio greičio kalibravimo rezultatas įrašytas į profilį." msgid "When do you need Flow Dynamics Calibration" msgstr "Kada jums reikia srauto dinamikos kalibravimo" msgid "" -"We now have added the auto-calibration for different filaments, which is fully automated and the result will be saved into the printer for future use. You only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the filament is damp;\n" +"We now have added the auto-calibration for different filaments, which is " +"fully automated and the result will be saved into the printer for future " +"use. You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the " +"filament is damp;\n" "2. If the nozzle is worn out or replaced with a new one;\n" -"3. If the max volumetric speed or print temperature is changed in the filament setting." +"3. If the max volumetric speed or print temperature is changed in the " +"filament setting." msgstr "" -"Dabar pridėjome automatinį kalibravimą skirtingoms gijoms, kuris yra visiškai automatizuotas, o rezultatas bus išsaugotas spausdintuve ateities naudojimui. Kalibravimą reikia atlikti tik šiais ribotais atvejais:\n" +"Dabar pridėjome automatinį kalibravimą skirtingoms gijoms, kuris yra " +"visiškai automatizuotas, o rezultatas bus išsaugotas spausdintuve ateities " +"naudojimui. Kalibravimą reikia atlikti tik šiais ribotais atvejais:\n" "1. Jei naudojate naują skirtingos markės/modelio giją arba gija yra drėgna;\n" "2. Jei purkštukas yra susidėvėjęs arba pakeistas nauju;\n" -"3. Jei gijos nustatymuose pakeistas maksimalus tūrinis greitis arba spausdinimo temperatūra." +"3. Jei gijos nustatymuose pakeistas maksimalus tūrinis greitis arba " +"spausdinimo temperatūra." msgid "About this calibration" msgstr "Apie šį kalibravimą" @@ -16666,79 +21189,163 @@ msgstr "Apie šį kalibravimą" 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" +"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 that there are a few cases that can make the calibration results unreliable, such as insufficient adhesion on the build plate. Improving adhesion can be achieved by washing the build plate or applying glue. For more information on this topic, please refer to our Wiki.\n" +"Please note that there are a few cases that can make the calibration results " +"unreliable, such as insufficient adhesion on the build plate. Improving " +"adhesion can be achieved by washing the build plate or applying glue. For " +"more information on this topic, please refer to 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." +"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 "" "Išsamią informaciją apie srauto dinamikos kalibravimą rasite mūsų wiki.\n" "\n" -"Paprastai kalibravimas nebūtinas. Kai pradedate spausdinti vienos spalvos / medžiagos spaudinį, spausdinimo pradžios meniu pažymėjus parinktį \"Srauto dinamikos kalibravimas\", spausdintuvas vadovausis senuoju būdu ir prieš spausdinimą sukalibruos giją; kai pradedate spausdinti kelių spalvų / medžiagos spaudinį, spausdintuvas kiekvieno gijos perjungimo metu naudos numatytąjį gijos kompensavimo parametrą, kuris daugeliu atvejų duos gerą rezultatą.\n" +"Paprastai kalibravimas nebūtinas. Kai pradedate spausdinti vienos spalvos / " +"medžiagos spaudinį, spausdinimo pradžios meniu pažymėjus parinktį \"Srauto " +"dinamikos kalibravimas\", spausdintuvas vadovausis senuoju būdu ir prieš " +"spausdinimą sukalibruos giją; kai pradedate spausdinti kelių spalvų / " +"medžiagos spaudinį, spausdintuvas kiekvieno gijos perjungimo metu naudos " +"numatytąjį gijos kompensavimo parametrą, kuris daugeliu atvejų duos gerą " +"rezultatą.\n" "\n" -"Atkreipkite dėmesį, kad yra keletas atvejų, dėl kurių kalibravimo rezultatai gali būti nepatikimi, pavyzdžiui, nepakankamas sukibimas su pagrindo plokšte. Pagerinti sukibimą galima nuplaunant pagrindo plokštę arba užtepant klijų. Daugiau informacijos šia tema rasite mūsų \"Wiki\".\n" +"Atkreipkite dėmesį, kad yra keletas atvejų, dėl kurių kalibravimo rezultatai " +"gali būti nepatikimi, pavyzdžiui, nepakankamas sukibimas su pagrindo " +"plokšte. Pagerinti sukibimą galima nuplaunant pagrindo plokštę arba užtepant " +"klijų. Daugiau informacijos šia tema rasite mūsų \"Wiki\".\n" "\n" -"Mūsų bandyme kalibravimo rezultatai turi apie 10 proc. svyravimų, todėl kiekvieno kalibravimo rezultatai gali būti ne visiškai vienodi. Mes vis dar tiriame pagrindinę priežastį, kad galėtume atlikti patobulinimus su naujais atnaujinimais." +"Mūsų bandyme kalibravimo rezultatai turi apie 10 proc. svyravimų, todėl " +"kiekvieno kalibravimo rezultatai gali būti ne visiškai vienodi. Mes vis dar " +"tiriame pagrindinę priežastį, kad galėtume atlikti patobulinimus su naujais " +"atnaujinimais." msgid "When to use Flow Rate Calibration" msgstr "Kada naudoti srauto greičio kalibravimą" msgid "" -"After using Flow Dynamics Calibration, there might still be some extrusion issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or zits, or the layers seem thicker than expected and not uniform\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the top layer of the model, even when printing slowly\n" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly\n" "3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as they should be" +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be" msgstr "" -"Panaudojus srauto dinamikos kalibravimą, vis dar gali kilti problemų dėl ekstruzijos, pvz:\n" -"1. Per didelis išspaudimas: ant spausdinamo objekto atsiranda medžiagos perteklius, susidaro dėmės ar taškeliai arba sluoksniai atrodo storesni nei tikėtasi ir netolygūs.\n" -"2. Nepakankamas išspaudimas: Labai ploni sluoksniai, silpnas užpildo stiprumas arba viršutiniame modelio sluoksnyje esantys tarpai, net kai spausdinama lėtai.\n" -"3. Prasta paviršiaus kokybė: Spausdinių paviršius atrodo šiurkštus arba nelygus.\n" -"4. Silpnas struktūrinis vientisumas: Spaudiniai lengvai lūžta arba neatrodo tokie tvirti, kokie turėtų būti" +"Panaudojus srauto dinamikos kalibravimą, vis dar gali kilti išspaudimo " +"(extrusion) problemų, pvz.:\n" +"1. Per didelis išspaudimas (extrusion): ant spausdinamo objekto atsiranda " +"medžiagos perteklius, susidaro dėmės ar taškeliai arba sluoksniai atrodo " +"storesni nei tikėtasi ir netolygūs.\n" +"2. Nepakankamas išspaudimas (extrusion): labai ploni sluoksniai, silpnas " +"užpildo stiprumas arba viršutiniame modelio sluoksnyje esantys tarpai, net " +"kai spausdinama lėtai.\n" +"3. Prasta paviršiaus kokybė: spausdinių paviršius atrodo šiurkštus arba " +"nelygus.\n" +"4. Silpnas struktūrinis vientisumas: spaudiniai lengvai lūžta arba neatrodo " +"tokie tvirti, kokie turėtų būti." -msgid "In addition, Flow Rate Calibration is crucial for foaming materials like LW-PLA used in RC planes. These materials expand greatly when heated, and calibration provides a useful reference flow rate." -msgstr "Be to, srauto greičio kalibravimas labai svarbus putojančioms medžiagoms, pavyzdžiui, LW-PLA, naudojamoms RC lėktuvų gamyboje. Šios medžiagos labai išsiplečia, kai yra kaitinamos, o kalibravimas suteikia naudingą etaloninį srauto greitį." - -msgid "Flow Rate Calibration measures the ratio of expected to actual extrusion volumes. The default setting works well in Bambu Lab printers and official filaments as they were pre-calibrated and fine-tuned. For a regular filament, you usually won't need to perform a Flow Rate Calibration unless you still see the listed defects after you have done other calibrations. For more details, please check out the wiki article." -msgstr "Srauto greičio kalibravimas matuoja numatyto ir faktinio išspaudimo tūrio santykį. Numatytasis nustatymas gerai veikia \"Bambu Lab\" spausdintuvuose ir su oficialiomis gijomis, nes jos iš anksto sukalibruotos ir tiksliai sureguliuotos. Įprastai naudojamoms gijoms paprastai nereikia atlikti srauto greičio kalibravimo, nebent atlikus kitus kalibravimus vis dar matote išvardytus defektus. Išsamesnės informacijos rasite wiki straipsnyje." - -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, directly measuring the calibration patterns. However, please be advised that the efficacy and accuracy of this method may be compromised with specific types of materials. Particularly, filaments that are transparent or semi-transparent, have sparkles, or have a highly-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n" -"\n" -"The calibration results may vary between each calibration or filament. We are still improving the accuracy and compatibility of this calibration through firmware updates over time.\n" -"\n" -"Caution: Flow Rate Calibration is an advanced process, to be attempted only by those who fully understand its purpose and implications. Incorrect usage can lead to sub-par prints or printer damage. Please make sure to carefully read and understand the process before doing it." +"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" +"PLA used in RC planes. These materials expand greatly when heated, and " +"calibration provides a useful reference flow rate." msgstr "" -"Automatinis srauto greičio kalibravimas naudoja \"Bambu Lab\" mikrolidarų technologiją, tiesiogiai matuojančią kalibravimo modelius. Tačiau atkreipkite dėmesį, kad šio metodo veiksmingumas ir tikslumas gali sumažėti naudojant tam tikrų tipų medžiagas. Ypač skaidrios ar pusiau skaidrios, blizgančios arba turinčios labai atspindinčią apdailą gijos gali būti netinkamos šiam kalibravimui ir gali duoti prastesnius nei pageidaujami rezultatus.\n" +"Be to, srauto greičio kalibravimas labai svarbus putojančioms medžiagoms, " +"pavyzdžiui, LW-PLA, naudojamoms RC lėktuvų gamyboje. Šios medžiagos labai " +"išsiplečia, kai yra kaitinamos, o kalibravimas suteikia naudingą etaloninį " +"srauto greitį." + +msgid "" +"Flow Rate Calibration measures the ratio of expected to actual extrusion " +"volumes. The default setting works well in Bambu Lab printers and official " +"filaments as they were pre-calibrated and fine-tuned. For a regular " +"filament, you usually won't need to perform a Flow Rate Calibration unless " +"you still see the listed defects after you have done other calibrations. For " +"more details, please check out the wiki article." +msgstr "" +"Srauto greičio kalibravimas matuoja numatyto ir faktinio išspaudimo " +"(extrusion) tūrio santykį. Numatytasis nustatymas gerai veikia „Bambu Lab“ " +"spausdintuvuose ir su oficialiomis gijomis, nes jos iš anksto sukalibruotos " +"ir tiksliai sureguliuotos. Įprastai naudojamoms gijoms paprastai nereikia " +"atlikti srauto greičio kalibravimo, nebent atlikus kitus kalibravimus vis " +"dar matote išvardytus defektus. Išsamesnės informacijos rasite „Wiki“ " +"straipsnyje." + +msgid "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" "\n" -"Kalibravimo rezultatai gali skirtis priklausomai nuo kalibravimo ar gijų. Vykdydami programinės aparatinės įrangos atnaujinimus laikui bėgant vis dar tobuliname šio kalibravimo tikslumą ir suderinamumą.\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" "\n" -"Įspėjimas: Srauto greičio kalibravimas yra sudėtingas procesas, kurį gali atlikti tik tie, kurie visiškai supranta jo paskirtį ir pasekmes. Neteisingas naudojimas gali lemti nekokybiškus spaudinius arba spausdintuvo sugadinimą. Prieš atlikdami šį procesą būtinai atidžiai susipažinkite ir supraskite jo eigą." +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before doing it." +msgstr "" +"Automatinis srauto greičio kalibravimas naudoja \"Bambu Lab\" mikrolidarų " +"technologiją, tiesiogiai matuojančią kalibravimo modelius. Tačiau " +"atkreipkite dėmesį, kad šio metodo veiksmingumas ir tikslumas gali sumažėti " +"naudojant tam tikrų tipų medžiagas. Ypač skaidrios ar pusiau skaidrios, " +"blizgančios arba turinčios labai atspindinčią apdailą gijos gali būti " +"netinkamos šiam kalibravimui ir gali duoti prastesnius nei pageidaujami " +"rezultatus.\n" +"\n" +"Kalibravimo rezultatai gali skirtis priklausomai nuo kalibravimo ar gijų. " +"Vykdydami programinės aparatinės įrangos atnaujinimus laikui bėgant vis dar " +"tobuliname šio kalibravimo tikslumą ir suderinamumą.\n" +"\n" +"Įspėjimas: Srauto greičio kalibravimas yra sudėtingas procesas, kurį gali " +"atlikti tik tie, kurie visiškai supranta jo paskirtį ir pasekmes. " +"Neteisingas naudojimas gali lemti nekokybiškus spaudinius arba spausdintuvo " +"sugadinimą. Prieš atlikdami šį procesą būtinai atidžiai susipažinkite ir " +"supraskite jo eigą." msgid "When you need Max Volumetric Speed Calibration" -msgstr "Kada reikia maksimalaus tūrio greičio kalibravimo" +msgstr "Kada reikia maksimalaus tūrinio greičio kalibravimo" msgid "Over-extrusion or under extrusion" -msgstr "Per didelis arba per mažas išspaudimas" +msgstr "Per didelis arba nepakankamas išspaudimas (extrusion)" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "Maksimalaus tūrio greičio kalibravimas rekomenduojamas, kai spausdinate su:" +msgstr "" +"Maksimalaus tūrinio greičio kalibravimas rekomenduojamas, kai spausdinate su:" msgid "material with significant thermal shrinkage/expansion, such as..." msgstr "medžiaga, kuri smarkiai susitraukia ir (arba) plečiasi, pvz.,..." msgid "materials with inaccurate filament diameter" -msgstr "medžiagos su netiksliu gijų skersmeniu" +msgstr "medžiagos su netiksliu gijos skersmeniu" msgid "We found the best Flow Dynamics Calibration Factor" msgstr "Radome geriausią srauto dinamikos kalibravimo koeficientą" -msgid "Part of the calibration failed! You may clean the plate and retry. The failed test result would be dropped." -msgstr "Dalis kalibravimo nepavyko! Galite nuvalyti pagrindą ir bandyti dar kartą. Nepavykusio bandymo rezultatas bus panaikintas." +msgid "" +"Part of the calibration failed! You may clean the plate and retry. The " +"failed test result would be dropped." +msgstr "" +"Dalis kalibravimo nepavyko! Galite nuvalyti pagrindą ir bandyti dar kartą. " +"Nepavykusio bandymo rezultatas bus panaikintas." -msgid "*We recommend you to add brand, materia, type, and even humidity level in the Name" -msgstr "*Į pavadinimą rekomenduojame įrašyti prekės ženklą, medžiagą, tipą ir net drėgmės lygį" +msgid "" +"*We recommend you to add brand, materia, type, and even humidity level in " +"the Name" +msgstr "" +"*Į pavadinimą rekomenduojame įrašyti prekės ženklą, medžiagą, tipą ir net " +"drėgmės lygį" msgid "Please enter the name you want to save to printer." msgstr "Įveskite pavadinimą, kurį norite įrašyti į spausdintuvą." @@ -16749,24 +21356,23 @@ msgstr "Pavadinimas negali būti ilgesnis nei 40 simbolių." msgid "Please find the best line on your plate" msgstr "Raskite geriausią liniją ant pagrindo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please find the corner with the perfect degree of extrusion" -msgstr "Raskite kampą su tobulu išspaudimo laipsniu" +msgstr "Raskite kampą su tobulu išspaudimo (extrusion) laipsniu" msgid "Input Value" msgstr "Įvesties reikšmė" msgid "Save to Filament Preset" -msgstr "Išsaugiti gijos profilyje" +msgstr "Išsaugoti gijos profilyje" msgid "Record Factor" -msgstr "Įrašo veiksnys" +msgstr "Užfiksuoti koeficientą" msgid "We found the best flow ratio for you" msgstr "Radome jums geriausią srauto santykį" msgid "Flow Ratio" -msgstr "Srautas" +msgstr "Srauto santykis" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" msgstr "Įveskite galiojančią reikšmę (0,0 < srauto santykis < 2,0)" @@ -16775,19 +21381,20 @@ msgid "Please enter the name of the preset you want to save." msgstr "Įveskite norimo išsaugoti profilio pavadinimą." msgid "Calibration1" -msgstr "Kalibravimas1" +msgstr "1 kalibravimas" msgid "Calibration2" -msgstr "Kalibravimas2" +msgstr "2 kalibravimas" msgid "Please find the best object on your plate" msgstr "Raskite geriausią objektą ant pagrindo" msgid "Fill in the value above the block with smoothest top surface" -msgstr "Užpildykite reikšmę virš bloko, kurio viršutinis paviršius yra lygiausias" +msgstr "" +"Užpildykite reikšmę virš bloko, kurio viršutinis paviršius yra lygiausias" msgid "Skip Calibration2" -msgstr "Praleisti kalibravimą2" +msgstr "Praleisti 2 kalibravimą" #, c-format, boost-format msgid "flow ratio : %s " @@ -16803,7 +21410,7 @@ msgid "Calibration Type" msgstr "Kalibravimo tipas" msgid "Complete Calibration" -msgstr "Pilnas kalibravimas" +msgstr "Išsamus kalibravimas" msgid "Fine Calibration based on flow ratio" msgstr "Tikslusis kalibravimas pagal srauto santykį" @@ -16811,8 +21418,12 @@ msgstr "Tikslusis kalibravimas pagal srauto santykį" msgid "Title" msgstr "Pavadinimas" -msgid "A test model will be printed. Please clear the build plate and place it back to the hot bed before calibration." -msgstr "Bus atspausdintas bandomasis modelis. Prieš kalibruodami nuvalykite pagrindą ir padėkite ją atgal į kaitinimo vietą." +msgid "" +"A test model will be printed. Please clear the build plate and place it back " +"to the hot bed before calibration." +msgstr "" +"Bus atspausdintas bandomasis modelis. Prieš kalibruodami nuvalykite pagrindą " +"ir padėkite ją atgal į kaitinimo vietą." msgid "Printing Parameters" msgstr "Spausdinimo parametrai" @@ -16821,26 +21432,33 @@ msgid "- ℃" msgstr "- ℃" msgid "Synchronize nozzle and AMS information" -msgstr "" +msgstr "Sinchronizuoti purkštuko ir AMS informaciją" msgid "Please connect the printer first before synchronizing." -msgstr "" +msgstr "Prieš sinchronizuodami, pirmiausia prijunkite spausdintuvą." #, c-format, boost-format -msgid "Printer %s nozzle information has not been set. Please configure it before proceeding with the calibration." +msgid "" +"Printer %s nozzle information has not been set. Please configure it before " +"proceeding with the calibration." msgstr "" +"Spausdintuvo %s purkštuko informacija nenustatyta. Konfigūruokite ją prieš " +"tęsdami kalibravimą." msgid "AMS and nozzle information are synced" -msgstr "" +msgstr "AMS ir purkštuko informacija sinchronizuota" msgid "Nozzle Flow" -msgstr "" +msgstr "Purkštuko srautas" msgid "Nozzle Info" -msgstr "" +msgstr "Purkštuko informacija" + +msgid "Plate Type" +msgstr "Plokštės tipas" msgid "Filament position" -msgstr "gijos padėtis" +msgstr "Gijos padėtis" msgid "Filament For Calibration" msgstr "Gija kalibravimui" @@ -16852,7 +21470,8 @@ msgid "" msgstr "" "Patarimai dėl kalibravimo medžiagos: \n" " - Medžiagos, kurios gali turėti tą pačią karšto pagrindo temperatūrą\n" -" - Skirtingas gijų prekės ženklas ir šeima (prekės ženklas = Bambu, šeima = Basic, Matte)" +" - Skirtingas gijų prekės ženklas ir šeima (prekės ženklas = Bambu, šeima = " +"Basic, Matte)" msgid "Pattern" msgstr "Raštas" @@ -16867,14 +21486,26 @@ msgstr "%s nesuderinama su %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." msgstr "TPU nepalaiko srauto dinamikos automatinio kalibravimo." -msgid "Selected nozzle temperatures are incompatible. For multi-material printing, each filament's nozzle temperature must be within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur." +msgid "" +"Selected nozzle temperatures are incompatible. For multi-material printing, " +"each filament's nozzle temperature must be within the recommended nozzle " +"temperature range of the other filaments. Otherwise, nozzle clogging or " +"printer damage may occur." msgstr "" +"Pasirinktos purkštuko temperatūros yra nesuderinamos. Spausdinant iš kelių " +"medžiagų, kiekvienos gijos purkštuko temperatūra turi patekti į kitų gijų " +"rekomenduojamą purkštuko temperatūros diapazoną. Priešingu atveju gali " +"užsikimšti purkštukas arba sugesti spausdintuvas." msgid "Sync AMS and nozzle information" -msgstr "" +msgstr "Sinchronizuoti AMS ir purkštuko informaciją" -msgid "Calibration only supports cases where the left and right nozzle diameters are identical." +msgid "" +"Calibration only supports cases where the left and right nozzle diameters " +"are identical." msgstr "" +"Kalibravimas palaikomas tik tada, kai kairiojo ir dešiniojo purkštukų " +"skersmenys yra vienodi." msgid "From k Value" msgstr "Nuo k reikšmės" @@ -16909,24 +21540,30 @@ msgstr "Nėra ankstesnių rezultatų" msgid "Success to get history result" msgstr "Sėkmingai gauti senesnį rezultatą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Refreshing the previous Flow Dynamics Calibration records" +msgid "Refreshing the historical Flow Dynamics Calibration records" msgstr "Senesnių srauto dinamikos kalibravimo įrašų atnaujinimas" msgid "Action" msgstr "Veiksmas" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format -msgid "This machine type can only hold %d historical results per nozzle." -msgstr "Šis įrenginio tipas gali talpinti tik %d ankstesnių rezultatų iš vieno purkštuko." +msgid "This machine type can only hold %d history results per nozzle." +msgstr "" +"Šis įrenginio tipas gali talpinti tik %d ankstesnių rezultatų iš vieno " +"purkštuko." msgid "Edit Flow Dynamics Calibration" msgstr "Redaguoti srauto dinamikos kalibravimą" #, c-format, boost-format -msgid "Within the same extruder, the name '%s' must be unique when the filament type, nozzle diameter, and nozzle flow are identical. Please choose a different name." +msgid "" +"Within the same extruder, the name '%s' must be unique when the filament " +"type, nozzle diameter, and nozzle flow are identical. Please choose a " +"different name." msgstr "" +"Tame pačiame ekstruderyje pavadinimas „%s“ turi būti unikalus, kai gijos " +"tipas, purkštuko skersmuo ir purkštuko srautas yra identiški. Pasirinkite " +"kitą pavadinimą." msgid "New Flow Dynamic Calibration" msgstr "Naujas srauto dinaminis kalibravimas" @@ -16935,10 +21572,10 @@ msgid "The filament must be selected." msgstr "Turi būti pasirinkta gija." msgid "The extruder must be selected." -msgstr "" +msgstr "Turi būti pasirinktas ekstruderis." msgid "The nozzle must be selected." -msgstr "" +msgstr "Turi būti pasirinktas purkštukas." msgid "Network lookup" msgstr "Tinklo paieška" @@ -16947,7 +21584,7 @@ msgid "Address" msgstr "Adresas" msgid "Hostname" -msgstr "Hosto pavadinimas" +msgstr "Mazgo pavadinimas (hostname)" msgid "Service name" msgstr "Paslaugos pavadinimas" @@ -16969,11 +21606,11 @@ msgid "" "There are several IP addresses resolving to hostname %1%.\n" "Please select one that should be used." msgstr "" -"Yra keli IP adresai, kuriais galima nustatyti prievado vardą %1%.\n" -" Pasirinkite vieną, kuris turėtų būti naudojamas." +"Yra keli IP adresai, susieti su mazgo pavadinimu %1%.\n" +"Pasirinkite tą, kurį norite naudoti." msgid "PA Calibration" -msgstr "PA kalibravimas" +msgstr "PA kalibravimas (Pressure Advance)" msgid "Extruder type" msgstr "Ekstruderio tipas" @@ -16982,13 +21619,13 @@ msgid "DDE" msgstr "DDE" msgid "PA Tower" -msgstr "PA bokštas" +msgstr "PA bokštelis" msgid "PA Line" -msgstr "PA linija" +msgstr "PA linija (Pressure Advance)" msgid "PA Pattern" -msgstr "PA raštas" +msgstr "PA raštas (Pressure Advance)" msgid "Start PA: " msgstr "Pradėti PA: " @@ -17020,15 +21657,17 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001" msgstr "" -"Įveskite galiojančias reikšmes:\n" -"Pradžios PA: >= 0,0\n" +"Įveskite tinkamas reikšmes:\n" +"Pradžios PA: >= 0.0\n" "Pabaigos PA: > Pradžios PA\n" -"PA žingsnis: >= 0.001)" +"PA žingsnis: >= 0.001" msgid "" "Acceleration values must be greater than speed values.\n" "Please verify the inputs." msgstr "" +"Pagreičio reikšmės turi būti didesnės už greičio reikšmes.\n" +"Patikrinkite įvesties duomenis." msgid "Temperature calibration" msgstr "Temperatūros kalibravimas" @@ -17072,9 +21711,13 @@ msgid "" "End temp: >= 155\n" "Start temp >= End temp + 5" msgstr "" +"Įveskite tinkamas reikšmes:\n" +"Pradžios temp.: <= 500\n" +"Pabaigos temp.: >= 155\n" +"Pradžios temp. >= Pabaigos temp. + 5" msgid "Max volumetric speed test" -msgstr "Didžiausio tūrio greičio bandymas" +msgstr "Maksimalaus tūrinio greičio bandymas" msgid "Start volumetric speed: " msgstr "Pradinis tūrinis greitis: " @@ -17091,7 +21734,7 @@ msgstr "" "Įveskite tinkamas reikšmes:\n" "pradinis > 0\n" "žingsnis >= 0\n" -"galinis > pradinis + žingsnis)" +"galinis > pradinis + žingsnis" msgid "VFA test" msgstr "VFA testas" @@ -17111,7 +21754,7 @@ msgstr "" "Įveskite tinkamas reikšmes:\n" "pradinis > 10\n" "žingsnis >= 0\n" -"galinis > pradinis + žingsnis)" +"galinis > pradinis + žingsnis" msgid "Start retraction length: " msgstr "Pradinis įtraukimo ilgis: " @@ -17120,35 +21763,43 @@ msgid "End retraction length: " msgstr "Galinis įtraukimo ilgis: " msgid "Input shaping Frequency test" -msgstr "Įvesties formavimo dažnio testas" +msgstr "Įvesties formavimo (input shaping) dažnio testas" msgid "Test model" msgstr "Bandomasis modelis" msgid "Ringing Tower" -msgstr "Bangavimo bokštas" +msgstr "Bangavimo bokštelis" msgid "Fast Tower" -msgstr "Greitasis bokštas" +msgstr "Greitasis bokštelis" -msgid "Please ensure the selected type is compatible with your firmware version." +msgid "" +"Please ensure the selected type is compatible with your firmware version." msgstr "" +"Įsitikinkite, kad pasirinktas tipas yra suderinamas su jūsų programinės " +"aparatinės įrangos versija." msgid "" "Marlin version => 2.1.2\n" "Fixed-Time motion not yet implemented." msgstr "" +"Marlin versija => 2.1.2 (Marlin)\n" +"Fiksuoto laiko judėjimas (Fixed-Time motion) dar neįdiegtas." msgid "Klipper version => 0.9.0" -msgstr "" +msgstr "Klipper versija => 0.9.0 (Klipper)" msgid "" "RepRap firmware version => 3.4.0\n" "Check your firmware documentation for supported shaper types." msgstr "" +"RepRap programinės aparatinės įrangos versija => 3.4.0\n" +"Palaikomus formavimo (shaper) tipus rasite savo programinės aparatinės " +"įrangos dokumentacijoje." msgid "Frequency (Start / End): " -msgstr "" +msgstr "Dažnis (Pradžia / Pabaiga): " msgid "Start / End" msgstr "Pradžia / Pabaiga" @@ -17161,6 +21812,8 @@ msgstr "Hz" msgid "RepRap firmware uses the same frequency range for both axes." msgstr "" +"RepRap programinė aparatinė įranga naudoja tą patį dažnių diapazoną abiem " +"ašims." msgid "Damp: " msgstr "Slopinimas: " @@ -17169,6 +21822,8 @@ msgid "" "Recommended: Set Damp to 0.\n" "This will use the printer's default or saved value." msgstr "" +"Rekomenduojama: nustatykite slopinimą (Damp) į 0.\n" +"Bus naudojama numatytoji arba išsaugota spausdintuvo reikšmė." msgid "" "Please input valid values:\n" @@ -17178,22 +21833,24 @@ msgstr "" "(0 < FreqStart < FreqEnd < 500)" msgid "Please input a valid damping factor (0 < Damping/zeta factor <= 1)" -msgstr "Įveskite tinkamą slopinimo koeficientą (0 < slopinimas/zeta koeficientas <= 1)" +msgstr "" +"Įveskite tinkamą slopinimo koeficientą (0 < slopinimas/zeta koeficientas <= " +"1)" msgid "Input shaping Damp test" -msgstr "Įvesties formavimas slopinimo bandymas" +msgstr "Įvesties formavimo (input shaping) slopinimo testas" msgid "Check firmware compatibility." -msgstr "" +msgstr "Patikrinkite programinės aparatinės įrangos suderinamumą." msgid "Frequency: " -msgstr "" +msgstr "Dažnis: " msgid "Damp" msgstr "Slopinimas" msgid "RepRap firmware uses the same frequency for both axes." -msgstr "" +msgstr "RepRap programinė aparatinė įranga naudoja tą patį dažnį abiem ašims." msgid "Note: Use previously calculated frequencies." msgstr "Pastaba: Naudokite anksčiau apskaičiuotus dažnius." @@ -17205,81 +21862,98 @@ msgstr "" "Įveskite tinkamas reikšmes:\n" "(0 < Freq < 500)" -msgid "Please input a valid damping factor (0 <= DampingStart < DampingEnd <= 1)" -msgstr "Įveskite galiojantį slopinimo koeficientą (0 <= Slopinimo pradžia < Slopinimo pabaiga <= 1)" +msgid "" +"Please input a valid damping factor (0 <= DampingStart < DampingEnd <= 1)" +msgstr "" +"Įveskite galiojantį slopinimo koeficientą (0 <= Slopinimo pradžia < " +"Slopinimo pabaiga <= 1)" msgid "Cornering test" -msgstr "" +msgstr "Posūkių įveikimo testas" msgid "SCV-V2" msgstr "SCV-V2" msgid "Start: " -msgstr "" +msgstr "Start: " msgid "End: " -msgstr "" +msgstr "End: " msgid "Cornering settings" -msgstr "" +msgstr "Posūkių įveikimo nustatymai" msgid "Note: Lower values = sharper corners but slower speeds." -msgstr "" +msgstr "Pastaba: mažesnės reikšmės = statesni kampai, bet mažesnis greitis." msgid "" "Marlin 2 Junction Deviation detected:\n" -"To test Classic Jerk, set 'Maximum Junction Deviation' in Motion ability to 0." +"To test Classic Jerk, set 'Maximum Junction Deviation' in Motion ability to " +"0." msgstr "" +"Aptiktas Marlin 2 posūkio nuokrypis (Junction Deviation):\n" +"Norėdami išbandyti klasikinį trūktelėjimą (Classic Jerk), judėjimo gebos " +"(Motion ability) nustatymuose „Maximum Junction Deviation“ nustatykite į 0." msgid "" "Marlin 2 Classic Jerk detected:\n" -"To test Junction Deviation, set 'Maximum Junction Deviation' in Motion ability to a value > 0." +"To test Junction Deviation, set 'Maximum Junction Deviation' in Motion " +"ability to a value > 0." msgstr "" +"Aptiktas Marlin 2 klasikinis trūktelėjimas (Classic Jerk):\n" +"Norėdami išbandyti posūkio nuokrypį (Junction Deviation), judėjimo gebos " +"(Motion ability) nustatymuose „Maximum Junction Deviation“ nustatykite " +"reikšmę > 0." msgid "" "RepRap detected: Jerk in mm/s.\n" "OrcaSlicer will convert the values to mm/min when necessary." msgstr "" +"Aptikta RepRap: trūktelėjimas (Jerk) nurodytas mm/s.\n" +"Prireikus „OrcaSlicer“ konvertuos reikšmes į mm/min." #, c-format, boost-format msgid "" "Please input valid values:\n" "(0 <= Cornering <= %s)" msgstr "" +"Įveskite tinkamas reikšmes:\n" +"(0 <= posūkių įveikimas <= %s)" #, c-format, boost-format msgid "NOTE: High values may cause Layer shift (>%s)" msgstr "" +"PASTABA: didelės reikšmės gali lemti sluoksnių poslinkį (Layer shift) (>%s)" msgid "Flow Ratio Calibration" -msgstr "" +msgstr "Srauto santykio kalibravimas" msgid "Calibration Test Type" -msgstr "" +msgstr "Kalibravimo testo tipas" msgid "Pass 1 (Coarse)" -msgstr "" +msgstr "1 etapas (apytikslis)" msgid "Pass 2 (Fine)" -msgstr "" +msgstr "2 etapas (tikslusis)" msgid "YOLO (Recommended)" msgstr "YOLO (rekomenduojama)" msgid "YOLO (Perfectionist)" -msgstr "" +msgstr "YOLO (perfekcionistas)" msgid "Top Surface Pattern" -msgstr "" +msgstr "Viršutinio paviršiaus raštas" msgid "Choose a slot for the selected color" -msgstr "" +msgstr "Pasirinkite lizdą pasirinktai spalvai" msgid "Material in the material station" -msgstr "" +msgstr "Medžiaga medžiagų stotelėje" msgid "Only materials of the same type can be selected." -msgstr "" +msgstr "Galima pasirinkti tik to paties tipo medžiagas." msgid "Send G-code to printer host" msgstr "Siųsti G-kodą tinkliniam spausdintuvui" @@ -17288,7 +21962,8 @@ msgid "Upload to Printer Host with the following filename:" msgstr "Įkelti į tinklinį spausdintuvą tokiu failo pavadinimu:" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "Jei reikia, naudoti pasviruosius brūkšnius ( / ) kaip katalogų skyriklį." +msgstr "" +"Jei reikia, naudoti pasviruosius brūkšnius ( / ) kaip katalogų skyriklį." msgid "Upload to storage" msgstr "Įkelti į saugyklą" @@ -17304,41 +21979,56 @@ msgid "Upload" msgstr "Įkelti" msgid "Leveling before print" -msgstr "" +msgstr "Lygiavimas prieš spausdinimą" msgid "Time-lapse" msgstr "Laiko intervalai" msgid "Enable IFS" -msgstr "" +msgstr "Įjungti IFS" #, c-format, boost-format msgid "Detected %d IFS slots on printer." -msgstr "" +msgstr "Spausdintuve aptikta %d IFS lizdų." msgid "This printer does not report a material station." -msgstr "" +msgstr "Šis spausdintuvas nepraneša apie medžiagų stotelę." msgid "Unable to read IFS slots from printer." -msgstr "" +msgstr "Nepavyko nuskaityti IFS lizdų iš spausdintuvo." msgid "Loading IFS slots from printer..." -msgstr "" +msgstr "Įkeliami IFS lizdai iš spausdintuvo..." msgid "Slice the plate first to get project material information." msgstr "" +"Pirmiausia supjaustykite (slice) plokštę, kad gautumėte projekto medžiagų " +"informaciją." -msgid "This plate uses multiple materials. Enable IFS and assign each tool to a printer slot." +msgid "" +"This plate uses multiple materials. Enable IFS and assign each tool to a " +"printer slot." msgstr "" +"Ši plokštė naudoja kelias medžiagas. Įjunkite IFS ir priskirkite kiekvieną " +"įrankį spausdintuvo lizdui." msgid "Each project material must be assigned to an IFS slot before printing." msgstr "" +"Prieš spausdinant, kiekviena projekto medžiaga turi būti priskirta IFS " +"lizdui." -msgid "Each project material must be assigned to a loaded IFS slot before printing." +msgid "" +"Each project material must be assigned to a loaded IFS slot before printing." msgstr "" +"Prieš spausdinant, kiekviena projekto medžiaga turi būti priskirta " +"užpildytam IFS lizdui." -msgid "Each project material must match the material loaded in the selected IFS slot." +msgid "" +"Each project material must match the material loaded in the selected IFS " +"slot." msgstr "" +"Kiekviena projekto medžiaga turi sutapti su medžiaga, įkelta į pasirinktą " +"IFS lizdą." msgid "Print host upload queue" msgstr "Įkėlimo spausdinimui tinkle eilė" @@ -17347,10 +22037,10 @@ msgid "ID" msgstr "ID" msgid "Progress" -msgstr "Progresas" +msgstr "Eiga" msgid "Host" -msgstr "Hostas" +msgstr "Mazgas (host)" msgctxt "OfFile" msgid "Size" @@ -17377,11 +22067,15 @@ msgstr "Atšaukiama" msgid "Error uploading to print host" msgstr "Klaida siunčiant į spausdintuvą" -msgid "The selected bed type does not match the file. Please confirm before starting the print." -msgstr "Pasirinktas pagrindo tipas neatitinka failo. Prieš pradėdami spausdinti, patvirtinkite." +msgid "" +"The selected bed type does not match the file. Please confirm before " +"starting the print." +msgstr "" +"Pasirinktas pagrindo tipas neatitinka failo. Prieš pradėdami spausdinti, " +"patvirtinkite." msgid "Heated Bed Leveling" -msgstr "Šildomo pagrindo išlyginimas" +msgstr "Šildomo pagrindo lygiavimas" msgid "Textured Build Plate (Side A)" msgstr "Tekstūruota pagrindo plokštė (A pusė)" @@ -17391,28 +22085,28 @@ msgstr "Lygi pagrindo plokštė (B pusė)" #, c-format, boost-format msgid "Printer: %s" -msgstr "" +msgstr "Spausdintuvas: %s" msgid "Calibrate before printing" -msgstr "" +msgstr "Kalibruoti prieš spausdinimą" msgid "Filament Mapping:" -msgstr "" +msgstr "Gijų priskyrimas:" msgid "Unable to perform boolean operation on selected parts" msgstr "Nepavyksta atlikti loginės operacijos su pasirinktomis dalimis" msgid "Mesh Boolean" -msgstr "Objektų jungimo / atėmimo / susikirtimo įrankiai" +msgstr "Tinklelio loginės (Boolean) operacijos" msgid "Union" -msgstr "Sąjunga" +msgstr "Sąjunga (Union)" msgid "Difference" -msgstr "Skirtumas" +msgstr "Skirtumas (Difference)" msgid "Intersection" -msgstr "Susikirtimas" +msgstr "Susikirtimas (Intersection)" msgid "Source Volume" msgstr "Išteklių tūris" @@ -17475,40 +22169,40 @@ msgid "Log Info" msgstr "Žurnalo informacija" msgid "Select filament preset" -msgstr "Pasirinkite gijos išankstinį nustatymą" +msgstr "Pasirinkite gijos profilį" msgid "Create Filament" msgstr "Sukurti giją" msgid "Create Based on Current Filament" -msgstr "Sukurti pagal dabartinę giją" +msgstr "Sukurti remiantis dabartine gija" msgid "Copy Current Filament Preset " -msgstr "Nukopijuoti dabartinės gijos išankstinę nuostatą " +msgstr "Nukopijuoti dabartinės gijos profilį " msgid "Basic Information" msgstr "Pagrindinė informacija" msgid "Add Filament Preset under this filament" -msgstr "Pridėti gijos nustatymą pagal šią giją" +msgstr "Pridėti gijos profilį šiai gijai" msgid "We could create the filament presets for your following printer:" -msgstr "Galime sukurti jūsų spausdintuvui skirtus gijų nustatymus:" +msgstr "Galime sukurti gijų profilius šiam jūsų spausdintuvui:" msgid "Select Vendor" -msgstr "Pasirinkite pardavėją" +msgstr "Pasirinkite prekės ženklą" msgid "Input Custom Vendor" -msgstr "Pasirinktinio pardavėjo įvedimas" +msgstr "Įvesti pasirinktinį prekės ženklą" msgid "Can't find vendor I want" -msgstr "Negaliu rasti norimo pardavėjo" +msgstr "Nerandu norimo prekės ženklo" msgid "Select Type" msgstr "Pasirinkite tipą" msgid "Select Filament Preset" -msgstr "Pasirinkite išankstinį gijų nustatymą" +msgstr "Pasirinkite gijos profilį" msgid "Serial" msgstr "Serijinis" @@ -17517,54 +22211,60 @@ msgid "e.g. Basic, Matte, Silk, Marble" msgstr "pvz., pagrindinis, matinis, šilkinis, marmurinis" msgid "Filament Preset" -msgstr "Gijos išankstinis nustatymas" +msgstr "Gijos profilis" msgid "Create" msgstr "Sukurti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Vendor is not selected; please reselect vendor." -msgstr "Pardavėjas nepasirinktas, pasirinkite pardavėją iš naujo." +msgid "Vendor is not selected, please reselect vendor." +msgstr "Prekės ženklas nepasirinktas, pasirinkite prekės ženklą iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Custom vendor missing; please input custom vendor." -msgstr "Pasirinktinis pardavėjas neįvestas, įveskite pasirinktinį pardavėją." +msgid "Custom vendor is missing, please input custom vendor." +msgstr "" +"Pasirinktinis prekės ženklas neįvestas, įveskite pasirinktinį prekės ženklą." -msgid "\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." -msgstr "\"Bambu\" arba \"Generic\" negalima naudoti kaip pasirinktinių gijų pardavėjo." +msgid "" +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." +msgstr "" +"„Bambu“ arba „Generic“ negalima naudoti kaip pasirinktinių gijų prekės " +"ženklo." msgid "Filament type is not selected, please reselect type." msgstr "Nepasirinktas gijos tipas, pasirinkite tipą iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Filament serial missing; please input serial." -msgstr "Gijos serijinis numeris neįvestas, įveskite serijinį numerį." +msgid "Filament serial is not entered, please enter serial." +msgstr "Gijos serija neįvesta, įveskite seriją." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "There may be disallowed characters in the vendor or serial input of the filament. Please delete and re-enter." -msgstr "Gijų pardavėjo arba serijos numerio įvesties laukelyje gali būti praleidžiamųjų simbolių. Ištrinkite ir įveskite iš naujo." +msgid "" +"There may be escape characters in the vendor or serial input of filament. " +"Please delete and re-enter." +msgstr "" +"Gijos prekės ženklo arba serijos įvesties laukelyje gali būti valdymo " +"(escape) simbolių. Ištrinkite ir įveskite iš naujo." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "Visi pasirinktinio pardavėjo ar serijos numerio įvesties duomenys yra tarpai. Įveskite iš naujo." +msgstr "" +"Visi pasirinktinio prekės ženklo ar serijos įvesties duomenys yra tarpai. " +"Įveskite iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The vendor cannot be a number; please re-enter." -msgstr "Pardavėjas negali būti skaičius. Prašome įvesti iš naujo." +msgid "The vendor cannot be a number. Please re-enter." +msgstr "Prekės ženklas negali būti skaičius. Įveskite iš naujo." -msgid "You have not selected a printer or preset yet. Please select at least one." -msgstr "Dar nepasirinkote spausdintuvo arba išankstinio nustatymo. Pasirinkite bent vieną." +msgid "" +"You have not selected a printer or preset yet. Please select at least one." +msgstr "Dar nepasirinkote spausdintuvo arba profilio. Pasirinkite bent vieną." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The Filament name %s you created already exists.\n" -"If you continue, the preset created will be displayed with its full name. Do you want to continue?" +"If you continue, the preset created will be displayed with its full name. Do " +"you want to continue?" msgstr "" -"Sukurtas gijos pavadinimas %s jau egzistuoja.\n" -"Jei toliau kursite, bus rodomas visas sukurto išankstinio nustatymo pavadinimas. Ar norite tęsti?" +"Jūsų sukurtas gijos pavadinimas %s jau egzistuoja.\n" +"Jei tęsite, sukurtas profilis bus rodomas pilnu pavadinimu. Ar norite tęsti?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "Kai kurių esamų nustatymų nepavyko sukurti, pvz.:\n" +msgstr "Kai kurių esamų profilių nepavyko sukurti:\n" msgid "" "\n" @@ -17574,11 +22274,14 @@ msgstr "" "Ar norite jį perrašyti?" 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 "" -"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo serijinis @printeris, kurį pasirinkote\".\n" -"Norėdami pridėti daugiau spausdintuvų, eikite į spausdintuvo pasirinkimą" +"Profiliai bus pervadinti pagal šabloną „PrekėsŽenklas Tipas Serija " +"@pasirinktas_spausdintuvas“.\n" +"Norėdami pridėti profilį daugiau spausdintuvų, eikite į spausdintuvų " +"pasirinkimą." msgid "Create Printer/Nozzle" msgstr "Sukurti spausdintuvą / purkštuką" @@ -17596,14 +22299,13 @@ msgid "Create Based on Current Printer" msgstr "Kurti pagal esamą spausdintuvą" msgid "Import Preset" -msgstr "Importuoti nustatymus" +msgstr "Importuoti profilį" msgid "Create Type" msgstr "Sukurti tipą" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The model was not found; please reselect vendor." -msgstr "Modelis nerastas, iš naujo pasirinkite pardavėją." +msgid "The model was not found, please reselect vendor." +msgstr "Modelis nerastas, iš naujo pasirinkite prekės ženklą." msgid "Select Printer" msgstr "Pasirinkite spausdintuvą" @@ -17618,19 +22320,19 @@ msgid "Can't find my printer model" msgstr "Negaliu rasti savo spausdintuvo modelio" msgid "Input Custom Nozzle Diameter" -msgstr "" +msgstr "Įvesti pasirinktinį purkštuko skersmenį" msgid "Can't find my nozzle diameter" -msgstr "" +msgstr "Nerandu savo purkštuko skersmens" msgid "Printable Space" msgstr "Spausdintina erdvė" msgid "Hot Bed STL" -msgstr "Šildomas pagrindas STL" +msgstr "Šildomo pagrindo STL" msgid "Hot Bed SVG" -msgstr "Šildomas pagrindas SVG" +msgstr "Šildomo pagrindo SVG" msgid "Max Print Height" msgstr "Maksimalus spausdinimo aukštis" @@ -17642,106 +22344,133 @@ msgstr "Failas viršija %d MB, importuokite dar kartą." msgid "Exception in obtaining file size, please import again." msgstr "Išimtis gaunant failo dydį, importuokite dar kartą." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Preset path was not found; please reselect vendor." -msgstr "Nerastas nustatymų kelias, iš naujo pasirinkite pardavėją." +msgid "Preset path was not found, please reselect vendor." +msgstr "Profilio kelias nerastas, iš naujo pasirinkite prekės ženklą." msgid "The printer model was not found, please reselect." msgstr "Spausdintuvo modelis nerastas, pasirinkite iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The nozzle diameter was not found; please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Purkštuko skersmuo nerastas, pasirinkite iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The printer preset was not found; please reselect." -msgstr "Spausdintuvo išankstinis nustatymas nerastas, pasirinkite iš naujo." +msgid "The printer preset was not found, please reselect." +msgstr "Spausdintuvo profilis nerastas, pasirinkite iš naujo." msgid "Printer Preset" -msgstr "Spausdintuvo nustatymai" +msgstr "Spausdintuvo profilis" msgid "Filament Preset Template" -msgstr "Gijos nustatymų šablonas" +msgstr "Gijos profilio šablonas" msgid "Process Preset Template" -msgstr "Proceso nustatymų šablonas" +msgstr "Proceso profilio šablonas" -msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" -msgstr "Dar nepasirinkote, pagal kurį spausdintuvo išankstinį nustatymą kurti. Pasirinkite spausdintuvo gamintoją ir modelį" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "You have entered a disallowed character in the printable area section on the first page. Please use only numbers." -msgstr "Pirmojo puslapio spausdintinos srities skiltyje įvedėte neleistiną reikšmę. Prieš jį kurdami patikrinkite." - -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"The printer preset you created already has a preset with the same name. Do you want to overwrite it?\n" -"\tYes: Overwrite the printer preset with the same name, and filament and process presets with the same preset name will be recreated \n" -"and filament and process presets without the same preset name will be reserved.\n" -"\tCancel: Do not create a preset; return to the creation interface." +"You have not yet chosen which printer preset to create based on. Please " +"choose the vendor and model of the printer" msgstr "" -"Jūsų sukurtame spausdintuvo išankstiniame nustatyme jau yra to paties pavadinimo išankstinis nustatymas. Ar norite jį perrašyti\n" -"\tTaip: perrašyti spausdintuvo nustatymus su tuo pačiu pavadinimu, ir atkurti gijų ir procesų nustatymus su tais pačiais nustatymų \n" -"pavadinimais, o gijų ir procesų nustatymai be to paties pavadinimo bus rezervuoti.\n" -"\tAtšaukti: Nesukurti išankstinio nustatymo, grįžti į kūrimo sąsają." +"Dar nepasirinkote, kuriuo spausdintuvo profiliu remiantis kurti. Pasirinkite " +"spausdintuvo prekės ženklą ir modelį" + +msgid "" +"You have entered an illegal input in the printable area section on the first " +"page. Please check before creating it." +msgstr "" +"Pirmojo puslapio spausdintinos srities skiltyje įvedėte neleistiną reikšmę. " +"Prieš jį kurdami patikrinkite." + +msgid "" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserve.\n" +"\tCancel: Do not create a preset, return to the creation interface." +msgstr "" +"Jūsų sukurtame spausdintuvo profilyje jau yra profilis su tokiu pačiu " +"pavadinimu. Ar norite jį perrašyti?\n" +"\tTaip: perrašyti to paties pavadinimo spausdintuvo profilį; gijų ir procesų " +"profiliai su tokiais pačiais pavadinimais bus sukurti iš naujo, o profiliai " +"su kitokiais pavadinimais bus išsaugoti.\n" +"\tAtšaukti: nekurti profilio ir grįžti į kūrimo sąsają." msgid "You need to select at least one filament preset." -msgstr "Reikia pasirinkti bent vieną gijų nustatymą." +msgstr "Reikia pasirinkti bent vieną gijos profilį." msgid "You need to select at least one process preset." -msgstr "Reikia pasirinkti bent vieną proceso nustatymą." +msgstr "Reikia pasirinkti bent vieną proceso profilį." msgid "Create filament presets failed. As follows:\n" -msgstr "Nepavyko sukurti gijų nustatymų. Taip:\n" +msgstr "Nepavyko sukurti gijos profilių:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" -"Nepavyko sukurti proceso nustatymų. Taip:\n" -"\n" +msgstr "Nepavyko sukurti proceso profilių:\n" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Vendor was not found; please reselect." -msgstr "Pardavėjas nerastas, pasirinkite iš naujo." +msgid "Vendor was not found, please reselect." +msgstr "Prekės ženklas nerastas, pasirinkite iš naujo." msgid "Current vendor has no models, please reselect." -msgstr "Dabartinis pardavėjas neturi modelių, pasirinkite iš naujo." +msgstr "Šis prekės ženklas neturi modelių, pasirinkite iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "You have not selected the vendor and model or input the custom vendor and model." -msgstr "Nepasirinkote pardavėjo ir modelio arba neįvedėte pasirinktinio pardavėjo ir modelio." +msgid "" +"You have not selected the vendor and model or entered the custom vendor and " +"model." +msgstr "" +"Nepasirinkote prekės ženklo bei modelio arba neįvedėte pasirinktinio prekės " +"ženklo bei modelio." -msgid "There may be escape characters in the custom printer vendor or model. Please delete and re-enter." -msgstr "Pasirinktiniame spausdintuvo pardavėjo arba modelio pavadinime gali būti praleidžiamų simbolių. Ištrinkite ir įveskite iš naujo." +msgid "" +"There may be escape characters in the custom printer vendor or model. Please " +"delete and re-enter." +msgstr "" +"Pasirinktiniame spausdintuvo prekės ženklo arba modelio pavadinime gali būti " +"valdymo (escape) simbolių. Ištrinkite ir įveskite iš naujo." -msgid "All inputs in the custom printer vendor or model are spaces. Please re-enter." -msgstr "Visi pasirinktinio spausdintuvo tiekėjo arba modelio įvesties duomenys yra tarpai. Įveskite iš naujo." +msgid "" +"All inputs in the custom printer vendor or model are spaces. Please re-enter." +msgstr "" +"Visi pasirinktinio spausdintuvo prekės ženklo arba modelio įvesties duomenys " +"yra tarpai. Įveskite iš naujo." msgid "Please check bed printable shape and origin input." msgstr "Patikrinkite pagrindo spausdinimo formą ir pradžią." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "You have not yet selected the printer to replace the nozzle for; please choose a printer." -msgstr "Dar nepasirinkote spausdintuvo, kuriuo norite pakeisti antgalį, pasirinkite." +msgid "" +"You have not yet selected the printer to replace the nozzle, please choose." +msgstr "" +"Dar nepasirinkote spausdintuvo, kuriam norite pakeisti purkštuką, " +"pasirinkite." msgid "The entered nozzle diameter is invalid, please re-enter:\n" msgstr "" +"Įvestas netinkamas purkštuko skersmuo, įveskite iš naujo:\n" +"\n" msgid "" "The system preset does not allow creation. \n" "Please re-enter the printer model or nozzle diameter." msgstr "" +"Sisteminio profilio kurti neleidžiama.\n" +"Iš naujo įveskite spausdintuvo modelį arba purkštuko skersmenį." msgid "" "\n" "\n" "Available nozzle profiles for this printer:" msgstr "" +"\n" +"\n" +"Šiam spausdintuvui prieinami purkštukų profiliai:" msgid "" "\n" "\n" "Choose YES to switch existing preset:" msgstr "" +"\n" +"\n" +"Pasirinkite TAIP, kad pakeistumėte esamą profilį:" msgid "Printer Created Successfully" msgstr "Sėkmingai sukurtas spausdintuvas" @@ -17753,32 +22482,40 @@ msgid "Printer Created" msgstr "Sukurtas spausdintuvas" msgid "Please go to printer settings to edit your presets" -msgstr "Eikite į spausdintuvo nustatymus, kad galėtumėte redaguoti išankstinius nustatymus" +msgstr "Eikite į spausdintuvo nustatymus, jei norite redaguoti savo profilius" msgid "Filament Created" msgstr "Sukurta gija" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" -"Please go to filament settings to edit your presets if you need to.\n" -"Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed each have a significant impact on printing quality. Please set them carefully." +"Please go to filament setting to edit your presets if you need.\n" +"Please note that nozzle temperature, hot bed temperature, and maximum " +"volumetric speed has a significant impact on printing quality. Please set " +"them carefully." msgstr "" -"Jei reikia, eikite į gijos nustatymus ir redaguokite savo išankstinius nustatymus.\n" -"Atkreipkite dėmesį, kad purkštuko temperatūra, karšto pagrindo temperatūra ir didžiausias tūrinis greitis turi didelę įtaką spausdinimo kokybei. Prašome atidžiai juos nustatyti." +"Jei reikia, eikite į gijos nustatymus ir redaguokite savo profilius.\n" +"Atkreipkite dėmesį, kad purkštuko temperatūra, šildomo pagrindo temperatūra " +"ir maksimalus tūrinis greitis turi didelę įtaką spausdinimo kokybei. " +"Nustatykite juos atsakingai." msgid "" "\n" "\n" -"Orca has detected that your user presets synchronization function is not enabled, which may result in unsuccessful Filament settings on the Device page.\n" +"Orca has detected that your user presets synchronization function is not " +"enabled, which may result in unsuccessful Filament settings on the Device " +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" -"\"Orca\" nustatė, kad jūsų naudotojo nustatymų sinchronizavimo funkcija neįjungta, todėl įrenginio puslapyje gali nepavykti nustatyti gijų nustatymų.\n" -"Spustelėkite \" Sinchronizuoti naudotojo nustatymus\", kad įjungtumėte sinchronizavimo funkciją." +"„Orca“ pastebėjo, kad jūsų naudotojo profilių sinchronizavimo funkcija " +"neįjungta, todėl įrenginio puslapyje gijos nustatymai gali veikti " +"netinkamai.\n" +"Spustelėkite „Sinchronizuoti naudotojo profilius“, kad įjungtumėte " +"sinchronizavimo funkciją." msgid "Printer Setting" -msgstr "Spausdintuvo nustatymai" +msgstr "Spausdintuvo profilis" msgid "Printer config bundle(.orca_printer)" msgstr "Spausdintuvo konfigūracijos paketas(.orca_printer)" @@ -17787,13 +22524,13 @@ msgid "Filament bundle(.orca_filament)" msgstr "Gijų paketas(.orca_filament)" msgid "Printer presets(.zip)" -msgstr "Spausdintuvo nustatymai(.zip)" +msgstr "Spausdintuvo profiliai (.zip)" msgid "Filament presets(.zip)" -msgstr "Gijų nustatymai(.zip)" +msgstr "Gijos profiliai (.zip)" msgid "Process presets(.zip)" -msgstr "Proceso nustatymai(.zip)" +msgstr "Proceso profiliai (.zip)" msgid "initialize fail" msgstr "inicializuoti nepavyksta" @@ -17813,14 +22550,17 @@ msgstr "atidaryti zip raštu nepavyksta" msgid "Export successful" msgstr "Sėkmingai eksportuota" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" -"The '%s' folder already exists in the current directory. Do you want to clear it and rebuild it?\n" -"If not, a time suffix will be added, and you can modify the name after creation." +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it.\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." msgstr "" -"Dabartiniame kataloge jau yra aplankas '%s'. Ar norite jį ištrinti ir atkurti.\n" -"Jei ne, bus pridėta laiko priesaga, o pavadinimą galėsite keisti po sukūrimo." +"Dabartiniame kataloge jau yra aplankas „%s“. Ar norite jį išvalyti ir " +"sukurti iš naujo?\n" +"Jei ne, bus pridėta laiko priesaga, o pavadinimą galėsite pakeisti jau po " +"sukūrimo." #, c-format, boost-format msgid "" @@ -17833,113 +22573,133 @@ msgstr "" "Uždarykite jį ir bandykite dar kartą." msgid "" -"Printer and all the filament and process presets that belongs to the printer.\n" +"Printer and all the filament and process presets that belongs to the " +"printer.\n" "Can be shared with others." msgstr "" -"Spausdintuvo ir visų spausdintuvui priklausančių gijų ir procesų išankstinės nuostatos.\n" -"Galima dalytis su kitais." +"Spausdintuvas ir visi jam priklausantys gijos bei proceso profiliai.\n" +"Galima bendrinti su kitais." msgid "" "User's filament preset set.\n" "Can be shared with others." msgstr "" -"Vartotojo iš anksto nustatytas gijų rinkinys.\n" +"Naudotojo gijos profilių rinkinys.\n" "Galima bendrinti su kitais." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Only display printers with changes to printer, filament, and process presets are displayed." -msgstr "Spausdintuvų pavadinimai rodomi tik tada, kai pakeistos spausdintuvo, gijų ir proceso išankstinės nuostatos." +msgid "" +"Only display printer names with changes to printer, filament, and process " +"presets." +msgstr "" +"Rodyti tik tuos spausdintuvų pavadinimus, kurių spausdintuvo, gijos ar " +"proceso profiliai buvo pakeisti." msgid "Only display the filament names with changes to filament presets." -msgstr "Rodykite tik gijų pavadinimus su gijų išankstinių nustatymų pakeitimais." +msgstr "Rodyti tik tuos gijų pavadinimus, kurių gijos profiliai buvo pakeisti." -msgid "Only printer names with user printer presets will be displayed, and each preset you choose will be exported as a zip." -msgstr "Bus rodomi tik spausdintuvų pavadinimai su naudotojo spausdintuvo išankstiniais nustatymais, o kiekvienas pasirinktas išankstinis nustatymas bus eksportuojamas kaip ZIP failas." +msgid "" +"Only printer names with user printer presets will be displayed, and each " +"preset you choose will be exported as a zip." +msgstr "" +"Bus rodomi tik tie spausdintuvų pavadinimai, kurie turi naudotojo sukurtų " +"profilių, o kiekvienas pasirinktas profilis bus eksportuotas kaip ZIP failas." msgid "" "Only the filament names with user filament presets will be displayed, \n" -"and all user filament presets in each filament name you select will be exported as a zip." +"and all user filament presets in each filament name you select will be " +"exported as a zip." msgstr "" -"Bus rodomi tik gijų pavadinimai su naudotojo gijų išankstinėmis nuostatomis, \n" -"o visi naudotojo gijų išankstiniai nustatymai kiekviename pasirinktame gijos pavadinime bus eksportuojami kaip zip." +"Bus rodomi tik tie gijų pavadinimai, kurie turi naudotojo sukurtų " +"profilių, \n" +"o visi pasirinkto pavadinimo naudotojo gijos profiliai bus eksportuoti kaip " +"ZIP failas." msgid "" "Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be exported as a zip." +"and all user process presets in each printer name you select will be " +"exported as a zip." msgstr "" -"Bus rodomi tik spausdintuvų pavadinimai su pakeistomis proceso išankstinėmis nuostatomis, \n" -"o visi naudotojo proceso nustatymai kiekviename pasirinktame spausdintuvo pavadinime bus eksportuoti kaip zip." +"Bus rodomi tik tie spausdintuvų pavadinimai, kurie turi pakeistų proceso " +"profilių, \n" +"o visi pasirinkto spausdintuvo naudotojo proceso profiliai bus eksportuoti " +"kaip ZIP failas." msgid "Please select at least one printer or filament." msgstr "Pasirinkite bent vieną spausdintuvą arba giją." -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Please select a preset type you want to export" +msgid "Please select a type you want to export" msgstr "Pasirinkite tipą, kurį norite eksportuoti" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "Nepavyko sukurti laikinojo aplanko, bandykite dar kartą eksportuoti konfigūracijas." +msgstr "" +"Nepavyko sukurti laikinojo aplanko, bandykite dar kartą eksportuoti " +"konfigūracijas." msgid "Edit Filament" msgstr "Redaguoti giją" msgid "Filament presets under this filament" -msgstr "Gijos nustatymai pagal šią giją" +msgstr "Šiai gijai priklausantys profiliai" -msgid "Note: If the only preset under this filament is deleted, the filament will be deleted after exiting the dialog." -msgstr "Pastaba: Jei ištrintas vienintelis šios gijos išankstinis nustatymas, gija bus ištrinta išėjus iš dialogo lango." +msgid "" +"Note: If the only preset under this filament is deleted, the filament will " +"be deleted after exiting the dialog." +msgstr "" +"Pastaba: jei bus ištrintas vienintelis šiai gijai priklausantis profilis, " +"pati gija bus ištrinta uždarius šį langą." msgid "Presets inherited by other presets cannot be deleted" -msgstr "Iš anksto nustatytų nustatymų, kuriuos paveldėjo kiti iš anksto nustatyti nustatymai, negalima ištrinti" +msgstr "Profilių, kuriuos paveldi kiti profiliai, ištrinti negalima" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." -msgstr[0] "Šį išankstinį nustatymą paveldi šis išankstinis nustatymas." -msgstr[1] "Šiuos išankstinius nustatymus paveldi šie išankstiniai nustatymai." -msgstr[2] "Šiuos išankstinius nustatymus paveldi šie išankstiniai nustatymai." +msgstr[0] "Šį profilį paveldi šis profilis." +msgstr[1] "Šį profilį paveldi šie profiliai." +msgstr[2] "Šį profilį paveldi šie profiliai." msgid "Delete Preset" -msgstr "Ištrinti nustatymą" +msgstr "Ištrinti profilį" msgid "Are you sure to delete the selected preset?" -msgstr "Ar tikrai norite ištrinti pasirinktą nustatymą?" +msgstr "Ar tikrai norite ištrinti pasirinktą profilį?" msgid "Delete preset" -msgstr "Ištrinti nustatymą" +msgstr "Ištrinti profilį" msgid "+ Add Preset" -msgstr "+ Pridėti nustatymą" +msgstr "+ Pridėti profilį" msgid "" "All the filament presets belong to this filament would be deleted.\n" -"If you are using this filament on your printer, please reset the filament information for that slot." +"If you are using this filament on your printer, please reset the filament " +"information for that slot." msgstr "" -"Visi šiai gijai priklausantys išankstiniai nustatymai bus ištrinti.\n" -"Jei spausdintuve naudojate šią giją, iš naujo nustatykite tos angos gijos informaciją." +"Visi šiai gijai priklausantys profiliai bus ištrinti.\n" +"Jei naudojate šią giją spausdintuve, iš naujo nustatykite to lizdo gijos " +"informaciją." msgid "Delete filament" msgstr "Ištrinti giją" msgid "Add Preset" -msgstr "Pridėti nustatymą" +msgstr "Pridėti profilį" msgid "Add preset for new printer" -msgstr "Pridėti iš naujo spausdintuvo nustatymą" +msgstr "Pridėti profilį naujam spausdintuvui" msgid "Copy preset from filament" -msgstr "Nukopijuoti nustatymą iš gijos" +msgstr "Kopijuoti profilį iš gijos" msgid "The filament choice not find filament preset, please reselect it" -msgstr "Gijos pasirinkimas nerandamas iš anksto nustatytas, pasirinkite jį iš naujo" +msgstr "Pasirinktai gijai nerastas joks gijos profilis, pasirinkite iš naujo" msgid "[Delete Required]" msgstr "[Reikia ištrinti]" msgid "Edit Preset" -msgstr "Redaguoti nustatymą" +msgstr "Redaguoti profilį" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "For more information, please check out our Wiki" +msgid "For more information, please check out Wiki" msgstr "Daugiau informacijos rasite Wiki" msgid "Wiki" @@ -17955,15 +22715,20 @@ msgid "" "The printer nozzle information has not been set.\n" "Please configure it before proceeding with the calibration." msgstr "" +"Spausdintuvo purkštuko informacija nenustatyta.\n" +"Konfigūruokite ją prieš tęsdami kalibravimą." msgid "" "The nozzle type does not match the actual printer nozzle type.\n" "Please click the Sync button above and restart the calibration." msgstr "" +"Purkštuko tipas neatitinka faktinio spausdintuvo purkštuko tipo.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite " +"kalibravimą iš naujo." #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." -msgstr "" +msgstr "Spausdinant %1s medžiagą su %2s purkštuku, galima sugadinti purkštuką." msgid "Need select printer" msgstr "Reikia pasirinkti spausdintuvą" @@ -17971,32 +22736,57 @@ msgstr "Reikia pasirinkti spausdintuvą" msgid "The start, end or step is not valid value." msgstr "Pradžios, pabaigos arba žingsnio reikšmė netinkama." -msgid "The number of printer extruders and the printer selected for calibration does not match." -msgstr "" - -#, c-format, boost-format -msgid "The nozzle diameter of %s extruder is 0.2mm which does not support automatic Flow Dynamics calibration." +msgid "" +"The number of printer extruders and the printer selected for calibration " +"does not match." msgstr "" +"Spausdintuvo ekstruderių skaičius neatitinka kalibravimui pasirinkto " +"spausdintuvo parametrų." #, c-format, boost-format msgid "" -"The currently selected nozzle diameter of %s extruder does not match the actual nozzle diameter.\n" +"The nozzle diameter of %s extruder is 0.2mm which does not support automatic " +"Flow Dynamics calibration." +msgstr "" +"%s ekstruderio purkštuko skersmuo yra 0,2 mm, o toks skersmuo nepalaiko " +"automatinio srauto dinamikos kalibravimo." + +#, c-format, boost-format +msgid "" +"The currently selected nozzle diameter of %s extruder does not match the " +"actual nozzle diameter.\n" "Please click the Sync button above and restart the calibration." msgstr "" +"Šiuo metu pasirinktas %s ekstruderio purkštuko skersmuo neatitinka faktinio " +"purkštuko skersmens.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite " +"kalibravimą iš naujo." msgid "" "The nozzle diameter does not match the actual printer nozzle diameter.\n" "Please click the Sync button above and restart the calibration." msgstr "" +"Purkštuko skersmuo neatitinka faktinio spausdintuvo purkštuko skersmens.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite " +"kalibravimą iš naujo." #, c-format, boost-format msgid "" -"The currently selected nozzle type of %s extruder does not match the actual printer nozzle type.\n" +"The currently selected nozzle type of %s extruder does not match the actual " +"printer nozzle type.\n" "Please click the Sync button above and restart the calibration." msgstr "" +"Šiuo metu pasirinktas %s ekstruderio purkštuko tipas neatitinka faktinio " +"spausdintuvo purkštuko tipo.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite " +"kalibravimą iš naujo." -msgid "Unable to calibrate: maybe because the set calibration value range is too large, or the step is too small" -msgstr "Nepavyksta sukalibruoti: galbūt dėl to, kad nustatytas kalibravimo vertės intervalas yra per didelis arba žingsnis yra per mažas" +msgid "" +"Unable to calibrate: maybe because the set calibration value range is too " +"large, or the step is too small" +msgstr "" +"Nepavyksta sukalibruoti: galbūt dėl to, kad nustatytas kalibravimo vertės " +"intervalas yra per didelis arba žingsnis yra per mažas" msgid "Physical Printer" msgstr "Fizinis spausdintuvas" @@ -18004,20 +22794,24 @@ msgstr "Fizinis spausdintuvas" msgid "Print Host upload" msgstr "Įkėlimas spausdinimui tinkle" -msgid "Select the network agent implementation for printer communication. Available agents are registered at startup." +msgid "" +"Select the network agent implementation for printer communication. Available " +"agents are registered at startup." msgstr "" +"Pasirinkite tinklo agento modulį ryšiui su spausdintuvu palaikyti. Prieinami " +"agentai užregistruojami paleidimo metu." msgid "Select a Flashforge printer" -msgstr "" +msgstr "Pasirinkite „Flashforge“ spausdintuvą" msgid "Discovered Printers" -msgstr "" +msgstr "Aptikti spausdintuvai" msgid "Could not get a valid Printer Host reference" msgstr "Nepavyko gauti galiojančios tinklinio spausdintuvo nuorodos" msgid "Valid session not detected. Proceed with login to 3DPrinterOS?" -msgstr "" +msgstr "Nerasta galiojančios sesijos. Prisijungti prie „3DPrinterOS“?" msgid "Success!" msgstr "Pavyko!" @@ -18026,13 +22820,17 @@ msgid "Are you sure to log out?" msgstr "Ar tikrai norite atsijungti?" msgid "View print host webui in Device tab" -msgstr "Spausdintuvo sąsajos peržiūra skirtuke Įrenginys" +msgstr "Rodyti tinklo mazgo (host) puslapį skirtuke „Įrenginys“" msgid "Replace the BambuLab's device tab with print host webui" -msgstr "Pakeiskite \"BambuLab\" įrenginio skirtuką spausdintuvo sąsaja" +msgstr "Pakeisti „BambuLab“ įrenginio skirtuką tinklo mazgo (host) puslapiu" -msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." -msgstr "HTTPS CA failas yra neprivalomas. Jis reikalingas tik tuo atveju, jei naudojate HTTPS su savarankiškai pasirašytu sertifikatu." +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"HTTPS CA failas yra neprivalomas. Jis reikalingas tik tuo atveju, jei " +"naudojate HTTPS su savarankiškai pasirašytu sertifikatu." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Sertifikato failai (*.crt, *.pem)|*.crt;*.pem|Visi failai|*.*" @@ -18041,11 +22839,19 @@ msgid "Open CA certificate file" msgstr "Atidaryti CA sertifikato failą" #, c-format, boost-format -msgid "On this system, %s uses HTTPS certificates from the system Certificate Store or Keychain." -msgstr "Šioje sistemoje %s naudoja HTTPS sertifikatus iš sistemos Certificate Store arba Keychain." +msgid "" +"On this system, %s uses HTTPS certificates from the system Certificate Store " +"or Keychain." +msgstr "" +"Šioje sistemoje %s naudoja HTTPS sertifikatus iš sisteminės sertifikatų " +"saugyklos (Certificate Store) arba raktinės (Keychain)." -msgid "To use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "Norėdami naudoti pasirinktinį CA failą, importuokite CA failą į sertifikatų saugyklą / raktų pakabuką." +msgid "" +"To use a custom CA file, please import your CA file into Certificate Store / " +"Keychain." +msgstr "" +"Norėdami naudoti pasirinktinį CA failą, importuokite jį į sertifikatų " +"saugyklą arba raktinę (Keychain)." msgid "Login/Test" msgstr "Prisijungimas / bandymas" @@ -18054,53 +22860,53 @@ msgid "Connection to printers connected via the print host failed." msgstr "Nepavyko prisijungti prie spausdintuvų, prijungtų per tinklą." msgid "3DPrinterOS Cloud upload options" -msgstr "" +msgstr "„3DPrinterOS“ debesijos įkėlimo parinktys" msgid "Single file" -msgstr "" +msgstr "Vienas failas" msgid "Project File" -msgstr "" +msgstr "Projekto failas" msgid "Project:" -msgstr "" +msgstr "Projektas:" msgid "Printer type:" -msgstr "" +msgstr "Spausdintuvo tipas:" msgid "Printer type not found, please select manually." -msgstr "" +msgstr "Spausdintuvo tipas nerastas, pasirinkite rankiniu būdu." msgid "Authorizing..." -msgstr "" +msgstr "Autorizuojama..." msgid "Error. Can't get api token for authorization" -msgstr "" +msgstr "Klaida. Nepavyko gauti API žetono (token) autorizacijai" msgid "Could not parse server response." -msgstr "" +msgstr "Nepavyko apdoroti serverio atsakymo." msgid "Error saving session to file" -msgstr "" +msgstr "Klaida įrašant sesiją į failą" msgid "Error session check" -msgstr "" +msgstr "Klaida tikrinant sesiją" msgid "Error during file upload" -msgstr "" +msgstr "Klaida įkeliant failą" #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "Neatitinka tinklinio spausdintuvo tipas: %s" +msgstr "Neatitinkantis tinklo mazgo (host) tipas: %s" msgid "Connection to AstroBox is working correctly." -msgstr "Prisijungimas prie AstroBox veikia tinkamai." +msgstr "Ryšys su „AstroBox“ veikia tinkamai." msgid "Could not connect to AstroBox" -msgstr "Nepavyko prisijungti prie AstroBox" +msgstr "Nepavyko prisijungti prie „AstroBox“" msgid "Note: AstroBox version 1.1.0 or higher is required." -msgstr "Pastaba: reikalinga bent 1.1.0 AstroBox versija." +msgstr "Pastaba: reikalinga „AstroBox“ 1.1.0 arba naujesnė versija." msgid "Connection to Duet is working correctly." msgstr "Ryšys su Duet veikia tinkamai." @@ -18118,16 +22924,20 @@ msgid "Could not get resources to create a new connection" msgstr "Nepavyko gauti išteklių naujam ryšiui sukurti" msgid "Upload not enabled on FlashAir card." -msgstr "Įkėlimas neįjungtas FlashAir kortelėje." +msgstr "Įkėlimas neįjungtas „FlashAir“ kortelėje." msgid "Connection to FlashAir is working correctly and upload is enabled." -msgstr "Prisijungimas prie FlashAir veikia tinkamai ir įkėlimas įjungtas." +msgstr "Prisijungimas prie „FlashAir“ veikia tinkamai ir įkėlimas įjungtas." msgid "Could not connect to FlashAir" msgstr "Nepavyko prisijungti prie „FlashAir“" -msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." -msgstr "Pastaba: reikalinga „FlashAir“ su 2.00.02 ar naujesne programine įranga ir aktyvuota įkėlimo funkcija." +msgid "" +"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " +"is required." +msgstr "" +"Pastaba: reikalinga „FlashAir“ su 2.00.02 ar naujesne programine įranga ir " +"aktyvuota įkėlimo funkcija." msgid "Connection to MKS is working correctly." msgstr "Ryšys su MKS veikia tinkamai." @@ -18142,7 +22952,7 @@ msgid "Could not connect to OctoPrint" msgstr "Nepavyko prisijungti prie „OctoPrint“" msgid "Note: OctoPrint version 1.1.0 or higher is required." -msgstr "Pastaba: reikalinga bent 1.1.0 OctoPrint versija." +msgstr "Pastaba: reikalinga „OctoPrint“ 1.1.0 arba naujesnė versija." msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Ryšys su Prusa SL1 / SL1S veikia tinkamai." @@ -18175,19 +22985,19 @@ msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "Įkelti nepavyko. %1% tinkamos saugyklos nerasta." msgid "Connection to Prusa Connect is working correctly." -msgstr "Ryšys su \"Prusa Connect\" veikia tinkamai." +msgstr "Ryšys su „Prusa Connect“ veikia tinkamai." msgid "Could not connect to Prusa Connect" -msgstr "Nepavyko prisijungti prie \"Prusa Connect\"" +msgstr "Nepavyko prisijungti prie „Prusa Connect“" msgid "Connection to Repetier is working correctly." -msgstr "Ryšys su REpieter veikia tinkamai." +msgstr "Ryšys su „Repetier“ veikia tinkamai." msgid "Could not connect to Repetier" -msgstr "Nepavyko prisijungti prie Repieter" +msgstr "Nepavyko prisijungti prie „Repetier“" msgid "Note: Repetier version 0.90.0 or higher is required." -msgstr "Pastaba: reikalinga bent 0.90.0 Repetier versija." +msgstr "Pastaba: reikalinga „Repetier“ 0.90.0 arba naujesnė versija." #, boost-format msgid "" @@ -18217,161 +23027,451 @@ msgstr "" "Pranešimo tekstas: „%1%“\n" "Klaida: „%2%“" -msgid "It has a small layer height. This results in almost negligible layer lines and high print quality. It is suitable for most printing cases." -msgstr "Dėl mažo sluoksnio aukščio sluoksnio linijos yra beveik nereikšmingos, o spausdinimo kokybė - aukšta. Tinka daugeliui bendrųjų spausdinimo atvejų." - -msgid "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and acceleration, and the sparse infill pattern is Gyroid. This results in much higher print quality but a much longer print time." -msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo greitis ir pagreitis yra mažesni, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl jo pasiekiama daug geresnė spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height. This results in almost negligible layer lines and slightly shorter print time." -msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra šiek tiek didesnis, todėl sluoksnio linijos yra beveik nepastebimos, o spausdinimo laikas šiek tiek trumpesnis." - -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height. This results in slightly visible layer lines but shorter print time." -msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra didesnis, todėl šiek tiek matomos sluoksnio linijos, tačiau trumpesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height. This results in almost invisible layer lines and higher print quality but longer print time." -msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis. Dėl to sluoksnių linijos yra beveik nematomos, o spausdinimo kokybė yra geresnė, tačiau spausdinimo laikas yra ilgesnis." - -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. This results in almost invisible layer lines and much higher print quality but much longer print time." -msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jis turi mažesnes sluoksnių linijas, mažesnį greitį ir pagreitį, o reto užpildymo raštas yra Gyroid. Dėl to sluoksnių linijos yra beveik nematomos, o spausdinimo kokybė yra daug geresnė, tačiau spausdinimo laikas yra daug ilgesnis." - -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height. This results in minimal layer lines and higher print quality but longer print time." -msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis. Dėl to sluoksnių linijos yra minimalios, o spausdinimo kokybė geresnė, tačiau spausdinimo laikas ilgesnis." - -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. This results in minimal layer lines and much higher print quality but much longer print time." -msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jame yra mažesnės sluoksnio linijos, mažesnis greitis ir pagreitis, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl jo gaunamos minimalios sluoksnių linijos ir daug geresnė spausdinimo kokybė, tačiau daug ilgesnė spausdinimo trukmė." - -msgid "It has a normal layer height. This results in average layer lines and print quality. It is suitable for most printing cases." -msgstr "Jo sluoksnio aukštis yra normalus. Dėl to gaunamos vidutinės sluoksnio linijos ir spausdinimo kokybė. Jis tinka daugumai spausdinimo atvejų." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. This results in higher print strength but more filament consumption and longer print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jame yra daugiau sienelių kontūrų ir didesnis reto užpildo tankis. Taigi, dėl to spaudiniai būna tvirtesni, tačiau sunaudojama daugiau gijų ir ilgiau trunka spausdinimas." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height. This results in more apparent layer lines and lower print quality, but slightly shorter print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra didesnis, todėl matomos ryškesnės sluoksnio linijos ir prastesnė spausdinimo kokybė, tačiau šiek tiek trumpesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height. This results in more apparent layer lines and lower print quality, but shorter print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra didesnis, todėl matomos ryškesnės sluoksnio linijos ir prastesnė spausdinimo kokybė, tačiau trumpesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height. This results in less apparent layer lines and higher print quality but longer print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnio linijos ir geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. This results in less apparent layer lines and much higher print quality but much longer print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height. This results in almost negligible layer lines and higher print quality but longer print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl sluoksnio linijos beveik nežymios, spausdinimo kokybė geresnė, tačiau spausdinimo laikas ilgesnis." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. This results in almost negligible layer lines and much higher print quality but much longer print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuvo profiliu, jo sluoksnio aukštis yra mažesnis, greitis ir pagreitis mažesni, o reto užpildymo raštas yra Gyroid. Dėl to sluoksnių linijos yra beveik nepastebimos, o spausdinimo kokybė yra daug geresnė, tačiau spausdinimo laikas yra daug ilgesnis." - -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height. This results in almost negligible layer lines and longer print time." -msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jis turi mažesnį sluoksnio aukštį, todėl sluoksnio linijos yra beveik nežymios, o spausdinimo laikas ilgesnis." - -msgid "It has a big layer height. This results in apparent layer lines and ordinary print quality and print time." -msgstr "Jis pasižymi dideliu sluoksnio aukščiu, todėl matomos sluoksnio linijos ir įprasta spausdinimo kokybė bei spausdinimo laikas." - -msgid "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. This results in higher print strength but more filament consumption and longer print time." -msgstr "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jame yra daugiau sienų kontūrų ir didesnis reto užpildo tankis. Taigi, dėl to spaudiniai būna tvirtesni, tačiau sunaudojama daugiau gijų ir ilgiau trunka spausdinimas." - -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height. This results in more apparent layer lines and lower print quality, but shorter print time in some cases." -msgstr "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra didesnis, dėl to ryškesnės sluoksnio linijos ir prastesnė spausdinimo kokybė, tačiau kai kuriais spausdinimo atvejais sutrumpėja spausdinimo laikas." - -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height. This results in much more apparent layer lines and much lower print quality, but shorter print time in some cases." -msgstr "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra didesnis, todėl sluoksnio linijos yra daug akivaizdesnės, o spausdinimo kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais sutrumpėja spausdinimo laikas." - -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height. This results in less apparent layer lines and slight higher print quality but longer print time." -msgstr "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnio linijos ir šiek tiek geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height. This results in less apparent layer lines and higher print quality but longer print time." -msgstr "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnio linijos ir geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." - -msgid "It has a very big layer height. This results in very apparent layer lines, low print quality and shorter print time." -msgstr "Jo sluoksnio aukštis yra labai didelis. Dėl to sluoksnių linijos yra labai ryškios, spausdinimo kokybė prasta, o spausdinimo laikas trumpesnis." - -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height. This results in very apparent layer lines and much lower print quality, but shorter print time in some cases." -msgstr "Palyginti su numatytuoju 0,8 mm purkštuvo profiliu, jo sluoksnio aukštis yra didesnis. Dėl to sluoksnių linijos yra labai aiškios, o spausdinimo kokybė žymiai prastesnė, tačiau kai kuriais atvejais spausdinimo laikas yra trumpesnis." - -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height. This results in extremely apparent layer lines and much lower print quality, but much shorter print time in some cases." -msgstr "Palyginti su numatytuoju 0,8 mm purkštuvo profiliu, jo sluoksnio aukštis yra daug didesnis. Dėl to sluoksnių linijos tampa labai ryškios, o spausdinimo kokybė – žymiai prastesnė, tačiau kai kuriais atvejais spausdinimo laikas sutrumpėja." - -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height. This results in slightly less but still apparent layer lines and slightly higher print quality but longer print time in some cases." -msgstr "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra šiek tiek mažesnis, todėl gaunama šiek tiek mažiau, bet vis tiek matomų sluoksnio linijų ir šiek tiek geresnė spausdinimo kokybė, tačiau kai kuriais spausdinimo atvejais ilgesnis spausdinimo laikas." - -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height. This results in less but still apparent layer lines and slightly higher print quality but longer print time in some cases." -msgstr "Palyginti su numatytuoju 0,8 mm purkštuvo profiliu, jo sluoksnio aukštis yra mažesnis. Dėl to sluoksnių linijos yra mažesnės, bet vis dar matomos, o spausdinimo kokybė yra šiek tiek geresnė, tačiau kai kuriais atvejais spausdinimo laikas yra ilgesnis." - -msgid "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances." +msgid "" +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" +"Dėl mažo sluoksnio aukščio sluoksnio linijos yra beveik nereikšmingos, o " +"spausdinimo kokybė - aukšta. Tinka daugeliui bendrųjų spausdinimo atvejų." -msgid "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo greitis ir pagreitis " +"yra mažesni, o retas užpildymo raštas (sparse infill) yra „Gyroid“. Tai " +"užtikrina daug aukštesnę spausdinimo kokybę, tačiau spausdinimas trunka daug " +"ilgiau." -msgid "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"šiek tiek didesnis, todėl sluoksnio linijos yra beveik nepastebimos, o " +"spausdinimo laikas šiek tiek trumpesnis." -msgid "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl šiek tiek matomos sluoksnio linijos, tačiau trumpesnis " +"spausdinimo laikas." -msgid "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis. Dėl to sluoksnių linijos yra beveik nematomos, o spausdinimo " +"kokybė yra geresnė, tačiau spausdinimo laikas yra ilgesnis." -msgid "This filament is only used to print models with a low density usually, and some special parameters are required. To get better printing quality, please refer to this wiki: Instructions for printing RC model with foaming PLA (PLA Aero)." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, šis profilis pasižymi " +"mažesnėmis sluoksnių linijomis, mažesniu greičiu bei pagreičiu, o retas " +"užpildymo raštas (sparse infill) yra „Gyroid“. Dėl to sluoksnių linijos " +"tampa beveik nematomos, o spausdinimo kokybė – daug aukštesnė, tačiau " +"spausdinimas trunka daug ilgiau." -msgid "This filament is only used to print models with a low density usually, and some special parameters are required. To get better printing quality, please refer to this wiki: ASA Aero Printing Guide." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis. Dėl to sluoksnių linijos yra minimalios, o spausdinimo kokybė " +"geresnė, tačiau spausdinimo laikas ilgesnis." -msgid "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, šis profilis pasižymi " +"mažesnėmis sluoksnių linijomis, mažesniu greičiu bei pagreičiu, o retas " +"užpildymo raštas (sparse infill) yra „Gyroid“. Tai sumažina sluoksnių " +"linijas iki minimumo ir užtikrina daug aukštesnę spausdinimo kokybę, tačiau " +"spausdinimas trunka daug ilgiau." -msgid "This filament has high enough hardness (about 67D) and is compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide." +msgid "" +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" +"Jo sluoksnio aukštis yra normalus. Dėl to gaunamos vidutinės sluoksnio " +"linijos ir spausdinimo kokybė. Jis tinka daugumai spausdinimo atvejų." -msgid "If you are to print a kind of soft TPU, please don't slice with this profile, and it is only for TPU that has high enough hardness (not less than 55D) and is compatible with the AMS. To get better printing quality, please refer to this wiki: TPU printing guide." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, šis profilis turi " +"daugiau sienelių kontūrų (wall loops) ir didesnį reto užpildymo tankį " +"(sparse infill density). Dėl to spaudiniai yra tvirtesni, tačiau sunaudojama " +"daugiau gijos ir pailgėja spausdinimo laikas." -msgid "This is a water-soluble support filament, and usually it is only for the support structure and not for the model body. Printing this filament is of many requirements, and to get better printing quality, please refer to this wiki: PVA Printing Guide." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl matomos ryškesnės sluoksnio linijos ir prastesnė spausdinimo " +"kokybė, tačiau šiek tiek trumpesnis spausdinimo laikas." -msgid "This is a non-water-soluble support filament, and usually it is only for the support structure and not for the model body. To get better printing quality, please refer to this wiki: Printing Tips for Support Filament and Support Function." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl matomos ryškesnės sluoksnio linijos ir prastesnė spausdinimo " +"kokybė, tačiau trumpesnis spausdinimo laikas." -msgid "The generic presets are conservatively tuned for compatibility with a wider range of filaments. For higher printing quality and speeds, please use Bambu filaments with Bambu presets." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl mažiau matomos sluoksnio linijos ir geresnė spausdinimo " +"kokybė, tačiau ilgesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, šis profilis pasižymi " +"mažesniu sluoksnio aukščiu, mažesniu greičiu bei pagreičiu, o retas " +"užpildymo raštas (sparse infill) yra „Gyroid“. Tai padaro sluoksnių linijas " +"mažiau pastebimas ir užtikrina daug aukštesnę spausdinimo kokybę, tačiau " +"spausdinimas trunka daug ilgiau." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl sluoksnio linijos beveik nežymios, spausdinimo kokybė " +"geresnė, tačiau spausdinimo laikas ilgesnis." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, šis profilis pasižymi " +"mažesniu sluoksnio aukščiu, mažesniu greičiu bei pagreičiu, o retas " +"užpildymo raštas (sparse infill) yra „Gyroid“. Dėl to sluoksnių linijos " +"tampa beveik nepastebimos, o spausdinimo kokybė – daug aukštesnė, tačiau " +"spausdinimas trunka daug ilgiau." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jis turi mažesnį " +"sluoksnio aukštį, todėl sluoksnio linijos yra beveik nežymios, o spausdinimo " +"laikas ilgesnis." + +msgid "" +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." +msgstr "" +"Jis pasižymi dideliu sluoksnio aukščiu, todėl matomos sluoksnio linijos ir " +"įprasta spausdinimo kokybė bei spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." +msgstr "" +"Palyginti su numatytuoju 0,6 mm purkštuko profiliu, šis profilis turi " +"daugiau sienelių kontūrų (wall loops) ir didesnį reto užpildymo tankį " +"(sparse infill density). Dėl to spaudiniai yra tvirtesni, tačiau sunaudojama " +"daugiau gijos ir pailgėja spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl sluoksnių linijos yra ryškesnės, o spausdinimo kokybė " +"žemesnė, tačiau kai kuriais atvejais sutrumpėja spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl sluoksnių linijos yra daug ryškesnės, o spausdinimo kokybė " +"daug žemesnė, tačiau kai kuriais atvejais sutrumpėja spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." +msgstr "" +"Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl mažiau matomos sluoksnių linijos ir šiek tiek geresnė " +"spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." +msgstr "" +"Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl mažiau matomos sluoksnių linijos ir geresnė spausdinimo " +"kokybė, tačiau ilgesnis spausdinimo laikas." + +msgid "" +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and shorter print time." +msgstr "" +"Jo sluoksnio aukštis yra labai didelis. Dėl to sluoksnių linijos yra labai " +"ryškios, spausdinimo kokybė prasta, o spausdinimo laikas trumpesnis." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality, but shorter print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm purkštuvo profiliu, jo sluoksnio aukštis yra " +"didesnis. Dėl to sluoksnių linijos yra labai aiškios, o spausdinimo kokybė " +"žymiai prastesnė, tačiau kai kuriais atvejais spausdinimo laikas yra " +"trumpesnis." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality, but much shorter print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm purkštuvo profiliu, jo sluoksnio aukštis yra " +"daug didesnis. Dėl to sluoksnių linijos tampa labai ryškios, o spausdinimo " +"kokybė – žymiai prastesnė, tačiau kai kuriais atvejais spausdinimo laikas " +"sutrumpėja." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"šiek tiek mažesnis, todėl sluoksnių linijos yra šiek tiek mažiau pastebimos " +"(bet vis dar matomos), o spausdinimo kokybė šiek tiek geresnė, tačiau kai " +"kuriais atvejais pailgėja spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality but longer print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl sluoksnių linijos yra mažiau pastebimos (bet vis dar " +"matomos), o spausdinimo kokybė šiek tiek geresnė, tačiau kai kuriais " +"atvejais pailgėja spausdinimo laikas." + +msgid "" +"This is neither a commonly used filament, nor one of Bambu filaments, and it " +"varies a lot from brand to brand. So, it's highly recommended to ask its " +"vendor for suitable profile before printing and adjust some parameters " +"according to its performances." +msgstr "" +"Tai nėra nei dažnai naudojama gija, nei viena iš „Bambu“ gijų, be to, ji " +"labai skiriasi priklausomai od prekės ženklo. Todėl prieš spausdinant " +"primygtinai rekomenduojama pasiteirauti jos tiekėjo tinkamo profilio ir " +"pakoreguoti kai kuriuos parametrus atsižvelgiant į gijos savybes." + +msgid "" +"When printing this filament, there's a risk of warping and low layer " +"adhesion strength. To get better results, please refer to this wiki: " +"Printing Tips for High Temp / Engineering materials." +msgstr "" +"Spausdinant šią giją kyla deformavimosi (warping) ir prasto sluoksnių " +"sukibimo tvirtumo rizika. Norėdami pasiekti geresnių rezultatų, skaitykite " +"šį „Wiki“ puslapį: „Aukštos temperatūros ir inžinerinių medžiagų spausdinimo " +"patarimai“." + +msgid "" +"When printing this filament, there's a risk of nozzle clogging, oozing, " +"warping and low layer adhesion strength. To get better results, please refer " +"to this wiki: Printing Tips for High Temp / Engineering materials." +msgstr "" +"Spausdinant šią giją kyla purkštuko užsikimšimo, medžiagos nutekėjimo " +"(oozing), deformavimosi (warping) ir prasto sluoksnių sukibimo tvirtumo " +"rizika. Norėdami pasiekti geresnių rezultatų, skaitykite šį „Wiki“ puslapį: " +"„Aukštos temperatūros ir inžinerinių medžiagų spausdinimo patarimai“." + +msgid "" +"To get better transparent or translucent results with the corresponding " +"filament, please refer to this wiki: Printing tips for transparent PETG." +msgstr "" +"Norėdami išgauti geresnį skaidrumo ar peršviečiamumo rezultatą su atitinkama " +"gija, skaitykite šį „Wiki“ puslapį: „Skaidraus PETG spausdinimo patarimai“." + +msgid "" +"To make the prints get higher gloss, please dry the filament before use, and " +"set the outer wall speed to be 40 to 60 mm/s when slicing." +msgstr "" +"Norėdami, kad spaudiniai labiau blizgėtų, prieš naudodami išdžiovinkite " +"giją, o pjaustyklėje (slicing) nustatykite 40–60 mm/s išorinės sienelės " +"greitį." + +msgid "" +"This filament is only used to print models with a low density usually, and " +"some special parameters are required. To get better printing quality, please " +"refer to this wiki: Instructions for printing RC model with foaming PLA (PLA " +"Aero)." +msgstr "" +"Ši gija paprastai naudojama tik mažo tankio modeliams spausdinti, tam " +"reikalingi specialūs parametrai. Norėdami gauti geresnę spausdinimo kokybę, " +"skaitykite šį „Wiki“ puslapį: „RC modelių spausdinimo su putojančiu PLA (PLA " +"Aero) instrukcijos“." + +msgid "" +"This filament is only used to print models with a low density usually, and " +"some special parameters are required. To get better printing quality, please " +"refer to this wiki: ASA Aero Printing Guide." +msgstr "" +"Ši gija paprastai naudojama tik mažo tankio modeliams spausdinti, tam " +"reikalingi specialūs parametrai. Norėdami gauti geresnę spausdinimo kokybę, " +"skaitykite šį „Wiki“ puslapį: „ASA Aero spausdinimo gidas“." + +msgid "" +"This filament is too soft and not compatible with the AMS. Printing it is of " +"many requirements, and to get better printing quality, please refer to this " +"wiki: TPU printing guide." +msgstr "" +"Ši gija yra per minkšta ir nesuderinama su AMS sistema. Jos spausdinimui " +"keliama daug reikalavimų, todėl norėdami gauti geresnę kokybę, skaitykite šį " +"„Wiki“ puslapį: „TPU spausdinimo gidas“." + +msgid "" +"This filament has high enough hardness (about 67D) and is compatible with " +"the AMS. Printing it is of many requirements, and to get better printing " +"quality, please refer to this wiki: TPU printing guide." +msgstr "" +"Ši gija yra pakankamai keta (apie 67D) ir yra suderinama su AMS sistema. Jos " +"spausdinimui keliama daug reikalavimų, todėl norėdami gauti geresnę kokybę, " +"skaitykite šį „Wiki“ puslapį: „TPU spausdinimo gidas“." + +msgid "" +"If you are to print a kind of soft TPU, please don't slice with this " +"profile, and it is only for TPU that has high enough hardness (not less than " +"55D) and is compatible with the AMS. To get better printing quality, please " +"refer to this wiki: TPU printing guide." +msgstr "" +"Jei ketinate spausdinti minkšto tipo TPU, nepjaustykite modelio naudodami šį " +"profilį – jis skirtas tik pakankamai kietam TPU (ne mažiau kaip 55D), kuris " +"yra suderinamas su AMS sistema. Norėdami gauti geresnę kokybę, skaitykite šį " +"„Wiki“ puslapį: „TPU spausdinimo gidas“." + +msgid "" +"This is a water-soluble support filament, and usually it is only for the " +"support structure and not for the model body. Printing this filament is of " +"many requirements, and to get better printing quality, please refer to this " +"wiki: PVA Printing Guide." +msgstr "" +"Tai vandenyje tirpi gija palaikančioms konstrukcijoms (supports), paprastai " +"ji naudojama tik atramoms, o ne pačiam modelio korpusui. Šios gijos " +"spausdinimui keliama daug reikalavimų, todėl norėdami gauti geresnę kokybę, " +"skaitykite šį „Wiki“ puslapį: „PVA spausdinimo gidas“." + +msgid "" +"This is a non-water-soluble support filament, and usually it is only for the " +"support structure and not for the model body. To get better printing " +"quality, please refer to this wiki: Printing Tips for Support Filament and " +"Support Function." +msgstr "" +"Tai vandenyje netirpi gija palaikančioms konstrukcijoms (supports), " +"paprastai ji naudojama tik atramoms, o ne pačiam modelio korpusui. Norėdami " +"gauti geresnę kokybę, skaitykite šį „Wiki“ puslapį: „Palaikančiųjų gijų ir " +"atramų funkcijos spausdinimo patarimai“." + +msgid "" +"The generic presets are conservatively tuned for compatibility with a wider " +"range of filaments. For higher printing quality and speeds, please use Bambu " +"filaments with Bambu presets." +msgstr "" +"Generiniai (bendrieji) profiliai yra suderinti konservatyviai, kad tiktų kuo " +"platesniam gijų asortimentui. Norėdami pasiekti geresnės spausdinimo kokybės " +"ir didesnio greičio, naudokite „Bambu“ gijas su joms skirtais „Bambu“ " +"profiliais." msgid "High quality profile for 0.2mm nozzle, prioritizing print quality." msgstr "" +"Aukštos kokybės profilis 0,2 mm purkštukui, teikiantis pirmenybę spausdinimo " +"kokybei." -msgid "High quality profile for 0.16mm layer height, prioritizing print quality and strength." +msgid "" +"High quality profile for 0.16mm layer height, prioritizing print quality and " +"strength." msgstr "" +"Aukštos kokybės profilis 0,16 mm sluoksnio aukščiui, teikiantis pirmenybę " +"spausdinimo kokybei ir tvirtumui." msgid "Standard profile for 0.16mm layer height, prioritizing speed." msgstr "" +"Standartinis profilis 0,16 mm sluoksnio aukščiui, teikiantis pirmenybę " +"greičiui." -msgid "High quality profile for 0.2mm layer height, prioritizing strength and print quality." +msgid "" +"High quality profile for 0.2mm layer height, prioritizing strength and print " +"quality." msgstr "" +"Aukštos kokybės profilis 0,2 mm sluoksnio aukščiui, teikiantis pirmenybę " +"tvirtumui ir spausdinimo kokybei." msgid "Standard profile for 0.4mm nozzle, prioritizing speed." msgstr "" +"Standartinis profilis 0,4 mm purkštukui, teikiantis pirmenybę greičiui." -msgid "High quality profile for 0.6mm nozzle, prioritizing print quality and strength." +msgid "" +"High quality profile for 0.6mm nozzle, prioritizing print quality and " +"strength." msgstr "" +"Aukštos kokybės profilis 0,6 mm purkštukui, teikiantis pirmenybę spausdinimo " +"kokybei ir tvirtumui." msgid "Strength profile for 0.6mm nozzle, prioritizing strength." msgstr "" +"Tvirtumo profilis 0,6 mm purkštukui, teikiantis pirmenybę konstrukcijos " +"tvirtumui." msgid "Standard profile for 0.6mm nozzle, prioritizing speed." msgstr "" +"Standartinis profilis 0,6 mm purkštukui, teikiantis pirmenybę greičiui." msgid "High quality profile for 0.8mm nozzle, prioritizing print quality." msgstr "" +"Aukštos kokybės profilis 0,8 mm purkštukui, teikiantis pirmenybę spausdinimo " +"kokybei." msgid "Strength profile for 0.8mm nozzle, prioritizing strength." msgstr "" +"Tvirtumo profilis 0,8 mm purkštukui, teikiantis pirmenybę konstrukcijos " +"tvirtumui." msgid "Standard profile for 0.8mm nozzle, prioritizing speed." msgstr "" +"Standartinis profilis 0,8 mm purkštukui, teikiantis pirmenybę greičiui." msgid "No AMS" msgstr "Be AMS" @@ -18397,14 +23497,19 @@ msgstr "Įrenginio būsena" msgid "AMS Status" msgstr "AMS būsena" -msgid "Please select the devices you would like to manage here (up to 6 devices)" -msgstr "Prašome pasirinkti įrenginius, kurios norėsite čia valdyti (iki 6 įrenginių)" +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" +"Prašome pasirinkti įrenginius, kurios norėsite čia valdyti (iki 6 įrenginių)" msgid "Printing Options" msgstr "Spausdinimo parinktys" +msgid "Bed Leveling" +msgstr "Lyginimas pagal spausdinimo pagrindą" + msgid "Flow Dynamic Calibration" -msgstr "Dinaminis srauto kalibravimas" +msgstr "Dinaminis srauto kalibravimas (K-factor)" msgid "Send Options" msgstr "Siuntimo parinktys" @@ -18412,15 +23517,20 @@ msgstr "Siuntimo parinktys" msgid "Send to" msgstr "Siųsti į" -msgid "printers at the same time. (It depends on how many devices can undergo heating at the same time.)" -msgstr "spausdintuvus vienu metu. (Priklauso nuo to, kiek įrenginių gali būti kaitinami vienu metu.)" +msgid "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" +"spausdintuvus vienu metu. (Priklauso nuo to, kiek įrenginių gali būti " +"kaitinama vienu metu.)" msgid "Wait" msgstr "Laukti" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "minute each batch. (It depends on how long it takes to complete heating.)" -msgstr "minutę kiekvienai partijai. (Priklauso nuo to, kiek laiko trunka įkaitinimas.)" +msgid "" +"minute each batch. (It depends on how long it takes to complete the heating.)" +msgstr "" +"min. kiekvienai partijai. (Priklauso nuo to, kiek laiko trunka įkaitinimas.)" msgid "Task Sending" msgstr "Užduotis siunčiama" @@ -18429,7 +23539,7 @@ msgid "Task Sent" msgstr "Užduotis nusiųsta" msgid "Edit multiple printers" -msgstr "Taisyti kelis spausdintuvus" +msgstr "Redaguoti kelis spausdintuvus" msgid "Select connected printers (0/6)" msgstr "Pasirinkite prijungtus spausdintuvus (0/6)" @@ -18446,7 +23556,7 @@ msgid "No task" msgstr "Nėra užduočių" msgid "Edit Printers" -msgstr "Taisyti spausdintuvus" +msgstr "Redaguoti spausdintuvus" msgid "Task Name" msgstr "Užduoties pavadinimas" @@ -18470,7 +23580,7 @@ msgid "Upgrading" msgstr "Atnaujinama" msgid "Syncing" -msgstr "sinchronizuojama" +msgstr "Sinchronizuojama" msgid "Printing Finish" msgstr "Spausdinimas baigtas" @@ -18506,58 +23616,74 @@ msgid "Removed" msgstr "Pašalinta" msgid "Don't remind me again" -msgstr "" +msgstr "Daugiau neberodyti šio priminimo" msgid "No further pop-up will appear. You can reopen it in 'Preferences'" msgstr "" +"Iškylantieji langai daugiau nebus rodomi. Juos vėl galite įjungti " +"„Nuostatose“" msgid "Filament-Saving Mode" -msgstr "" +msgstr "Gijos taupymo režimas" msgid "Convenience Mode" -msgstr "" +msgstr "Patogumo režimas" msgid "Custom Mode" -msgstr "" +msgstr "Pasirinktinis režimas" -msgid "Generates filament grouping for the left and right nozzles based on the most filament-saving principles to minimize waste." +msgid "" +"Generates filament grouping for the left and right nozzles based on the most " +"filament-saving principles to minimize waste." msgstr "" +"Sugrupuoja kairiojo ir dešiniojo purkštukų gijas remiantis maksimalaus " +"taupymo principais, kad būtų sumažintas gijos likučių kiekis." -msgid "Generates filament grouping for the left and right nozzles based on the printer's actual filament status, reducing the need for manual filament adjustment." +msgid "" +"Generates filament grouping for the left and right nozzles based on the " +"printer's actual filament status, reducing the need for manual filament " +"adjustment." msgstr "" +"Sugrupuoja kairiojo ir dešiniojo purkštukų gijas atsižvelgiant į faktinę " +"spausdintuvo gijų būseną, taip sumažinant poreikį rankiniu būdu keisti gijas." msgid "Manually assign filament to the left or right nozzle" -msgstr "" +msgstr "Rankiniu būdu priskirti giją kairiajam arba dešiniajam purkštukui" msgid "Global settings" -msgstr "" +msgstr "Visuotiniai nustatymai" msgid "Video tutorial" -msgstr "" +msgstr "Vaizdo pamoka" msgid "(Sync with printer)" -msgstr "" +msgstr "(Sinchronizuoti su spausdintuvu)" msgid "We will slice according to this grouping method:" -msgstr "" +msgstr "Pjaustymas bus atliekamas pagal šį priskyrimo metodą:" msgid "Tip: You can drag the filaments to reassign them to different nozzles." msgstr "" +"Patarimas: galite vilkti gijas, kad priskirtumėte jas kitiems purkštukams." -msgid "The filament grouping method for current plate is determined by the dropdown option at the slicing plate button." +msgid "" +"The filament grouping method for current plate is determined by the dropdown " +"option at the slicing plate button." msgstr "" +"Dabartinio pagrindo gijų priskyrimo metodą lemia išskleidžiamojo sąrašo " +"parinktis, esanti prie pagrindo pjaustymo mygtuko." msgid "Connected to Obico successfully!" msgstr "Sėkmingai prisijungta prie \"Obico\"!" msgid "Could not connect to Obico" -msgstr "Nepavyko prisijungti prie \"Obico" +msgstr "Nepavyko prisijungti prie „Obico“" msgid "Connected to SimplyPrint successfully!" msgstr "Sėkmingai prisijungta prie \"SimplyPrint\"!" msgid "Could not connect to SimplyPrint" -msgstr "Nepavyko prisijungti prie \"SimplyPrint" +msgstr "Nepavyko prisijungti prie „SimplyPrint“" msgid "Internal error" msgstr "Vidinė klaida" @@ -18566,119 +23692,140 @@ msgid "Unknown error" msgstr "Nežinoma klaida" msgid "SimplyPrint account not linked. Go to Connect options to set it up." -msgstr "\"SimplyPrint\" paskyra nesusieta. Eikite į Prisijungimo parinktis ir ją nustatykite." +msgstr "" +"\"SimplyPrint\" paskyra nesusieta. Eikite į Prisijungimo parinktis ir ją " +"nustatykite." msgid "Flashforge returned an invalid JSON response." -msgstr "" +msgstr "„Flashforge“ grąžino negaliojantį JSON atsakymą." msgid "No Flashforge printers were discovered on the local network." -msgstr "" +msgstr "Vietiniame tinkle nerasta jokių „Flashforge“ spausdintuvų." msgid "Connected to Flashforge local API successfully." -msgstr "" +msgstr "Sėkmingai prisijungta prie „Flashforge“ vietinės API." msgid "Serial connection to Flashforge is working correctly." msgstr "Nuoseklusis ryšys su „Flashforge“ veikia tinkamai." msgid "Could not connect to Flashforge local API" -msgstr "" +msgstr "Nepavyko prisijungti prie „Flashforge“ vietinės API" msgid "Could not connect to Flashforge via serial" msgstr "Nepavyko prisijungti prie „Flashforge“ per nuoseklųjį prievadą" msgid "Flashforge local API requires both serial number and access code." msgstr "" +"„Flashforge“ vietinei API reikalingas ir serijos numeris, ir prieigos kodas." msgid "Printer returned an error" -msgstr "" +msgstr "Spausdintuvas grąžino klaidą" msgid "Missing system_info in response" -msgstr "" +msgstr "Atsakyme trūksta „system_info“" msgid "Missing printer serial number in response" -msgstr "" +msgstr "Atsakyme trūksta spausdintuvo serijos numerio" msgid "Error parsing response" -msgstr "" +msgstr "Klaida analizuojant atsakymą" msgid "ElegooLink not detected" -msgstr "" +msgstr "„ElegooLink“ neaptikta" msgid "Invalid access code" -msgstr "" +msgstr "Neteisingas prieigos kodas" msgid "CC2 device not detected" -msgstr "" +msgstr "CC2 įrenginys neaptiktas" msgid "Connection to ElegooLink is working correctly." -msgstr "" +msgstr "Ryšys su „ElegooLink“ veikia tinkamai." msgid "Could not connect to ElegooLink" -msgstr "" +msgstr "Nepavyko prisijungti prie „ElegooLink“" #, boost-format msgid "Error code: %1%" -msgstr "" +msgstr "Klaidos kodas: %1%" msgid "Upload failed" -msgstr "" +msgstr "Įkėlimas nepavyko" -msgid "The file has been transferred, but some unknown errors occurred. Please check the device page for the file and try to start printing again." +msgid "" +"The file has been transferred, but some unknown errors occurred. Please " +"check the device page for the file and try to start printing again." msgstr "" +"Failas buvo perduotas, tačiau įvyko nežinomų klaidų. Patikrinkite failą " +"įrenginio puslapyje ir bandykite paleisti spausdinimą iš naujo." msgid "Failed to open file for upload." -msgstr "" +msgstr "Nepavyko atverti failo įkėlimui." msgid "Failed to read file chunk for upload." -msgstr "" +msgstr "Nepavyko nuskaityti failo dalies įkėlimui." msgid "CC2 upload failed" -msgstr "" +msgstr "CC2 įkėlimas nepavyko" msgid "The file is empty or could not be read." -msgstr "" +msgstr "Failas yra tuščias arba jo nepavyko nuskaityti." msgid "Failed to calculate file checksum." -msgstr "" +msgstr "Nepavyko apskaičiuoti failo kontrolinės sumos." msgid "Error code not found" -msgstr "" +msgstr "Klaidos kodas nerastas" -msgid "The printer is busy, Please check the device page for the file and try to start printing again." +msgid "" +"The printer is busy, Please check the device page for the file and try to " +"start printing again." msgstr "" +"Spausdintuvas užimtas. Patikrinkite failą įrenginio puslapyje ir bandykite " +"paleisti spausdinimą iš naujo." msgid "The file is lost, please check and try again." -msgstr "" +msgstr "Failas prarastas, patikrinkite ir bandykite dar kartą." msgid "The file is corrupted, please check and try again." -msgstr "" +msgstr "Failas sugadintas, patikrinkite ir bandykite dar kartą." msgid "Transmission abnormality, please check and try again." -msgstr "" +msgstr "Perdavimo sutrikimas, patikrinkite ir bandykite dar kartą." msgid "The file does not match the printer, please check and try again." -msgstr "" +msgstr "Failas neatitinka spausdintuvo, patikrinkite ir bandykite dar kartą." msgid "Start print timeout" -msgstr "" +msgstr "Viršytas spausdinimo paleidimo laikas" msgid "Start print failed" -msgstr "" +msgstr "Spausdinimo paleidimo klaida" msgid "Connected to CrealityPrint successfully!" -msgstr "" +msgstr "Sėkmingai prisijungta prie „CrealityPrint“!" msgid "Could not connect to CrealityPrint" -msgstr "" +msgstr "Nepavyko prisijungti prie „CrealityPrint“" -msgid "Connection timed out. Please check if the printer and computer network are functioning properly, and confirm that they are on the same network." +msgid "" +"Connection timed out. Please check if the printer and computer network are " +"functioning properly, and confirm that they are on the same network." msgstr "" +"Baigėsi prisijungimo laikas. Patikrinkite, ar spausdintuvo ir kompiuterio " +"tinklas veikia tinkamai, ir įsitikinkite, kad jie yra tame pačiame tinkle." msgid "The Hostname/IP/URL could not be parsed, please check it and try again." msgstr "" +"Nepavyko išanalizuoti mazgo vardo / IP / URL, patikrinkite ir bandykite dar " +"kartą." -msgid "File/data transfer interrupted. Please check the printer and network, then try it again." +msgid "" +"File/data transfer interrupted. Please check the printer and network, then " +"try it again." msgstr "" +"Failo / duomenų perdavimas nutrūko. Patikrinkite spausdintuvą bei tinklą ir " +"bandykite dar kartą." msgid "The provided state is not correct." msgstr "Pateikta būsena neteisinga." @@ -18702,26 +23849,30 @@ msgid "Detection radius" msgstr "Aptikimo spindulys" msgid "Selected" -msgstr "" +msgstr "Pasirinkta" msgid "Auto-generate" -msgstr "" +msgstr "Automatiškai sugeneruoti" msgid "Generate brim ears using Max angle and Detection radius" msgstr "" +"Sugeneruoti krašto „ausis“ naudojant maksimalų kampą ir aptikimo spindulį" msgid "Add or Select" -msgstr "" +msgstr "Pridėti arba pasirinkti" -msgid "Warning: The brim type is not set to \"painted\", the brim ears will not take effect!" -msgstr "Įspėjimas: Jei krašto tipas nenustatytas kaip „pieštas“, krašto \"ausys\" nebus įjungtos!" +msgid "" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" +msgstr "" +"Įspėjimas: Jei krašto tipas nenustatytas kaip „pieštas“, krašto \"ausys\" " +"nebus įjungtos!" msgid "Set the brim type of this object to \"painted\"" msgstr "Nustatykite šio objekto krašto tipą kaip „pieštas“" -# TODO: Review, changed by lang refactor. PR 14254 msgid "invalid brim ears" -msgstr " netinkamos krašto \"ausys\"" +msgstr "negaliojančios krašto „ausys“" msgid "Brim Ears" msgstr "Krašto \"ausys\"" @@ -18730,275 +23881,336 @@ msgid "Please select single object." msgstr "Pasirinkite vieną objektą." msgid "Entering Brim Ears" -msgstr "" +msgstr "Įeinama į krašto „ausų“ režimą" msgid "Leaving Brim Ears" -msgstr "" +msgstr "Išeinama iš krašto „ausų“ režimo" msgid "Zoom Out" -msgstr "" +msgstr "Nutolinti" msgid "Zoom In" -msgstr "" +msgstr "Artinti" msgid "Load skipping objects information failed. Please try again." msgstr "" +"Nepavyko įkelti praleidžiamų objektų informacijos. Bandykite dar kartą." msgid "Failed to create the temporary folder." -msgstr "" +msgstr "Nepavyko sukurti laikinojo aplanko." #, c-format, boost-format msgid "/%d Selected" -msgstr "" +msgstr "/Pasirinkta: %d" msgid "Nothing selected" -msgstr "" +msgstr "Nieko nepasirinkta" msgid "Over 64 objects in single plate" -msgstr "" +msgstr "Viename pagrinde yra daugiau nei 64 objektai" msgid "The current print job cannot be skipped" -msgstr "" +msgstr "Dabartinės spausdinimo užduoties negalima praleisti" msgid "Skipping all objects." -msgstr "" +msgstr "Praleidžiami visi objektai." msgid "The printing job will be stopped. Continue?" -msgstr "" +msgstr "Spausdinimo užduotis bus sustabdyta. Tęsti?" #, c-format, boost-format msgid "Skipping %d objects." -msgstr "" +msgstr "Praleidžiama objektų: %d." msgid "This action cannot be undone. Continue?" -msgstr "" +msgstr "Šio veiksmo atšaukti nebus galima. Tęsti?" msgid "Skipping objects." -msgstr "" +msgstr "Praleidžiami objektai." msgid "Select Filament" -msgstr "" +msgstr "Pasirinkti giją" msgid "Null Color" -msgstr "" +msgstr "Be spalvos" msgid "Multiple Color" -msgstr "" +msgstr "Daugiaspalvis" msgid "Official Filament" -msgstr "" +msgstr "Oficiali gija" msgid "More Colors" -msgstr "" +msgstr "Daugiau spalvų" msgid "Network Plug-in Update Available" -msgstr "" +msgstr "Yra tinklo papildinio atnaujinimas" msgid "Bambu Network Plug-in Required" -msgstr "" +msgstr "Reikalingas „Bambu“ tinklo papildinys" -msgid "The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it." +msgid "" +"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it." msgstr "" +"„Bambu“ tinklo papildinys yra sugadintas arba nesuderinamas. Įdiekite jį iš " +"naujo." -msgid "The Bambu Network Plug-in is required for cloud features, printer discovery, and remote printing." +msgid "" +"The Bambu Network Plug-in is required for cloud features, printer discovery, " +"and remote printing." msgstr "" +"„Bambu“ tinklo papildinys yra būtinas, kad veiktų debesijos funkcijos, " +"spausdintuvo aptikimas ir nuotolinis spausdinimas." #, c-format, boost-format msgid "Error: %s" -msgstr "" +msgstr "Klaida: %s" msgid "Show details" -msgstr "" +msgstr "Rodyti išsamiau" msgid "Version to install:" -msgstr "" +msgstr "Diegiama versija:" msgid "Download and Install" -msgstr "" +msgstr "Atsisiųsti ir įdiegti" msgid "Skip for Now" -msgstr "" +msgstr "Kol kas praleisti" msgid "A new version of the Bambu Network Plug-in is available." -msgstr "" +msgstr "Išleista nauja „Bambu“ tinklo papildinio versija." #, c-format, boost-format msgid "Current version: %s" -msgstr "" +msgstr "Dabartinė versija: %s" msgid "Update to version:" -msgstr "" +msgstr "Atnaujinti iki versijos:" msgid "Update Now" -msgstr "" +msgstr "Atnaujinti dabar" msgid "Remind Later" -msgstr "" +msgstr "Priminti vėliau" msgid "Skip Version" -msgstr "" +msgstr "Praleisti šią versiją" msgid "Don't Ask Again" -msgstr "" +msgstr "Daugiau neklausti" msgid "The Bambu Network Plug-in has been installed successfully." -msgstr "" +msgstr "„Bambu“ tinklo papildinys sėkmingai įdiegtas." -msgid "A restart is required to load the new plug-in. Would you like to restart now?" +msgid "" +"A restart is required to load the new plug-in. Would you like to restart now?" msgstr "" +"Norint įkelti naują papildinį, programą reikia paleisti iš naujo. Ar norite " +"paleisti dabar?" msgid "Restart Now" -msgstr "" +msgstr "Paleisti iš naujo dabar" msgid "Restart Later" -msgstr "" +msgstr "Paleisti iš naujo vėliau" msgid "NO RAMMING AT ALL" -msgstr "" +msgstr "VISIŠKAI NENAUDOTI SUTANKINIMO" msgid "Volumetric speed" -msgstr "" +msgstr "Tūrinis greitis" msgid "Step file import parameters" -msgstr "" +msgstr "STEP failų importavimo parametrai" -msgid "Smaller linear and angular deflections result in higher-quality transformations but increase the processing time." +msgid "" +"Smaller linear and angular deflections result in higher-quality " +"transformations but increase the processing time." msgstr "" +"Mažesni linijiniai ir kampiniai nuokrypiai užtikrina aukštesnės kokybės " +"transformacijas, tačiau pailgina apdorojimo laiką." msgid "Linear Deflection" -msgstr "" +msgstr "Linijinis nuokrypis" msgid "Please input a valid value (0.001 < linear deflection < 0.1)" -msgstr "" +msgstr "Įveskite galiojančią reikšmę (0,001 < linijinis nuokrypis < 0,1)" msgid "Angle Deflection" -msgstr "" +msgstr "Kampinis nuokrypis" msgid "Please input a valid value (0.01 < angle deflection < 1.0)" -msgstr "" +msgstr "Įveskite galiojančią reikšmę (0,01 < kampinis nuokrypis < 1,0)" msgid "Split compound and compsolid into multiple objects" -msgstr "" +msgstr "Skaidyti „compound“ ir „compsolid“ darinius į kelis objektus" msgid "Number of triangular facets" -msgstr "" +msgstr "Trikampių briaunų skaičius" msgid "Calculating, please wait..." -msgstr "" +msgstr "Skaičiuojama, palaukite..." msgid "PresetBundle" -msgstr "" +msgstr "ProfiliųRinkinys" msgid "Bundle folder does not exist." -msgstr "" +msgstr "Rinkinio aplankas neegzistuoja." msgid "Failed to open folder." -msgstr "" +msgstr "Nepavyko atverti aplanko." msgid "Delete selected bundle from folder and all presets loaded from it?" msgstr "" +"Ištrinti pasirinktą rinkinį iš aplanko ir visus iš jo įkeltus profilius?" msgid "Delete Bundle" -msgstr "" +msgstr "Ištrinti rinkinį" msgid "Failed to remove bundle." -msgstr "" +msgstr "Nepavyko pašalinti rinkinio." msgid "Remove Bundle" -msgstr "" +msgstr "Pašalinti rinkinį" msgid "Unsubscribe bundle?" -msgstr "" +msgstr "Atsisakyti rinkinio prenumeratos?" msgid "UnsubscribeBundle" -msgstr "" +msgstr "AtsisakytiRinkinioPrenumeratos" msgid "Failed to unsubscribe bundle." -msgstr "" +msgstr "Nepavyko atsisakyti rinkinio prenumeratos." msgid "Unsubscribe Bundle" -msgstr "" +msgstr "Atsisakyti rinkinio prenumeratos" msgid "ExportPresetBundle" -msgstr "" +msgstr "EksportuotiProfiliųRinkinį" msgid "Save preset bundle" -msgstr "" +msgstr "Išsaugoti profilių rinkinį" -msgid "Performing desktop integration failed - boost::filesystem::canonical did not return appimage path." +msgid "" +"Performing desktop integration failed - boost::filesystem::canonical did not " +"return appimage path." msgstr "" +"Nepavyko atlikti integracijos su darbalaukiu – " +"„boost::filesystem::canonical“ negrąžino „AppImage“ kelio." msgid "Performing desktop integration failed - Could not find executable." msgstr "" +"Nepavyko atlikti integracijos su darbalaukiu – nepavyko rasti vykdomojo " +"failo." -msgid "Performing desktop integration failed because the application directory was not found." +msgid "" +"Performing desktop integration failed because the application directory was " +"not found." msgstr "" +"Nepavyko atlikti integracijos su darbalaukiu, nes nerastas programos " +"katalogas." -msgid "Performing desktop integration failed - could not create Gcodeviewer desktop file. OrcaSlicer desktop file was probably created successfully." +msgid "" +"Performing desktop integration failed - could not create Gcodeviewer desktop " +"file. OrcaSlicer desktop file was probably created successfully." msgstr "" +"Nepavyko atlikti integracijos su darbalaukiu – nepavyko sukurti " +"„Gcodeviewer“ darbalaukio failo. „OrcaSlicer“ darbalaukio failas tikriausiai " +"buvo sukurtas sėkmingai." -msgid "Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path." +msgid "" +"Performing downloader desktop integration failed - " +"boost::filesystem::canonical did not return appimage path." msgstr "" +"Nepavyko atlikti parsisiuntimo įrankio integracijos su darbalaukiu – " +"„boost::filesystem::canonical“ negrąžino „AppImage“ kelio." -msgid "Performing downloader desktop integration failed - Could not find executable." +msgid "" +"Performing downloader desktop integration failed - Could not find executable." msgstr "" +"Nepavyko atlikti parsisiuntimo įrankio integracijos su darbalaukiu – " +"nepavyko rasti vykdomojo failo." -msgid "Performing downloader desktop integration failed because the application directory was not found." +msgid "" +"Performing downloader desktop integration failed because the application " +"directory was not found." msgstr "" +"Nepavyko atlikti parsisiuntimo įrankio integracijos su darbalaukiu, nes " +"nerastas programos katalogas." msgid "Desktop Integration" -msgstr "" +msgstr "Integracija su darbalaukiu" msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" "\n" "Press \"Perform\" to proceed." msgstr "" +"Integracija su darbalaukiu nustato šį vykdomąjį failą taip, kad sistema " +"galėtų jį rasti.\n" +"\n" +"Norėdami tęsti, paspauskite „Atlikti“." msgid "The download has failed" -msgstr "" +msgstr "Atsisiuntimas nepavyko" #. TRN %1% = file path #, boost-format msgid "Can't create file at %1%" -msgstr "" +msgstr "Nepavyko sukurti failo ties %1%" msgid "Archive preview" -msgstr "" +msgstr "Archyvo peržiūra" msgid "Open File" -msgstr "" +msgstr "Atverti failą" -msgid "The filament may not be compatible with the current machine settings. Generic filament presets will be used." +msgid "" +"The filament may not be compatible with the current machine settings. " +"Generic filament presets will be used." msgstr "" +"Gija gali būti nesuderinama su dabartiniais įrenginio nustatymais. Bus " +"naudojami bendrieji gijos profiliai." -msgid "The filament model is unknown. Still using the previous filament preset." -msgstr "" +msgid "" +"The filament model is unknown. Still using the previous filament preset." +msgstr "Gijos modelis nežinomas. Toliau naudojamas ankstesnis gijos profilis." msgid "The filament model is unknown. Generic filament presets will be used." -msgstr "" +msgstr "Gijos modelis nežinomas. Bus naudojami bendrieji gijos profiliai." -msgid "The filament may not be compatible with the current machine settings. A random filament preset will be used." +msgid "" +"The filament may not be compatible with the current machine settings. A " +"random filament preset will be used." msgstr "" +"Gija gali būti nesuderinama su dabartiniais įrenginio nustatymais. Bus " +"naudojamas atsitiktinis gijos profilis." msgid "The filament model is unknown. A random filament preset will be used." -msgstr "" +msgstr "Gijos modelis nežinomas. Bus naudojamas atsitiktinis gijos profilis." #: resources/data/hints.ini: [hint:Precise wall] msgid "" "Precise wall\n" -"Did you know that turning on precise wall can improve precision and layer consistency?" +"Did you know that turning on precise wall can improve precision and layer " +"consistency?" msgstr "" -"Tiksli siena\n" -"Ar žinojote, kad įjungus tikslią sienelę galima pagerinti tikslumą ir sluoksnių nuoseklumą?" +"Tiksli sienelė\n" +"Ar žinojote, kad įjungus tikslią sienelę galima pagerinti tikslumą ir " +"sluoksnių nuoseklumą?" #: resources/data/hints.ini: [hint:Sandwich mode] msgid "" "Sandwich mode\n" -"Did you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs?" +"Did you know that you can use sandwich mode (inner-outer-inner) to improve " +"precision and layer consistency if your model doesn't have very steep " +"overhangs?" msgstr "" "Sumuštinio režimas\n" -"Ar žinojote, kad galite naudoti daugiasluoksnį režimą (vidinis-išorinis-vidinis), kad padidintumėte tikslumą ir sluoksnių nuoseklumą, jei jūsų modelyje nėra labai stačių iškyšų?" +"Ar žinojote, kad galite naudoti daugiasluoksnį režimą (vidinis–išorinis–" +"vidinis), kad padidintumėte tikslumą ir sluoksnių nuoseklumą, jei jūsų " +"modelyje nėra labai stačių iškyšų?" #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -19006,15 +24218,17 @@ msgid "" "Did you know that OrcaSlicer supports chamber temperature?" msgstr "" "Kameros temperatūra\n" -"Ar žinojote, kad \"OrcaSlicer\" palaiko kameros temperatūrą?" +"Ar žinojote, kad „OrcaSlicer“ palaiko kameros temperatūrą?" #: resources/data/hints.ini: [hint:Calibration] msgid "" "Calibration\n" -"Did you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." +"Did you know that calibrating your printer can do wonders? Check out our " +"beloved calibration solution in OrcaSlicer." msgstr "" "Kalibravimas\n" -"Ar žinojote, kad spausdintuvo kalibravimas gali padaryti stebuklus? Išbandykite mūsų mėgstamą kalibravimo sprendimą \"OrcaSlicer\"." +"Ar žinojote, kad spausdintuvo kalibravimas gali padaryti stebuklus? " +"Išbandykite mūsų mėgstamą kalibravimo sprendimą „OrcaSlicer“." #: resources/data/hints.ini: [hint:Auxiliary fan] msgid "" @@ -19022,7 +24236,7 @@ msgid "" "Did you know that OrcaSlicer supports Auxiliary part cooling fan?" msgstr "" "Pagalbinis ventiliatorius\n" -"Ar žinojote, kad \"OrcaSlicer\" palaiko pagalbinį dalių aušinimo ventiliatorių?" +"Ar žinojote, kad „OrcaSlicer“ palaiko pagalbinį dalių aušinimo ventiliatorių?" #: resources/data/hints.ini: [hint:Air filtration] msgid "" @@ -19030,7 +24244,8 @@ msgid "" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" msgstr "" "Oro filtravimas / išmetimo ventiliatorius\n" -"Ar žinojote, kad \"OrcaSlicer\" gali palaikyti oro filtravimo / išmetimo ventiliatorių?" +"Ar žinojote, kad „OrcaSlicer“ palaiko oro filtravimą ir išmetimo " +"ventiliatorių?" #: resources/data/hints.ini: [hint:G-code window] msgid "" @@ -19043,50 +24258,64 @@ msgstr "" #: resources/data/hints.ini: [hint:Switch workspaces] msgid "" "Switch workspaces\n" -"You can switch between Prepare and Preview workspaces by pressing the Tab key." +"You can switch between Prepare and Preview workspaces by " +"pressing the Tab key." msgstr "" "Perjungti darbines erdves\n" -"Paspaudę Tab klavišą, galite perjungti Paruošti ir Peržiūrėti darbines erdves." +"Paspaudę klavišą Tab, galite perjungti Paruošimo ir " +"Peržiūros darbines erdves." #: resources/data/hints.ini: [hint:How to use keyboard shortcuts] msgid "" "How to use keyboard shortcuts\n" -"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations?" +"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " +"3D scene operations?" msgstr "" -"Kaip naudoti klavišų kombinacijas\n" -"Ar žinojote, kad „Orca Slicer“ siūlo platų klavišų kombinacijų ir 3D scenos operacijų pasirinkimą?" +"Kaip naudoti sparčiuosius klavišus\n" +"Ar žinojote, kad „OrcaSlicer“ siūlo platų sparčiųjų klavišų ir 3D scenos " +"operacijų pasirinkimą?" #: resources/data/hints.ini: [hint:Reverse on even] msgid "" "Reverse on even\n" -"Did you know that Reverse on even feature can significantly improve the surface quality of your overhangs? However, it can cause wall inconsistencies so use carefully!" +"Did you know that Reverse on even feature can significantly improve " +"the surface quality of your overhangs? However, it can cause wall " +"inconsistencies so use carefully!" msgstr "" +"Atvirkštinė kryptis lyginiuose sluoksniuose\n" +"Ar žinojote, kad funkcija Atvirkštinė kryptis lyginiuose sluoksniuose " +"gali gerokai pagerinti iškyšų paviršiaus kokybę? Tačiau ji gali sukelti " +"sienelės netolygumų, todėl naudokite atsargiai!" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" "Cut Tool\n" -"Did you know that you can cut a model at any angle and position with the cutting tool?" +"Did you know that you can cut a model at any angle and position with the " +"cutting tool?" msgstr "" "Pjovimo įrankis\n" -"Ar žinojote, kad pjovimo įrankiu galite pjauti modelį bet kokiu kampu ir bet kokioje padėtyje?" +"Ar žinojote, kad pjovimo įrankiu galite perpjauti modelį bet kokiu kampu ir " +"bet kurioje padėtyje?" #: resources/data/hints.ini: [hint:Fix Model] msgid "" "Fix Model\n" -"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing problems on the Windows system?" +"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " +"problems on the Windows system?" msgstr "" -"Fiksuoti modelį\n" -"Ar žinojote, kad galite ištaisyti sugadintą 3D modelį ir išvengti daugybės sluoksniavimo problemų \"Windows\" sistemoje?" +"Taisyti modelį\n" +"Ar žinojote, kad „Windows“ sistemoje galite pataisyti sugadintą 3D modelį ir " +"taip išvengti daugybės pjaustymo problemų?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" "Timelapse\n" "Did you know that you can generate a timelapse video during each print?" msgstr "" -"Laiko intervalas\n" -"Ar žinojote, kad kiekvieno spausdinimo metu galite sukurti laiko intervalų vaizdo įrašą?" +"Intervalinis fotografavimas (Timelapse)\n" +"Ar žinojote, kad kiekvieno spausdinimo metu galite sugeneruoti intervalinio " +"fotografavimo vaizdo įrašą?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" @@ -19095,1819 +24324,258 @@ msgstr "" "Automatinis išdėstymas\n" "Ar žinojote, kad galite automatiškai išdėstyti visus savo projekto objektus?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Auto-Orient] msgid "" "Auto-Orient\n" -"Did you know that you can rotate objects to an optimal orientation for printing with a simple click?" +"Did you know that you can rotate objects to an optimal orientation for " +"printing with a simple click?" msgstr "" "Automatinis orientavimas\n" -"Ar žinojote, kad vienu paspaudimu galite pasukti objektus į optimalų orientavimą spausdinimui?" +"Ar žinojote, kad vienu spustelėjimu galite pasukti objektus į optimalią " +"padėtį spausdinimui?" #: resources/data/hints.ini: [hint:Lay on Face] msgid "" "Lay on Face\n" -"Did you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key." +"Did you know that you can quickly orient a model so that one of its faces " +"sits on the print bed? Select the \"Place on face\" function or press the " +"F key." msgstr "" -"Padėti ant plokštumos\n" -"Ar žinojote, kad galite greitai suorientuoti modelį taip, kad viena jo plokštuma būtų ant spausdinimo plokštės? Pasirinkite funkciją \"Padėti ant plokštumos\" arba paspauskite klavišą F." +"Guldyti ant sienelės\n" +"Ar žinojote, kad galite greitai suorientuoti modelį taip, kad viena iš jo " +"sienelių priglustų prie spausdinimo pagrindo? Pasirinkite funkciją „Guldyti " +"ant sienelės“ arba paspauskite klavišą F." #: resources/data/hints.ini: [hint:Object List] msgid "" "Object List\n" -"Did you know that you can view all objects/parts in a list and change settings for each object/part?" +"Did you know that you can view all objects/parts in a list and change " +"settings for each object/part?" msgstr "" "Objektų sąrašas\n" -"Ar žinojote, kad visus objektus/dalis galite peržiūrėti sąraše ir keisti kiekvieno objekto/dalies nustatymus?" +"Ar žinojote, kad galite peržiūrėti visus objektus bei dalis sąraše ir keisti " +"kiekvieno objekto ar dalies nustatymus?" #: resources/data/hints.ini: [hint:Search Functionality] msgid "" "Search Functionality\n" -"Did you know that you use the Search tool to quickly find a specific Orca Slicer setting?" +"Did you know that you use the Search tool to quickly find a specific Orca " +"Slicer setting?" msgstr "" -"Paieškos funkcijos\n" -"Ar žinojote, kad naudodami paieškos įrankį galite greitai rasti konkretų \"Orca Slicer\" nustatymą?" +"Paieškos funkcija\n" +"Ar žinojote, kad naudodami paieškos įrankį galite greitai rasti konkretų " +"„OrcaSlicer“ nustatymą?" #: resources/data/hints.ini: [hint:Simplify Model] msgid "" "Simplify Model\n" -"Did you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model." +"Did you know that you can reduce the number of triangles in a mesh using the " +"Simplify mesh feature? Right-click the model and select Simplify model." msgstr "" "Supaprastinti modelį\n" -"Ar žinojote, kad galite sumažinti trikampių skaičių figūroje naudodami funkciją \"Supaprastinti modelį\"? Dešiniuoju pelės klavišu spustelėkite modelį ir pasirinkite Supaprastinti modelį." +"Ar žinojote, kad galite sumažinti trikampių skaičių tinklelyje naudodami " +"tinklelio supaprastinimo funkciją? Dešiniuoju pelės mygtuku spustelėkite " +"modelį ir pasirinkite „Supaprastinti modelį“." #: resources/data/hints.ini: [hint:Slicing Parameter Table] msgid "" "Slicing Parameter Table\n" -"Did you know that you can view all objects/parts on a table and change settings for each object/part?" +"Did you know that you can view all objects/parts on a table and change " +"settings for each object/part?" msgstr "" -"Sluoksniavimo parametrų lentelė\n" -"Ar žinojote, kad lentelėje galite peržiūrėti visus objektus/dalis ir keisti kiekvieno objekto/dalies nustatymus?" +"Pjaustymo parametrų lentelė\n" +"Ar žinojote, kad lentelėje galite peržiūrėti visus objektus bei dalis ir " +"keisti kiekvieno objekto ar dalies nustatymus?" #: resources/data/hints.ini: [hint:Split to Objects/Parts] msgid "" "Split to Objects/Parts\n" -"Did you know that you can split a big object into small ones for easy colorizing or printing?" +"Did you know that you can split a big object into small ones for easy " +"colorizing or printing?" msgstr "" -"Skirstymas į objektus/dalis\n" -"Ar žinojote, kad didelį objektą galite suskaidyti į mažesnius, kad būtų lengviau jį nuspalvinti ar spausdinti?" +"Skaidymas į objektus / dalis\n" +"Ar žinojote, kad didelį objektą galite suskaidyti į mažesnius, kad būtų " +"lengviau jį nuspalvinti ar atspausdinti?" #: resources/data/hints.ini: [hint:Subtract a Part] msgid "" "Subtract a Part\n" -"Did you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer." +"Did you know that you can subtract one mesh from another using the Negative " +"part modifier? That way you can, for example, create easily resizable holes " +"directly in Orca Slicer." msgstr "" "Atimti dalį\n" -"Ar žinojote, kad galite atimti vieną figūrą iš kitos naudodami modifikatorių \"Negatyvioji dalis\"? Taip galite, pavyzdžiui, tiesiogiai \"Orca Slicer\" programoje kurti lengvai keičiamo dydžio skyles." +"Ar žinojote, kad galite atimti vieną tinklelį iš kito naudodami neigiamos " +"dalies (Negative part) modifikatorių? Taip galite, pavyzdžiui, tiesiogiai " +"„OrcaSlicer“ programoje kurti lengvai keičiamo dydžio skyles." #: resources/data/hints.ini: [hint:STEP] msgid "" "STEP\n" -"Did you know that you can improve your print quality by slicing a STEP file instead of an STL?\n" -"Orca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" +"Did you know that you can improve your print quality by slicing a STEP file " +"instead of an STL?\n" +"Orca Slicer supports slicing STEP files, providing smoother results than a " +"lower resolution STL. Give it a try!" msgstr "" "STEP\n" -"Ar žinojote, kad spausdinimo kokybę galite pagerinti sluoksniuodami ne STL, o STEP failą?\n" -"\"Orca Slicer\" palaiko STEP failų sluoksniavimą ir užtikrina sklandesnį rezultatą nei mažesnės raiškos STL. Išbandykite!" +"Ar žinojote, kad spausdinimo kokybę galite pagerinti pjaustydami ne STL, o " +"STEP failą?\n" +"„OrcaSlicer“ palaiko STEP failų pjaustymą, užtikrindama sklandesnius " +"rezultatus nei mažos raiškos STL. Išbandykite!" #: resources/data/hints.ini: [hint:Z seam location] msgid "" "Z seam location\n" -"Did you know that you can customize the location of the Z seam, and even paint it on your print, to have it in a less visible location? This improves the overall look of your model. Check it out!" +"Did you know that you can customize the location of the Z seam, and even " +"paint it on your print, to have it in a less visible location? This improves " +"the overall look of your model. Check it out!" msgstr "" "Z siūlės vieta\n" -"Ar žinojote, kad galite keisti Z siūlės vietą ir net nupiešti ją ant spaudinio, kad ji būtų mažiau matomoje vietoje? Tai pagerina bendrą modelio išvaizdą. Patikrinkite!" +"Ar žinojote, kad galite pritaikyti Z siūlės vietą ir net užpiešti ją ant " +"spaudinio, kad ji būtų mažiau matomoje vietoje? Tai pagerina bendrą modelio " +"išvaizdą. Išbandykite!" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] msgid "" "Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking prints? Depending on the material, you can improve the overall finish of the printed model by doing some fine-tuning." +"Did you know that flow rate can be fine-tuned for even better-looking " +"prints? Depending on the material, you can improve the overall finish of the " +"printed model by doing some fine-tuning." msgstr "" -"Tikslus srauto greičio reguliavimas\n" -"Ar žinojote, kad srauto greitį galima tiksliai sureguliuoti, kad spaudiniai atrodytų dar geriau? Priklausomai nuo medžiagos, atlikdami smulkų reguliavimą galite pagerinti bendrą atspausdinto modelio apdailą." +"Tikslus srauto reguliavimas\n" +"Ar žinojote, kad srauto greitį (flow rate) galima sureguliuoti tiksliau, kad " +"spaudiniai atrodytų dar geriau? Priklausomai nuo medžiagos, atlikę tikslų " +"sureguliavimą galite pagerinti bendrą atspausdinto modelio paviršiaus kokybę." #: resources/data/hints.ini: [hint:Split your prints into plates] msgid "" "Split your prints into plates\n" -"Did you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts." +"Did you know that you can split a model that has a lot of parts into " +"individual plates ready to print? This will simplify the process of keeping " +"track of all the parts." msgstr "" -"Suskirstykite atspaudus į plokštes\n" -"Ar žinojote, kad daug dalių turintį modelį galite padalyti į atskiras spausdinti paruoštas plokštes? Tai supaprastins visų dalių apskaitos procesą." +"Suskirstykite spaudinius į pagrindus\n" +"Ar žinojote, kad daug dalių turintį modelį galite padalyti į atskirus, " +"spausdinimui paruoštus pagrindus? Tai supaprastins visų dalių sekimo procesą." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer #: Height] msgid "" "Speed up your print with Adaptive Layer Height\n" -"Did you know that you can print a model even faster by using the Adaptive Layer Height option? Check it out!" +"Did you know that you can print a model even faster, by using the Adaptive " +"Layer Height option? Check it out!" msgstr "" -"Spartinkite spausdinimą naudodami prisitaikantį sluoksnio aukštį\n" -"Ar žinojote, kad naudodami parinktį Prisitaikantis sluoksnio aukštis galite spausdinti modelį dar greičiau? Patikrinkite!" +"Paspartinkite spausdinimą naudodami prisitaikantį sluoksnio aukštį\n" +"Ar žinojote, kad naudodami prisitaikančio sluoksnio aukščio (Adaptive Layer " +"Height) parinktį modelį galite atspausdinti dar greičiau? Išbandykite!" #: resources/data/hints.ini: [hint:Support painting] msgid "" "Support painting\n" -"Did you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it." +"Did you know that you can paint the location of your supports? This feature " +"makes it easy to place the support material only on the sections of the " +"model that actually need it." msgstr "" "Atramų piešimas\n" -"Ar žinojote, kad galite nupiešti savo atramų vietą? Ši funkcija leidžia lengvai naudoti atraminę medžiagą tik tose modelio dalyse, kuriose jos iš tikrųjų reikia." +"Ar žinojote, kad galite užpiešti vietas, kur reikalingos atramos? Ši " +"funkcija leidžia lengvai pritaikyti atraminę medžiagą tik tose modelio " +"dalyse, kurioms jos iš tikrųjų reikia." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Different types of supports] msgid "" "Different types of supports\n" -"Did you know that you can choose from multiple types of supports? Tree supports work great for organic models while saving filament and improving print speed. Check them out!" +"Did you know that you can choose from multiple types of supports? Tree " +"supports work great for organic models, while saving filament and improving " +"print speed. Check them out!" msgstr "" "Įvairių tipų atramos\n" -"Ar žinojote, kad galite rinktis iš kelių tipų atramų? Medžio formos atramos puikiai tinka organiniams modeliams, taupo gijas ir padidina spausdinimo greitį. Išbandykite jas!" +"Ar žinojote, kad galite rinktis iš kelių tipų atramų? Medžio formos atramos " +"puikiai tinka organiškiems modeliams, kartu taupydamos giją ir padidindamos " +"spausdinimo greitį. Išbandykite jas!" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Printing Silk Filament] msgid "" "Printing Silk Filament\n" -"Did you know that Silk filament needs special consideration to print successfully? A higher temperature and lower speed are always recommended for the best results." +"Did you know that Silk filament needs special consideration to print it " +"successfully? Higher temperature and lower speed are always recommended for " +"the best results." msgstr "" -"Spausdinimas šilko gija\n" -"Ar žinojote, kad norint sėkmingai atspausdinti šilko giją reikia ypatingo dėmesio? Siekiant geriausių rezultatų, visada rekomenduojama aukštesnė temperatūra ir mažesnis greitis." +"Šilko (Silk) gijos spausdinimas\n" +"Ar žinojote, kad norint sėkmingai atspausdinti šilko giją, reikalingi " +"specialūs nustatymai? Siekiant geriausių rezultatų, visada rekomenduojama " +"aukštesnė temperatūra ir mažesnis greitis." #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printed models have a small contact interface with the printing surface, it's recommended to use a brim?" +"Did you know that when printed models have a small contact interface with " +"the printing surface, it's recommended to use a brim?" msgstr "" "Kraštas geresniam sukibimui\n" -"Ar žinojote, kad kai spausdinimo modeliai turi nedidelę sąlyčio sąsają su spausdinimo paviršiumi, rekomenduojama naudoti kraštą?" +"Ar žinojote, kad kai spausdinami modeliai turi nedidelį sąlyčio plotą su " +"spausdinimo paviršiumi, rekomenduojama naudoti kraštą (brim)?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Set parameters for multiple objects] msgid "" "Set parameters for multiple objects\n" -"Did you know that you can set slicing parameters for all selected objects at once?" +"Did you know that you can set slicing parameters for all selected objects at " +"once?" msgstr "" -"Nustatyti parametrus keliems objektams\n" -"Ar žinojote, kad galite nustatyti sluoksniavimo parametrus visiems pasirinktiems objektams iš karto?" +"Parametrų nustatymas keliems objektams\n" +"Ar žinojote, kad pjaustymo parametrus galite nustatyti visiems pasirinktiems " +"objektams iš karto?" #: resources/data/hints.ini: [hint:Stack objects] msgid "" "Stack objects\n" "Did you know that you can stack objects as a whole one?" msgstr "" -"Daiktų krūva\n" -"Ar žinojote, kad objektus galima sudėti į krūvą kaip vieną?" +"Objektų krovimas vienas ant kito\n" +"Ar žinojote, kad galite krauti objektus vieną ant kito, sujungdami juos į " +"vieną visumą?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can reduce wasted filament by flushing it into support/objects/infill during filament changes?" +"Did you know that you can reduce wasted filament by flushing it into support/" +"objects/infill during filament change?" msgstr "" -"Išspausti į atramą/objektus/užpildą \n" -"Ar žinojote, kad galite sutaupyti eikvojamą giją, išspaudžiant ją į atramą/objektus/užpildą keičiant giją?" +"Pravalymas į atramą / objektus / užpildą\n" +"Ar žinojote, kad keisdami giją galite sumažinti jos švaistymą, nukreipdami " +"pravalymą (purging) į atramas, objektus arba užpildą?" #: resources/data/hints.ini: [hint:Improve strength] msgid "" "Improve strength\n" -"Did you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" +"Did you know that you can use more wall loops and higher sparse infill " +"density to improve the strength of the model?" msgstr "" -"Padidinkite stiprumą\n" -"Ar žinojote, kad modelio tvirtumui padidinti galite naudoti daugiau sienų kontūrų ir didesnį reto užpildo tankį?" +"Tvirtumo didinimas\n" +"Ar žinojote, kad modelio tvirtumui padidinti galite naudoti daugiau sienelės " +"kontūrų ir didesnį reto užpildo tankį?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:When do you need to print with the printer #: door opened] msgid "" "When do you need to print with the printer door opened?\n" -"Did you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature? There is more info about this in the Wiki." +"Did you know that opening the printer door can reduce the probability of " +"extruder/hotend clogging when printing lower temperature filament with a " +"higher enclosure temperature? More info about this in the Wiki." msgstr "" -"Kai reikia spausdinti atidarius spausdintuvo dureles\n" -"Ar žinojote, kad atidarius spausdintuvo dureles gali sumažėti ekstruderio ir (arba) karštosios jungties užsikimšimo tikimybė, kai spausdinate žemesnės temperatūros filamentą su aukštesne korpuso temperatūra. Daugiau informacijos apie tai rasite \"Wiki\"." +"Kada reikia spausdinti atidarius spausdintuvo dureles?\n" +"Ar žinojote, kad atidarius spausdintuvo dureles gali sumažėti ekstruderio / " +"karštosios galvutės (hotend) užsikimšimo tikimybė, kai žemos lydymosi " +"temperatūros gija spausdinama esant aukštai kameros temperatūrai? Daugiau " +"informacijos apie tai rasite „Wiki“ puslapyje." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Avoid warping] msgid "" "Avoid warping\n" -"Did you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping?" +"Did you know that when printing materials that are prone to warping such as " +"ABS, appropriately increasing the heatbed temperature can reduce the " +"probability of warping?" msgstr "" -"Išvengti deformacijos\n" -"Ar žinojote, kad spausdinant medžiagas, kurios linkusios deformuotis, pavyzdžiui, ABS, tinkamai padidinus kaitinimo pagrindo temperatūrą galima sumažinti deformavimosi tikimybę." - -#~ msgid "Enable network plug-in" -#~ msgstr "Įjungti tinklo papildinį" - -#~ msgid "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" -#~ msgstr "Įjunkite prisitaikantį IS iškyšoms, taip pat kai srautas keičiasi toje pačioje vietoje. Tai eksperimentinė parinktis, nes jei IS profilis nustatomas netiksliai, gali kilti išorinių paviršių vienodumo problemų prieš ir už iškyšų.\n" - -#~ msgid "Perform" -#~ msgstr "Atlikti" - -#~ msgid "Reset Rotation" -#~ msgstr "Iš naujo nustatyti pasukimą" - -#~ msgid "Top Solid Layers" -#~ msgstr "Viršutiniai ištisiniai sluoksniai" - -#~ msgid "Add modifier" -#~ msgstr "Pridėti modifikatorių" - -#~ msgid "Bed Type" -#~ msgstr "Pagrindo tipas" - -#~ msgid "Last Step" -#~ msgstr "Paskutinis žingsnis" - -#~ msgid "Dynamic flow Calibration" -#~ msgstr "Dinaminio srauto kalibravimas" - -#~ msgid "Print with filaments mounted on the back of the chassis" -#~ msgstr "Spausdinti gijomis, sumontuotomis ant dėžės" - -#~ msgid "Load Filament" -#~ msgstr "Įdėti giją" - -#~ msgid "Filament Changes" -#~ msgstr "Gijų keitimai" - -#~ msgid "Mirror Object" -#~ msgstr "Atspindėti objektą" - -#~ msgid "Delete all" -#~ msgstr "Ištrinti viską" - -#~ msgid "Select all" -#~ msgstr "Pasirinkti viską" - -#~ msgid "Deselect all" -#~ msgstr "Atžymėti visus pasirinkimus" - -#~ msgid "Filament Settings" -#~ msgstr "Gijos nustatymai" - -#~ msgid "Detail." -#~ msgstr "Daugiau." - -#~ msgid "Support painting" -#~ msgstr "Atramų piešimas" - -#~ msgid "Color painting" -#~ msgstr "Spalvų piešimas" - -#~ msgid "Same as Global Bed Type" -#~ msgstr "Toks pats, kaip ir bendras pagrindo tipas" - -#~ msgid "Undef" -#~ msgstr "Neapib" - -#~ msgid "Undefine" -#~ msgstr "Neapibrėžti" - -#~ msgid "Number of top interface layers." -#~ msgstr "Viršutinių sąsajos sluoksnių skaičius." - -#~ msgid "Bed Leveling" -#~ msgstr "Lyginimas pagal spausdinimo pagrindą" - -#~ msgid "part selection" -#~ msgstr "detalės pasirinkimas" - -#~ msgid "°" -#~ msgstr "°" - -#~ msgid "" -#~ "The Wipe option is not available when using the Firmware Retraction mode.\n" -#~ "\n" -#~ "Shall I disable it in order to enable Firmware Retraction?" -#~ msgstr "" -#~ "Parinktis \"Išvalyti\" negalima, kai naudojamas Firmware įtraukimo režimas.\n" -#~ "\n" -#~ "Ar turėčiau jį išjungti, kad įjungčiau Programinės įrangos įtraukimą?" - -#~ msgid "\"G92 E0\" was found in before_layer_gcode, which is incompatible with absolute extruder addressing." -#~ msgstr "„G92 E0“ buvo rastas before_layer_gcode, kuris nesuderinamas su absoliučiu ekstruderio adresavimu." - -#~ msgid "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute extruder addressing." -#~ msgstr "layer_gcode buvo rastas „G92 E0“, - tai nesuderinama su absoliučiu ekstruderio adresavimu." - -#, no-c-format, no-boost-format -#~ msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for external bridges. Use 180° for zero angle." -#~ msgstr "Tilto kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto kampas apskaičiuojamas automatiškai. Priešingu atveju išoriniams tilteliams bus naudojamas pateiktas kampas. Nuliniam kampui naudokite 180°." - -#~ msgid "" -#~ "Internal bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for internal bridges. Use 180° for zero angle.\n" -#~ "\n" -#~ "It is recommended to leave it at 0 unless there is a specific model need not to." -#~ msgstr "" -#~ "Vidinio pertvaros kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto kampas apskaičiuojamas automatiškai. Priešingu atveju vidiniams tiltams bus naudojamas nurodytas kampas. Naudokite 180°, kad kampas būtų lygus nuliui.\n" -#~ "\n" -#~ "Rekomenduojama palikti 0, nebent yra konkretus modelio poreikis to nedaryti." - -#~ msgid "" -#~ "Controls the density (spacing) of external bridge lines. Default is 100%.\n" -#~ "\n" -#~ "Lower density external bridges can help improve reliability as there is more space for air to circulate around the extruded bridge, improving its cooling speed. Minimum is 10%.\n" -#~ "\n" -#~ "Higher densities can produce smoother bridge surfaces, as overlapping lines provide additional support during printing. Maximum is 120%.\n" -#~ "Note: Bridge density that is too high can cause warping or overextrusion." -#~ msgstr "" -#~ "Controls the density (spacing) of external bridge lines. Default is 100%.\n" -#~ "\n" -#~ "Lower density external bridges can help improve reliability as there is more space for air to circulate around the extruded bridge, improving its cooling speed. Minimum is 10%.\n" -#~ "\n" -#~ "Higher densities can produce smoother bridge surfaces, as overlapping lines provide additional support during printing. Maximum is 120%.\n" -#~ "Note: Bridge density that is too high can cause warping or overextrusion." - -#~ msgid "" -#~ "Controls the density (spacing) of internal bridge lines. 100% means solid bridge. Default is 100%.\n" -#~ "\n" -#~ "Lower density internal bridges can help reduce top surface pillowing and improve internal bridge reliability as there is more space for air to circulate around the extruded bridge, improving its cooling speed.\n" -#~ "\n" -#~ "This option works particularly well when combined with the second internal bridge over infill option, further improving internal bridging structure before solid infill is extruded." -#~ msgstr "" -#~ "Valdo vidinių tiltelių linijų tankį (atstumus). 100 % reiškia vientisą tiltą. Numatytoji reikšmė yra 100 %.\n" -#~ "\n" -#~ " Mažesnio tankio vidiniai tilteliai gali padėti sumažinti viršutinio paviršiaus iškilimą ir padidinti vidinio tiltelio patikimumą, nes aplink išspaustą tiltelį cirkuliuoja daugiau erdvės orui, todėl pagerėja jo aušinimo greitis.\n" -#~ "\n" -#~ "Ši parinktis ypač gerai veikia kartu su antrojo vidinio tiltelio virš užpildo parinktimi, dar labiau pagerinančia vidinio tiltelio struktūrą prieš išspaudžiant kietąjį užpildą." - -#~ msgid "" -#~ "Decrease this value slightly (for example 0.9) to reduce the amount of material for bridge, to improve sag.\n" -#~ "\n" -#~ "The actual bridge flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio." -#~ msgstr "" -#~ "Šiek tiek sumažinkite šią reikšmę (pvz., 0,9), kad sumažintumėte tilto medžiagos kiekį ir pagerintumėte įlinkį.\n" -#~ "\n" -#~ "Faktinis tiltelio srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto santykio ir, jei nustatyta, objekto srauto santykio." - -#~ msgid "" -#~ "This value governs the thickness of the internal bridge layer. This is the first layer over sparse infill. Decrease this value slightly (for example 0.9) to improve surface quality over sparse infill.\n" -#~ "\n" -#~ "The actual internal bridge flow used is calculated by multiplying this value with the bridge flow ratio, the filament flow ratio, and if set, the object's flow ratio." -#~ msgstr "" -#~ "Ši vertė lemia vidinio tilto sluoksnio storį. Tai yra pirmasis sluoksnis virš reto užpildo. Šiek tiek sumažinkite šią reikšmę (pavyzdžiui, 0,9), kad pagerintumėte paviršiaus kokybę virš reto užpildo.\n" -#~ "\n" -#~ "Faktinis naudojamas vidinio tiltelio srautas apskaičiuojamas padauginus šią vertę iš tiltelio srauto santykio, gijų srauto santykio ir, jei nustatyta, objekto srauto santykio." - -#, no-c-format, no-boost-format -#~ msgid "" -#~ "Enable this option to slow down printing in areas where perimeters may have curled upwards. For example, additional slowdown will be applied when printing overhangs on sharp corners like the front of the Benchy hull, reducing curling which compounds over multiple layers.\n" -#~ "\n" -#~ "It is generally recommended to have this option switched on unless your printer cooling is powerful enough or the print speed slow enough that perimeter curling does not happen. If printing with a high external perimeter speed, this parameter may introduce slight artifacts when slowing down due to the large variance in print speeds. If you notice artifacts, ensure your pressure advance is tuned correctly.\n" -#~ "\n" -#~ "Note: When this option is enabled, overhang perimeters are treated like overhangs, meaning the overhang speed is applied even if the overhanging perimeter is part of a bridge. For example, when the perimeters are 100% overhanging, with no wall supporting them from underneath, the 100% overhang speed will be applied." -#~ msgstr "" -#~ "Įjunkite šią parinktį, kad sulėtintumėte spausdinimą tose srityse, kuriose perimetras gali būti išlinkęs į viršų. Pavyzdžiui, papildomas sulėtinimas bus taikomas spausdinant iškyšas ant aštrių kampų, pavyzdžiui, „Benchy“ korpuso priekyje, sumažinant susisukimą, kuris susidaro per kelis sluoksnius.\n" -#~ "\n" -#~ " Paprastai rekomenduojama įjungti šią parinktį, nebent jūsų spausdintuvo aušinimas yra pakankamai galingas arba spausdinimo greitis pakankamai lėtas, kad perimetro susisukimas neįvyktų. Jei spausdinama dideliu išoriniu perimetro greičiu, šis parametras gali sukelti nedidelius artefaktus, kai sulėtėja dėl didelio spausdinimo greičio skirtumo. Jei pastebėsite artefaktus, įsitikinkite, kad išankstinis slėgis sureguliuotas teisingai.\n" -#~ "\n" -#~ "Pastaba: Kai ši parinktis įjungta, iškyšos perimetras traktuojamas kaip iškyša, t. y. iškyšos greitis taikomas net jei iškyšos perimetras yra tilto dalis. Pavyzdžiui, kai perimetrai yra 100 % išsikišę, o iš apačios jų nepalaiko jokia siena, bus taikomas 100 % išsikišimo greitis." - -#~ msgid "If enabled, bridges are more reliable, can bridge longer distances, but may look worse. If disabled, bridges look better but are reliable just for shorter bridged distances." -#~ msgstr "Jei įjungta, tiltai yra patikimesni, gali įveikti didesnius atstumus, tačiau gali atrodyti blogiau. Jei išjungta, tiltai atrodo geriau, bet yra patikimi tik trumpesniems atstumams." - -#~ msgid "If enabled, thick internal bridges will be used. It's usually recommended to have this feature turned on. However, consider turning it off if you are using large nozzles." -#~ msgstr "Jei įjungta, bus naudojami stori vidiniai tiltai. Paprastai rekomenduojama šią funkciją įjungti. Tačiau jei naudojate didelius antgalius, apsvarstykite galimybę ją išjungti." - -#~ msgid "Aligns infill and surface fill directions to follow the model's orientation on the build plate. When enabled, fill directions rotate with the model to maintain optimal strength characteristics." -#~ msgstr "Suderina užpildymo ir paviršiaus užpildymo kryptis, kad jos atitiktų modelio orientaciją ant spausdinimo plokštės. Kai ši funkcija įjungta, užpildymo kryptys pasisuka kartu su modeliu, kad būtų išlaikytos optimalios stiprumo charakteristikos." - -#~ msgid "Filament to print internal sparse infill." -#~ msgstr "Gija, skirta spausdinti vidinį retą užpildą." - -#~ msgid "Filament to print walls." -#~ msgstr "Gijos sienoms spausdinti." - -#~ msgid "Solid infill" -#~ msgstr "Vientisas užpildas" - -#~ msgid "Filament to print solid infill." -#~ msgstr "Filamentas vientisam užpildui spausdinti." - -#~ msgid "Filament to print support base and raft. \"Default\" means no specific filament for support and current filament is used." -#~ msgstr "Gija, skirta spausdinti atraminį pagrindą ir platformą. \"Numatytoji\" reiškia, kad nėra konkrečios gijos atramai ir naudojama dabartinė gija." - -#~ msgid "Filament to print support interface. \"Default\" means no specific filament for support interface and current filament is used." -#~ msgstr "Gija skirta spausdinti atramos sąsają. \"Numatytoji\" reiškia, kad atramos sąsajai nėra konkrečios gijos ir naudojama dabartinė gija." - -#~ msgid "Erase all painting" -#~ msgstr "Ištrinti visą piešinį" - -#~ msgid "Reset cut" -#~ msgstr "Atstatyti pjovimą" - -#~ msgid "Swap pan and rotate mouse buttons" -#~ msgstr "Sukeisti judėjimą ir sukimąsi pelės mygtuko" - -#~ msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." -#~ msgstr "Jei įjungta, sukeičia kairiojo ir dešiniojo pelės mygtukų panoraminio ir pasukimo funkcijas." - -#, c-format, boost-format -#~ msgid "nozzle size in preset: %d" -#~ msgstr "nozzle size in preset: %d" - -#, c-format, boost-format -#~ msgid "nozzle size memorized: %d" -#~ msgstr "nozzle size memorized: %d" - -#~ msgid "The size of nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" -#~ msgstr "The size of nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" - -#, c-format, boost-format -#~ msgid "nozzle[%d] in preset: %.1f" -#~ msgstr "nozzle[%d] in preset: %.1f" - -#, c-format, boost-format -#~ msgid "nozzle[%d] memorized: %.1f" -#~ msgstr "nozzle[%d] memorized: %.1f" - -#~ msgid "Your nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" -#~ msgstr "Your nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" - -#~ msgid "Remove selected points" -#~ msgstr "Pašalinti pasirinktus taškus" - -#~ msgid "Remove all" -#~ msgstr "Pašalinti viską" - -#~ msgid "Auto-generate points" -#~ msgstr "Automatiškai generuoti taškus" - -#~ msgid "Add a brim ear" -#~ msgstr "Krašto \"ausys\"" - -#~ msgid "Delete a brim ear" -#~ msgstr "Ištrinti krašto \"ausį\"" - -#~ msgid "Adjust head diameter" -#~ msgstr "Nustatykite galvutės skersmenį" - -#~ msgid "Adjust section view" -#~ msgstr "Pritaikyti sekcijos vaizdą" - -#~ msgid " invalid brim ears" -#~ msgstr " netinkamos krašto \"ausys\"" - -#~ msgid "" -#~ "Reverse on odd\n" -#~ "Did you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" -#~ msgstr "" -#~ "Atvirkštinis ant nelyginio paviršiaus\n" -#~ "Ar žinojote, kad atvirkštinio ant nelyginio paviršiaus funkcija gali gerokai pagerinti jūsų iškyšų paviršiaus kokybę?" - -#~ msgid "Pen size" -#~ msgstr "Pieštuko dydis" - -#~ msgid "Pen shape" -#~ msgstr "Rašiklio forma" - -#~ msgid "Key 1~9" -#~ msgstr "Klavišai 1~9" - -#~ msgid "Left click" -#~ msgstr "Kairysis spustelėjimas" - -#~ msgid "Right click" -#~ msgstr "Spustelėti dešinįjį pelės mygtuką" - -#~ msgid "Select feature" -#~ msgstr "Pasirinkti elementą" - -#~ msgid "Based on PrusaSlicer and BambuStudio" -#~ msgstr "Remiantis „PrusaSlicer“ ir „BambuStudio“" - -#~ msgid "Object/Part Setting" -#~ msgstr "Objekto / Dalies nustatymai" - -#~ msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer." -#~ msgstr "OrcaSlicer sukurtas remiantis BambuStudio, PrusaSlicer ir SuperSlicer." - -#~ msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." -#~ msgstr "Pradinė BambuStudio programos kūrimo bazė buvo PrusaSlicer iš PrusaResearch." - -#~ msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." -#~ msgstr "Pradinė PrusaSlicer programos kūrimo bazė buvo Slic3r, kurį sukūrė Alessandro Ranellucci." - -#~ msgid "Slic3r was created by Alessandro Ranellucci with the help of many other contributors." -#~ msgstr "Slic3r sukūrė Alessandro Ranellucci su daugelio kitų kūrėjų pagalba." - -#~ msgid "Actual Speed: " -#~ msgstr "Faktinis greitis: " - -#~ msgid "Mouse wheel:" -#~ msgstr "Pelės ratukas:" - -#~ msgid "Pass 1" -#~ msgstr "1 fazė" - -#~ msgid "Flow ratio test - Pass 1" -#~ msgstr "Srauto santykio testas - 1 fazė" - -#~ msgid "Pass 2" -#~ msgstr "2 fazė" - -#~ msgid "Flow ratio test - Pass 2" -#~ msgstr "Srauto santykio testas - 2 fazė" - -#~ msgid "Orca YOLO flowratio calibration, 0.01 step" -#~ msgstr "„Orca YOLO“ srauto santykio kalibravimas, 0,01 žingsnis" - -#~ msgid "YOLO (perfectionist version)" -#~ msgstr "YOLO (perfekcionistinė versija)" - -#~ msgid "Orca YOLO flowratio calibration, 0.005 step" -#~ msgstr "„Orca YOLO“ srauto santykio kalibravimas, 0,005 žingsnis" - -#~ msgid "Retraction test" -#~ msgstr "Įtraukimo testas" - -#~ msgid "Tutorial" -#~ msgstr "Pamokos" - -#~ msgid "Calibration help" -#~ msgstr "Kalibravimo pagalba" - -#~ msgid "" -#~ "Do you want to synchronize your personal data from Bambu Cloud?\n" -#~ "It contains the following information:\n" -#~ "1. The Process presets\n" -#~ "2. The Filament presets\n" -#~ "3. The Printer presets" -#~ msgstr "" -#~ "Ar norite sinchronizuoti asmeninius duomenis iš Bambu Cloud?\n" -#~ "Juose yra ši informacija:\n" -#~ "1. Procesų išankstiniai nustatymai\n" -#~ "2. Filamento išankstiniai nustatymai\n" -#~ "3. Spausdintuvo išankstiniai nustatymai" - -#~ msgid "Show/Hide advanced parameters" -#~ msgstr "Show/Hide advanced parameters" - -#, c-format, boost-format -#~ msgid "Left nozzle: %smm" -#~ msgstr "Left nozzle: %smm" - -#, c-format, boost-format -#~ msgid "Right nozzle: %smm" -#~ msgstr "Right nozzle: %smm" - -#~ msgid "\"Fix Model\" feature is currently only on Windows. Please repair the model on Orca Slicer(windows) or CAD softwares." -#~ msgstr "Funkcija „Pataisyti modelį“ šiuo metu pasiekiama tik „Windows“. Pataisykite modelį „Orca Slicer“ („Windows“) arba CAD programinėje įrangoje." - -#~ 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 "Įjungus šią funkciją, sustabdomas duomenų perdavimas į „Bambu“ debesijos paslaugas. Šią funkciją gali drąsiai įjungti naudotojai, kurie nesinaudoja „BBL“ įrenginiais arba naudoja tik LAN režimą." - -#~ msgid "Resonance Avoidance" -#~ msgstr "Rezonanso vengimas" - -#~ msgid "Saving objects into the 3MF failed." -#~ msgstr "Saving objects into the 3MF failed.Nepavyko įrašyti objektų į 3MF." - -#~ msgid "Only Windows 10 is supported." -#~ msgstr "Palaikoma tik \"Windows 10\"." - -#~ msgid "Failed to initialize the WinRT library." -#~ msgstr "Nepavyko inicializuoti \"WinRT\" bibliotekos." - -#~ msgid "Exporting objects" -#~ msgstr "Objektų eksportavimas" - -#~ msgid "Failed loading objects." -#~ msgstr "Nepavyko įkelti objektų." - -#~ msgid "Repairing object by Windows service" -#~ msgstr "Objekto taisymas \"Windows\" paslauga" - -#~ msgid "Repair failed." -#~ msgstr "Taisymas nepavyko." - -#~ msgid "Loading repaired objects" -#~ msgstr "Pataisytų objektų įkėlimas" - -#~ msgid "Exporting 3MF file failed" -#~ msgstr "Nepavyko eksportuoti 3MF failo" - -#~ msgid "Import 3MF file failed" -#~ msgstr "Nepavyko importuoti 3MF failo" - -#~ msgid "Repaired 3MF file does not contain any object" -#~ msgstr "Pataisytame 3MF faile nėra jokių objektų" - -#~ msgid "Repaired 3MF file contains more than one object" -#~ msgstr "Pataisytame 3MF faile yra daugiau nei vienas objektas" - -#~ msgid "Repaired 3MF file does not contain any volume" -#~ msgstr "Pataisytame 3MF faile nėra jokio tūrio" - -#~ msgid "Repaired 3MF file contains more than one volume" -#~ msgstr "Pataisytame 3MF faile yra daugiau nei vienas tomas" - -#~ msgid "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage. If you still want to print, you can enable the option in Preferences." -#~ msgstr "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage. If you still want to print, you can enable the option in Preferences." - -#~ msgid "Printing different-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing different-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "Printing high-temp and mid-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing high-temp and mid-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "Printing mid-temp and low-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing mid-temp and low-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "" -#~ "The direction which the wall loops are extruded when looking down from the top.\n" -#~ "\n" -#~ "By default all walls are extruded in counter-clockwise, unless Reverse on even is enabled. Set this to any option other than Auto will force the wall direction regardless of the Reverse on even.\n" -#~ "\n" -#~ "This option will be disabled if spiral vase mode is enabled." -#~ msgstr "" -#~ "Sienų kontūrų išspaudimo kryptis žiūrint iš viršaus žemyn.\n" -#~ "\n" -#~ "Pagal numatytuosius nustatymus visos sienos išspaudžiamos prieš laikrodžio rodyklę, nebent įjungta galimybė „ Apsukti lyginius“. Nustačius bet kurią kitą parinktį, išskyrus Auto (automatinis), sienos kryptis bus priverstinė, neatsižvelgiant į įjungtą funkciją Apsukti lyginius.\n" -#~ "\n" -#~ "Ši parinktis bus išjungta, jei įjungtas spiralinės vazos režimas." - -#~ msgid "" -#~ "Noise type to use for fuzzy skin generation:\n" -#~ "Classic: Classic uniform random noise.\n" -#~ "Perlin: Perlin noise, which gives a more consistent texture.\n" -#~ "Billow: Similar to perlin noise, but clumpier.\n" -#~ "Ridged Multifractal: Ridged noise with sharp, jagged features. Creates marble-like textures.\n" -#~ "Voronoi: Divides the surface into voronoi cells, and displaces each one by a random amount. Creates a patchwork texture." -#~ msgstr "" -#~ "Nelygumų tipas, kurį naudoti generuojant grublėtą paviršių.\n" -#~ "Klasikinis: Klasikinis vienodas atsitiktinis triukšmas.\n" -#~ "Perlin: Perlino triukšmas, kuris suteikia nuoseklesnę tekstūrą.\n" -#~ "Billow: Panašus į Perlino triukšmą, bet gremėzdiškesnis.\n" -#~ "Ridged Multifractal: Tai - rifliuotas triukšmas su aštriomis, dantytomis savybėmis. Sukuria marmurines tekstūras.\n" -#~ "Voronoi: Paviršius padalijamas į Voronoi ląsteles ir kiekviena iš jų pasislenka atsitiktiniu dydžiu. Sukuriama mozaikinė tekstūra." - -#~ msgid "Flow Rate" -#~ msgstr "Srautas" - -#~ msgid "Cannot print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing" -#~ msgstr "Negalima spausdinti kelių skirtingos temperatūros gijų kartu. Priešingu atveju, spausdinimo metu gali užsikimšti purkštukas arba sugesti ekstruderiai" - -#~ msgid "" -#~ "Zero first layer height is invalid.\n" -#~ "\n" -#~ "The first layer height will be reset to 0.2." -#~ msgstr "" -#~ "Netinkamas pradinio sluoksnio aukštis.\n" -#~ "\n" -#~ "Pirmojo sluoksnio aukštis bus atstatytas į 0,2." - -#~ msgid "Check for Update" -#~ msgstr "Patikrinti ar nėra atnaujinimų" - -#~ msgid "Rotate of view" -#~ msgstr "Vaizdo sukimas" - -#~ msgid "Move of view" -#~ msgstr "Vaizdo perkėlimas" - -#~ msgid "Zoom of view" -#~ msgstr "Vaizdo didinimas" - -#~ msgid "Enabling both precise Z height and the prime tower may cause the size of prime tower to increase. Do you still want to enable?" -#~ msgstr "Įjungus tikslaus Z aukščio ir pagrindinio bokšto funkcijas, pagrindinio bokšto dydis gali padidėti. Ar vis tiek norite įjungti?" - -#~ msgid "Extruders count" -#~ msgstr "Ekstruderių kiekis" - -#~ msgid "Missing BambuSource component registered for media playing! Please re-install BambuStudio or seek after-sales help." -#~ msgstr "Trūksta „BambuSource“ komponento, registruoto medijos atkūrimui! Iš naujo įdiekite „BambuStudio“ arba kreipkitės į pagalbą po pardavimo." - -#~ msgid "Line pattern of support." -#~ msgstr "Linijinis atramų raštas." - -#~ msgid "Failed to install the plug-in. Please check whether it is blocked or deleted by anti-virus software." -#~ msgstr "Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba neištrina antivirusinė programinė įranga." - -#~ msgid "travel" -#~ msgstr "judėjimas" - -#~ msgid "Filament remapping finished." -#~ msgstr "Gijų perplanavimas baigtas." - -#~ msgid "Replace with STL" -#~ msgstr "Pakeisti STL" - -#~ msgid "Replace the selected part with new STL" -#~ msgstr "Pakeisti pasirinktą dalį į naują STL" - -#~ msgid "Loading G-code" -#~ msgstr "Įkeliami G-kodai" - -#~ msgid "Generating geometry vertex data" -#~ msgstr "Geometrijos viršūnių duomenų generavimas" - -#~ msgid "Generating geometry index data" -#~ msgstr "Geometrijos indeksų duomenų generavimas" - -#~ msgid "Switch to silent mode" -#~ msgstr "Persijungti į tylųjį režimą" - -#~ msgid "Switch to normal mode" -#~ msgstr "Persijungti į normalų režimą" - -#~ msgid "The application cannot run normally because OpenGL version is lower than 2.0.\n" -#~ msgstr "Programa negali normaliai veikti, nes OpenGL versija yra žemesnė nei 2.0.\n" - -#~ msgid "Nozzle Type" -#~ msgstr "Purkštuko tipas" - -#~ msgid "Advance" -#~ msgstr "Detaliau" - -#~ msgid "Use legacy network plug-in" -#~ msgstr "Naudoti senąjį tinklo įskiepį" - -#~ msgid "Disable to use latest network plug-in that supports new BambuLab firmwares." -#~ msgstr "Išjunkite, kad galėtumėte naudoti naujausią tinklo įskiepį, kuris palaiko naujas „BambuLab“ programinės įrangos versijas." - -#~ msgid "" -#~ "Controls the density (spacing) of external bridge lines. 100% means solid bridge. Default is 100%.\n" -#~ "\n" -#~ "Lower density external bridges can help improve reliability as there is more space for air to circulate around the extruded bridge, improving its cooling speed." -#~ msgstr "" -#~ "Valdo išorinių tiltelių linijų tankį (atstumus). 100 % reiškia vientisą tiltą. Numatytoji reikšmė yra 100 %.\n" -#~ "\n" -#~ "Mažesnio tankio išoriniai tilteliai gali padėti padidinti patikimumą, nes aplink išspaustą tiltelį cirkuliuoja daugiau vietos orui, todėl pagerėja jo aušinimo greitis." - -#~ msgid "Acceleration of outer walls." -#~ msgstr "Išorinių sienų pagreitis." - -#~ msgid "Rib width." -#~ msgstr "Briaunų plotis." - -#~ msgid "downward machines check" -#~ msgstr "tikrinti mažėjančias mašinas" - -#~ msgid "check whether current machine downward compatible with the machines in the list." -#~ msgstr "patikrinti, ar dabartinė mašina yra suderinama su sąraše esančiomis mašinomis." - -#~ msgid "metadata name list added into 3MF." -#~ msgstr "metaduomenų pavadinimų sąrašas įtrauktas į 3MF." - -#~ msgid "metadata value list added into 3MF." -#~ msgstr "į 3MF įtrauktas metaduomenų reikšmių sąrašas." - -#~ msgid "Connecting to printer" -#~ msgstr "Jungiamasi prie spausdintuvo" - -#~ msgid "Ok" -#~ msgstr "Gerai" - -#~ msgid "Junction Deviation calibration" -#~ msgstr "Jungties nuokrypio kalibravimas" - -#, c-format, boost-format -#~ msgid "Extruder %d" -#~ msgstr "Ekstruderis %d" - -#~ msgid "Maximum junction deviation (M205 J, only apply if JD > 0 for Marlin Firmware)" -#~ msgstr "Maksimalus jungties nuokrypis (M205 J, taikoma tik jei JD > 0 Marlin Firmware)" - -#~ msgid "Adaptive layer height" -#~ msgstr "Prisitaikantis sluoksnio aukštis" - -#~ msgid "Enabling this option means the height of tree support layer except the first will be automatically calculated." -#~ msgstr "Įjungus šią parinktį, medžio atraminio sluoksnio, išskyrus pirmąjį, aukštis bus apskaičiuojamas automatiškai." - -#~ msgid "Junction Deviation test" -#~ msgstr "Jungties nuokrypio bandymas" - -#~ msgid "Start junction deviation: " -#~ msgstr "Pradinis jungties nuokrypis: " - -#~ msgid "End junction deviation: " -#~ msgstr "Galinis jungties nuokrypis: " - -#~ msgid "Junction Deviation settings" -#~ msgstr "Jungties nuokrypio nustatymai" - -#~ msgid "Note: Lower values = sharper corners but slower speeds" -#~ msgstr "Pastaba: mažesnės vertės = aštresni kampai, bet mažesnis greitis" - -#~ msgid "" -#~ "Please input valid values:\n" -#~ "(0 <= Junction Deviation < 1)" -#~ msgstr "" -#~ "Įveskite tinkamas reikšmes:\n" -#~ "(0 <= Jungties nuokrypis < 1)" - -#~ msgid "NOTE: High values may cause Layer shift" -#~ msgstr "PASTABA: Didelės vertės gali sukelti sluoksnio poslinkį" - -#~ msgid "AMS not connected" -#~ msgstr "AMS neprijungta" - -#~ msgid "Ext Spool" -#~ msgstr "Išor ritė" - -#~ msgid "Guide" -#~ msgstr "Instrukcija" - -#~ msgid "Calibrating AMS..." -#~ msgstr "Kalibruojama AMS..." - -#~ msgid "A problem occurred during calibration. Click to view the solution." -#~ msgstr "Kalibruojant aptikta problema. Paspauskite kad pamatytumėte sprendimą." - -#~ msgid "Calibrate again" -#~ msgstr "Kalibruoti dar kartą" - -#~ msgid "Cancel calibration" -#~ msgstr "Atšaukti kalibravimą" - -#~ msgid "Feed Filament" -#~ msgstr "Paduoti giją" - -#~ msgid "An SD card needs to be inserted before printing via LAN." -#~ msgstr "Prieš spausdinant per vietinį tinklą, reikia įdėti SD kortelę." - -#~ msgid "An SD card needs to be inserted before sending to printer." -#~ msgstr "Prieš siunčiant į spausdintuvą reikia įdėti SD kortelę." - -#~ msgid "Note: Only the AMS slots loaded with the same material type can be selected." -#~ msgstr "Pastaba: Galima pasirinkti tik tuos AMS lizdus, kuriose yra tos pačios rūšies medžiaga." - -#~ msgid "" -#~ "If there are two identical filaments in AMS, AMS filament backup will be enabled.\n" -#~ "(Currently supporting automatic supply of consumables with the same brand, material type, and color)" -#~ msgstr "" -#~ "Jei AMS yra dvi identiškos gijos, tuomet bus įjungta AMS atsarginė gija. \n" -#~ "(Šiuo metu palaikomas automatinis to paties prekės ženklo, medžiagos tipo ir spalvos eksploatacinių medžiagų padavimas)" - -#~ msgid "The AMS will estimate Bambu filament's remaining capacity after the filament info is updated. During printing, remaining capacity will be updated automatically." -#~ msgstr "Atnaujinus gijų informaciją, AMS įvertins likusį Bambu gijų kiekį. Spausdinimo metu likęs kiekis bus atnaujinamas automatiškai." - -# TODO: Review, changed by lang refactor. PR 14254 -#~ msgid "The recommended minimum temperature is less than 190℃ or the recommended maximum temperature is greater than 300℃.\n" -#~ msgstr "Rekomenduojama minimali temperatūra yra žemesnė nei 190 laipsnių arba maksimali temperatūra aukštesnė nei 300 laipsnių.\n" - -#~ msgid "Spiral mode only works when wall loops is 1, support is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional." -#~ msgstr "Spiralės režimas veikia tik tada, kai sienelės sluoksnių skaičius yra 1, atramos yra išjungtos, viršutinių sluoksnių skaičius yra 0, Retas užpildas yra 0% ir pakadrinis įrašymas tipas yra tradicinis." - -#~ msgid "Sweeping XY mech mode" -#~ msgstr "Kalibravimo judesiai X ir Y ašyse" - -#~ msgid "Paused due to filament runout" -#~ msgstr "Pristabdyta dėl gijos pasibaigimo" - -#~ msgid "Heating hotend" -#~ msgstr "Kaitinama galvutė" - -#~ msgid "Calibrating extrusion" -#~ msgstr "Kalibruojamas išspaudimas" - -#~ msgid "Printing was paused by the user" -#~ msgstr "Spausdinimas pristabdytas naudotojo" - -#~ msgid "Pause of front cover falling" -#~ msgstr "Pristabdymas dėl priekinio dangtelio gedimo" - -#~ msgid "Calibrating extrusion flow" -#~ msgstr "Gijos išspaudimo srauto kalibravimas" - -#~ msgid "Paused due to nozzle temperature malfunction" -#~ msgstr "Pristabdyta dėl purkštuko temperatūros gedimo" - -#~ msgid "Paused due to heat bed temperature malfunction" -#~ msgstr "Pristabdyta dėl pagrindo temperatūros gedimo" - -#~ msgid "Skip step pause" -#~ msgstr "Praleisti žingsnio pauzę" - -#~ msgid "Motor noise calibration" -#~ msgstr "Variklių triukšmo kalibravimas" - -#~ msgid "Paused due to AMS lost" -#~ msgstr "Pristabdyta dėl AMS praradimo" - -#~ msgid "Paused due to low speed of the heat break fan" -#~ msgstr "Pristabdyta dėl per mažo šilumos slenksčio ventiliatoriaus greičio" - -#~ msgid "Paused due to chamber temperature control error" -#~ msgstr "Pristabdyta dėl kameros temperatūros valdymo klaidos" - -#~ msgid "Paused by the G-code inserted by user" -#~ msgstr "Pristabdyta dėl naudotojo įterpto G-kodo" - -#~ msgid "Nozzle filament covered detected pause" -#~ msgstr "Pristabdyta - aptikta užspausta gija antgalyje" - -#~ msgid "Cutter error pause" -#~ msgstr "Pristabdyta dėl pjovimo klaidos" - -#~ msgid "First layer error pause" -#~ msgstr "Pristabdyta dėl pirmojo sluoksnio klaidos" - -#~ msgid "Nozzle clog pause" -#~ msgstr "Pristabdyta dėl galvutės užsikimšimo" - -#~ msgid "Fatal" -#~ msgstr "Kritinė" - -#~ msgid "Serious" -#~ msgstr "Svarbi" - -#~ msgid "Common" -#~ msgstr "Pasikartojanti" - -#~ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -#~ msgstr "AMS nepalaiko Bambu PET-CF/PA6-CF." - -#~ msgid "" -#~ "An object is laid over the plate boundaries or exceeds the height limit.\n" -#~ "Please solve the problem by moving it totally on or off the plate, and confirming that the height is within the build volume." -#~ msgstr "" -#~ "Objektas yra už spausdinimo plokštės ribų arba viršija aukščio limitą.\n" -#~ "Norėdami išspręsti problemą, perkelkite objektą visiškai ant plokštės arba nuo jos ir įsitikinkite, kad aukštis yra leidžiamame spausdinimo tūryje." - -#~ msgid "" -#~ "You can find it in \"Settings > Network > Connection code\"\n" -#~ "on the printer, as shown in the figure:" -#~ msgstr "" -#~ "Galite jį rasti spausdintuvo nustatymuose, skiltyje \"Tinklas\" > \n" -#~ "\"Prisijungimo kodas\", kaip parodyta paveikslėlyje:" - -#~ msgid "Browsing file in SD card is not supported in current firmware. Please update the printer firmware." -#~ msgstr "Failų naršymas SD kortelėje nepalaikomas naudojant dabartinę programinę įrangą (firmware). Atnaujinkite spausdintuvo programinę įrangą." - -#~ msgid "" -#~ "Please check if the SD card is inserted into the printer.\n" -#~ "If it still cannot be read, you can try formatting the SD card." -#~ msgstr "" -#~ "Patikrinkite, ar SD kortelė įdėta į spausdintuvą.\n" -#~ "Jei jos vis tiek nepavyksta nuskaityti, galite pabandyti suformatuoti SD kortelę." - -#~ msgid "Browsing file in SD card is not supported in LAN Only Mode." -#~ msgstr "Failų naršymas SD kortelėje nepalaikomas LAN Only režime." - -#~ msgid "Storage unavailable, insert SD card." -#~ msgstr "Saugykla nepasiekiama, įdėkite SD kortelę." - -#~ msgid "Cham" -#~ msgstr "Kam" - -#~ msgid "Still unload" -#~ msgstr "Vis dar išstumiama" - -#~ msgid "Still load" -#~ msgstr "Vis dar įtraukiama" - -#~ msgid "Can't start this without SD card." -#~ msgstr "Negalima šito pradėti be SD kortelės." - -#~ msgid "Update" -#~ msgstr "Atnaujinti" - -#~ msgid "Sensitivity of pausing is" -#~ msgstr "Pristabdymo jautrumas yra" - -#, c-format, boost-format -#~ msgid "%.1f" -#~ msgstr "%.1f" - -#~ msgid "No AMS filaments. Please select a printer in 'Device' page to load AMS info." -#~ msgstr "Nėra AMS gijų. Kad būtų galima įkelti AMS informaciją, pasirinkite spausdintuvą \"Įrenginių\" puslapyje." - -#~ msgid "Sync filaments with AMS will drop all current selected filament presets and colors. Do you want to continue?" -#~ msgstr "Sinchronizuojant gijas su AMS bus prarasti visi dabartiniai gijų parametrai ir spalvos. Ar norite tęsti?" - -#~ msgid "Already did a synchronization, do you want to sync only changes or resync all?" -#~ msgstr "Sinchronizavimas jau atliktas. Ar norite sinchronizuoti tik pakeitimus, ar iš naujo sinchronizuoti viską?" - -#~ msgid "Sync" -#~ msgstr "Sinchronizuoti" - -#~ msgid "Resync" -#~ msgstr "Viską" - -#~ msgid "There are some unknown filaments mapped to generic preset. Please update Orca Slicer or restart Orca Slicer to check if there is an update to system presets." -#~ msgstr "Yra keletas nežinomų gijų, priskirtų bendram išankstiniam nustatymui. Atnaujinkite Orca Slicer arba paleiskite Orca Slicer iš naujo, kad patikrintų, ar yra sistemos išankstinių nustatymų atnaujinimas." - -#~ msgid "" -#~ "Are you sure you want to store original SVGs with their local paths into the 3MF file?\n" -#~ "If you hit 'NO', all SVGs in the project will not be editable any more." -#~ msgstr "" -#~ "Ar tikrai norite saugoti originalius SVG failus su jų lokaliais keliais 3MF faile?\n" -#~ "Jei pasirinksite „NE“, visi projekto SVG failai daugiau nebus redaguojami." - -#~ msgid "Private protection" -#~ msgstr "Privatumo apsauga" - -#~ msgid "General Settings" -#~ msgstr "Bendri nustatymai" - -#~ msgid "Show \"Tip of the day\" notification after start" -#~ msgstr "Pradėjus rodyti pranešimą „Dienos patarimas“" - -#~ msgid "If enabled, useful hints are displayed at startup." -#~ msgstr "Jei įjungta, paleidžiant rodomi naudingi patarimai." - -#~ msgid "Flushing volumes: Auto-calculate every time the color changed." -#~ msgstr "Išmetimo apimtys: Automatinis skaičiavimas kaskart, kai pasikeičia spalva." - -#~ msgid "If enabled, auto-calculate every time the color changed." -#~ msgstr "Jei įjungta, automatinis skaičiavimas atliekamas kaskart, kai pasikeičia spalva." - -#~ msgid "Flushing volumes: Auto-calculate every time when the filament is changed." -#~ msgstr "Valymo erdvės: Automatiškai perskaičiuoti kiekvieną kartą pasikeitus gijai." - -#~ msgid "If enabled, auto-calculate every time when filament is changed" -#~ msgstr "Jei įjungtas, kiekvieną kartą pasikeitus gijai automatiškai perskaičiuoja" - -#~ msgid "Auto arrange plate after object cloning" -#~ msgstr "Automatinis plokštės išdėstymas po objekto klonavimo" - -#~ msgid "Network" -#~ msgstr "Tinklas" - -#~ msgid "User Sync" -#~ msgstr "Naudotojo sinchronizavimas" - -#~ msgid "System Sync" -#~ msgstr "Sistemos sinchronizavimas" - -#~ msgid "Associate URLs to OrcaSlicer" -#~ msgstr "Susieti URL su Orca Slicer" - -#~ msgid "every" -#~ msgstr "kiekvienas" - -#~ msgid "Downloads" -#~ msgstr "Atsisuntimai" - -#~ msgid "Dark Mode" -#~ msgstr "Tamsusis režimas" - -#~ msgid "Home page and daily tips" -#~ msgstr "Pagrindinis puslapis ir dienos patarimai" - -#~ msgid "Show home page on startup" -#~ msgstr "Startuojant rodyti pagrindinį puslapį" - -#~ msgid "Please choose the filament color" -#~ msgstr "Prašome pasirinkti gijos spalvą" - -#~ msgid "Send print job to" -#~ msgstr "Siųsti spausdinti į" - -#, c-format, boost-format -#~ msgid "Filament %s exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." -#~ msgstr "Gija %s viršija gijų rūšių skaičių, lyginant su AMS lizdų skaičiumi. Atnaujinkite spausdintuvo programinę įrangą, kad galėtumėte priskirti lizdus AMS." - -#~ msgid "Filament exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." -#~ msgstr "Įdėta daugiau gijų rūšių, nei turite AMS lizdų. Atnaujinkite spausdintuvo programinę įrangą, kad galėtumėte priskirti lizdus AMS." - -#~ msgid "Filaments to AMS slots mappings have been established. You can click a filament above to change its mapping AMS slot" -#~ msgstr "Gijų priskyrimas AMS lizdams atliktas. Norėdami pakeisti AMS lizdą, spustelėkite giją viršuje" - -#~ msgid "Please click each filament above to specify its mapping AMS slot before sending the print job" -#~ msgstr "Prieš siųsdami spausdinimo užduotį, spustelėkite kiekvieną giją viršuje, kad nurodytumėte jos priskyrimą AMS lizdui" - -#~ msgid "The printer firmware only supports sequential mapping of filament => AMS slot." -#~ msgstr "Spausdintuvo programinė įranga palaiko tik nuoseklų gijų ir AMS lizdų susiejimą." - -#~ msgid "An SD card needs to be inserted before printing." -#~ msgstr "Prieš spausdinant reikia įdėti SD kortelę." - -#~ msgid "An SD card needs to be inserted to record timelapse." -#~ msgstr "Norint įrašinėti pakadrinius video, reikia įdėti SD kortelę." - -#, c-format, boost-format -#~ msgid "nozzle in preset: %.1f %s" -#~ msgstr "purkštukas nustatytas: %.1f %s" - -#, c-format, boost-format -#~ msgid "nozzle memorized: %.1f %s" -#~ msgstr "įsimintas purkštukas: %.1f %s" - -#~ msgid "Your nozzle diameter in sliced file is not consistent with memorized nozzle. If you changed your nozzle lately, please go to Device > Printer Parts to change settings." -#~ msgstr "Purkštuko skersmuo susluoksniuotame faile neatitinka išsaugoto purkštuko skersmens. Jei pastaruoju metu pakeitėte purkštuką, eikite į Įrenginys > Spausdintuvo dalys ir pakeiskite nustatymus." - -#, c-format, boost-format -#~ msgid "Printing high temperature material (%s material) with %s may cause nozzle damage" -#~ msgstr "Spausdinant aukštos temperatūros medžiagą (%s medžiaga) su %s, gali būti sugadintas purkštukas" - -#~ msgid "Connecting to the printer. Unable to cancel during the connection process." -#~ msgstr "Jungiamasi prie spausdintuvo. Negalima atšaukti jungimosi metu." - -#~ msgid "Caution to use! Flow calibration on Textured PEI Plate may fail due to the scattered surface." -#~ msgstr "Dėmesio! Srauto kalibravimas ant tekstūruotos PEI gali nepavykti dėl nelygaus paviršiaus." - -#~ msgid "Automatic flow calibration using Micro Lidar" -#~ msgstr "Automatinis srauto kalibravimas naudojant mikrolidarą" - -#~ msgid "Send to Printer SD card" -#~ msgstr "Siųsti į spausdintuvo SD kortelę" - -#~ msgid "An SD card needs to be inserted before send to printer SD card." -#~ msgstr "Prieš siunčiant į spausdintuvo SD kortelę, reikia įdėti SD kortelę." - -#~ msgid "The printer does not support sending to printer SD card." -#~ msgstr "Spausdintuvas nepalaiko siuntimo į spausdintuvo SD kortelę." - -#, c-format, boost-format -#~ msgid "The color count should be in range [%d, %d]." -#~ msgstr "Spalvų skaičius turėtų būti tarp [%d, %d]." - -#~ msgid "Current filament colors:" -#~ msgstr "Dabartinės gijų spalvos:" - -#~ msgid "Quick set:" -#~ msgstr "Greitas nustatymas:" - -#~ msgid "Add consumable extruder after existing extruders." -#~ msgstr "Po esamų ekstruderių pridėti eksploatacinių medžiagų ekstruderį." - -#~ msgid "Cluster colors" -#~ msgstr "Klasterio spalvos" - -#~ msgid "Map Filament" -#~ msgstr "Ženklinti giją" - -#~ msgid "" -#~ "Note: The color has been selected, you can choose OK \n" -#~ "to continue or manually adjust it." -#~ msgstr "" -#~ "Pastaba: spalva buvo pasirinkta, galite pasirinkti Gerai \n" -#~ "tęsti arba ją koreguoti rankiniu būdu." - -#~ msgid "" -#~ "Warning: The count of newly added and \n" -#~ "current extruders exceeds 16." -#~ msgstr "" -#~ "Dėmesio: Naujai pridėtų ir \n" -#~ "esamų ekstruderių skaičius viršija 16." - -#~ msgid "Auto-Calc" -#~ msgstr "Automatinis skaičiavimas" - -#~ msgid "Orca would re-calculate your flushing volumes every time the filaments color changed. You could disable the auto-calculate in Orca Slicer > Preferences" -#~ msgstr "Orca iš naujo apskaičiuos išspaudimo kiekį kaskart, kai pasikeis siūlų spalva. Automatinį skaičiavimą galite išjungti Orca Slicer > Nustatymai" - -#~ msgid "unloaded" -#~ msgstr "išimtas" - -#~ msgid "loaded" -#~ msgstr "įkeltas" - -#~ msgid "Filament #" -#~ msgstr "Gijos #" - -#~ msgid "From" -#~ msgstr "Nuo" - -#~ msgid "To" -#~ msgstr "Į" - -#~ msgid "Resume Printing (defects acceptable)" -#~ msgstr "Tęsti spausdinimą (priimtini defektai)" - -#~ msgid "Resume Printing (problem solved)" -#~ msgstr "Tęsti spausdinimą (problema išspręsta)" - -#~ msgid "Step 1. Please confirm Orca Slicer and your printer are in the same LAN." -#~ msgstr "1 žingsnis. Patikrinkite, ar „Orca Slicer“ ir spausdintuvas yra tame pačiame tinkle." - -#~ msgid "Step 2. If the IP and Access Code below are different from the actual values on your printer, please correct them." -#~ msgstr "2 žingsnis. Jei toliau nurodyti IP ir prieigos kodai skiriasi nuo tikrųjų spausdintuvo verčių, pataisykite juos." - -#~ msgid "Step 3. Please obtain the device SN from the printer side; it is usually found in the device information on the printer screen." -#~ msgstr "3 veiksmas. Iš spausdintuvo pusės gaukite įrenginio SN; paprastai jį rasite spausdintuvo ekrane esančioje įrenginio informacijoje." - -#~ msgid "Laser 10 W" -#~ msgstr "Lazeris 10 W" - -#~ msgid "Laser 40 W" -#~ msgstr "Lazeris 40 W" - -#~ msgid " is too close to others, there may be collisions when printing." -#~ msgstr " yra per arti kitų, spausdinant gali įvykti susidūrimų." - -#~ msgid "Cannot print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing." -#~ msgstr "Negalima kartu spausdinti kelių gijų, kurių temperatūrų skirtumai yra dideli. Priešingu atveju spausdinant gali užsikimšti purkštukas arba sugesti ekstruderis." - -#~ msgid "Ironing angle" -#~ msgstr "Lyginimo kampas" - -#~ msgid "The angle ironing is done at. A negative number disables this function and uses the default method." -#~ msgstr "Atliekamas kampinis lyginimas. Neigiamas skaičius išjungia šią funkciją ir naudojamas numatytasis metodas." - -#~ msgid "Remove small overhangs" -#~ msgstr "Pašalinti nedideles iškyšas" - -#~ msgid "Remove small overhangs that possibly need no supports." -#~ msgstr "Pašalinti nedideles iškyšas, kurioms galbūt nereikia atramų." - -#~ msgid "Width of the brim." -#~ msgstr "Krašto plotis." - -#~ msgid "Only one of the results with the same name will be saved. Are you sure you want to overwrite the other results?" -#~ msgstr "Bus išsaugotas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai norite pakeisti kitus rezultatus?" - -#~ msgid "External Spool" -#~ msgstr "Išorinė ritė" - -#~ msgid "" -#~ "Please input valid values:\n" -#~ "Start temp: <= 350\n" -#~ "End temp: >= 170\n" -#~ "Start temp > End temp + 5" -#~ msgstr "" -#~ "Įveskite tinkamas reikšmes:\n" -#~ "Pradžios temp: <= 350\n" -#~ "Galutinė temp: >= 170\n" -#~ "Pradžios temp > Galutinė temp + 5)" - -#~ msgid "" -#~ "Recommended: Set Damp to 0.\n" -#~ "This will use the printer's default or the last saved value." -#~ msgstr "" -#~ "Rekomenduojama: nustatykite „“Slopinimas“ į 0.\n" -#~ "Tai leis naudoti spausdintuvo numatytąją arba paskutinę išsaugotą vertę." - -#~ msgid "The custom printer or model is not entered, please enter it." -#~ msgstr "Pasirinktinis spausdintuvas arba modelis neįvestas, įveskite jį." - -#~ msgid "BigTraffic" -#~ msgstr "Didelis srautas" - -#, c-format, boost-format -#~ msgid "nozzle in preset: %s %s" -#~ msgstr "purkštukas parametre: %s %s" - -#~ msgid "Your nozzle diameter in preset is not consistent with memorized nozzle diameter. Did you change your nozzle lately?" -#~ msgstr "Jūsų purkštuko skersmuo nustatytame režime neatitinka įsiminto purkštuko skersmens. Ar neseniai keitėte purkštuką?" - -#, c-format, boost-format -#~ msgid "*Printing %s material with %s may cause nozzle damage" -#~ msgstr "*Spausdinant %s medžiagą su %s gali būti pažeistas purkštukas" - -#~ msgid "Improve shell precision by adjusting outer wall spacing. This also improves layer consistency." -#~ msgstr "Pagerinti korpuso tikslumą reguliuojant atstumus tarp išorinių sienelių. Tai taip pat pagerina sluoksnių nuoseklumą." - -#~ msgid "Enable filament ramming." -#~ msgstr "Įjungti gijų įspaudimą" - -#~ msgid "Alt + Mouse wheel" -#~ msgstr "Alt + pelės ratukas" - -#~ msgid "Ctrl + Mouse wheel" -#~ msgstr "Ctrl + pelės ratukas" - -#~ msgid "Shift + Left mouse button" -#~ msgstr "Shift + kairys pelės mygtukas" - -#~ msgid "Alt + Shift + Enter" -#~ msgstr "Alt + Shift + Enter" - -#~ msgid "Shift + Mouse move up or down" -#~ msgstr "Shift + pelės judėjimas aukštyn arba žemyn" - -#~ msgid "Left mouse button:" -#~ msgstr "Kairysis pelės mygtukas:" - -#~ msgid "Right mouse button:" -#~ msgstr "Dešinysis pelės mygtukas:" - -#~ msgid "Shift + Left mouse button:" -#~ msgstr "Shift + kairysis pelės mygtukas:" - -#~ msgid "Shift + Right mouse button:" -#~ msgstr "Shift + dešinysis pelės mygtukas:" - -#~ msgid "Recent projects" -#~ msgstr "Naujausi projektai" - -#~ msgid "Maximum recent projects" -#~ msgstr "Daugiausia buvusių projektų" - -#~ msgid "Maximum count of recent projects" -#~ msgstr "Didžiausias skaičius buvusių projektų" - -#~ msgid "⌘+Shift+G" -#~ msgstr "⌘+Shift+G" - -#~ msgid "Ctrl+Shift+G" -#~ msgstr "Ctrl+Shift+G" - -#~ msgid "Shift+A" -#~ msgstr "Shift+A" - -#~ msgid "Shift+Tab" -#~ msgstr "Shift+Tab" - -#~ msgid "⌘+Any arrow" -#~ msgstr "⌘+Bet kokia rodyklė" - -#~ msgid "⌥+Left mouse button" -#~ msgstr "⌥+ kairysis pelės mygtukas" - -#~ msgid "⌘+Left mouse button" -#~ msgstr "⌘+ kairysis pelės mygtukas" - -#~ msgid "Ctrl+Any arrow" -#~ msgstr "Ctrl + bet kokia rodyklė" - -#~ msgid "Alt+Left mouse button" -#~ msgstr "Alt + kairysis pelės mygtukas" - -#~ msgid "Ctrl+Left mouse button" -#~ msgstr "Ctrl + kairysis pelės mygtukas" - -#~ msgid "Shift+Left mouse button" -#~ msgstr "Shift + kairysis pelės mygtukas" - -#~ msgid "Shift+Any arrow" -#~ msgstr "Shift + bet kuri rodyklė" - -#~ msgid "⌘+Mouse wheel" -#~ msgstr "⌘+Pelės ratukas" - -#~ msgid "⌥+Mouse wheel" -#~ msgstr "⌥+Pelės ratukas" - -#~ msgid "Ctrl+Mouse wheel" -#~ msgstr "Ctrl + pelės ratukas" - -#~ msgid "Alt+Mouse wheel" -#~ msgstr "Alt + pelės ratukas" - -#~ msgid "Shift+Mouse wheel" -#~ msgstr "Shift + pelės ratukas" - -#~ msgid "Set Position" -#~ msgstr "Nustatyti padėtį" - -#, boost-format -#~ msgid "%1%" -#~ msgstr "%1%" - -#~ msgid "Warning: please select two different mesh." -#~ msgstr "Įspėjimas: pasirinkite dvi skirtingas figūras." - -#~ msgid "Right click the icon to fix model object" -#~ msgstr "Paspauskite dešnįjį pelės mygtuką modelio objekto taisymui" - -#~ msgid "The target object contains only one part and cannot be split." -#~ msgstr "Tikslinį objektą sudaro tik viena dalis, todėl jo skaidyti negalima." - -#~ msgid "?" -#~ msgstr "?" - -#~ msgid "/" -#~ msgstr "/" - -#~ msgid "The AMS will automatically read the information of inserted filament on start-up. It will take about 1 minute. The reading process will roll filament spools." -#~ msgstr "Paleidimo metu AMS automatiškai nuskaitys įdėtos gijos informaciją. Tai truks apie 1 minutę. Skaitymo proceso metu AMS sukios gijų rites." - -#~ msgid "Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order to avoid extruder clogging, it is not allowed to set the chamber temperature above 45℃." -#~ msgstr "Į ekstruderį įkelta žemai temperatūrai skirta gija (PLA/PETG/TPU). Norint išvengti ekstruderio užsikimšimo, kameros temperatūros negalima nustatyti aukštesnės nei 45 ℃." - -#~ msgid "Color Scheme" -#~ msgstr "Spalvų schema" - -#~ msgid "Percent" -#~ msgstr "Procentai" - -#~ msgid "720p" -#~ msgstr "720p" - -#~ msgid "1080p" -#~ msgstr "1080p" - -#~ msgid "More..." -#~ msgstr "Daugiau..." - -#~ msgid "More calibrations" -#~ msgstr "Daugiau kalibravimų" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "SD Card" -#~ msgstr "SD kortelė" - -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgid "No SD Card" -#~ msgstr "Nėra SD kortelės" - -#~ msgid "SD Card Abnormal" -#~ msgstr "SD kortelė netinkama" - -#~ msgid "Cannot read filament info: the filament is loaded to the tool head, please unload the filament and try again." -#~ msgstr "Neįmanoma nuskaityti gijos informacijos: gija įtraukta į galvutę. Prašome išstumti giją ir pabandyti dar kartą." - -#~ msgid "InFo" -#~ msgstr "Informacija" - -#~ msgid "Your model needs support! Please make support material enable." -#~ msgstr "Jūsų modeliui reikia atramų! Prašome įjungti atramų medžiagą." - -#, c-format, boost-format -#~ msgid "Ejecting of device %s(%s) has failed." -#~ msgstr "Nepavyko išstumti įrenginio %s(%s)." - -#~ msgid "This option can be changed later in preferences, under 'Load Behaviour'." -#~ msgstr "Šią parinktį galima pakeisti vėliau nustatymuose, skiltyje „Įkelti elgseną“." - -#~ msgid "Invalid number" -#~ msgstr "Netinkamas skaičius" - -#~ msgid "Switch cloud environment, please login again!" -#~ msgstr "Perjungiama debesies aplinka, prašome prisijungti iš naujo!" - -#, c-format, boost-format -#~ msgid "nozzle memorized: %.2f %s" -#~ msgstr "purkštukas įsimintas: %.2f %s" - -#~ msgid "Bed temperature when the Cool Plate Supertack is installed. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." -#~ msgstr "Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės" - -#~ msgid "Bed temperature when the Smooth PEI Plate/High Temperature Plate is installed. A value of 0 means the filament does not support printing on the Smooth PEI Plate/High Temp Plate.High Temp Plate" -#~ msgstr "Pagrindo temperatūra, kai sumontuota lygi PEI plokštė / aukštos temperatūros plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant lygios PEI plokštės / aukštos temperatūros plokštės" - -#~ msgid "Ramming settings" -#~ msgstr "Spausdinimo galvutės stūmimo nustatymai" - -#~ msgid "Profile dependencies" -#~ msgstr "Profilio priklausomybės" - -#~ msgid "the Configuration package is incompatible with the current APP." -#~ msgstr "Konfigūracijos paketas nesuderinamas su dabartine programos versija." - -#~ msgid "Total ramming time" -#~ msgstr "Bendras įspaudimo laikas" - -#~ msgid "Total rammed volume" -#~ msgstr "Bendras įspaudimo tūris" - -#~ msgid "Ramming line width" -#~ msgstr "Įspaudimo linijos plotis" - -#~ msgid "Ramming line spacing" -#~ msgstr "Įspaudimo tarpai tarp linijų" - -#~ msgid "Shift+R" -#~ msgstr "Shift+R" - -#~ msgid "resume" -#~ msgstr "tęsti" - -#~ msgid "Classic mode" -#~ msgstr "Klasikinis režimas" - -#~ msgid "Enable this option to use classic mode." -#~ msgstr "Įjunkite šią parinktį, jei norite naudoti klasikinį režimą" - -#~ msgid "Compatible machine" -#~ msgstr "Suderinamas įrenginys" - -#~ msgid "Compatible machine condition" -#~ msgstr "Suderinamo įrenginio būklė" - -#~ msgid "Compatible process profiles condition" -#~ msgstr "Suderinamų procesų profilių būklė" - -#~ msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object" -#~ msgstr "G-kodas įterpiamas tarp objektų. Šis parametras bus taikomas tik tada, kai spausdinsite modelius objektas po objekto" - -#~ msgid "The material may have volumetric change after switching between molten state and crystalline state. This setting changes all extrusion flow of this filament in G-code proportionally. Recommended value range is between 0.95 and 1.05. Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow" -#~ msgstr "Medžiagos tūris gali pasikeisti perėjus iš išlydytos į kristalinę būseną. Šis nustatymas proporcingai pakeičia visą šios gijos ekstruzijos srautą G kode. Rekomenduojamas verčių intervalas yra nuo 0,95 iki 1,05. Jei yra nedidelis perteklius arba nepakankamas srautas, šią reikšmę galite sureguliuoti, kad gautumėte gražų plokščią paviršių" - -#~ msgid "" -#~ "The material may have volumetric change after switching between molten state and crystalline state. This setting changes all extrusion flow of this filament in G-code proportionally. Recommended value range is between 0.95 and 1.05. Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow.\n" -#~ "\n" -#~ "The final object flow ratio is this value multiplied by the filament flow ratio." -#~ msgstr "" -#~ "Perėjus iš išlydytos būsenos į kristalinę, medžiagos tūris gali pasikeisti. Šis nustatymas proporcingai pakeičia visą šios gijos ekstruzijos srautą gkode. Rekomenduojamas verčių intervalas yra nuo 0,95 iki 1,05. Galbūt galite sureguliuoti šią vertę, kad gautumėte gražų plokščią paviršių, kai yra nedidelis perteklius arba nepakankamas perteklius.\n" -#~ "\n" -#~ "Galutinis objekto srauto santykis yra ši vertė padauginta iš gijos srauto santykio." - -#~ msgid "Default filament color" -#~ msgstr "Numatytoji gijos spalva" - -#~ msgid "Filament diameter is used to calculate extrusion in G-code, so it's important and should be accurate" -#~ msgstr "Gijos skersmuo naudojamas ekstruzijos kintamiesiems G-kodo apskaičiuoti, todėl svarbu, kad jis būtų tikslus" - -#~ msgid "Rotate solid infill direction" -#~ msgstr "Pasukti vientiso užpildo kryptį" - -#~ msgid "Rotate the solid infill direction by 90° for each layer." -#~ msgstr "Pasukti vientiso užpildo kryptį 90° kampu kiekvienam sluoksniui." - -#~ msgid "Enable this to add line number(Nx) at the beginning of each G-code line" -#~ msgstr "Įjunkite šią funkciją, kad kiekvienos G-kodo eilutės pradžioje būtų pridėtas eilutės numeris (Nx)" - -#~ msgid "What kind of G-code the printer is compatible with" -#~ msgstr "Su kokiu gkodu suderinamas spausdintuvas" - -#~ msgid "Enable this option to add EXCLUDE OBJECT command in G-code" -#~ msgstr "Įjunkite šią parinktį, jei norite į G-kodą įtraukti komandą EXCLUDE OBJECT" - -#~ msgid "This G-code part is inserted at every layer change after lift z" -#~ msgstr "Šis G-kodas įterpiamas kiekvieną kartą keičiant sluoksnį po z pakėlimo" - -#~ msgid "This G-code will be used as a code for the pause print. User can insert pause G-code in G-code viewer" -#~ msgstr "Šis G-kodas bus naudojamas kaip pauzės spausdinimo kodas. Vartotojai gali įterpti pauzės G-kodą G-kodo peržiūros programoje" - -#~ msgid "Flow Compensation Model, used to adjust the flow for small infill areas. The model is expressed as a comma separated pair of values for extrusion length and flow correction factors, one per line, in the following format: \"1.234,5.678\"" -#~ msgstr "Srauto kompensavimo modelis, naudojamas srautui sureguliuoti mažuose užpildymo plotuose. Modelis išreiškiamas kaip kableliais atskirta ekstruzijos ilgio ir srauto korekcijos koeficientų verčių pora, po vieną kiekvienoje eilutėje, tokiu formatu: \"1.234,5.678\"" - -#~ msgid "The highest printable layer height for the extruder. Used to limit the maximum layer height when adaptive layer height is enabled." -#~ msgstr "Didžiausias ekstruderio spausdinamo sluoksnio aukštis: jis naudojamas didžiausiam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis sluoksnio aukštis" - -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, this results in a significantly larger G-code file and more instructions for the printer to process.\n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 0.5-5" -#~ msgstr "" -#~ "Esant mažesnei vertei, išspaudimo greičio pokyčiai būna sklandesni. Tačiau dėl to gaunamas gerokai didesnis gkodo failas ir spausdintuvui tenka apdoroti daugiau instrukcijų.\n" -#~ "\n" -#~ "Numatytoji reikšmė 3 tinka daugeliu atvejų. Jei spausdintuvas stringa, padidinkite šią vertę, kad sumažintumėte atliekamų koregavimų skaičių.\n" -#~ "\n" -#~ "Leidžiamos reikšmės: 0.5-5" - -#~ msgid "The lowest printable layer height for the extruder. Used to limit the minimum layer height when adaptive layer height is enabled." -#~ msgstr "Mažiausias ekstruderio spausdinamo sluoksnio aukštis. Jis naudojamas mažiausiam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis sluoksnio aukštis" - -#~ msgid "G-code path is generated after simplifying the contour of model to avoid too much points and G-code lines in G-code file. Smaller value means higher resolution and more time to slice" -#~ msgstr "G-kodo kelias generuojamas supaprastinus modelio kontūrą, kad gkodo faile nebūtų per daug taškų ir gkodo linijų. Mažesnė reikšmė reiškia didesnę skiriamąją gebą ir ilgesnį sluoksniavimo laiką" - -#~ msgid "Retract on top layer" -#~ msgstr "Įtraukti viršutiniame sluoksnyje" - -#~ msgid "Force a retraction on top layer. Disabling could prevent clog on very slow patterns with small movements, like Hilbert curve." -#~ msgstr "Naudoti priverstinį įtraukimą viršutiname sluoksnyje. Išjungimas gali padėti išvengti užsikimšimo labai lėtuose modeliuose su mažais judesiais, pvz., Hilberto kreivėje." - -#~ msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction" -#~ msgstr "Tai gijos kiekis, kuris yra įtraukiamas į ekstruderį, kad būtų išvengta išsiliejimo per ilgą judėjimo atstumą. Nustatykite 0, kad įtraukimas būtų išjungtas" - -#~ msgid "Z-hop will only come into effect when Z is above this value and is below the parameter: \"Z-hop upper boundary\"" -#~ msgstr "Z šuolis pradės veikti tik tada, kai Z bus didesnis už šią vertę ir mažesnis už parametrą: \"Z šuolio viršutinė riba\"" - -#~ msgid "If this value is positive, Z-hop will only come into effect when Z is above the parameter: \"Z-hop lower boundary\" and is below this value" -#~ msgstr "Jei ši reikšmė yra teigiama, Z apyvarta pradės veikti tik tada, kai Z bus didesnė už parametrą: \"Z šuolio apatinė riba\" ir yra mažesnė už šią reikšmę" - -#~ msgid "Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results in Normal Lift" -#~ msgstr "Šlaito ir spiralinio Z šuolio tipo judėjimo kampas. Nustačius 90°, naudojamas normalus pakėlimas" - -#~ msgid "Speed of retractions." -#~ msgstr "Įtraukimo greitis" - -#~ msgid "Speed for reloading filament into extruder. Zero means same speed of retraction." -#~ msgstr "Gijos įkėlimo į ekstruderį greitis po įtraukimo; nustačius 0, greitis bus toks pat kaip ir įtraukimo" - -#~ msgid "Disable generating of the M73: Set remaining print time in the final G-code" -#~ msgstr "Išjungti M73 generavimą: Nustatyti likusį spausdinimo laiką galutiniame gkode" - -#~ msgid "Single loop draft shield" -#~ msgstr "Vieno sluoksnio apsauginis kokonas" - -#~ msgid "Limits the draft shield loops to one wall after the first layer. This is useful, on occasion, to conserve filament but may cause the draft shield to warp / crack." -#~ msgstr "Apriboja apsauginio ekrano kontūrą viena siena po pirmojo sluoksnio. Kartais tai naudinga siekiant taupyti giją, tačiau dėl to apsauginis ekranas gali deformuotis / įtrūkti." - -#~ msgid "The printing speed in exported G-code will be slowed down, when the estimated layer time is shorter than this value, to get better cooling for these layers" -#~ msgstr "Spausdinimo greitis eksportuotame G-kode bus sulėtintas, kai numatomas sluoksnio laikas bus trumpesnis už šią vertę, tam, kad šie sluoksniai būtų geriau aušinami" - -#~ msgid "Spacing of interface lines. Zero means solid interface." -#~ msgstr "Atstumas tarp sąsajos linijų. 0 reiškia vientisą sąsają" - -#~ msgid "This G-code is inserted when change filament, including T command to trigger tool change" -#~ msgstr "Šis gkodas įterpiamas, kai keičiama gija, įskaitant komandą T įrankiui pakeisti" - -#~ msgid "This G-code is inserted when the extrusion role is changed" -#~ msgstr "Šis gkodas įterpiamas, kai pakeičiamas išspaudimo vaidmuo" - -#~ msgid "This object will be used to purge the nozzle after a filament change to save filament and decrease the print time. Colors of the objects will be mixed as a result. It will not take effect, unless the prime tower is enabled." -#~ msgstr "Šis objektas bus naudojamas purkštukui išvalyti po gijos pakeitimo, kad būtų sutaupyta gija ir sutrumpintas spausdinimo laikas. Dėl to objektų spalvos bus sumaišytos. Jis neveiks, jei nebus įjungtas pirminis bokštas." - -# TODO: Review, changed by lang refactor. PR 14254 -#~ msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than this value will be widened to the minimum wall width. It's expressed as a percentage over nozzle diameter." -#~ msgstr "Mažiausias plonų elementų storis. Modelio elementai, kurie yra plonesni už šią vertę, nebus spausdinami, o elementai, kurie yra storesni už minimalų elemento dydį, bus praplatinti iki minimalaus sienelės pločio. Jis išreiškiamas procentais nuo purkštuko skersmens" - -#~ msgid "Load uptodate process/machine settings when using uptodate." -#~ msgstr "įkelti \"naujausio\" proceso / mašinos nustatymus naudojant \"naujausia\"" - -#~ msgid "Load uptodate filament settings when using uptodate." -#~ msgstr "įkelti naujausius gijų nustatymus, kai naudojate \"naujausius“" - -#~ msgid "Load custom G-code from json" -#~ msgstr "Įkelti pasirinktinį G-kodą iš json" - -#~ msgid "Load filament IDs for each object" -#~ msgstr "Įkelti kiekvieno objekto gijų ID" - -#~ msgid "" -#~ "We now have added the auto-calibration for different filaments, which is fully automated and the result will be saved into the printer for future use. You only need to do the calibration in the following limited cases:\n" -#~ "1. If you introduce a new filament of different brands/models or the filament is damp\n" -#~ "2. If the nozzle is worn out or replaced with a new one\n" -#~ "3. If the max volumetric speed or print temperature is changed in the filament setting" -#~ msgstr "" -#~ "Dabar pridėjome automatinį kalibravimą skirtingoms gijoms, kuris yra visiškai automatizuotas, o rezultatas bus išsaugotas spausdintuve ir naudojamas ateityje. Kalibravimą reikia atlikti tik šiais ribotais atvejais:\n" -#~ "1. Jei įdedate naują skirtingų gamintojų ir (arba) modelių giją arba gija yra drėgna;\n" -#~ "2. Jei antgalis nusidėvi arba pakeičiamas nauju;\n" -#~ "3. Jei gijos nustatymuose keičiamas didžiausias tūrinis greitis arba spausdinimo temperatūra." - -#~ msgid "step: " -#~ msgstr "žingsnis " - -#~ msgid "mm/mm" -#~ msgstr "mm/mm" - -#~ msgid "Load STL" -#~ msgstr "Įkelti STL" - -#~ msgid "Load svg" -#~ msgstr "Įkelti scg" - -#~ msgid "Back Page 1" -#~ msgstr "Atgal Puslapis 1" - -#~ msgid "Delete Filament" -#~ msgstr "Ištrinti giją" - -#~ msgid "Refresh Printers" -#~ msgstr "Atnaujinti spausdintuvus" - -#~ msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height. This results in almost invisible layer lines and higher print quality but shorter print time." -#~ msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl beveik nematomos sluoksnio linijos, aukštesnė spausdinimo kokybė ir trumpesnis spausdinimo laikas." - -#~ msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. This results in almost invisible layer lines and much higher printing quality, but much longer print time." -#~ msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jame yra mažesnės sluoksnio linijos, mažesnis greitis ir pagreitis, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl to beveik nematomos sluoksnių linijos ir daug geresnė spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." - -#~ msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height. This results in minimal layer lines and higher print quality, but shorter print time." -#~ msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jis turi mažesnį sluoksnio aukštį, todėl yra minimalios sluoksnio linijos ir aukštesnė spausdinimo kokybė, tačiau trumpesnis spausdinimo laikas." - -#~ msgid "It has a normal layer height. This results in average layer lines and printing quality. It is suitable for most general printing cases." -#~ msgstr "Jis turi įprastą sluoksnio aukštį ir lemia įprastas sluoksnio linijas bei spausdinimo kokybę. Jis tinka daugeliui bendrųjų spausdinimo atvejų." - -#~ msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. This results in almost negligible layer lines and much higher printing quality, but much longer print time." -#~ msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl jo gaunamos beveik nereikšmingos sluoksnių linijos ir daug geresnė spausdinimo kokybė, tačiau daug ilgesnė spausdinimo trukmė." - -#~ msgid "It has a very big layer height. This results in very apparent layer lines, low printing quality and general printing time." -#~ msgstr "Jis turi labai didelį sluoksnio aukštį, todėl labai matomos sluoksnio linijos, prasta spausdinimo kokybė ir įprasta spausdinimo trukmė." - -#~ msgid "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height. This results in very apparent layer lines and much lower print quality but shorter print time in some cases." -#~ msgstr "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra didesnis, todėl sluoksnio linijos yra labai ryškios, o spausdinimo kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais sutrumpėja spausdinimo laikas." - -#~ msgid "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height. This results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some cases." -#~ msgstr "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra daug didesnis, todėl sluoksnio linijos yra labai ryškios, o spausdinimo kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais spausdinimas trunka daug trumpiau." - -#~ msgid "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height. This results in less but still apparent layer lines and slightly higher print quality, but longer print time in some cases." -#~ msgstr "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra mažesnis, todėl gaunama mažiau, bet vis tiek matomų sluoksnio linijų ir šiek tiek geresnė spausdinimo kokybė, tačiau kai kuriais spausdinimo atvejais ilgesnis spausdinimo laikas." - -#~ msgid "Connection to Flashforge is working correctly." -#~ msgstr "Ryšys su \"Flashforge\" veikia tinkamai." - -#~ msgid "Could not connect to Flashforge" -#~ msgstr "Nepavyko prisijungti prie \"Flashforge" - -#~ msgid "Set the brim type to \"painted\"" -#~ msgstr "Nustatykite krašto tipą „pieštas“" - -#~ msgid "" -#~ "How to use keyboard shortcuts\n" -#~ "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations." -#~ msgstr "" -#~ "Kaip naudoti sparčiuosius klavišus\n" -#~ "Ar žinojote, kad \"Orca Slicer\" siūlo daugybę klaviatūros sparčiųjų klavišų ir 3D scenos operacijų." - -#~ msgid "" -#~ "Auto-Arrange\n" -#~ "Did you know that you can auto-arrange all objects in your project?" -#~ msgstr "" -#~ "Automatinis išdėstymas\n" -#~ "Ar žinojote, kad galite automatiškai išdėstyti visus projekto objektus?" - -#~ msgid "" -#~ "Auto-Orient\n" -#~ "Did you know that you can rotate objects to an optimal orientation for printing by a simple click?" -#~ msgstr "" -#~ "Automatinis orientavimas\n" -#~ "Ar žinojote, kad objektus galima pasukti į optimalią spausdinimo orientaciją vienu spustelėjimu?" - -#~ msgid "" -#~ "Set parameters for multiple objects\n" -#~ "Did you know that you can set slicing parameters for all selected objects at one time?" -#~ msgstr "" -#~ "Kelių objektų parametrų nustatymas\n" -#~ "Ar žinojote, kad sluoksniavimo parametrus vienu metu galite nustatyti visiems pasirinktiems objektams?" - -#~ msgid "" -#~ "Flush into support/objects/infill\n" -#~ "Did you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" -#~ msgstr "" -#~ "Išleisti į atramas/objektus/užpildymą\n" -#~ "Ar žinojote, kad keičiant gijas galima sutaupyti išeikvotų gijų, jas nuleidžiant į atramas/objektus/užpildymą?" - -#~ msgid "ShiftLeft mouse button" -#~ msgstr "Shift + kairys pelės mygtukas" - -#~ msgid "Unselect" -#~ msgstr "Išjungti pasirinkimą" - -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Mastelis" - -#, c-format, boost-format -#~ msgid "Connect failed [%d]!" -#~ msgstr "Prisijungti nepavyko [%d]!" - -#~ msgid "Initialize failed (Device connection not ready)!" -#~ msgstr "Inicijavimas nepavyko (Įrenginio ryšys neparuoštas)!" - -#~ msgid "Initialize failed (Storage unavailable, insert SD card.)!" -#~ msgstr "Inicijavimas nepavyko (Saugykla neprieinama, įdėkite SD kortelę!)" - -#, c-format, boost-format -#~ msgid "Initialize failed (%s)!" -#~ msgstr "Inicijavimas nepavyko (%s)!" - -#~ msgid "" -#~ "We have added an experimental style \"Tree Slim\" that features smaller support volume but weaker strength.\n" -#~ "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." -#~ msgstr "" -#~ "Pridėjome eksperimentinį atraminės struktūros stilių pavadinimu \"Tree Slim\". Šis stilius pasižymi mažesniu atraminio taškelio tūriu, tačiau turi mažesnį tvirtumą.\n" -#~ "Rekomenduojame jį naudoti su šiais parametrais: 0 sąsajos sluoksnių, 0 viršutinio atstumo, 2 sienelės." - -#~ msgid "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following settings: at least 2 interface layers, at least 0.1mm top z distance or using support materials on interface." -#~ msgstr "Rekomenduojami nustatymai \"Tree Strong\" ir \"Tree Hybrid\" atraminėms struktūroms: Mažiausiai 2 sąsajos sluoksniai, mažiausiai 0,1 mm viršutinis z atstumas arba naudojamos atraminės medžiagos sąsajoje." - -#~ msgid "Lift Z Enforcement" -#~ msgstr "Priverstinis Z pakėlimas" - -#~ msgid "LAN Connection Failed (Sending print file)" -#~ msgstr "LAN ryšys nepavyko (spausdinimo failo siuntimas)" - -#~ msgid "Step 3: Ping the IP address to check for packet loss and latency." -#~ msgstr "3 veiksmas: Ping IP adresą, kad patikrintumėte paketų praradimą ir vėlavimą." - -#~ msgid "Enable this option to optimize part cooling fan speed for overhang and bridge to get better cooling" -#~ msgstr "Įjunkite šią parinktį, kad optimizuotumėte dalies aušinimo ventiliatoriaus greitį iškyšai ir tilteliui ir užtikrintumėte geresnį aušinimą" - -#~ msgid "Fan speed for overhang" -#~ msgstr "Ventiliatoriaus greitis dėl iškyšos" - -#~ msgid "Force part cooling fan to be this speed when printing bridge or overhang wall which has large overhang degree. Forcing cooling for overhang and bridge can get better quality for these part" -#~ msgstr "Spausdindami tiltus arba iškyšas, kurių iškyšos laipsnis didelis, priverstinai nustatykite tokį aušinimo ventiliatoriaus greitį. Priverstinai aušinant iškyšas ir tiltus galima užtikrinti geresnę šių dalių kokybę" - -#~ msgid "Cooling overhang threshold" -#~ msgstr "Iškyšos aušinimo riba" - -#, c-format -#~ msgid "Force cooling fan to be specific speed when overhang degree of printed part exceeds this value. Expressed as percentage which indicates how much width of the line without support from lower layer. 0% means forcing cooling for all outer wall no matter how much overhang degree" -#~ msgstr "Priversti aušinimo ventiliatorių veikti tam tikru greičiu, kai atspausdintos dalies iškyšos laipsnis viršija šią vertę. Išreiškiama procentais, kurie rodo, kokio pločio linija be apatinio sluoksnio atramos. 0% reiškia, kad aušinti priverčiama visą išorinę sienelę, nesvarbu, koks yra iškyšos laipsnis." - -#~ msgid "Density of external bridges. 100% means solid bridge. Default is 100%." -#~ msgstr "Išorinių tiltų tankis. 100 % reiškia vientisą tiltą. Numatytoji reikšmė yra 100 %." - -#~ msgid "Thick bridges" -#~ msgstr "Stori tiltai" - -#~ msgid "Z-hop when retract" -#~ msgstr "Z šuolis, kai įtraukiama" - -#~ msgid "Branch Diameter with double walls" -#~ msgstr "Šakos skersmuo su dvigubomis sienelėmis" - -#~ msgid "Branches with area larger than the area of a circle of this diameter will be printed with double walls for stability. Set this value to zero for no double walls." -#~ msgstr "Šakos, kurių plotas didesnis nei šio skersmens apskritimo plotas, bus atspausdintos su dvigubomis sienelėmis dėl stabilumo. Nustatykite šią vertę lygią nuliui, kad nebūtų dvigubų sienelių." - -#, c-format, boost-format -#~ msgid "Support: generate toolpath at layer %d" -#~ msgstr "Atramos: generuoti įrankių trajektoriją sluoksnyje %d" - -#~ msgid "Support: detect overhangs" -#~ msgstr "Atramos: aptikti iškyšas" - -#~ msgid "Support: propagate branches" -#~ msgstr "Atramos: skleisti šakas" - -#~ msgid "Support: draw polygons" -#~ msgstr "Atramos: piešti daugiakampius" - -#~ msgid "Support: generate toolpath" -#~ msgstr "Atramos: generuoti įrankių trajektoriją" - -#, c-format, boost-format -#~ msgid "Support: generate polygons at layer %d" -#~ msgstr "Atramos: generuoti daugiakampius sluoksnyje %d" - -#, c-format, boost-format -#~ msgid "Support: fix holes at layer %d" -#~ msgstr "Atramos: ištaisyti skyles sluoksnyje %d" - -#, c-format, boost-format -#~ msgid "Support: propagate branches at layer %d" -#~ msgstr "Atramos: skleisti šakas sluoksnyje %d" +"Venkite deformacijų (warping)\n" +"Ar žinojote, kad spausdinant medžiagas, kurios yra linkusios trauktis ir " +"riestis (pvz., ABS), tinkamas kaitinamojo pagrindo temperatūros padidinimas " +"gali sumažinti deformacijų (warping) tikimybę?" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index bac0be257d..3f940a383c 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -5240,7 +5240,7 @@ msgstr "" msgid "Size:" msgstr "Maat:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "" @@ -7800,6 +7800,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Kies Downloadmap" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "Gelukt" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "Herladen" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Associeer" @@ -7855,12 +7894,6 @@ msgstr "Toon startscherm" msgid "Show the splash screen during startup." msgstr "Toon het opstartscherm tijdens het opstarten." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7891,6 +7924,13 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "Automatisch een back-up maken" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash." + msgid "Maximum recent files" msgstr "" @@ -7909,12 +7949,17 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Automatisch een back-up maken" +msgid "Quality level for Draco export" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" msgid "Preset" msgstr "Voorinstelling" @@ -7946,6 +7991,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "Functies" @@ -7958,18 +8009,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "Gedrag" @@ -8197,19 +8236,6 @@ msgstr "Alleen op stabiele updates controleren" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/proces)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Ingebouwde voorinstellingen automatisch bijwerken." - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -8222,6 +8248,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Ingebouwde voorinstellingen automatisch bijwerken." + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -8234,30 +8270,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "Gelukt" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Koppel bestanden aan OrcaSlicer" @@ -8306,7 +8318,16 @@ msgstr "Ontwikkelaar" msgid "Skip AMS blacklist check" msgstr "AMS-zwartelijstcontrole overslaan" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8314,12 +8335,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8346,24 +8361,6 @@ msgstr "" msgid "trace" msgstr "" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "Herladen" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "Foutopsporing" @@ -8379,25 +8376,6 @@ msgstr "Voorinstellingen synchronizeren" msgid "Preferences sync" msgstr "Synchroniseer voorkeuren" -msgid "View control settings" -msgstr "Besturing instellingen weergeven" - -msgid "Rotate view" -msgstr "" - -msgid "Pan view" -msgstr "" - -msgid "Zoom view" -msgstr "" - -msgid "Other" -msgstr "Anders" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Omgekeerde scrollrichting tijdens het zoomen" - msgid "Enable SSL(MQTT)" msgstr "" @@ -12905,6 +12883,17 @@ msgstr "" msgid "layer" msgstr "laag" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -14705,6 +14694,9 @@ msgstr "Scheuren kleiner dan 2x de sluitradius van de spleet worden opgevuld tij msgid "Slicing Mode" msgstr "Slicing-modus" +msgid "Other" +msgstr "Anders" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Gebruik „Even-Oneven” voor 3DLabPrint-vliegtuigmodellen. Gebruik „Gaten sluiten” om alle gaten in het model te sluiten." @@ -17647,6 +17639,132 @@ msgstr "Inloggen/Test" msgid "Connection to printers connected via the print host failed." msgstr "Verbinding met printers aangesloten via de printhost mislukt." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17729,6 +17847,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "Kan geen verbinding maken met MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" @@ -18885,6 +19016,13 @@ msgstr "" "Kromtrekken voorkomen\n" "Wist je dat bij het printen van materialen die gevoelig zijn voor kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het warmtebed de kans op kromtrekken kan verkleinen?" +#~ msgid "View control settings" +#~ msgstr "Besturing instellingen weergeven" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Omgekeerde scrollrichting tijdens het zoomen" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Links: %s" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index 96f0195d58..9394867efd 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.3.0-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga <>\n" "Language-Team: \n" @@ -5297,7 +5297,7 @@ msgstr "Objętość:" msgid "Size:" msgstr "Rozmiar:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Wykryto konflikty ścieżek G-code na warstwie %d, Z = %.2lfmm. Proszę oddalić od siebie obiekty będące w konflikcie (%s <-> %s)." @@ -7893,6 +7893,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Wybierz katalog pobierania" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Powiązanie" @@ -7948,12 +7987,6 @@ msgstr "Wyświetlanie ekranu powitalnego" msgid "Show the splash screen during startup." msgstr "Wyświetla ekran powitalny podczas uruchamiania." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7984,6 +8017,13 @@ msgstr "Zachowanie przy wczytywaniu" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Określa czy ustawienia drukarki/filamentu/procesu mają być wczytywane podczas otwierania pliku .3mf" +msgid "Auto backup" +msgstr "Automatyczne tworzenie kopii zapasowej" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach." + msgid "Maximum recent files" msgstr "" @@ -8002,12 +8042,17 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Automatyczne tworzenie kopii zapasowej" +msgid "Quality level for Draco export" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" msgid "Preset" msgstr "Profil" @@ -8039,6 +8084,12 @@ msgstr "filamenty" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "" @@ -8051,18 +8102,6 @@ msgstr "Umożliwia wysyłanie zadania do wielu urządzeń jednocześnie i zarzą msgid "Pop up to select filament grouping mode" msgstr "Okno dialogowe do wyboru trybu grupowania filamentów" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "" @@ -8290,19 +8329,6 @@ msgstr "Sprawdzanie aktualizacji do stabilnych wersji" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Automatyczne synchronizowanie profili użytkownika (drukarka/filament/proces)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Automatyczne uaktualnianie wbudowanych profili" - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -8315,6 +8341,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Automatyczne uaktualnianie wbudowanych profili" + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -8327,30 +8363,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Skojarzenia plików z OrcaSlicer" @@ -8396,7 +8408,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "Pomijanie sprawdzania czarnej listy AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8404,12 +8425,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8436,24 +8451,6 @@ msgstr "debugowanie" msgid "trace" msgstr "śledzenie" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "Debugowanie" @@ -8469,25 +8466,6 @@ msgstr "Synchronizacja profili" msgid "Preferences sync" msgstr "Synchronizacja preferencji" -msgid "View control settings" -msgstr "Ustawienia kontrolowania widoku" - -msgid "Rotate view" -msgstr "Obróć widok" - -msgid "Pan view" -msgstr "Przesuń widok" - -msgid "Zoom view" -msgstr "Przybliż widok" - -msgid "Other" -msgstr "Inne" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania" - msgid "Enable SSL(MQTT)" msgstr "Włącz SSL(MQTT)" @@ -13152,6 +13130,17 @@ msgstr "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na msgid "layer" msgstr "warstwa" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Prędkość wentylatora dla warstwy łączącej podpory" @@ -15038,6 +15027,9 @@ msgstr "Szpary mniejsze niż dwukrotność wartości parametru „promień zamyk msgid "Slicing Mode" msgstr "Tryb cięcia" +msgid "Other" +msgstr "Inne" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Użyj „Parzysto-nieparzysty” dla modeli samolotów 3DLabPrint. Użyj „Zamknij otwory” do zamknięcia wszystkich otworów w modelu." @@ -18074,6 +18066,132 @@ msgstr "Logowanie/test" msgid "Connection to printers connected via the print host failed." msgstr "Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18156,6 +18274,19 @@ msgstr "Połączenie z MKS działa poprawnie." msgid "Could not connect to MKS" msgstr "Nie udało się połączyć z MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Połączenie z OctoPrint działa poprawnie." @@ -19315,6 +19446,22 @@ msgstr "" "Unikaj odkształceń\n" "Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może zmniejszyć prawdopodobieństwo odkształceń?" +#~ msgid "View control settings" +#~ msgstr "Ustawienia kontrolowania widoku" + +#~ msgid "Rotate view" +#~ msgstr "Obróć widok" + +#~ msgid "Pan view" +#~ msgstr "Przesuń widok" + +#~ msgid "Zoom view" +#~ msgstr "Przybliż widok" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Lewy: %s" diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 5de6c67404..e9473c66a3 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" -"PO-Revision-Date: 2026-06-19 20:49-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" +"PO-Revision-Date: 2026-07-04 11:51-0300\n" "Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -181,13 +181,13 @@ msgid "Support generated" msgstr "Suporte gerado" msgid "Entering Paint-on supports" -msgstr "" +msgstr "Entrando em pintura de suportes" msgid "Leaving Paint-on supports" -msgstr "" +msgstr "Saindo de pintura de suportes" msgid "Paint-on supports editing" -msgstr "" +msgstr "Edição de pintura de suportes" msgid "Gizmo-Place on Face" msgstr "Gizmo-Posicionar na face" @@ -273,16 +273,16 @@ msgid "To:" msgstr "Para:" msgid "Entering color painting" -msgstr "" +msgstr "Entrando em pintura de cores" msgid "Leaving color painting" -msgstr "" +msgstr "Saindo da pintura de cores" msgid "Color painting editing" -msgstr "" +msgstr "Editando pintura de cores" msgid "Paint-on fuzzy skin" -msgstr "Textura difusa pintada" +msgstr "Pintura de textura difusa" msgid "Add fuzzy skin" msgstr "Adicionar textura difusa" @@ -300,13 +300,13 @@ msgid "Enable painted fuzzy skin for this object" msgstr "Ativar textura difusa pintada para este objeto" msgid "Entering Paint-on fuzzy skin" -msgstr "" +msgstr "Entrando em pintura de textura difusa" msgid "Leaving Paint-on fuzzy skin" -msgstr "" +msgstr "Saindo de pintura de textura difusa" msgid "Paint-on fuzzy skin editing" -msgstr "" +msgstr "Edição de pintura de textura difusa" msgid "Move" msgstr "Mover" @@ -680,9 +680,8 @@ msgstr "Conector" msgid "Cut by Plane" msgstr "Cortar por Plano" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Non-manifold edges be caused by cut tool: do you want to fix now?" -msgstr "As arestas abertas podem ser causadas pela ferramenta de corte, você quer corrigir agora?" +msgstr "Arestas abertas podem ser causadas pela ferramenta de corte: você quer corrigir agora?" msgid "Repairing model object" msgstr "Reparando objeto modelo" @@ -694,13 +693,13 @@ msgid "Delete connector" msgstr "Apagar conector" msgid "Entering Cut gizmo" -msgstr "" +msgstr "Entrando no gizmo de Corte" msgid "Leaving Cut gizmo" -msgstr "" +msgstr "Saindo do gizmo de Corte" msgid "Cut gizmo editing" -msgstr "" +msgstr "Editando gizmo de Corte" msgid "Mesh name" msgstr "Nome da malha" @@ -1543,10 +1542,10 @@ msgid "Flip by Face 2" msgstr "Virar pela Face 2" msgid "Entering Measure gizmo" -msgstr "" +msgstr "Entrando no gizmo de Medida" msgid "Leaving Measure gizmo" -msgstr "" +msgstr "Saindo do gizmo de Medida" msgid "Assemble" msgstr "Montar" @@ -1577,15 +1576,18 @@ msgid "" "because they are restricted to the bed \n" "and only parts can be lifted." msgstr "" +"Recomenda-se montar objetos primeiro,\n" +"porque eles ficam restritos à mesa \n" +"e apenas partes podem ser levantadas." msgid "Face and face assembly" msgstr "Montagem face a face" msgid "Entering Assembly gizmo" -msgstr "" +msgstr "Entrando no gizmo de Montagem" msgid "Leaving Assembly gizmo" -msgstr "" +msgstr "Saindo do gizmo de Montagem" msgid "Ctrl+" msgstr "Ctrl+" @@ -1748,6 +1750,9 @@ msgid "" "Some features, including the setup wizard, may appear blank until it is installed.\n" "Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." msgstr "" +"Não foi possível instalar o Microsoft WebView2 Runtime.\n" +"Alguns recursos, incluindo o assistente de instalação, podem aparecer em branco até que ele seja instalado.\n" +"Por favor, instale-o manualmente de https://developer.microsoft.com/microsoft-edge/webview2/ e reinicie o OrcaSlicer." #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" @@ -1856,29 +1861,39 @@ msgid "" "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" +"Conflito de sincronização na nuvem: esta predefinição possui uma versão mais recente no OrcaCloud.\n" +"'Baixar' baixa a cópia da nuvem. 'Forçar subida' a sobrescreve com sua predefinição local." msgid "" "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" +"Conflito de sincronização na nuvem: uma predefinição com este nome já existe no OrcaCloud.\n" +"'Baixar' baixa a cópia da nuvem. 'Forçar subida' a sobrescreve com sua predefinição local." msgid "" "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" +"Conflito de sincronização na nuvem: uma predefinição com o mesmo nome foi excluída previamente da nuvem.\n" +"'Excluir' remove sua predefinição local. 'Forçar subida' a sobrescreve com sua predefinição local." msgid "" "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" +"Conflito de sincronização na nuvem: houve um conflito de predefinição não identificado ou inesperado.\n" +"'Baixar' baixa a cópia da nuvem. 'Forçar subida' a sobrescreve com sua predefinição local." msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" "Do you want to continue?" msgstr "" +"'Forçar subida' substituirá a cópia na nuvem pelas alterações locais nas suas predefinições.\n" +"Deseja continuar?" msgid "Resolve cloud sync conflict" -msgstr "" +msgstr "Resolver o conflito de sincronização de nuvem" msgid "Retrieving printer information, please try again later." msgstr "Obtendo informações da impressora, tente novamente mais tarde." @@ -2562,25 +2577,21 @@ msgstr[1] "%1$d arestas não-manifold" msgid "Click the icon to repair model object" msgstr "Clique no ícone para consertar o objeto modelo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object settings" msgstr "Clique com o botão direito no ícone para descartar as configurações do objeto" msgid "Click the icon to reset all settings of the object" msgstr "Clique no ícone para redefinir todas as configurações do objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object printable property" -msgstr "Clique com o botão direito no ícone para descartar a propriedade imprimível do objeto" +msgstr "Clique com o botão direito no ícone para descartar a propriedade de impressão do objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to toggle printable properties of the object" -msgstr "Clique no ícone para alternar a propriedade imprimível do objeto" +msgstr "Clique no ícone para alternar as propriedades de impressão do objeto" msgid "Click the icon to edit support painting of the object" msgstr "Clique no ícone para editar a pintura de suporte do objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to edit color painting for the object" msgstr "Clique no ícone para editar a pintura de cor do objeto" @@ -2620,17 +2631,16 @@ msgstr "Excluir volume negativo do objeto que é parte do corte" msgid "To save cut correspondence you can delete all connectors from all related objects." msgstr "Para salvar a correspondência de corte, você pode excluir todos os conectores de todos os objetos relacionados." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This action will break a cut correspondence.\n" "After that, model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate cut information first." msgstr "" -"Esta ação irá quebrar a correspondência de corte.\n" +"Esta ação irá quebrar uma correspondência de corte.\n" "Depois disso, a consistência do modelo não pode ser garantida.\n" "\n" -"Para manipular peças sólidas ou volumes negativos, você deve invalidar as informações de corte primeiro." +"Para manipular peças sólidas ou volumes negativos você deve primeiro invalidar as informações de corte." msgid "Delete all connectors" msgstr "Excluir todos os conectores" @@ -2653,17 +2663,14 @@ msgstr "Manipulação de objeto" msgid "Group manipulation" msgstr "Manipulação de grupo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Object Settings to Modify" -msgstr "Configurações de objeto para modificar" +msgstr "Configurações de Objeto para Modificar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Part Settings to Modify" -msgstr "Configurações de peça para modificar" +msgstr "Configurações de Peça para Modificar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer Range Settings to Modify" -msgstr "Configurações de Intervalo de Camada para modificar" +msgstr "Configurações de Intervalo de Camada para Modificar" msgid "Part manipulation" msgstr "Manipulação de peça" @@ -2689,9 +2696,8 @@ msgstr "Se o primeiro item selecionado for um objeto, o segundo também deve ser msgid "If the first selected item is a part, the second should be a part in the same object." msgstr "Se o primeiro item selecionado for uma peça, o segundo deve ser uma peça no mesmo objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The type of the last solid object part cannot be changed." -msgstr "O tipo da última peça do objeto sólido não deve ser alterado." +msgstr "O tipo da última peça do objeto sólido não pode ser alterado." msgid "Type:" msgstr "Tipo:" @@ -2934,7 +2940,6 @@ msgstr "Carregar" msgid "Unload" msgstr "Descarregar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filament." msgstr "Escolha um espaço do AMS e pressione o botão \"Carregar\" ou \"Descarregar\" para carregar ou descarregar automaticamente o filamento." @@ -3070,7 +3075,7 @@ msgid "The minmum temperature should not be less than " msgstr "A temperatura mínima não pode ser menor do que " msgid "Type to filter..." -msgstr "" +msgstr "Digite para filtrar…" msgid "All" msgstr "Todos" @@ -3082,7 +3087,7 @@ msgid "All items selected..." msgstr "Todos os itens selecionados…" msgid "No matching items..." -msgstr "" +msgstr "Nenhum item correspondente…" msgid "Deselect All" msgstr "Desselecionar Tudo" @@ -3112,7 +3117,7 @@ msgid "Developer mode" msgstr "Modo de desenvolvedor" msgid "Launch troubleshoot center" -msgstr "" +msgstr "Abrir a central de solução de problemas" msgid "" "All the selected objects are on a locked plate.\n" @@ -4006,14 +4011,13 @@ msgstr "A temperatura mínima recomendada não pode ser superior à temperatura msgid "Please check.\n" msgstr "Por favor, verifique.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The nozzle may become clogged when the temperature is out of the recommended range.\n" "Please make sure whether to use this temperature to print.\n" "\n" msgstr "" "O bico pode ficar bloqueado quando a temperatura estiver fora da faixa recomendada.\n" -"Por favor, certifique-se de usar a temperatura para imprimir.\n" +"Certifique-se se deve usar essa temperatura para imprimir.\n" "\n" #, c-format, boost-format @@ -4030,10 +4034,9 @@ msgstr "" "Velocidade volumétrica máxima muito baixa.\n" "Valor redefinido para 0,5" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" -msgstr "A temperatura da câmara atual está mais alta do que a temperatura segura do material, pode resultar em amolecimento e entupimento do material. A temperatura máxima segura para o material é %d" +msgstr "A temperatura da câmara atual está mais alta do que a temperatura segura do material, podendo resultar em amolecimento e bloqueio do bico. A temperatura máxima segura para o material é %d" #, c-format, boost-format msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." @@ -4062,20 +4065,17 @@ msgstr "" "\n" "A altura da primeira camada será redefinida para 0.2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This setting is only used for tuning model size by small amounts.\n" "For example, when the model size has small errors or when tolerances are incorrect. For large adjustments, please use the model scale function.\n" "\n" "The value will be reset to 0." msgstr "" -"Esta configuração é usada apenas para ajustar o tamanho do modelo com um valor pequeno em alguns casos.\n" -"Por exemplo, quando o tamanho do modelo tem um pequeno erro e é difícil de ser montado.\n" -"Para ajustes de tamanho grandes, por favor use a função de escala do modelo.\n" +"Esta configuração é usada apenas para ajustar o tamanho do modelo com valores pequenos.\n" +"Por exemplo, quando o tamanho do modelo tem erros pequenos ou as tolerâncias incorretas. Para ajustes de tamanho grandes, use a função de escala do modelo.\n" "\n" "O valor será redefinido para 0." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The elephant foot compensation value is too large.\n" "If there are significant elephant foot issues, please check other settings.\n" @@ -4083,9 +4083,9 @@ msgid "" "\n" "The value will be reset to 0." msgstr "" -"Uma compensação de pé de elefante muito grande é irrazoável.\n" -"Se realmente tiver um efeito sério de pé de elefante, por favor verifique outras configurações.\n" -"Por exemplo, se a temperatura da mesa estiver muito alta.\n" +"Uma compensação de pé de elefante é muito grande.\n" +"Se realmente tiver um efeito significativo de pé de elefante, por favor verifique outras configurações.\n" +"Por exemplo, se a temperatura da mesa pode estar muito alta.\n" "\n" "O valor será redefinido para 0." @@ -4167,15 +4167,14 @@ msgstr "O modo espiral só funciona quando as voltas da parede são 1, o suporte msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Mas máquinas com estrutura I3 não gerarão vídeos de timelapse." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings and enable spiral/vase mode automatically\n" "No - Cancel enabling spiral mode" msgstr "" "Alterar essas configurações automaticamente?\n" -"Sim - Alterar essas configurações e ativar o modo espiral automaticamente\n" -"Não - Desistir de usar o modo espiral desta vez" +"Sim - Alterar essas configurações e ativar o modo espiral/vaso automaticamente\n" +"Não - Cancelar ativação do modo espiral" msgid "Printing" msgstr "Imprimindo" @@ -4538,9 +4537,8 @@ msgstr "Predefinições" msgid "Print settings" msgstr "Configurações de Impressão" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament settings" -msgstr "Configurações do Filamento" +msgstr "Configurações de Filamento" msgid "SLA Materials settings" msgstr "Configurações de Materiais SLA" @@ -4563,7 +4561,6 @@ msgstr "String vazia" msgid "Value is out of range." msgstr "O valor está fora do intervalo." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "%s can’t be a percentage" msgstr "%s não pode ser uma percentagem" @@ -4778,7 +4775,7 @@ msgid "Fan speed" msgstr "Velocidade do ventilador" msgid "°C" -msgstr "°C" +msgstr "℃" msgid "Time" msgstr "Tempo" @@ -4804,9 +4801,8 @@ msgstr "Torre" msgid "Total" msgstr "Total" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Total estimation" -msgstr "Estimativa Total" +msgstr "Estimativa total" msgid "Total time" msgstr "Tempo total" @@ -4883,13 +4879,11 @@ msgstr "de" msgid "Usage" msgstr "Uso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height (mm)" -msgstr "Altura da Camada (mm)" +msgstr "Altura da camada (mm)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width (mm)" -msgstr "Largura da Linha (mm)" +msgstr "Largura da linha (mm)" msgid "Speed (mm/s)" msgstr "Velocidade (mm/s)" @@ -4903,12 +4897,11 @@ msgstr "Aceleração (mm/s²)" msgid "Jerk (mm/s)" msgstr "Jerk (mm/s)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fan speed (%)" -msgstr "Velocidade do Ventilador (%)" +msgstr "Velocidade do ventilador (%)" msgid "Temperature (°C)" -msgstr "Temperatura (°C)" +msgstr "Temperatura (℃)" msgid "Volumetric flow rate (mm³/s)" msgstr "Taxa de fluxo volumétrico (mm³/s)" @@ -4919,7 +4912,6 @@ msgstr "Taxa de fluxo volumétrico real (mm³/s)" msgid "Seams" msgstr "Costuras" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament changes" msgstr "Mudanças de filamento" @@ -4944,7 +4936,6 @@ msgstr "Mudança de cor" msgid "Print" msgstr "Imprimir" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printer" msgstr "Impressora" @@ -5161,7 +5152,7 @@ msgid "Slice" msgstr "Fatiar" msgid "Review" -msgstr "" +msgstr "Revisar" msgid "Assembly Return" msgstr "Retornar à Montagem" @@ -5230,7 +5221,7 @@ msgstr "Volume:" msgid "Size:" msgstr "Tamanho:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Foram encontrados conflitos de caminhos de G-code na camada %d, Z = %.2lfmm. Por favor, separe mais os objetos em conflito (%s <-> %s)." @@ -5463,7 +5454,7 @@ msgid "Show Configuration Folder" msgstr "Mostrar Pasta de Configuração" msgid "Troubleshoot Center" -msgstr "" +msgstr "Central de Solução de Problemas" msgid "Open Network Test" msgstr "Abrir Teste de Rede" @@ -6217,9 +6208,8 @@ msgstr "Disponível" msgid "Input access code" msgstr "Digite o código de acesso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Can't find devices?" -msgstr "Não consegue encontrar meus dispositivos?" +msgstr "Não consegue encontrar dispositivos?" msgid "Log out successful." msgstr "Sessão encerrada com sucesso." @@ -6242,15 +6232,12 @@ msgstr "caracteres ilegais:" msgid "illegal suffix:" msgstr "sufixo ilegal:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name field is not allowed to be empty." -msgstr "O nome não pode ficar vazio." +msgstr "O nome não pode ser vazio." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to start with a space." msgstr "O nome não pode começar com um espaço." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to end with a space." msgstr "O nome não pode terminar com um espaço." @@ -6273,9 +6260,8 @@ msgstr "Alternando…" msgid "Switching failed" msgstr "Falha na troca" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printing progress" -msgstr "Progresso da Impressão" +msgstr "Progresso da impressão" msgid "Parts Skip" msgstr "Pular Peças" @@ -6292,7 +6278,6 @@ msgstr "Clique para ver explicação do precondicionamento térmico" msgid "Clear" msgstr "Limpar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You have completed printing the mall model, \n" "but synchronizing rating information has failed." @@ -6381,10 +6366,9 @@ msgstr "Baixando…" msgid "Cloud Slicing..." msgstr "Fatiando na Nuvem…" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead of you." -msgstr "Na Fila de Fatiamento na Nuvem, existem %s tarefas na frente." +msgstr "Na Fila de Fatiamento na Nuvem, existem %s tarefas na sua frente." #, c-format, boost-format msgid "Layer: %s" @@ -6406,7 +6390,6 @@ msgstr "Se a temperatura da câmara exceder os 40℃, o sistema mudará automati msgid "Please select an AMS slot before calibration" msgstr "Selecione um espaço AMS antes da calibração" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot read filament info: the filament is loaded to the tool head. Please unload the filament and try again." msgstr "Não é possível ler as informações do filamento: o filamento está carregado na cabeça da ferramenta, por favor descarregue o filamento e tente novamente." @@ -6729,10 +6712,10 @@ msgid "Model file downloaded." msgstr "Arquivo do modelo baixado." msgid "Pull" -msgstr "" +msgstr "Baixar" msgid "Force push" -msgstr "" +msgstr "Forçar subida" msgid "Shared profiles may be available for this printer." msgstr "Perfis compartilhadas podem estar disponíveis para essa impressora." @@ -6795,9 +6778,8 @@ msgstr "Inferior" msgid "Enable detection of build plate position" msgstr "Ativar detecção da posição da placa de impressão" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The localization tag of the build plate will be detected, and printing will be paused if the tag is not in predefined range." -msgstr "A etiqueta de localização da placa de impressão é detectada e a impressão é pausada se a etiqueta não estiver na faixa predefinida." +msgstr "A etiqueta de localização da placa de impressão será detectada, e a impressão será pausada se a etiqueta não estiver na faixa predefinida." msgid "Build Plate Detection" msgstr "Detecção de Placa" @@ -6841,7 +6823,6 @@ msgstr "Detecta falhas na impressão causadas por entupimento do bico ou erosão msgid "First Layer Inspection" msgstr "Inspeção da Primeira Camada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto-recover from step loss" msgstr "Recuperação automática de perda de passo" @@ -6854,9 +6835,8 @@ msgstr "Salve os arquivos de impressão iniciados no Bambu Studio, Bambu Handy e msgid "Allow Prompt Sound" msgstr "Permitir som de alerta" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament Tangle Detection" -msgstr "Detecção de emaranhado de filamento" +msgstr "Detecção de Emaranhado de Filamento" msgid "Check if the nozzle is clumping by filament or other foreign objects." msgstr "Verifica se o bico está com filamento acumulado ou outros objetos estranhos." @@ -7616,10 +7596,10 @@ msgid "Unable to perform boolean operation on model meshes. Only positive parts msgstr "Não é possível executar operação booleana em malhas de modelo. Apenas partes positivas serão exportadas." msgid "Flashforge host is not available." -msgstr "" +msgstr "O host Flashforge não está disponível." msgid "Unable to log in to the Flashforge printer." -msgstr "" +msgstr "Não é possível fazer login na impressora Flashforge." msgid "Is the printer ready? Is the print sheet in place, empty and clean?" msgstr "A impressora está pronta? O folha de impressão está no lugar, vazia e limpa?" @@ -7813,6 +7793,50 @@ msgstr "Escolha a pasta para itens baixados" msgid "Choose Download Directory" msgstr "Escolha o Diretório de Download" +msgid "(Latest)" +msgstr "(Mais recente)" + +msgid "Network plug-in switched successfully." +msgstr "Plug-in de rede alterado com sucesso." + +msgid "Success" +msgstr "Sucesso" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Falha ao carregar o plug-in de rede. Reinicie o aplicativo." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Você selecionou a versão %s do plug-in de rede.\n" +"\n" +"Deseja baixar e instalar esta versão agora?\n" +"\n" +"Observação: o aplicativo pode precisar ser reiniciado após a instalação." + +msgid "Download Network Plug-in" +msgstr "Baixar Plug-in de Rede" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recarregar o plug-in de rede sem reiniciar a aplicação" + +msgid "Network plug-in reloaded successfully." +msgstr "Plug-in de rede recarregado com sucesso." + +msgid "Reload" +msgstr "Recarregar" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Falha ao recarregar plug-in de rede. Por favor, reinicie a aplicação." + +msgid "Reload Failed" +msgstr "Falha ao Recarregar" + msgid "Associate" msgstr "Associar" @@ -7868,12 +7892,6 @@ msgstr "Mostrar tela de abertura" msgid "Show the splash screen during startup." msgstr "Mostrar a tela de abertura durante a inicialização." -msgid "Show shared profiles notification" -msgstr "Mostrar notificação de perfis compartilhados" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Mostrar uma notificação com um link para navegar pelos perfis compartilhados quando a impressora selecionada for alterada." - msgid "Use window buttons on left side" msgstr "Usar os botões de janela no lado esquerdo" @@ -7904,6 +7922,13 @@ msgstr "Comportamento de carregamento" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "As configurações de impressora/filamento/processo devem ser carregadas ao abrir um arquivo 3MF?" +msgid "Auto backup" +msgstr "Backup automático" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Faça backup do seu projeto periodicamente para restaurar de falhas ocasionais." + msgid "Maximum recent files" msgstr "Máximo de arquivos recentes" @@ -7922,12 +7947,20 @@ msgstr "Mostrar opções ao importar arquivo STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Se ativo, uma caixa de diálogo de configurações de parâmetros será exibida durante a importação do arquivo STEP." -msgid "Auto backup" -msgstr "Backup automático" +msgid "Quality level for Draco export" +msgstr "Nível de qualidade para exportação Draco" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Faça backup do seu projeto periodicamente para restaurar de falhas ocasionais." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Controla a profundidade de bits de quantização usada ao comprimir a malha para o formato Draco.\n" +"0 = compressão sem perdas (a geometria é preservada com precisão total). Os valores válidos para compressão com perdas variam de 8 a 30.\n" +"Valores mais baixos produzem arquivos menores, mas perdem mais detalhes geométricos; valores mais altos preservam mais detalhes, ao custo de arquivos maiores." msgid "Preset" msgstr "Predefinição" @@ -7959,6 +7992,12 @@ msgstr "filamentos" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Otimiza a altura máxima da area de filamentos para a contagem de filamentos escolhidos." +msgid "Show shared profiles notification" +msgstr "Mostrar notificação de perfis compartilhados" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Mostrar uma notificação com um link para navegar pelos perfis compartilhados quando a impressora selecionada for alterada." + msgid "Features" msgstr "Recursos" @@ -7971,21 +8010,6 @@ msgstr "Com esta opção habilitada, você pode enviar uma tarefa para vários d msgid "Pop up to select filament grouping mode" msgstr "Abrir seleção do modo de agrupamento de filamento" -msgid "Quality level for Draco export" -msgstr "Nível de qualidade para exportação Draco" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Controla a profundidade de bits de quantização usada ao comprimir a malha para o formato Draco.\n" -"0 = compressão sem perdas (a geometria é preservada com precisão total). Os valores válidos para compressão com perdas variam de 8 a 30.\n" -"Valores mais baixos produzem arquivos menores, mas perdem mais detalhes geométricos; valores mais altos preservam mais detalhes, ao custo de arquivos maiores." - msgid "Behaviour" msgstr "Comportamento" @@ -8116,13 +8140,16 @@ msgid "Renders cast shadows on the plate in realistic view." msgstr "Renderiza sombras na placa em uma visualização realista." msgid "Smooth normals" -msgstr "" +msgstr "Normais suaves" msgid "" "Applies smooth normals to the realistic view.\n" "\n" "Requires manual scene reload to take effect (right-click on 3D view → \"Reload All\")." msgstr "" +"Aplica normais suaves à visualização realista.\n" +"\n" +"Requer a recarga manual da cena para fazer efeito (clique com o botão direito na visualização 3D → \"Recarregar Tudo\")." msgid "Anti-aliasing" msgstr "Antisserrilhamento" @@ -8198,10 +8225,10 @@ msgstr "" "Observação: quando o Modo Furtivo está ativado, seus perfis de usuário não serão copiados para o Orca Cloud." msgid "Hide login side panel" -msgstr "" +msgstr "Ocultar painel lateral de autenticação" msgid "Hide the login side panel on the home page." -msgstr "" +msgstr "Ocultar painel lateral de autenticação na página inicial." msgid "Network test" msgstr "Teste de Rede" @@ -8227,19 +8254,6 @@ msgstr "Verificar apenas atualizações estáveis" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronização automática de predefinições do usuário (Impressora/Filamento/Processo)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Atualizar automaticamente Predefinições integradas." - -msgid "Use encrypted file for token storage" -msgstr "Usar um arquivo criptografado para armazenar os tokens" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Armazene os tokens de autenticação em um arquivo criptografado em vez do chaveiro do sistema. (Requer reinicialização)" - -msgid "Filament Sync Options" -msgstr "Opções de Sincronização de Filamento" - msgid "Filament sync mode" msgstr "Modo de sincronização de filamento" @@ -8252,11 +8266,21 @@ msgstr "Filamento e Cor" msgid "Color only" msgstr "Apenas Cor" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Atualizar automaticamente Predefinições integradas." + +msgid "Use encrypted file for token storage" +msgstr "Usar um arquivo criptografado para armazenar os tokens" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Armazene os tokens de autenticação em um arquivo criptografado em vez do chaveiro do sistema. (Requer reinicialização)" + msgid "Bambu network plug-in" -msgstr "" +msgstr "Plug-in de rede Bambu" msgid "Enable Bambu network plug-in" -msgstr "" +msgstr "Ativar Plug-in de rede Bambu" msgid "Network plug-in version" msgstr "Versão do plug-in de rede" @@ -8264,70 +8288,38 @@ msgstr "Versão do plug-in de rede" msgid "Select the network plug-in version to use" msgstr "Selecione a versão do plug-in de rede a ser usado" -msgid "(Latest)" -msgstr "(Mais recente)" - -msgid "Network plug-in switched successfully." -msgstr "Plug-in de rede alterado com sucesso." - -msgid "Success" -msgstr "Sucesso" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Falha ao carregar o plug-in de rede. Reinicie o aplicativo." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Você selecionou a versão %s do plug-in de rede.\n" -"\n" -"Deseja baixar e instalar esta versão agora?\n" -"\n" -"Observação: o aplicativo pode precisar ser reiniciado após a instalação." - -msgid "Download Network Plug-in" -msgstr "Baixar Plug-in de Rede" - msgid "Associate files to OrcaSlicer" msgstr "Associar arquivos ao OrcaSlicer" msgid "File associations for the Microsoft Store version are managed by Windows Settings." -msgstr "" +msgstr "As associações de arquivos para a versão da Microsoft Store são gerenciadas pelas Configurações do Windows." msgid "Open Windows Default Apps Settings" -msgstr "" +msgstr "Abrir as Configurações de Aplicativos Padrão do Windows" msgid "Associate 3MF files to OrcaSlicer" msgstr "Associar arquivos 3MF ao OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open 3MF files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos 3MF." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos 3MF." msgid "Associate DRC files to OrcaSlicer" msgstr "Associar arquivos DRC ao OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open DRC files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos DRC." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos DRC." msgid "Associate STL files to OrcaSlicer" msgstr "Associar arquivos STL ao OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STL files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos STL." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos STL." msgid "Associate STEP files to OrcaSlicer" msgstr "Associar arquivos STEP ao OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STEP files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos STEP." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos STEP." msgid "Associate web links to OrcaSlicer" msgstr "Associar links da web ao OrcaSlicer" @@ -8338,20 +8330,23 @@ msgstr "Desenvolvedor" msgid "Skip AMS blacklist check" msgstr "Pular verificação de lista negra AMS" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "" +msgid "Show unsupported presets" +msgstr "Mostrar predefinições não suportadas" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Exibir predefinições incompatíveis e não suportadas nas listas de impressora e filamento. Essas predefinições não podem ser selecionadas." + +msgid "Experimental Features" +msgstr "Recursos Experimentais" + +msgid "Keep painted feature after mesh change" +msgstr "Manter o elemento pintado após a alteração da malha" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "Permitir Armazenamento Anormal" @@ -8380,24 +8375,6 @@ msgstr "depurar" msgid "trace" msgstr "traço" -msgid "Network plug-in" -msgstr "Plug-in de rede" - -msgid "Reload" -msgstr "Recarregar" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recarregar o plug-in de rede sem reiniciar a aplicação" - -msgid "Network plug-in reloaded successfully." -msgstr "Plug-in de rede recarregado com sucesso." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Falha ao recarregar plug-in de rede. Por favor, reinicie a aplicação." - -msgid "Reload Failed" -msgstr "Falha ao Recarregar" - msgid "Debug" msgstr "Depuração" @@ -8413,25 +8390,6 @@ msgstr "Sincronização de predefinição" msgid "Preferences sync" msgstr "Sincronização de preferências" -msgid "View control settings" -msgstr "Configurações de controle de vista" - -msgid "Rotate view" -msgstr "Rotacionar vista" - -msgid "Pan view" -msgstr "Mover vista" - -msgid "Zoom view" -msgstr "Aproximar vista" - -msgid "Other" -msgstr "Outro" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "O botão de roda do mouse inverte ao fazer zoom" - msgid "Enable SSL(MQTT)" msgstr "Ativar SSL(MQTT)" @@ -8903,7 +8861,7 @@ msgid "Synchronizing device information..." msgstr "Sincronizando informações do dispositivo…" msgid "Synchronizing device information timed out." -msgstr "Expirado tempo limite de sincronização das informações do dispositivo." +msgstr "Expirado limite de tempo de sincronização das informações do dispositivo." msgid "Cannot send a print job when the printer is not at FDM mode." msgstr "Não é possível enviar um trabalho de impressão quando a impressora não está em modo FDM." @@ -8985,14 +8943,13 @@ msgid "Upload file timeout, please check if the firmware version supports it." msgstr "Limite de tempo de envio de arquivo excedido, verifique se a versão do firmware tem suporte." msgid "Connection timed out, please check your network." -msgstr "Tempo limite de conexão excedido. Verifique sua rede." +msgstr "Limite de tempo de conexão excedido, verifique sua rede." msgid "Connection failed. Click the icon to retry" msgstr "Falha na coexão. Clique no icon para tentar novamente" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send print tasks when an update is in progress" -msgstr "Não é possível enviar a tarefa de impressão quando a atualização está em progresso" +msgstr "Não é possível enviar tarefas de impressão quando uma atualização está em progresso" msgid "The selected printer is incompatible with the chosen printer presets." msgstr "A impressora selecionada é incompatível com as predefinições de impressora escolhidas." @@ -9000,7 +8957,6 @@ msgstr "A impressora selecionada é incompatível com as predefinições de impr msgid "Storage needs to be inserted before send to printer." msgstr "O armazenamento precisa estar inserido antes de enviar para a impressora." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer is required to be on the same LAN as Orca Slicer." msgstr "A impressora deve estar na mesma LAN do OrcaSlicer." @@ -9031,11 +8987,9 @@ msgstr "Falha ao conectar o socket" msgid "Failed to publish login request" msgstr "Falha ao publicar a solicitação de login" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from device" msgstr "Limite de tempo excedido ao obter o ticket do dispositivo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from server" msgstr "Limite de tempo excedido ao obter o ticket do servidor" @@ -9443,10 +9397,10 @@ msgid "Target chamber temperature, and the minimal chamber temperature at which msgstr "" msgid "Target" -msgstr "" +msgstr "Alvo" msgid "Minimal" -msgstr "" +msgstr "Mínimo" msgid "Print temperature" msgstr "Temperatura de impressão" @@ -9771,28 +9725,28 @@ msgid "Temperature Safety Check" msgstr "Verificação de Segurança de Temperatura" msgid "Continue" -msgstr "Continue" +msgstr "Continuar" msgid "Don't warn again for this preset" msgstr "Não avisar novamente para essa predifinição" #, c-format, boost-format msgid "%s: %s" -msgstr "" +msgstr "%s: %s" msgid "No modifications need to be copied." -msgstr "" +msgstr "Nenhuma modificação precisa ser copiada." msgid "Copy paramters" -msgstr "" +msgstr "Copiar parâmetros" #, c-format, boost-format msgid "Modify paramters of %s" -msgstr "" +msgstr "Modificar parâmetros de %s" #, c-format, boost-format msgid "Do you want to modify the following parameters of the %s to that of the %s?" -msgstr "" +msgstr "Você quer modificar os seguintes parâmetros de %s para os de %s?" msgid "Click to reset current value and attach to the global value." msgstr "Clique para redefinir o valor atual e anexá-lo ao valor global." @@ -9942,10 +9896,10 @@ msgid "Capabilities" msgstr "Capacidades" msgid "Left: " -msgstr "" +msgstr "Esquerda: " msgid "Right: " -msgstr "" +msgstr "Direita: " msgid "Show all presets (including incompatible)" msgstr "Mostrar todas as predefinições (incluindo as incompatíveis)" @@ -10439,9 +10393,8 @@ msgstr "Seta para direita" msgid "Move selection 10mm in positive X direction" msgstr "Mover seleção 10mm na direção X positiva" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Movement step set to 1mm" -msgstr "Passo de movimento definido para 1 mm" +msgstr "Passo de movimento definido para 1mm" msgid "Keyboard 1-9: set filament for object/part" msgstr "Teclado 1-9: ajustar filamento para objeto/peça" @@ -10489,13 +10442,13 @@ msgid "Gizmo mesh boolean" msgstr "Gizmo malha booleana" msgid "Gizmo FDM paint-on fuzzy skin" -msgstr "Gizmo FDM pintura em textura difusa" +msgstr "Gizmo de pintura de textura difusa FDM" msgid "Gizmo SLA support points" msgstr "Gizmo de pontos de suporte SLA" msgid "Gizmo FDM paint-on seam" -msgstr "Gizmo de costura de pintura FDM" +msgstr "Gizmo de pintura de costura FDM" msgid "Gizmo text emboss/engrave" msgstr "Gizmo Texturizar/gravar texto" @@ -10591,7 +10544,6 @@ msgstr "informações de atualização da versão %s:" msgid "Network plug-in update" msgstr "Atualização do plug-in de rede" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click OK to update the Network plug-in the next time Orca Slicer launches." msgstr "Clique em OK para atualizar o plug-in de rede quando o OrcaSlicer for iniciado novamente." @@ -10736,13 +10688,11 @@ msgstr "Atualização bem-sucedida" msgid "Are you sure you want to update? This will take about 10 minutes. Do not turn off the power while the printer is updating." msgstr "Tem certeza de que deseja atualizar? Isso levará cerca de 10 minutos. Não desligue a energia enquanto a impressora estiver atualizando." -# TODO: Review, changed by lang refactor. PR 14254 msgid "An important update was detected and needs to be run before printing can continue. Do you want to update now? You can also update later from 'Update firmware'." msgstr "Uma atualização importante foi detectada e precisa ser executada antes que a impressão possa continuar. Deseja atualizar agora? Você também pode atualizar posteriormente em 'Atualizar firmware'." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The firmware version is abnormal. Repairing and updating are required before printing. Do you want to update now? You can also update later on the printer or update next time you start Orca Slicer." -msgstr "A versão do firmware está anormal. Reparar e atualizar é necessário antes de imprimir. Você deseja atualizar agora? Você também pode atualizar mais tarde na impressora ou atualizar da próxima vez que iniciar o Orca." +msgstr "A versão do firmware está anormal. Reparar e atualizar é necessário antes de imprimir. Você deseja atualizar agora? Você também pode atualizar mais tarde na impressora ou atualizar da próxima vez que iniciar o OrcaSlicer." msgid "Extension Board" msgstr "Mesa de Extensão" @@ -10764,9 +10714,8 @@ msgstr "Reparo cancelado" msgid "Copying of file %1% to %2% failed: %3%" msgstr "Falha ao copiar o arquivo %1% para %2%: %3%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please check any unsaved changes before updating the configuration." -msgstr "É necessário verificar as alterações não salvas antes das atualizações de configuração." +msgstr "Verifique as alterações não salvas antes de atualizar a configuração." msgid "Configuration package: " msgstr "Pacote de configuração: " @@ -10780,10 +10729,9 @@ msgstr "Abrir arquivo G-code:" msgid "One object has an empty first layer and can't be printed. Please Cut the bottom or enable supports." msgstr "Um objeto tem uma primeira camada vazia e não pode ser impresso. Por favor, corte a base ou habilite os suportes." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The object has empty layers between %1% and %2% and can’t be printed." -msgstr "O objeto não pode ser impresso devido a uma camada vazia entre %1% e %2%." +msgstr "O objeto tem camadas vazias entre %1% e %2% e não pode ser impresso." #, boost-format msgid "Object: %1%" @@ -10843,10 +10791,9 @@ msgstr " não pode ser colocado na " msgid "Internal Bridge" msgstr "Ponte interna" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of “%2%” " -msgstr "Falha ao calcular a largura da linha de %1%. Não é possível obter o valor de \"%2%\". " +msgstr "Falha ao calcular a largura da linha de %1%. Não é possível obter o valor de “%2%”. " msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width" msgstr "Espaçamento inválido fornecido para Flow::with_spacing(), verifique a altura da camada e a largura da extrusão." @@ -10944,10 +10891,9 @@ msgstr "validação falhou" msgid "write callback failed" msgstr "falha na chamada de escrita" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "%1% is too close to exclusion area. There may be collisions when printing." -msgstr "%1% está muito perto da área de exclusão, pode haver colisões durante a impressão." +msgstr "%1% está muito perto de área de exclusão. Pode haver colisões durante a impressão." #, boost-format msgid "%1% is too close to others, and collisions may be caused." @@ -10969,9 +10915,8 @@ msgstr "Torre de Preparo" msgid " is too close to others, and collisions may be caused.\n" msgstr " está muito perto de outros, e colisões podem ocorrer.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid " is too close to an exclusion area, and collisions will be caused.\n" -msgstr " está muito perto da área de exclusão, e ocorrerão colisões.\n" +msgstr " está muito perto de uma área de exclusão, e colisões vão ocorrer.\n" msgid " is too close to clumping detection area, and collisions will be caused.\n" msgstr " está muito perto da área de detecção de aglomeração, e ocorrerão colisões.\n" @@ -11003,9 +10948,8 @@ msgstr "Uma torre de preparo é necessária para a detecção de aglomeração, msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." msgstr "Por favor, selecione a sequência de impressão \"Por objeto\" para imprimir vários objetos no modo vaso espiral." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Spiral (vase) mode does not work when an object contains more than one material." -msgstr "O modo de vaso espiral não funciona quando um objeto contém mais de um material." +msgstr "O modo espiral (vaso) não funciona quando um objeto contém mais de um material." #, boost-format msgid "While the object %1% itself fits the build volume, it exceeds the maximum build volume height because of material shrinkage compensation." @@ -11114,19 +11058,19 @@ msgid "Bridge line width must not exceed nozzle diameter" msgstr "A largura da linha de ponte não deve exceder o diâmetro do bico" msgid "\"G92 E0\" was found in before_layer_change_gcode, but the G or E are not uppercase. Please change them to the exact uppercase \"G92 E0\"." -msgstr "" +msgstr "\"G92 E0\" foi encontrado em before_layer_gcode, mas o G ou o E não estão em maiúsculas. Por favor, altere-os para exatamente \"G92 E0\" (em maiúsculas)." msgid "\"G92 E0\" was found in layer_change_gcode, but the G or E are not uppercase. Please change them to the exact uppercase \"G92 E0\"." -msgstr "" +msgstr "\"G92 E0\" foi encontrado em layer_change_gcode, mas o G ou o E não estão em maiúsculas. Por favor, altere-os para exatamente \"G92 E0\" (em maiúsculas)." msgid "Relative extruder addressing requires resetting the extruder position at each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to layer_gcode." msgstr "O endereçamento relativo da extrusora requer a reinicialização da posição da extrusora em cada camada para evitar perda de precisão de ponto flutuante. Adicione \"G92 E0\" ao layer_gcode." msgid "\"G92 E0\" was found in before_layer_change_gcode, which is incompatible with absolute extruder addressing." -msgstr "" +msgstr "\"G92 E0\" foi encontrado em before_layer_change_gcode, o que é incompatível com o endereçamento absoluto da extrusora." msgid "\"G92 E0\" was found in layer_change_gcode, which is incompatible with absolute extruder addressing." -msgstr "" +msgstr "\"G92 E0\" foi encontrado em layer_change_gcode, o que é incompatível com o endereçamento absoluto da extrusora." #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" @@ -11209,22 +11153,22 @@ msgid "Extruder printable area" msgstr "Área de impressão da extrusora" msgid "Support parallel printheads" -msgstr "" +msgstr "Suportar cabeçotes paralelos" msgid "Enable printer settings for machines that can use multiple printheads in parallel." -msgstr "" +msgstr "Habilita as configurações de impressão para máquinas que podem utilizar múltiplas cabeças de impressão em paralelo." msgid "Parallel printheads count" -msgstr "" +msgstr "Contagem de cabeçotes paralelos" msgid "Set the number of parallel printheads for machines like OrangeStorm Giga printer." -msgstr "" +msgstr "Define o número de cabeçotes de impressão em paralelo para máquinas como a impressora OrangeStorm Giga." msgid "Parallel printheads bed exclude areas" -msgstr "" +msgstr "Áreas de exclusão da mesa para cabeçotes de impressão paralelos" msgid "Ordered list of bed exclude areas by parallel printhead count. Item 1 applies to one printhead, item 2 to two printheads, and so on. Leave an item empty for no excluded area." -msgstr "" +msgstr "Lista ordenada de áreas de exclusão da mesa, com base na quantidade de cabeçotes de impressão operando em paralelo. O item 1 aplica-se a um cabeçote de impressão, o item 2 a dois cabeçotes, e assim por diante. Deixe um item em branco se não houver área de exclusão." # TODO: Review, changed by lang refactor. PR 14254 msgid "Excluded bed area" @@ -11297,10 +11241,10 @@ msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "Permitir o controle da impressora BambuLab por meio de hosts de impressão de terceiros." msgid "Use 3MF instead of G-code" -msgstr "" +msgstr "Usar 3MF em vez de G-code" msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file." -msgstr "" +msgstr "Ative esta opção se a impressora aceitar um arquivo 3MF como trabalho de impressão. Quando ativada, o OrcaSlicer envia o arquivo fatiado como .gcode.3mf, em vez de um arquivo .gcode comum." msgid "Printer Agent" msgstr "Agente de Impressora" @@ -11572,10 +11516,10 @@ msgid "" msgstr "" msgid "Relative bridge angle" -msgstr "" +msgstr "Ângulo relativo de ponte" msgid "When enabled, the bridge angle values are added to the automatically calculated bridge direction instead of overriding it." -msgstr "" +msgstr "Quando habilitados, os valores de ângulo da ponte são somados à direção da ponte calculada automaticamente em vez de substituí-la." msgid "External bridge density" msgstr "Densidade de ponte externa" @@ -12056,19 +12000,14 @@ msgstr "Como lista de objetos" msgid "Slow printing down for better layer cooling" msgstr "Diminuir a velocidade de impressão para melhor resfriamento de camada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details." -msgstr "Ative esta opção para diminuir a velocidade de impressão para que o tempo da camada final não seja menor do que o limiar de tempo da camada em \"Limiar de velocidade máxima do ventilador\", para que a camada possa ser resfriada por mais tempo. Isso pode melhorar a qualidade de resfriamento para detalhes pequenos." +msgstr "Ative esta opção para diminuir a velocidade de impressão para que o tempo da camada final não seja menor do que o limiar de tempo da camada em \"Limiar de velocidade máxima do ventilador\", para que a camada possa ser resfriada um tempo mais longo. Isso pode melhorar a qualidade para detalhes pequenos." msgid "Normal printing" msgstr "Impressão normal" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the default acceleration for both normal printing and travel after the first layer." -msgstr "A aceleração padrão tanto para a impressão normal quanto para o movimento, exceto na primeira camada." - -msgid "Acceleration of travel moves." -msgstr "Aceleração dos movimentos de deslocamento." +msgstr "Essa é a aceleração padrão tanto para a impressão normal quanto para o movimento depois da primeira camada." msgid "First layer travel" msgstr "Deslocamento para primeira camada" @@ -12128,9 +12067,8 @@ msgstr "Desligar todos os ventiladores de resfriamento para as primeiras camadas msgid "Don't support bridges" msgstr "Não suportar pontes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This disables supporting bridges, which decreases the amount of support required. Bridges can usually be printed directly without support over a reasonable distance." -msgstr "Não suportar toda a área da ponte que faz com que o suporte seja muito grande. Pontes geralmente podem ser impressas diretamente sem suporte se não forem muito longas." +msgstr "Isto desabilita pontes de suporte, que diminui a quantidade de suporte necessário. Pontes geralmente podem ser impressas diretamente sem suporte sobre uma distância razoável." msgid "Thick external bridges" msgstr "Pontes externas grossas" @@ -12140,6 +12078,9 @@ msgid "" "This increases bridge strength and reliability, allowing longer spans, but may worsen appearance.\n" "If disabled, bridges may look better but are generally reliable only for shorter spans." msgstr "" +"Se ativado, a extrusão de pontes utiliza uma altura de linha igual ao diâmetro do bico.\n" +"Isso aumenta a resistência e a confiabilidade da ponte, permitindo vãos maiores, mas pode prejudicar a aparência.\n" +"Se desativado, as pontes podem apresentar melhor aparência, mas geralmente são confiáveis ​​apenas para vãos menores." msgid "Thick internal bridges" msgstr "Pontes internas grossas" @@ -12149,6 +12090,9 @@ msgid "" "This increases internal bridge strength and reliability when printed over sparse infill, but may worsen appearance.\n" "If disabled, internal bridges may look better but can be less reliable over sparse infill." msgstr "" +"Se ativado, a extrusão de pontes internas usa uma altura de linha igual ao diâmetro do bico.\n" +"Isso aumenta a resistência e a confiabilidade das pontes internas quando impressas sobre preenchimento esparso, mas pode prejudicar a aparência.\n" +"Se desativado, as pontes internas podem apresentar melhor aparência, mas podem ser menos confiáveis sobre preenchimento esparso." msgid "Extra bridge layers (beta)" msgstr "Camadas extras de ponte (beta)" @@ -12216,16 +12160,14 @@ msgstr "Sem filtragem" msgid "Max bridge length" msgstr "Comprimento máximo de ponte" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum length of bridges that don't need support. Set it to 0 if you want all bridges to be supported, and set it to a very large value if you don't want any bridges to be supported." -msgstr "Comprimento máximo de pontes que não precisam de suporte. Defina como 0 se desejar que todas as pontes tenham suporte, e defina como um valor muito grande se não desejar que nenhuma ponte tenha suporte." +msgstr "Este é o comprimento máximo de pontes que não precisam de suporte. Defina como 0 se desejar que todas as pontes tenham suporte, e defina como um valor muito grande se não desejar que nenhuma ponte tenha suporte." msgid "End G-code" msgstr "G-code de finalização" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-Code when finishing the entire print." -msgstr "G-code de finalização ao terminar a impressão completa." +msgstr "Adicionar G-code de finalização ao terminar a impressão completa." msgid "Between Object G-code" msgstr "G-code entre objetos" @@ -12233,9 +12175,8 @@ msgstr "G-code entre objetos" msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object." msgstr "Insira o G-code entre objetos. Este parâmetro só terá efeito quando você imprimir seus modelos objeto por objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-code when finishing the printing of this filament." -msgstr "G-code de finalização ao terminar a impressão deste filamento." +msgstr "Adicionar G-code de finalização ao terminar a impressão deste filamento." msgid "Ensure vertical shell thickness" msgstr "Garantir a espessura vertical da casca" @@ -12264,9 +12205,8 @@ msgstr "Moderado" msgid "Top surface pattern" msgstr "Padrão de superfície superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for top surface infill." -msgstr "Padrão de linha do preenchimento da superfície superior." +msgstr "Este é o padrão de linha do preenchimento da superfície superior." msgid "Monotonic" msgstr "Monótono" @@ -12301,19 +12241,8 @@ msgstr "Densidade da camada superior. Um valor de 100% cria uma camada superior msgid "Bottom surface pattern" msgstr "Padrão de superfície inferior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern of bottom surface infill, not including bridge infill." -msgstr "Padrão de linha do preenchimento da superfície inferior, não do preenchimento da ponte." - -msgid "Bottom surface density" -msgstr "Densidade da superfície inferior" - -msgid "" -"Density of the bottom surface layer. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion.\n" -"WARNING: Lowering this value may negatively affect bed adhesion." -msgstr "" -"Densidade da camada inferior. Destina-se a fins estéticos ou funcionais, não para corrigir problemas como extrusão excessiva.\n" -"AVISO: Reduzir este valor pode afetar negativamente a aderência à mesa." +msgstr "Este é o padrão de linha do preenchimento da superfície inferior, não incluindo o preenchimento de ponte." msgid "Internal solid infill pattern" msgstr "Padrão de preenchimento sólido interno" @@ -12324,9 +12253,8 @@ msgstr "Padrão de linha do preenchimento sólido interno. Se a detecção de pr msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Largura da linha da parede externa. Se expresso como porcentagem, será calculado sobre o diâmetro do bico." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing speed for the outer walls of parts. These are generally printed slower than inner walls for higher quality." -msgstr "Velocidade da parede externa que é a mais externo e visível. Geralmente é mais lenta que a velocidade da parede interna para obter melhor qualidade." +msgstr "Esta é a velocidade de impressão da parede externa das peças. Geralmente mais lenta que a velocidade das paredes internas para melhor qualidade." msgid "Small perimeters" msgstr "Pequenos perímetros" @@ -12404,20 +12332,17 @@ msgstr "Horário" msgid "Height to rod" msgstr "Altura até a haste" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." msgstr "Distância da ponta do bico até a haste inferior. Usado para evitar colisões na impressão por objeto." msgid "Height to lid" msgstr "Altura até a tampa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lid. Used for collision avoidance in by-object printing." msgstr "Distância da ponta do bico à tampa. Usado para evitar colisões na impressão por objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clearance radius around extruder: used for collision avoidance in by-object printing." -msgstr "Raio de folga ao redor da extrusora. Usado para evitar colisões na impressão por objeto." +msgstr "Raio de folga ao redor da extrusora: usado para evitar colisões na impressão por objeto." msgid "Nozzle height" msgstr "Altura do bico" @@ -12554,7 +12479,6 @@ msgstr "Largura de linha padrão se outras larguras de linha estiverem definidas msgid "Keep fan always on" msgstr "Manter o ventilador sempre ligado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enabling this setting means that part cooling fan will never stop entirely and will instead run at least at minimum speed to reduce the frequency of starting and stopping." msgstr "Habilitar esta configuração significa que o ventilador de resfriamento da peça nunca será desligado completamente e funcionará pelo menos na velocidade mínima para reduzir a frequência de inícios e paradas." @@ -12575,9 +12499,8 @@ msgstr "" msgid "Layer time" msgstr "Tempo da camada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will be enabled for layers where the estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time." -msgstr "O ventilador de resfriamento de peças será ativado para camadas cujo tempo estimado seja menor que esse valor. A velocidade do ventilador é interpolada entre as velocidades mínima e máxima do ventilador de acordo com o tempo de impressão da camada." +msgstr "O ventilador de resfriamento de peças será ativado para camadas cujo tempo estimado seja mais curto que esse valor. A velocidade do ventilador é interpolada entre as velocidades mínima e máxima do ventilador de acordo com o tempo de impressão da camada." msgid "s" msgstr "s" @@ -12601,9 +12524,8 @@ msgstr "Você pode colocar suas observações sobre o filamento aqui." msgid "Required nozzle HRC" msgstr "HRC do bico requerido" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Minimum HRC of nozzle required to print the filament. A value of 0 means no checking of the nozzle's HRC." -msgstr "HRC mínimo do bico necessário para imprimir o filamento. Zero significa que não há verificação do HRC do bico." +msgstr "HRC mínimo do bico necessário para imprimir o filamento. O valor 0 significa que não há verificação do HRC do bico." msgid "Filament map to extruder" msgstr "Mapeamento de filamento para extrusora" @@ -12629,9 +12551,8 @@ msgstr "Velocidade volumétrica de purga" msgid "Volumetric speed when flushing filament. 0 indicates the max volumetric speed." msgstr "Velocidade volumétrica ao purgar filamento. 0 indica a velocidade volumétrica máxima." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting is the volume of filament that can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. This value cannot be zero." -msgstr "Essa configuração representa quanto volume de filamento pode ser derretido e extrudado por segundo. A velocidade de impressão é limitada pela velocidade volumétrica máxima, no caso de configurações de velocidade muito altas e irrazoáveis. Não pode ser zero." +msgstr "Essa configuração representa o volume de filamento que pode ser derretido e extrudado por segundo. A velocidade de impressão é limitada pela velocidade volumétrica máxima, no caso de configurações de velocidade muito altas e irrazoáveis. Este valor não pode ser zero." msgid "Filament load time" msgstr "Tempo de carga do filamento" @@ -12663,9 +12584,8 @@ msgstr "Por Primeiro Filamento" msgid "By Highest Temp" msgstr "Por Maior Temperatura" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament diameter is used to calculate extrusion variables in G-code, so it is important that this is accurate and precise." -msgstr "O diâmetro do filamento é usado para calcular a extrusão no G-code, portanto, é importante e deve ser preciso." +msgstr "O diâmetro do filamento é usado para calcular as variáveis de extrusão no G-code, portanto é importante que isso seja exato e preciso." msgid "Pellet flow coefficient" msgstr "Coeficiente de fluxo de pellets" @@ -12737,7 +12657,6 @@ msgstr "Velocidade usada no início da fase de carregamento." msgid "Unloading speed" msgstr "Velocidade de descarregamento" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Velocidade usada para descarregar o filamento na torre de limpeza (não afeta a parte inicial do descarregamento logo após o moldeamento)." @@ -12855,9 +12774,8 @@ msgstr "Fluxo usado para moldar o filamento antes da troca de extrusora." msgid "Density" msgstr "Densidade" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament density, for statistical purposes only." -msgstr "Densidade do filamento. Apenas para estatística." +msgstr "Densidade do filamentom, para propósito estatístico apenas." msgid "g/cm³" msgstr "g/cm³" @@ -12892,16 +12810,14 @@ msgstr "O filamento é imprimível na extrusora." msgid "Softening temperature" msgstr "Temperatura de amolecimento" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The material softens at this temperature, so when the bed temperature is equal to or greater than this, it's highly recommended to open the front door and/or remove the upper glass to avoid clogs." -msgstr "O material amolece a esta temperatura, portanto, quando a temperatura da mesa for igual ou maior que ela, é altamente recomendável abrir a porta da frente e/ou remover o vidro superior para evitar entupimentos." +msgstr "O material amolece a esta temperatura, portanto quando a temperatura da mesa for igual ou maior que ela é altamente recomendável abrir a porta da frente e/ou remover o vidro superior para evitar entupimentos." msgid "Price" msgstr "Preço" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament price, for statistical purposes only." -msgstr "Preço do filamento. Apenas para estatística." +msgstr "Preço do filamento, para propósito estatístico apenas." msgid "money/kg" msgstr "dinheiro/kg" @@ -12918,9 +12834,8 @@ msgstr "(Indefinido)" msgid "Sparse infill direction" msgstr "Direção do preenchimento esparso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the angle for sparse infill pattern, which controls the start or main direction of lines." -msgstr "Ângulo para o padrão de preenchimento esparso, que controla a direção inicial ou principal da linha." +msgstr "Este é o ângulo para o padrão de preenchimento esparso, que controla a direção inicial ou principal da linha." msgid "Solid infill direction" msgstr "Direção do preenchimento sólido" @@ -12942,6 +12857,8 @@ msgid "" "Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n" "When enabled, directions rotate with the model to maintain optimal strength characteristics." msgstr "" +"Alinha as direções do preenchimento, das pontes, do alisamento e do preenchimento de superfícies à orientação do modelo na mesa de impressão.\n" +"Quando ativado, as direções giram com o modelo para manter características ideais de resistência." msgid "Insert solid layers" msgstr "Inserir camadas sólidas" @@ -12965,9 +12882,8 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Padrão de preenchimento esparso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for internal sparse infill." -msgstr "Padrão de linha para preenchimento esparso interno." +msgstr "Este é o padrão de linha para preenchimento esparso interno." msgid "Zig Zag" msgstr "Zigue-Zague" @@ -13026,17 +12942,19 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Giroide" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." -msgstr "Aceleração do preenchimento da superfície superior. Usar um valor menor pode melhorar a qualidade da superfície superior." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Acceleration of outer wall: using a lower value can improve quality." -msgstr "Aceleração da parede externa. Usar um valor menor pode melhorar a qualidade." - msgid "Acceleration of inner walls." msgstr "Aceleração das paredes internas." +msgid "Acceleration of travel moves." +msgstr "Aceleração dos movimentos de deslocamento." + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." +msgstr "Esta é a aceleração do preenchimento da superfície superior. Usar um valor menor pode melhorar a qualidade da superfície superior." + +msgid "Acceleration of outer wall: using a lower value can improve quality." +msgstr "Aceleração da parede externa: usar um valor menor pode melhorar a qualidade." + msgid "Acceleration of sparse infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration." msgstr "Aceleração do preenchimento esparso. Se o valor for expresso como uma porcentagem (por exemplo, 100%), será calculado com base na aceleração padrão." @@ -13119,7 +13037,7 @@ msgid "Travel speed of the first layer." msgstr "Velocidade de deslocamento da primeira camada." msgid "Number of slow layers" -msgstr "" +msgstr "Número de camadas lentas" msgid "The first few layers are printed slower than normal. The speed is gradually increased in a linear fashion over the specified number of layers." msgstr "As primeiras camadas são impressas mais lentamente do que o normal. A velocidade é aumentada gradualmente de forma linear sobre o número especificado de camadas." @@ -13140,6 +13058,17 @@ msgstr "A velocidade do ventilador aumentará linearmente de zero na camada \"cl msgid "layer" msgstr "camada" +msgid "First layer fan speed" +msgstr "Velocidade da ventoinha na primeira camada" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Velocidade do ventilador para interface de suporte" @@ -13728,7 +13657,7 @@ msgstr "" "Defina este parâmetro como zero para desabilitar os perímetros de ancoragem conectados a uma única linha de preenchimento." msgid "0 (no open anchors)" -msgstr "0 (sem ancoras abertas)" +msgstr "0 (sem âncoras abertas)" msgid "1000 (unlimited)" msgstr "1000 (ilimitado)" @@ -15084,6 +15013,9 @@ msgstr "Frestas menores que 2x o vão de fatiamento serão preenchidas durante o msgid "Slicing Mode" msgstr "Modo de Fatiamento" +msgid "Other" +msgstr "Outro" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Use \"Par-impar\" para modelos de avião 3DLabPrint. Use \"Fechar buracos\" para fechar todos os buracos no modelo." @@ -15105,9 +15037,8 @@ msgstr "Este valor será adicionado (ou subtraído) de todas as coordenadas Z no msgid "Enable support" msgstr "Ativar suporte" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables support generation." -msgstr "Ativar a geração de suporte." +msgstr "Isso ativaa a geração de suporte." msgid "Normal (auto) and Tree (auto) are used to generate support automatically. If Normal (manual) or Tree (manual) is selected, only support enforcers are generated." msgstr "Normal (automático) e Árvore (automático) são usados para gerar suporte automaticamente. Se Normal (manual) ou Árvore (manual) for selecionado, apenas os reforçadores de suporte serão gerados." @@ -15127,9 +15058,8 @@ msgstr "Árvore (manual)" msgid "Support/object XY distance" msgstr "Distância XY entre suporte e objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This controls the XY separation between an object and its support." -msgstr "Separação XY entre um objeto e seu suporte." +msgstr "Isso controla a separação XY entre um objeto e seu suporte." msgid "Support/object first layer gap" msgstr "Vão na primeira camada entre suporte e objeto" @@ -15146,9 +15076,8 @@ msgstr "Use esta configuração para rotacionar o padrão de suporte no plano ho msgid "On build plate only" msgstr "Apenas na placa de impressão" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting only generates supports that begin on the build plate." -msgstr "Não criar suporte na superfície do modelo, apenas na placa de impressão." +msgstr "Isso gera apenas suportes apoiados na placa de impressão." msgid "Support critical regions only" msgstr "Suportar apenas regiões críticas" @@ -15165,14 +15094,12 @@ msgstr "Ignorar pequenas saliências que possivelmente não requerem suporte." msgid "Top Z distance" msgstr "Distância Z superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Z gap between the support's top and object." msgstr "Espaço Z entre o topo do suporte e o objeto." msgid "Bottom Z distance" msgstr "Distância Z inferior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Z gap between the object and the support bottom. If Support Top Z Distance is 0 and the bottom has interface layers, this value is ignored and the support is printed in direct contact with the object (no gap)." msgstr "Espaço Z entre o objeto e a base do suporte. Se a Distância Z Superior do Suporte for 0 e a base tiver camadas de interface, este valor é ignorado e o suporte é impresso em contato direto com o objeto (sem espaço)." @@ -15195,13 +15122,11 @@ msgstr "Evite usar o filamento da interface de suporte para imprimir a base, se msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Largura da linha de suporte. Se expresso como %, será calculado sobre o diâmetro do bico." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Loop pattern interface" -msgstr "Interface usa padrão de volta" +msgstr "Interface do padrão de volta" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This covers the top contact layer of the supports with loops. It is disabled by default." -msgstr "Cobrir a camada de contato superior dos suportes com voltas. Desativado por padrão." +msgstr "Isso cobre a camada de contato superior dos suportes com voltas. É desativado por padrão." msgid "Support/raft interface" msgstr "Interface de suporte/jangada" @@ -15241,13 +15166,11 @@ msgstr "" msgid "Bottom interface spacing" msgstr "Espaçamento da interface inferior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the spacing of bottom interface lines. 0 means solid interface." -msgstr "Espaçamento das linhas de interface inferior. Zero significa interface sólida." +msgstr "Espaçamento das linhas de interface inferior. 0 significa interface sólida." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support interfaces." -msgstr "Velocidade da interface de suporte." +msgstr "Essa é a velocidade das interfaces de suporte." msgid "Base pattern" msgstr "Padrão da base" @@ -15274,9 +15197,8 @@ msgstr "Oco" msgid "Interface pattern" msgstr "Padrão de interface" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for support interfaces. The default pattern for non-soluble support interfaces is Rectilinear while the default pattern for soluble support interfaces is Concentric." -msgstr "Padrão de linha de interface de suporte. O padrão padrão para interface de suporte não solúvel é Reticulado, enquanto o padrão padrão para interface de suporte solúvel é Concêntrico." +msgstr "Este é o padrão de linha para interface de suporte. O padrão padrão para interfaces de suporte não soluveis é Reticulado, enquanto o padrão padrão para interfaces de suporte soluveis é Concêntrico." msgid "Rectilinear Interlaced" msgstr "Reticulado Interligado" @@ -15284,20 +15206,17 @@ msgstr "Reticulado Interligado" msgid "Base pattern spacing" msgstr "Espaçamento do padrão de base" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the spacing between support lines." -msgstr "Espaçamento entre as linhas de suporte." +msgstr "Isso determina o espaçamento entre as linhas de suporte." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Normal support expansion" msgstr "Expansão normal de suporte" msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Expanda (+) ou contraia (-) a extensão horizontal do suporte normal." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support." -msgstr "Velocidade do suporte." +msgstr "Essa é a velocidade para o suporte." msgid "" "Style and shape of the support. For normal support, projecting the supports into a regular grid will create more stable supports (default), while snug support towers will save material and reduce object scarring.\n" @@ -15333,13 +15252,12 @@ msgstr "A camada de suporte usa uma altura de camada independente da camada do o msgid "Threshold angle" msgstr "Ângulo limiar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Support will be generated for overhangs whose slope angle is below the threshold. The smaller this value is, the steeper the overhang that can be printed without support.\n" "Note: If set to 0, normal supports use the Threshold overlap instead, while tree supports fall back to a default value of 30." msgstr "" -"O suporte será gerado para saliências cujo ângulo de inclinação esteja abaixo do limiar.Quanto menor esse valor, mais íngreme será a saliência que pode ser impressa sem suporte.\n" -"Observação: se definido como 0, os suportes normais usarão Sobreposição de limiar, enquanto os suportes em árvore voltarão ao valor padrão de 30." +"O suporte será gerado para saliências cujo ângulo de inclinação esteja abaixo do limiar. Quanto menor for esse valor, mais íngreme será a saliência que pode ser impressa sem suporte.\n" +"Nota: se definido como 0, os suportes normais usarão Sobreposição de Limiar, enquanto os suportes em árvore voltarão ao valor padrão de 30." msgid "Threshold overlap" msgstr "Sobreposição de limiar" @@ -15472,7 +15390,7 @@ msgid "" msgstr "" msgid "Chamber minimal temperature" -msgstr "" +msgstr "Temperatura mínima da câmara" msgid "Nozzle temperature after the first layer" msgstr "Temperatura do bico depois da primeira camada" @@ -15480,9 +15398,8 @@ msgstr "Temperatura do bico depois da primeira camada" msgid "Detect thin walls" msgstr "Detectar paredes finas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detects thin walls which can’t contain two lines and uses a single line to print. It may not print as well because it’s not a closed loop." -msgstr "Detecta paredes finas que não podem conter duas larguras de linha, e usa uma linha única para imprimir. Talvez não seja impresso muito bem, porque não é uma volta fechada." +msgstr "Isso detecta paredes finas que não podem conter duas linhas e usa uma linha única para imprimir. Talvez não seja impresso tão bem porque não é uma volta fechada." msgid "This G-code is inserted when filament is changed, including T commands to trigger tool change." msgstr "Este G-code é inserido ao trocar o filamento, incluindo o comando T para acionar a troca de ferramenta." @@ -15499,9 +15416,8 @@ msgstr "Este G-code é inserido quando o tipo de extrusão do filamento ativo é msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Largura da linha para superfícies superiores. Se expressa em %, será calculada sobre o diâmetro do bico." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid top surface infill." -msgstr "Velocidade de preenchimento da superfície superior, que é sólida." +msgstr "Essa é a velocidade de preenchimento da superfície superior." msgid "Top shell layers" msgstr "Camadas de topo da casca" @@ -15512,24 +15428,21 @@ msgstr "Este é o número de camadas sólidas da casca do topo, incluindo a cama msgid "Top shell thickness" msgstr "Espessura da casca do topo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." -msgstr "O número de camadas sólidas superiores é aumentado ao fatiar se a espessura calculada pelas camadas da casca do topo for menor do que este valor. Isso pode evitar que a casca seja muito fina quando a altura da camada é pequena. 0 significa que esta configuração está desativada e a espessura da casca do topo é determinada exclusivamente pelas camadas da casca do topo." +msgstr "O número de camadas sólidas superiores é aumentado ao fatiar se a espessura calculada pelas camadas da casca do topo for menor do que este valor. Isso pode evitar que a casca seja muito fina quando a altura da camada é pequena. 0 significa que esta configuração está desativada e a espessura da casca do topo é determinada apenas pelo número de camadas da casca do topo." # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." -msgstr "Velocidade de deslocamento mais rápida e sem extrusão." +msgstr "Essa é a velocidade em que o deslocamento é feito." msgid "Wipe while retracting" msgstr "Limpar enquanto retrai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This moves the nozzle along the last extrusion path when retracting to clean any leaked material on the nozzle. This can minimize blobs when printing a new part after traveling." -msgstr "Movimentar o bico ao longo do último caminho de extrusão ao retrair para limpar o material vazado no bico. Isso pode minimizar a formação de blobs quando imprimir uma nova peça após o deslocamento." +msgstr "Isso movimenta o bico ao longo do último caminho de extrusão ao retrair para limpar o material vazado no bico. Isso pode minimizar a formação de blobs quando imprimir uma nova peça após o deslocamento." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Wipe distance" -msgstr "Distância de Limpeza" +msgstr "Distância de limpeza" msgid "" "Describe how long the nozzle will move along the last path when retracting.\n" @@ -15544,7 +15457,6 @@ msgstr "" "\n" "Definir um valor na configuração de quantidade de retração antes da limpeza abaixo executará qualquer retração em excesso antes da limpeza, caso contrário, será realizada após." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The wiping tower can be used to clean up residue on the nozzle and stabilize the chamber pressure inside the nozzle in order to avoid appearance defects when printing objects." msgstr "A torre de limpeza pode ser usada para limpar o resíduo no bico e estabilizar a pressão na câmara dentro do bico, a fim de evitar defeitos de aparência ao imprimir objetos." @@ -15560,20 +15472,17 @@ msgstr "Volumes de purga" msgid "Flush multiplier" msgstr "Multiplicador de purga" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The actual flushing volumes is equal to the flush multiplier value multiplied by the flushing volumes in the table." msgstr "Os volumes de purga reais são iguais ao multiplicador de purga multiplicado pelos volumes de purga na tabela." msgid "Prime volume" msgstr "Volume de preparo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the volume of material to prime the extruder with on the tower." -msgstr "O volume de material para preparar a extrusora na torre." +msgstr "Este é o volume de material para preparar a extrusora na torre." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the width of prime towers." -msgstr "Largura da torre de preparo." +msgstr "Esta é a largura das torres de preparo." msgid "Wipe tower rotation angle" msgstr "Ângulo de rotação da torre de limpeza" @@ -15685,13 +15594,11 @@ msgstr "Vão entre preenchimentos" msgid "Infill gap." msgstr "Vão entre preenchimentos." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Purging after filament change will be done inside objects' infills. This may lower the amount of waste and decrease the print time. If the walls are printed with transparent filament, the mixed color infill will be visible. It will not take effect unless the prime tower is enabled." -msgstr "A purga após a troca de filamento será feita dentro do preenchimento dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Se as paredes forem impressas com filamento transparente, o preenchimento de cor mista será visível do lado de fora. Isso não terá efeito, a menos que a torre de preparo esteja ativa." +msgstr "A purga após a troca de filamento será feita dentro do preenchimento dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Se as paredes forem impressas com filamento transparente, o preenchimento de cor mista será visível. Isso não terá efeito a menos que a torre de preparo esteja ativa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Purging after filament change will be done inside objects' support. This may lower the amount of waste and decrease the print time. It will not take effect unless a prime tower is enabled." -msgstr "A purga após a troca de filamento será feita dentro do suporte dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Isso não terá efeito, a menos que a torre de preparo esteja ativa." +msgstr "A purga após a troca de filamento será feita dentro do suporte dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Isso não terá efeito a menos que a torre de preparo esteja ativa." msgid "This object will be used to purge the nozzle after a filament change to save filament and decrease the print time. Colors of the objects will be mixed as a result. It will not take effect unless the prime tower is enabled." msgstr "Este objeto será usado para purgar o bico após uma troca de filamento para economizar filamento e diminuir o tempo de impressão. As cores dos objetos serão misturadas como resultado. Isso não terá efeito a menos que a torre de preparo esteja ativa." @@ -15723,16 +15630,14 @@ msgstr "Temperatura do bico quando a ferramenta não está sendo usada em config msgid "X-Y hole compensation" msgstr "Compensação de furos XY" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Holes in objects will expand or contract in the XY plane by the set value. Positive values make holes bigger and negative values make holes smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Os furos nos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os furos, valores negativos reduzem os furos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." +msgstr "Os furos nos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os furos e valores negativos reduzem os furos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." msgid "X-Y contour compensation" msgstr "Compensação de contornos XY" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Contours of objects will expand or contract in the XY plane by the set value. Positive values make contours bigger and negative values make contours smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Os contornos dos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os contornos, valores negativos reduzem os contornos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." +msgstr "Os contornos dos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os contornos e valores negativos reduzem os contornos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." msgid "Convert holes to polyholes" msgstr "Converter furos em polifuros" @@ -15781,7 +15686,6 @@ msgstr "Usar distâncias E relativas" msgid "Relative extrusion is recommended when using \"label_objects\" option. Some extruders work better with this option unchecked (absolute extrusion mode). Wipe tower is only compatible with relative mode. It is recommended on most printers. Default is checked." msgstr "A extrusão relativa é recomendada ao usar a opção \"label_objects\". Algumas extrusoras funcionam melhor com esta opção desmarcada (modo de extrusão absoluta). A torre de limpeza é compatível apenas com o modo relativo. É recomendado na maioria das impressoras. O padrão é ativado." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The classic wall generator produces walls with constant extrusion width and for very thin areas, gap-fill is used. The Arachne engine produces walls with variable extrusion width." msgstr "O gerador de parede clássico produz paredes com largura de extrusão constante e para áreas muito finas é usado preenchimento de vão. O motor Arachne produz paredes com largura de extrusão variável." @@ -15791,9 +15695,8 @@ msgstr "Arachne" msgid "Wall transition length" msgstr "Comprimento da transição de parede" -# TODO: Review, changed by lang refactor. PR 14254 msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall segments. It's expressed as a percentage over nozzle diameter." -msgstr "Ao fazer a transição entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é designada para dividir ou unir os segmentos da parede. É expresso como uma porcentagem sobre o diâmetro do bico." +msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para dividir ou unir os segmentos da parede. É expresso como uma porcentagem sobre o diâmetro do bico." msgid "Wall transitioning filter margin" msgstr "Margem de filtro de transição de parede" @@ -15909,9 +15812,8 @@ msgstr "Exportar os objetos como vários STLs para o diretório." msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Fatiar as placas: 0-todas as placas, i-placa i, outros-inválido" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shows command help." -msgstr "Mostra ajuda do comando." +msgstr "Isso mostra a ajuda do comando." msgid "UpToDate" msgstr "Atualizar" @@ -15958,16 +15860,14 @@ msgstr "Verificar os itens normativos." msgid "Output Model Info" msgstr "Emitir Informações do Modelo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This outputs the model’s information." -msgstr "Emitir as informações do modelo." +msgstr "Isso emite as informações do modelo." msgid "Export Settings" msgstr "Exportar Configurações" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports settings to a file." -msgstr "Exportar configurações para um arquivo." +msgstr "Isso exporta configurações para um arquivo." msgid "Send progress to pipe" msgstr "Enviar o progresso para a fila" @@ -16089,9 +15989,8 @@ msgstr "Carregar e armazenar configurações no diretório fornecido. Isso é ú msgid "Output directory" msgstr "Diretório de saída" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the output directory for exported files." -msgstr "Diretório de saída para os arquivos exportados." +msgstr "Este é o diretório de saída para arquivos exportados." msgid "Debug level" msgstr "Nível de depuração" @@ -16529,13 +16428,11 @@ msgstr "A geração da malha do arquivo do modelo falhou ou não há forma váli msgid "The supplied file couldn't be read because it's empty." msgstr "O arquivo fornecido não pôde ser lido porque está vazio." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .stl, .obj, or .amf(.xml) extension." -msgstr "Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .stl, .obj, .amf(.xml)." +msgstr "Formato de arquivo desconhecido: o arquivo de entrada deve ter extensão .stl, .obj, .amf(.xml)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .3mf or .zip.amf extension." -msgstr "Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .3mf ou .zip.amf." +msgstr "Formato de arquivo desconhecido: o arquivo de entrada deve ter extensão .3mf ou .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: falha ao analisar" @@ -16585,9 +16482,8 @@ msgstr "Calibrar" msgid "Finish" msgstr "Terminar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "How can I use calibration results?" -msgstr "Como usar o resultado da calibração?" +msgstr "Como posso usar o resultado da calibração?" msgid "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "Você pode alterar o Fator de Calibração de Dinâmica de Fluxo na edição de materiais" @@ -16663,22 +16559,20 @@ msgstr "Por favor, selecione o filamento para calibrar." msgid "The input value size must be 3." msgstr "O tamanho do valor de entrada deve ser 3." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This machine type can only hold 16 historical results per nozzle. You can delete the existing historical results and then start calibration. Or you can continue the calibration, but you cannot create new calibration historical results.\n" "Do you still want to continue the calibration?" msgstr "" -"Esse tipo de máquina só pode manter 16 resultados por bico no histórico. Você pode deletar resultados existentes e então começar a calibração. Ou você pode continuar, mas não poderá criar novos resultados.\n" -"Você ainda quer continuar com a calibração?" +"Esse tipo de máquina só pode manter 16 resultados históricos por bico. Você pode deletar resultados anteriores existentes e então começar a calibração. Ou você pode continuar a calibração, mas não poderá criar novos resultados históricos.\n" +"Você ainda quer continuar a calibração?" #, c-format, boost-format msgid "Only one of the results with the same name: %s will be saved. Are you sure you want to override the other results?" msgstr "Apenas um dos resultados com o mesmo nome: %s será salvo. Tem certeza que deseja sobrescrever os outros resultados?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "There is already a previous calibration result with the same name: %s. Only one result with a name is saved. Are you sure you want to overwrite the previous result?" -msgstr "Já existe um resultado de calibração histórico com o mesmo nome: %s. Apenas um dos resultados com o mesmo nome é salvo. Tem certeza que deseja sobrescrever o resultado histórico?" +msgstr "Já existe um resultado de calibração anterior com o mesmo nome: %s. Apenas um dos resultados com o mesmo nome é salvo. Tem certeza que deseja sobrescrever o resultado anterior?" #, c-format, boost-format msgid "" @@ -16688,10 +16582,9 @@ msgstr "" "Dentro da mesma extrusora, o nome (%s) deve ser único quando o tipo de filamento, o diâmetro do bico e o fluxo do bico forem os mesmos.\n" "Tem certeza de que deseja sobrescrever o resultado histórico?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle. This result will not be saved." -msgstr "Este tipo de máquina só pode salvar %d resultados por bico. Este resultado não será salvo." +msgstr "Este tipo de máquina só pode salvar %d resultados históricos por bico. Este resultado não será salvo." msgid "Connecting to printer..." msgstr "Conectando à impressora…" @@ -16770,7 +16663,6 @@ msgstr "Além disso, a Calibração da Taxa de Fluxo é crucial para materiais e msgid "Flow Rate Calibration measures the ratio of expected to actual extrusion volumes. The default setting works well in Bambu Lab printers and official filaments as they were pre-calibrated and fine-tuned. For a regular filament, you usually won't need to perform a Flow Rate Calibration unless you still see the listed defects after you have done other calibrations. For more details, please check out the wiki article." msgstr "A Calibração da Taxa de Fluxo mede a relação entre os volumes de extrusão esperados e reais. A configuração padrão funciona bem em impressoras Bambu Lab e filamentos oficiais, pois foram pré-calibrados e ajustados. Para um filamento regular, geralmente você não precisará realizar uma Calibração da Taxa de Fluxo a menos que ainda veja os defeitos listados após ter feito outras calibrações. Para mais detalhes, consulte o artigo na wiki." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, directly measuring the calibration patterns. However, please be advised that the efficacy and accuracy of this method may be compromised with specific types of materials. Particularly, filaments that are transparent or semi-transparent, have sparkles, or have a highly-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n" "\n" @@ -16778,11 +16670,11 @@ msgid "" "\n" "Caution: Flow Rate Calibration is an advanced process, to be attempted only by those who fully understand its purpose and implications. Incorrect usage can lead to sub-par prints or printer damage. Please make sure to carefully read and understand the process before doing it." msgstr "" -"A Calibração Automática da Taxa de Fluxo utiliza a tecnologia Micro-Lidar da Bambu Lab, medindo diretamente os padrões de calibração. No entanto, esteja ciente de que a eficácia e precisão deste método podem ser comprometidas com tipos específicos de materiais. Especialmente, filamentos que são transparentes ou semi-transparentes, com partículas brilhantes ou com acabamento altamente reflexivo podem não ser adequados para esta calibração e podem produzir resultados abaixo do desejado.\n" +"A Calibração Automática da Taxa de Fluxo utiliza a tecnologia Micro-Lidar da Bambu Lab, medindo diretamente os padrões de calibração. No entanto, esteja ciente de que a eficácia e precisão deste método podem ser comprometidas com tipos específicos de materiais. Especialmente, filamentos transparentes ou semi-transparentes, com partículas brilhantes ou com acabamento altamente reflexivo podem não ser adequados para esta calibração e podem produzir resultados abaixo do desejado.\n" "\n" "Os resultados da calibração podem variar entre cada calibração ou filamento. Ainda estamos melhorando a precisão e compatibilidade desta calibração por meio de atualizações de firmware ao longo do tempo.\n" "\n" -"Atenção: A Calibração da Taxa de Fluxo é um processo avançado, para ser tentado apenas por aqueles que entendem completamente seu propósito e implicações. O uso incorreto pode resultar em impressões de baixa qualidade ou danos à impressora. Certifique-se de ler e entender cuidadosamente o processo antes de fazê-lo." +"Cuidado: A Calibração da Taxa de Fluxo é um processo avançado, para ser tentado apenas por aqueles que entendem completamente seu propósito e implicações. O uso incorreto pode resultar em impressões de baixa qualidade ou danos à impressora. Certifique-se de ler e entender cuidadosamente o processo antes de fazê-lo." msgid "When you need Max Volumetric Speed Calibration" msgstr "Quando você precisa da Calibração de Velocidade Volumétrica Máxima" @@ -16817,9 +16709,8 @@ msgstr "O nome não pode ter mais de 40 caracteres." msgid "Please find the best line on your plate" msgstr "Por favor, encontre a melhor linha em sua placa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please find the corner with the perfect degree of extrusion" -msgstr "Por favor, encontre o canto com o grau perfeito de extrusão" +msgstr "Encontre o canto com o grau perfeito de extrusão" msgid "Input Value" msgstr "Valor de entrada" @@ -16977,17 +16868,15 @@ msgstr "Nenhum Resultado Anterior" msgid "Success to get history result" msgstr "Sucesso ao obter o resultado anterior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Refreshing the previous Flow Dynamics Calibration records" -msgstr "Atualizando os registros históricos de Calibração de Dinâmica de Fluxo" +msgstr "Atualizando os registros anteriores de Calibração de Dinâmica de Fluxo" msgid "Action" msgstr "Ação" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle." -msgstr "Este tipo de máquina só pode salvar %d resultados por bico." +msgstr "Este tipo de máquina só pode manter %d resultados históricos por bico." msgid "Edit Flow Dynamics Calibration" msgstr "Editar Calibração de Dinâmica de Fluxo" @@ -17361,13 +17250,13 @@ msgid "Top Surface Pattern" msgstr "Padrão de Superfície Superior" msgid "Choose a slot for the selected color" -msgstr "" +msgstr "Escolha um espaço para a cor selecionada" msgid "Material in the material station" -msgstr "" +msgstr "Esta impressora não relata uma estação de material" msgid "Only materials of the same type can be selected." -msgstr "" +msgstr "Apenas materiais do mesmo tipo podem ser selecionados." msgid "Send G-code to printer host" msgstr "Enviar G-code para o host da impressora" @@ -17398,35 +17287,35 @@ msgid "Time-lapse" msgstr "Timelapse" msgid "Enable IFS" -msgstr "" +msgstr "Habilitar IFS" #, c-format, boost-format msgid "Detected %d IFS slots on printer." -msgstr "" +msgstr "Detectados %d espaços IFS na impressora." msgid "This printer does not report a material station." -msgstr "" +msgstr "Esta impressora não relata uma estação de material." msgid "Unable to read IFS slots from printer." -msgstr "" +msgstr "Não foi possível ler os espaços IFS da impressora." msgid "Loading IFS slots from printer..." -msgstr "" +msgstr "Carregando espaços IFS da impressora..." msgid "Slice the plate first to get project material information." -msgstr "" +msgstr "Fatie a placa primeiro para obter informações sobre os materiais do projeto." msgid "This plate uses multiple materials. Enable IFS and assign each tool to a printer slot." -msgstr "" +msgstr "Esta placa usa múltiplos materiais. Habilite o IFS e atribua cada ferramenta a um espaço da impressora." msgid "Each project material must be assigned to an IFS slot before printing." -msgstr "" +msgstr "Cada material do projeto deve ser atribuído a um espaço IFS antes da impressão." msgid "Each project material must be assigned to a loaded IFS slot before printing." -msgstr "" +msgstr "Cada material do projeto deve ser atribuído a um espaço carregado do IFS antes da impressão." msgid "Each project material must match the material loaded in the selected IFS slot." -msgstr "" +msgstr "Cada material do projeto deve corresponder ao material carregado no espaço do IFS selecionado." msgid "Print host upload queue" msgstr "Fila de envio do host de impressão" @@ -17610,11 +17499,9 @@ msgstr "Predefinição de Filamento" msgid "Create" msgstr "Criar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor is not selected; please reselect vendor." msgstr "O fornecedor não está selecionado, por favor reselecione o fornecedor." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Custom vendor missing; please input custom vendor." msgstr "O fornecedor personalizado está faltando, por favor insira o fornecedor personalizado." @@ -17624,25 +17511,21 @@ msgstr "\"Bambu\" ou \"Genérico\" não podem ser usados como fornecedor para fi msgid "Filament type is not selected, please reselect type." msgstr "O tipo de filamento não está selecionado, por favor reselecione o tipo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament serial missing; please input serial." -msgstr "O serial do filamento não foi inserido, por favor insira o serial." +msgstr "O serial do filamento faltando, por favor insira o serial." -# TODO: Review, changed by lang refactor. PR 14254 msgid "There may be disallowed characters in the vendor or serial input of the filament. Please delete and re-enter." -msgstr "Pode haver caracteres de escape na entrada de fornecedor ou serial do filamento. Por favor, exclua e insira novamente." +msgstr "Pode haver caracteres não permitidos na entrada de fornecedor ou serial do filamento. Por favor, exclua e insira novamente." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "Todas as entradas no fornecedor personalizado ou serial são espaços. Por favor, insira novamente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vendor cannot be a number; please re-enter." msgstr "O fornecedor não pode ser um número. Por favor, insira novamente." msgid "You have not selected a printer or preset yet. Please select at least one." msgstr "Você ainda não selecionou uma impressora ou predefinição. Por favor, selecione pelo menos uma." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The Filament name %s you created already exists.\n" @@ -17689,7 +17572,6 @@ msgstr "Importar Predefinição" msgid "Create Type" msgstr "Tipo de Criação" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The model was not found; please reselect vendor." msgstr "O modelo não foi encontrado, por favor reselecione o fornecedor." @@ -17730,18 +17612,15 @@ msgstr "O arquivo excede %d MB, por favor importe novamente." msgid "Exception in obtaining file size, please import again." msgstr "Exceção ao obter o tamanho do arquivo, por favor importe novamente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preset path was not found; please reselect vendor." msgstr "Caminho da predefinição não encontrado, por favor reselecione o fornecedor." msgid "The printer model was not found, please reselect." msgstr "O modelo da impressora não foi encontrado, por favor reselecione." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle diameter was not found; please reselect." msgstr "O diâmetro do bico não foi encontrado, por favor reselecione." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer preset was not found; please reselect." msgstr "A predefinição de impressora não foi encontrada, por favor reselecione." @@ -17757,11 +17636,9 @@ msgstr "Processar Gabarito de Predefinição" msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" msgstr "Você ainda não escolheu em qual predefinição de impressora basear-se. Por favor escolha o fornecedor e modelo da impressora" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have entered a disallowed character in the printable area section on the first page. Please use only numbers." -msgstr "Você inseriu uma entrada ilegal na seção de área imprimível na primeira página. Por favor, verifique antes de criar." +msgstr "Você inseriu um caractere não permitido na seção de área imprimível na primeira página. Use apenas números." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The printer preset you created already has a preset with the same name. Do you want to overwrite it?\n" "\tYes: Overwrite the printer preset with the same name, and filament and process presets with the same preset name will be recreated \n" @@ -17769,8 +17646,8 @@ msgid "" "\tCancel: Do not create a preset; return to the creation interface." msgstr "" "A predefinição de impressora que você criou já possui uma predefinição com o mesmo nome. Deseja substituí-la?\n" -"\tSim: Substituir a predefinição de impressora com o mesmo nome, e as predefinições de filamento e processo com o mesmo nome da predefinição serão recriados, \n" -"e as predefinições de filamento e processo sem o mesmo nome da predefinição serão reserva.\n" +"\tSim: Subrescrever a predefinição de impressora com o mesmo nome, e as predefinições de filamento e processo com o mesmo nome de predefinição serão recriados, \n" +"e as predefinições de filamento e processo sem o mesmo nome da predefinição serão reservados.\n" "\tCancelar: Não criar uma predefinição, retornar para a interface de criação." msgid "You need to select at least one filament preset." @@ -17785,14 +17662,12 @@ msgstr "Falha ao criar predefinições de filamento. Como segue:\n" msgid "Create process presets failed. As follows:\n" msgstr "Falha ao criar predefinições de processo. Como segue:\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor was not found; please reselect." -msgstr "Fornecedor não encontrado, por favor selecione novamente." +msgstr "Fornecedor não encontrado, selecione novamente." msgid "Current vendor has no models, please reselect." msgstr "O fornecedor atual não possui modelos, por favor selecione novamente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not selected the vendor and model or input the custom vendor and model." msgstr "Você não selecionou um fornecedor e modelo nem colocou fornecedor e modelo personalizados." @@ -17805,9 +17680,8 @@ msgstr "Todas as entradas no fornecedor ou modelo personalizado da impressora s msgid "Please check bed printable shape and origin input." msgstr "Por favor, verifique o formato imprimível da mesa e a entrada de origem." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not yet selected the printer to replace the nozzle for; please choose a printer." -msgstr "Você ainda não selecionou a impressora para substituir o bico, por favor escolha." +msgstr "Você ainda não selecionou a impressora para substituir o bico, escolha uma impressora." msgid "The entered nozzle diameter is invalid, please re-enter:\n" msgstr "O diâmetro do bico inserido é inválido. Insira novamente:\n" @@ -17847,18 +17721,17 @@ msgid "Printer Created" msgstr "Impressora criada" msgid "Please go to printer settings to edit your presets" -msgstr "Por favor vá para configurações de impressora para editar as suas predefinições" +msgstr "Vá para configurações de impressora para editar as suas predefinições" msgid "Filament Created" msgstr "Filamento criado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Please go to filament settings to edit your presets if you need to.\n" "Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed each have a significant impact on printing quality. Please set them carefully." msgstr "" -"Por favor, vá para as configurações do filamento para editar suas predefinições, se necessário.\n" -"Por favor, note que a temperatura do bico, temperatura da mesa aquecida e velocidade volumétrica máxima têm um impacto significativo na qualidade de impressão. Por favor, ajuste-os com cuidado." +"Vá para as configurações do filamento para editar suas predefinições, se necessário.\n" +"Note que a temperatura do bico, temperatura da mesa aquecida e velocidade volumétrica máxima têm um impacto significativo na qualidade de impressão. Ajuste-os com cuidado." msgid "" "\n" @@ -17907,14 +17780,13 @@ msgstr "falha ao abrir o arquivo zip para escrita" msgid "Export successful" msgstr "Exportação bem-sucedida" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The '%s' folder already exists in the current directory. Do you want to clear it and rebuild it?\n" "If not, a time suffix will be added, and you can modify the name after creation." msgstr "" "A pasta '%s' já existe no diretório atual. Deseja limpá-la e reconstruí-la?\n" -"Se não, um sufixo de tempo será adicionado, e você poderá modificar o nome após a criação." +"Se não, um sufixo de tempo será adicionado, e você pode modificar o nome após a criação." #, c-format, boost-format msgid "" @@ -17940,9 +17812,8 @@ msgstr "" "Conjunto de predefinições de filamento do usuário.\n" "Pode ser compartilhado com outros." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only display printers with changes to printer, filament, and process presets are displayed." -msgstr "Exibir apenas nomes de impressoras com alterações nas predefinições de impressora, filamento e processo." +msgstr "Apenas impressoras com alterações nas predefinições de impressora, filamento e processo são mostradas." msgid "Only display the filament names with changes to filament presets." msgstr "Exibir apenas os nomes dos filamentos com alterações nas predefinições de filamento." @@ -17967,9 +17838,8 @@ msgstr "" msgid "Please select at least one printer or filament." msgstr "Por favor, selecione pelo menos uma impressora ou filamento." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please select a preset type you want to export" -msgstr "Por favor, selecione um tipo que deseja exportar" +msgstr "Selecione um tipo de predefinição que deseja exportar" msgid "Failed to create temporary folder, please try Export Configs again." msgstr "Falha ao criar uma pasta temporária, por favor tente exportar as configurações novamente." @@ -18110,16 +17980,16 @@ msgid "Select the network agent implementation for printer communication. Availa msgstr "Selecione a implementação do agente de rede para comunicação com a impressora. Os agentes disponíveis são registrados na inicialização." msgid "Select a Flashforge printer" -msgstr "" +msgstr "Selecione uma impressora Flashforge" msgid "Discovered Printers" -msgstr "" +msgstr "Impressoras Descobertas" msgid "Could not get a valid Printer Host reference" msgstr "Não foi possível obter uma referência válida do Host de Impressão" msgid "Valid session not detected. Proceed with login to 3DPrinterOS?" -msgstr "" +msgstr "Sessão válida não detectada. Prosseguir com o login no 3DPrinterOS?" msgid "Success!" msgstr "Sucesso!" @@ -18155,14 +18025,140 @@ msgstr "Login/Teste" msgid "Connection to printers connected via the print host failed." msgstr "A conexão às impressoras conectadas através do host de impressão falhou." -msgid "3DPrinterOS Cloud upload options" +msgid "Detect Creality K-series printer" +msgstr "Detectar impressora Creality da série K" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "Clique para buscar impressora Creality da série K na sua rede." + +msgid "Use Selected" +msgstr "Usar Selecionada" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "Buscando impressoras série K na rede... isso leva alguns segundos." + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "Nenhuma impressora série K encontrada. Certifique-se de que a impressora está na mesma rede e não está bloqueada por isolamento de clientes Wi-Fi, então clique novamente em Buscar." + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "%zu impressora(s) Creality encontrada(s). Selecione um e clique em Usar Selecionada." + +msgid "Active" +msgstr "Ativa" + +msgid "Printers" +msgstr "Impressoras" + +msgid "Processes" +msgstr "Processos" + +msgid "Show/Hide system information" +msgstr "Mostrar/Esconder informações do sistema" + +msgid "Copy system information to clipboard" +msgstr "Copiar informações do sistema para a área de transferência" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." msgstr "" +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "Limpar" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + +msgid "3DPrinterOS Cloud upload options" +msgstr "Opções de upload para a nuvem do 3DPrinterOS" + msgid "Single file" -msgstr "" +msgstr "Arquivo individual" msgid "Project File" -msgstr "" +msgstr "Arquivo de Projeto" msgid "Project:" msgstr "Projeto:" @@ -18171,25 +18167,25 @@ msgid "Printer type:" msgstr "Tipo de impressora:" msgid "Printer type not found, please select manually." -msgstr "" +msgstr "Tipo de impressora não encontrado, selecione manualmente." msgid "Authorizing..." msgstr "Autorizando…" msgid "Error. Can't get api token for authorization" -msgstr "" +msgstr "Erro. ​​Não foi possível obter o token de API para autorização" msgid "Could not parse server response." msgstr "Não foi possível decifrar a resposta do servidor." msgid "Error saving session to file" -msgstr "" +msgstr "Erro salvando sessão para arquivo" msgid "Error session check" msgstr "" msgid "Error during file upload" -msgstr "" +msgstr "Erro durante a subida do arquivo" #, c-format, boost-format msgid "Mismatched type of print host: %s" @@ -18237,6 +18233,19 @@ msgstr "A conexão com o MKS funciona corretamente." msgid "Could not connect to MKS" msgstr "Não foi possível conectar ao MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "A conexão com o OctoPrint funciona corretamente." @@ -18700,19 +18709,19 @@ msgid "Missing printer serial number in response" msgstr "Falta o número de série da impressora na resposta" msgid "Error parsing response" -msgstr "" +msgstr "Erro ao analisar a resposta" msgid "ElegooLink not detected" -msgstr "" +msgstr "ElegooLink não detectado" msgid "Invalid access code" -msgstr "" +msgstr "Código de acesso inválido" msgid "CC2 device not detected" -msgstr "" +msgstr "Dispositivo CC2 não detectado" msgid "Connection to ElegooLink is working correctly." -msgstr "" +msgstr "A conexão com o ElegooLink está funcionando corretamente." msgid "Could not connect to ElegooLink" msgstr "Não foi possível conectar ao ElegooLink" @@ -18725,46 +18734,46 @@ msgid "Upload failed" msgstr "Falha no envio" msgid "The file has been transferred, but some unknown errors occurred. Please check the device page for the file and try to start printing again." -msgstr "" +msgstr "O arquivo foi transferido, mas ocorreram erros desconhecidos. Verifique a página do dispositivo referente ao arquivo e tente iniciar a impressão novamente." msgid "Failed to open file for upload." -msgstr "" +msgstr "Falha ao abrir arquivo para envio." msgid "Failed to read file chunk for upload." -msgstr "" +msgstr "Falha ao ler porção do arquivo para envio." msgid "CC2 upload failed" -msgstr "" +msgstr "Falha no envio CC2" msgid "The file is empty or could not be read." -msgstr "" +msgstr "O arquivo está vazio ou não pode ser encontrado." msgid "Failed to calculate file checksum." -msgstr "" +msgstr "Falha ao calcular o checksum." msgid "Error code not found" -msgstr "" +msgstr "Código de erro não encontrado" msgid "The printer is busy, Please check the device page for the file and try to start printing again." -msgstr "" +msgstr "A impressora está ocupada, verifique a página do dispositivo referente ao arquivo e tente iniciar a impressão novamente." msgid "The file is lost, please check and try again." -msgstr "" +msgstr "O arquivo está perdido, verifique e tente novamente." msgid "The file is corrupted, please check and try again." -msgstr "" +msgstr "O arquivo está corrompido, verifique e tente novamente." msgid "Transmission abnormality, please check and try again." -msgstr "" +msgstr "Anomalia na transmissão, verifique e tente novamente." msgid "The file does not match the printer, please check and try again." -msgstr "" +msgstr "O arquivo não é compatível com a impressora, verifique e tente novamente." msgid "Start print timeout" -msgstr "" +msgstr "Limite de tempo esgotado ao iniciar impressão" msgid "Start print failed" -msgstr "" +msgstr "Falha ao iniciar impressão" msgid "Connected to CrealityPrint successfully!" msgstr "Conectado ao CrealityPrint com sucesso!" @@ -18773,13 +18782,13 @@ msgid "Could not connect to CrealityPrint" msgstr "Não foi possível conectar ao CrealityPrint" msgid "Connection timed out. Please check if the printer and computer network are functioning properly, and confirm that they are on the same network." -msgstr "" +msgstr "Limite de tempo de conexão esgotado. Verifique se a impressora e a rede do computador estão funcionando corretamente e confirme se estão na mesma rede." msgid "The Hostname/IP/URL could not be parsed, please check it and try again." -msgstr "" +msgstr "Não foi possível decifrar o Hostname/IP/URL; verifique-o e tente novamente." msgid "File/data transfer interrupted. Please check the printer and network, then try it again." -msgstr "" +msgstr "Transferência de arquivo/dados interrompida. Verifique a impressora e a rede e tente novamente." msgid "The provided state is not correct." msgstr "O estado fornecido não está correto." @@ -18830,10 +18839,10 @@ msgid "Please select single object." msgstr "Por favor selecione um único objeto." msgid "Entering Brim Ears" -msgstr "" +msgstr "Entrando em Orelhas da Borda" msgid "Leaving Brim Ears" -msgstr "" +msgstr "Saindo de Orelhas da Borda" msgid "Zoom Out" msgstr "Afastar Zoom" @@ -18845,7 +18854,7 @@ msgid "Load skipping objects information failed. Please try again." msgstr "Falha ao carregar ignorando as informações dos objetos. Tente novamente." msgid "Failed to create the temporary folder." -msgstr "" +msgstr "Falha ao criar pasta temporária." #, c-format, boost-format msgid "/%d Selected" @@ -19056,7 +19065,7 @@ msgid "" msgstr "" msgid "The download has failed" -msgstr "" +msgstr "Falha ao baixar" #. TRN %1% = file path #, boost-format @@ -19294,8 +19303,7 @@ msgstr "" "Divida suas impressões em placas\n" "Você sabia que pode dividir um modelo que tem diversas peças em placas individuais distintas prontas para imprimir? Isso simplifica o processo de manter o controle de todas as peças." -#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer -#: Height] +#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer Height] msgid "" "Speed up your print with Adaptive Layer Height\n" "Did you know that you can print a model even faster by using the Adaptive Layer Height option? Check it out!" @@ -19367,8 +19375,7 @@ msgstr "" "Melhorar a resistência\n" "Você sabia que pode usar mais voltas de parede e maior densidade de preenchimento esparso mais alta para melhorar a resistência do modelo?" -#: resources/data/hints.ini: [hint:When do you need to print with the printer -#: door opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer door opened] msgid "" "When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature? There is more info about this in the Wiki." @@ -19384,6 +19391,28 @@ msgstr "" "Evitar empenamento\n" "Você sabia que ao imprimir materiais propensos ao empenamento como ABS, aumentar adequadamente a temperatura da mesa aquecida pode reduzir a probabilidade de empenamento?" +#~ msgid "Filament Sync Options" +#~ msgstr "Opções de Sincronização de Filamento" + +#~ msgid "Network plug-in" +#~ msgstr "Plug-in de rede" + +#~ msgid "View control settings" +#~ msgstr "Configurações de controle de vista" + +#~ msgid "Rotate view" +#~ msgstr "Rotacionar vista" + +#~ msgid "Pan view" +#~ msgstr "Mover vista" + +#~ msgid "Zoom view" +#~ msgstr "Aproximar vista" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "O botão de roda do mouse inverte ao fazer zoom" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Esquerda: %s" @@ -19511,12 +19540,6 @@ msgstr "" #~ "\n" #~ "Deseja desativá-lo para habilitar a Retração de Firmware?" -#~ msgid "\"G92 E0\" was found in before_layer_gcode, which is incompatible with absolute extruder addressing." -#~ msgstr "\"G92 E0\" foi encontrado em before_layer_gcode, o que é incompatível com o endereçamento absoluto da extrusora." - -#~ msgid "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute extruder addressing." -#~ msgstr "\"G92 E0\" foi encontrado em layer_gcode, o que é incompatível com o endereçamento absoluto da extrusora." - #, no-c-format, no-boost-format #~ msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for external bridges. Use 180° for zero angle." #~ msgstr "Substituição de ângulo de ponte. Se deixado em zero, o ângulo de ponte será calculado automaticamente. Caso contrário, o ângulo fornecido será usado para pontes externas. Use 180° para ângulo zero." diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index cefcb67165..b056b6973c 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer V2.5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2026-02-25 13:38+0300\n" "Last-Translator: Felix14_v2\n" "Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), Andylg \n" @@ -5341,7 +5341,7 @@ msgstr "Объём:" msgid "Size:" msgstr "Размер:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "В G-коде на %d слое (z = %.2lf мм) обнаружен конфликт путей. Пожалуйста, разместите конфликтующие модели дальше друг от друга (%s <-> %s)." @@ -7965,6 +7965,48 @@ msgstr "Укажите расположение загружаемых файл msgid "Choose Download Directory" msgstr "Выбор папки загрузки" +msgid "(Latest)" +msgstr "(новейшая)" + +msgid "Network plug-in switched successfully." +msgstr "Сетевой плагин успешно переключён." + +msgid "Success" +msgstr "Успех" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Для загрузки сетевого плагина требуется перезапуск приложения." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Выбрана следующая версия плагина: %s.\n" +"\n" +"Загрузить и установить её? Возможно, потребуется перезагрузка приложения." + +msgid "Download Network Plug-in" +msgstr "Загрузить сетевой плагин" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Перезагрузить плагин без перезапуска приложения." + +msgid "Network plug-in reloaded successfully." +msgstr "Плагин успешно перезагружен." + +msgid "Reload" +msgstr "Перезагрузить" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Не удалось перезагрузить сетевой плагин. Требуется перезапуск приложения." + +msgid "Reload Failed" +msgstr "Перезапуск не удался" + msgid "Associate" msgstr "Ассоциация" @@ -8019,12 +8061,6 @@ msgstr "Показывать заставку при запуске" msgid "Show the splash screen during startup." msgstr "Показывать окно приветствия при запуске программы." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -8055,6 +8091,12 @@ msgstr "При загрузке файла 3MF открывать ..." msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Следует ли при открытии 3MF проекта загружать настройки принтера, печати и материала?" +msgid "Auto backup" +msgstr "Сохранение резервной копии" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Периодическое создание резервной копии проекта для восстановления в случае непредвиденного сбоя программы." + msgid "Maximum recent files" msgstr "Ограничение последних файлов" @@ -8075,11 +8117,20 @@ msgstr "Показывать настройки импорта STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Если включено, во время импорта STEP файла появится диалоговое окно настроек параметров импорта." -msgid "Auto backup" -msgstr "Сохранение резервной копии" +msgid "Quality level for Draco export" +msgstr "Качество при экспорте в DRC" -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Периодическое создание резервной копии проекта для восстановления в случае непредвиденного сбоя программы." +msgid "bits" +msgstr "бит" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n" +"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон – от 8 до 30.\n" +"0 – сжатие без потерь (представление с максимальной точностью)." msgid "Preset" msgstr "Профиль" @@ -8111,6 +8162,12 @@ msgstr "материалов" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Ограничить высоту секции с материалами проекта. При превышении лимита будет отображаться полоса прокрутки." +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "Возможности" @@ -8124,21 +8181,6 @@ msgstr "Если включено, вы сможете управлять нес msgid "Pop up to select filament grouping mode" msgstr "Всплывающее окно для выбора режима группировки филаментов" -msgid "Quality level for Draco export" -msgstr "Качество при экспорте в DRC" - -msgid "bits" -msgstr "бит" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n" -"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон – от 8 до 30.\n" -"0 – сжатие без потерь (представление с максимальной точностью)." - msgid "Behaviour" msgstr "Автоматизация" @@ -8373,18 +8415,6 @@ msgstr "Уведомлять только о стабильных версиях msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Синхронизация пользовательских профилей (принтера/материала/настроек)" -msgid "Update built-in presets automatically." -msgstr "Автоматически обновлять системные профили" - -msgid "Use encrypted file for token storage" -msgstr "Хранить токены в зашифрованном файле" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Сохранять токены аутентификации в зашифрованном файле вместо использования системной связки ключей (требуется перезапуск)." - -msgid "Filament Sync Options" -msgstr "Настройки синхронизации" - msgid "Filament sync mode" msgstr "Режим синхронизации" @@ -8397,6 +8427,15 @@ msgstr "Цвет и материал" msgid "Color only" msgstr "Цвет" +msgid "Update built-in presets automatically." +msgstr "Автоматически обновлять системные профили" + +msgid "Use encrypted file for token storage" +msgstr "Хранить токены в зашифрованном файле" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Сохранять токены аутентификации в зашифрованном файле вместо использования системной связки ключей (требуется перезапуск)." + msgid "Bambu network plug-in" msgstr "" @@ -8409,33 +8448,6 @@ msgstr "Версия сетевого плагина" msgid "Select the network plug-in version to use" msgstr "Выберите версию сетевого плагина для загрузки" -msgid "(Latest)" -msgstr "(новейшая)" - -msgid "Network plug-in switched successfully." -msgstr "Сетевой плагин успешно переключён." - -msgid "Success" -msgstr "Успех" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Для загрузки сетевого плагина требуется перезапуск приложения." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Выбрана следующая версия плагина: %s.\n" -"\n" -"Загрузить и установить её? Возможно, потребуется перезагрузка приложения." - -msgid "Download Network Plug-in" -msgstr "Загрузить сетевой плагин" - msgid "Associate files to OrcaSlicer" msgstr "Открытие файлов по умолчанию" @@ -8478,7 +8490,16 @@ msgstr "Разработка" msgid "Skip AMS blacklist check" msgstr "Пропуск проверки материалов в AMS из файла чёрного списка" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8486,12 +8507,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "Игнорировать неисправность хранилища" @@ -8520,24 +8535,6 @@ msgstr "отладка" msgid "trace" msgstr "трассировка" -msgid "Network plug-in" -msgstr "Сетевой плагин" - -msgid "Reload" -msgstr "Перезагрузить" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Перезагрузить плагин без перезапуска приложения." - -msgid "Network plug-in reloaded successfully." -msgstr "Плагин успешно перезагружен." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Не удалось перезагрузить сетевой плагин. Требуется перезапуск приложения." - -msgid "Reload Failed" -msgstr "Перезапуск не удался" - msgid "Debug" msgstr "Отладка" @@ -8553,24 +8550,6 @@ msgstr "Синхронизация профилей" msgid "Preferences sync" msgstr "Синхронизация настроек" -msgid "View control settings" -msgstr "Просмотр настроек управления" - -msgid "Rotate view" -msgstr "Вращение камеры" - -msgid "Pan view" -msgstr "Перемещение камеры" - -msgid "Zoom view" -msgstr "Масштабирование вида" - -msgid "Other" -msgstr "Прочее" - -msgid "Reverse scroll direction while zooming" -msgstr "Инвертировать масштабирование с помощью колеса мыши" - msgid "Enable SSL(MQTT)" msgstr "Включить SSL(MQTT)" @@ -13402,6 +13381,17 @@ msgstr "" msgid "layer" msgstr "слой" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Обдув связующего слоя" @@ -15426,6 +15416,9 @@ msgstr "Часто в импортируемых в программу моде msgid "Slicing Mode" msgstr "Режим нарезки" +msgid "Other" +msgstr "Прочее" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" "Режим нарезки «Чётный-нечётный» применяется для моделей с намеренно нарушенной целостностью. Например, для моделей самолётов с ресурса 3DLabPrint.\n" @@ -18621,6 +18614,132 @@ msgstr "Вход/Тест" msgid "Connection to printers connected via the print host failed." msgstr "Не удалось подключиться к принтерам, подключенным через хост печати." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18703,6 +18822,19 @@ msgstr "Подключение к MKS успешно установлено." msgid "Could not connect to MKS" msgstr "Не удалось подключиться к MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Подключение к OctoPrint успешно установлено." @@ -19870,6 +20002,27 @@ msgstr "" "Предотвращение коробления материала\n" "Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?" +#~ msgid "Filament Sync Options" +#~ msgstr "Настройки синхронизации" + +#~ msgid "Network plug-in" +#~ msgstr "Сетевой плагин" + +#~ msgid "View control settings" +#~ msgstr "Просмотр настроек управления" + +#~ msgid "Rotate view" +#~ msgstr "Вращение камеры" + +#~ msgid "Pan view" +#~ msgstr "Перемещение камеры" + +#~ msgid "Zoom view" +#~ msgstr "Масштабирование вида" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Инвертировать масштабирование с помощью колеса мыши" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Левый: %s" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index 3cba863125..6b9408a687 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -5231,7 +5231,7 @@ msgstr "Volym:" msgid "Size:" msgstr "Storlek:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "" @@ -7789,6 +7789,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Välj Nedladdnings Register" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "Lyckades" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "Ladda om" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "" @@ -7844,12 +7883,6 @@ msgstr "Visa välkomstskärm" msgid "Show the splash screen during startup." msgstr "Visa välkomstskärmen under uppstart." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7880,6 +7913,13 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "Auto säkerhetskopiera" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch." + msgid "Maximum recent files" msgstr "" @@ -7898,12 +7938,17 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Auto säkerhetskopiera" +msgid "Quality level for Draco export" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" msgid "Preset" msgstr "Förinställd" @@ -7935,6 +7980,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "Funktioner" @@ -7947,18 +7998,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "" @@ -8183,19 +8222,6 @@ msgstr "" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Automatisk synkronisering av användarens förinställningar (skrivare/filament/process)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Uppdatera inbyggda förinställningar automatiskt." - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -8208,6 +8234,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Uppdatera inbyggda förinställningar automatiskt." + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -8220,30 +8256,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "Lyckades" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Associerade filer till Orca Slicer" @@ -8290,7 +8302,16 @@ msgstr "Utvecklare" msgid "Skip AMS blacklist check" msgstr "Hoppa över kontrollen av AMS svarta lista" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8298,12 +8319,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8330,24 +8345,6 @@ msgstr "felsök" msgid "trace" msgstr "spåra" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "Ladda om" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "Felsökning" @@ -8363,25 +8360,6 @@ msgstr "Förinställd synkronisering" msgid "Preferences sync" msgstr "Synkronisera inställningar" -msgid "View control settings" -msgstr "Kontroll inställningar" - -msgid "Rotate view" -msgstr "Rotera vy" - -msgid "Pan view" -msgstr "Panoreringsvy" - -msgid "Zoom view" -msgstr "Zoomvy" - -msgid "Other" -msgstr "Andra" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Reversera mushjulet för att zooma" - msgid "Enable SSL(MQTT)" msgstr "Aktivera SSL(MQTT)" @@ -12878,6 +12856,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -14678,6 +14667,9 @@ msgstr "Sprickor mindre än 2 x gap stängningsradie fylls under triangeln mesh msgid "Slicing Mode" msgstr "Berednings läge" +msgid "Other" +msgstr "Andra" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Använd ”Jämn-Udda” för 3DLabPrint flygplans modeller. Använd ”Stäng hål” för att stänga alla hål i modellen." @@ -17614,6 +17606,132 @@ msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "Anslutningen till printrar som är anslutna via printer värden misslyckades." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17696,6 +17814,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "Kunde inte ansluta till MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" @@ -18825,6 +18956,22 @@ msgstr "" "Undvik vridning\n" "Visste du att när du skriver ut material som är benägna att vrida, såsom ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten för vridning?" +#~ msgid "View control settings" +#~ msgstr "Kontroll inställningar" + +#~ msgid "Rotate view" +#~ msgstr "Rotera vy" + +#~ msgid "Pan view" +#~ msgstr "Panoreringsvy" + +#~ msgid "Zoom view" +#~ msgstr "Zoomvy" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Reversera mushjulet för att zooma" + #~ msgid "Perform" #~ msgstr "Utför" diff --git a/localization/i18n/th/OrcaSlicer_th.po b/localization/i18n/th/OrcaSlicer_th.po index 27d5f6b11e..d8997df145 100644 --- a/localization/i18n/th/OrcaSlicer_th.po +++ b/localization/i18n/th/OrcaSlicer_th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2026-06-19 13:40+0700\n" "Last-Translator: Icezaza\n" "Language-Team: Thai\n" @@ -5184,7 +5184,7 @@ msgstr "ปริมาณ:" msgid "Size:" msgstr "ขนาด:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "พบความขัดแย้งของเส้นทางรหัส G ที่เลเยอร์ %d, Z = %.2lfmm โปรดแยกวัตถุที่ขัดแย้งกันให้ไกลออกไป (%s <-> %s)" @@ -7711,6 +7711,50 @@ msgstr "เลือกโฟลเดอร์สำหรับรายกา msgid "Choose Download Directory" msgstr "เลือกดาวน์โหลดไดเรกทอรี" +msgid "(Latest)" +msgstr "(ล่าสุด)" + +msgid "Network plug-in switched successfully." +msgstr "สลับปลั๊กอินเครือข่ายสำเร็จแล้ว" + +msgid "Success" +msgstr "สำเร็จ" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "โหลดปลั๊กอินเครือข่ายไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"คุณได้เลือกปลั๊กอินเครือข่ายเวอร์ชัน %s\n" +"\n" +"คุณต้องการดาวน์โหลดและติดตั้งเวอร์ชันนี้ทันทีหรือไม่\n" +"\n" +"หมายเหตุ: แอปพลิเคชันอาจต้องรีสตาร์ทหลังการติดตั้ง" + +msgid "Download Network Plug-in" +msgstr "ดาวน์โหลดปลั๊กอินเครือข่าย" + +msgid "Reload the network plug-in without restarting the application" +msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน" + +msgid "Network plug-in reloaded successfully." +msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว" + +msgid "Reload" +msgstr "โหลดใหม่" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน" + +msgid "Reload Failed" +msgstr "โหลดใหม่ล้มเหลว" + msgid "Associate" msgstr "เชื่อมโยง" @@ -7765,12 +7809,6 @@ msgstr "แสดงหน้าจอเริ่มต้น" msgid "Show the splash screen during startup." msgstr "แสดงหน้าจอเริ่มต้นระหว่างการเริ่มต้น" -msgid "Show shared profiles notification" -msgstr "แสดงการแจ้งเตือนโปรไฟล์ที่แชร์" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "แสดงการแจ้งเตือนพร้อมลิงก์เพื่อเรียกดูโปรไฟล์ที่แชร์เมื่อเครื่องพิมพ์ที่เลือกมีการเปลี่ยนแปลง" - msgid "Use window buttons on left side" msgstr "ใช้ปุ่มหน้าต่างทางด้านซ้าย" @@ -7801,6 +7839,12 @@ msgstr "พฤติกรรมการโหลด" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "ควรโหลดการตั้งค่าเครื่องพิมพ์/เส้นพลาสติก/กระบวนการเมื่อเปิดไฟล์ 3MF หรือไม่" +msgid "Auto backup" +msgstr "การสำรองข้อมูลอัตโนมัติ" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว" + msgid "Maximum recent files" msgstr "ไฟล์ล่าสุดสูงสุด" @@ -7819,11 +7863,20 @@ msgstr "แสดงตัวเลือกเมื่อนำเข้าไ msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "หากเปิดใช้งาน กล่องโต้ตอบการตั้งค่าพารามิเตอร์จะปรากฏขึ้นระหว่างการนำเข้าไฟล์ STEP" -msgid "Auto backup" -msgstr "การสำรองข้อมูลอัตโนมัติ" +msgid "Quality level for Draco export" +msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco" -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว" +msgid "bits" +msgstr "บิต" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"ควบคุมความลึกบิตเชิงปริมาณที่ใช้ในการบีบอัด mesh เป็นรูปแบบ Draco\n" +"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n" +"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า" msgid "Preset" msgstr "พรีเซ็ต" @@ -7855,6 +7908,12 @@ msgstr "เส้นพลาสติก" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "ปรับความสูงสูงสุดของพื้นที่เส้นพลาสติกให้เหมาะสมตามจำนวนเส้นพลาสติกที่เลือก" +msgid "Show shared profiles notification" +msgstr "แสดงการแจ้งเตือนโปรไฟล์ที่แชร์" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "แสดงการแจ้งเตือนพร้อมลิงก์เพื่อเรียกดูโปรไฟล์ที่แชร์เมื่อเครื่องพิมพ์ที่เลือกมีการเปลี่ยนแปลง" + msgid "Features" msgstr "คุณสมบัติ" @@ -7867,21 +7926,6 @@ msgstr "เมื่อเปิดใช้งานตัวเลือกน msgid "Pop up to select filament grouping mode" msgstr "ปรากฏขึ้นเพื่อเลือกโหมดการจัดกลุ่มเส้นพลาสติก" -msgid "Quality level for Draco export" -msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco" - -msgid "bits" -msgstr "บิต" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"ควบคุมความลึกบิตเชิงปริมาณที่ใช้ในการบีบอัด mesh เป็นรูปแบบ Draco\n" -"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n" -"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า" - msgid "Behaviour" msgstr "พฤติกรรม" @@ -8126,18 +8170,6 @@ msgstr "ตรวจสอบการอัปเดตที่เสถีย msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "การตั้งค่าล่วงหน้าของผู้ใช้ซิงค์อัตโนมัติ (เครื่องพิมพ์/เส้นพลาสติก/กระบวนการ)" -msgid "Update built-in presets automatically." -msgstr "อัปเดตค่าที่ตั้งล่วงหน้าในตัวโดยอัตโนมัติ" - -msgid "Use encrypted file for token storage" -msgstr "ใช้ไฟล์ที่เข้ารหัสสำหรับการจัดเก็บโทเค็น" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "จัดเก็บโทเค็นการรับรองความถูกต้องในไฟล์ที่เข้ารหัสแทนพวงกุญแจระบบ (ต้องรีสตาร์ท)" - -msgid "Filament Sync Options" -msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์" - msgid "Filament sync mode" msgstr "โหมดการซิงค์ฟิลาเมนต์" @@ -8150,6 +8182,15 @@ msgstr "เส้นพลาสติกและสี" msgid "Color only" msgstr "สีเท่านั้น" +msgid "Update built-in presets automatically." +msgstr "อัปเดตค่าที่ตั้งล่วงหน้าในตัวโดยอัตโนมัติ" + +msgid "Use encrypted file for token storage" +msgstr "ใช้ไฟล์ที่เข้ารหัสสำหรับการจัดเก็บโทเค็น" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "จัดเก็บโทเค็นการรับรองความถูกต้องในไฟล์ที่เข้ารหัสแทนพวงกุญแจระบบ (ต้องรีสตาร์ท)" + msgid "Bambu network plug-in" msgstr "ปลั๊กอินเครือข่าย Bambu" @@ -8162,35 +8203,6 @@ msgstr "เวอร์ชันปลั๊กอินเครือข่า msgid "Select the network plug-in version to use" msgstr "เลือกเวอร์ชันปลั๊กอินเครือข่ายที่จะใช้" -msgid "(Latest)" -msgstr "(ล่าสุด)" - -msgid "Network plug-in switched successfully." -msgstr "สลับปลั๊กอินเครือข่ายสำเร็จแล้ว" - -msgid "Success" -msgstr "สำเร็จ" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "โหลดปลั๊กอินเครือข่ายไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"คุณได้เลือกปลั๊กอินเครือข่ายเวอร์ชัน %s\n" -"\n" -"คุณต้องการดาวน์โหลดและติดตั้งเวอร์ชันนี้ทันทีหรือไม่\n" -"\n" -"หมายเหตุ: แอปพลิเคชันอาจต้องรีสตาร์ทหลังการติดตั้ง" - -msgid "Download Network Plug-in" -msgstr "ดาวน์โหลดปลั๊กอินเครือข่าย" - msgid "Associate files to OrcaSlicer" msgstr "เชื่อมโยงไฟล์กับ OrcaSlicer" @@ -8233,8 +8245,17 @@ msgstr "นักพัฒนา" msgid "Skip AMS blacklist check" msgstr "ข้ามการตรวจสอบบัญชีดำของ AMS" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย" +msgid "Show unsupported presets" +msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่รองรับ" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่เข้ากันหรือไม่รองรับในรายการเลือกเครื่องพิมพ์และเส้นพลาสติก ไม่สามารถเลือกค่าที่ตั้งไว้ล่วงหน้าเหล่านี้ได้" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" +msgstr "" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" @@ -8243,12 +8264,6 @@ msgstr "" "พยายามคงคุณสมบัติการทาสีไว้ (สี/รอยตะเข็บ/ส่วนรองรับ/คลุมเครือ ฯลฯ) หลังจากเปลี่ยนตาข่ายวัตถุ (เช่น ตัด/โหลดซ้ำจากดิสก์/ลดความซับซ้อน/แก้ไข ฯลฯ)\n" "น่าทดลองมาก! ช้าและอาจสร้างสิ่งประดิษฐ์" -msgid "Show unsupported presets" -msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่รองรับ" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่เข้ากันหรือไม่รองรับในรายการเลือกเครื่องพิมพ์และเส้นพลาสติก ไม่สามารถเลือกค่าที่ตั้งไว้ล่วงหน้าเหล่านี้ได้" - msgid "Allow Abnormal Storage" msgstr "อนุญาตให้จัดเก็บผิดปกติ" @@ -8277,24 +8292,6 @@ msgstr "แก้ปัญหา" msgid "trace" msgstr "ติดตาม" -msgid "Network plug-in" -msgstr "ปลั๊กอินเครือข่าย" - -msgid "Reload" -msgstr "โหลดใหม่" - -msgid "Reload the network plug-in without restarting the application" -msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน" - -msgid "Network plug-in reloaded successfully." -msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน" - -msgid "Reload Failed" -msgstr "โหลดใหม่ล้มเหลว" - msgid "Debug" msgstr "ดีบัก" @@ -8310,24 +8307,6 @@ msgstr "การซิงค์ที่ตั้งไว้ล่วงหน msgid "Preferences sync" msgstr "ซิงค์การตั้งค่า" -msgid "View control settings" -msgstr "ดูการตั้งค่าการควบคุม" - -msgid "Rotate view" -msgstr "หมุนมุมมอง" - -msgid "Pan view" -msgstr "แพนวิว" - -msgid "Zoom view" -msgstr "ซูมดู" - -msgid "Other" -msgstr "อื่นๆ" - -msgid "Reverse scroll direction while zooming" -msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม" - msgid "Enable SSL(MQTT)" msgstr "เปิดใช้งาน SSL(MQTT)" @@ -13002,6 +12981,17 @@ msgstr "ความเร็วพัดลมจะเพิ่มขึ้น msgid "layer" msgstr "ชั้น" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "ความเร็วพัดลมผิวสัมผัสส่วนรองรับ" @@ -14895,6 +14885,9 @@ msgstr "รอยแตกร้าวที่มีขนาดเล็กก msgid "Slicing Mode" msgstr "โหมดการแบ่งส่วน" +msgid "Other" +msgstr "อื่นๆ" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "ใช้ \"เลขคู่\" สำหรับโมเดลเครื่องบิน 3DLabPrint ใช้ \"ปิดรู\" เพื่อปิดรูทั้งหมดในโมเดล" @@ -17895,6 +17888,132 @@ msgstr "เข้าสู่ระบบ/ทดสอบ" msgid "Connection to printers connected via the print host failed." msgstr "การเชื่อมต่อกับเครื่องพิมพ์ที่เชื่อมต่อผ่านโฮสต์การพิมพ์ล้มเหลว" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "ตัวเลือกอัปโหลดคลาวด์ 3DPrinterOS" @@ -17977,6 +18096,19 @@ msgstr "การเชื่อมต่อกับ MKS ทำงานอย msgid "Could not connect to MKS" msgstr "ไม่สามารถเชื่อมต่อกับ MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "การเชื่อมต่อกับ OctoPrint ทำงานอย่างถูกต้อง" @@ -19127,6 +19259,30 @@ msgstr "" "หลีกเลี่ยงการบิดเบี้ยว\n" "คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้" +#~ msgid "Filament Sync Options" +#~ msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย" + +#~ msgid "Network plug-in" +#~ msgstr "ปลั๊กอินเครือข่าย" + +#~ msgid "View control settings" +#~ msgstr "ดูการตั้งค่าการควบคุม" + +#~ msgid "Rotate view" +#~ msgstr "หมุนมุมมอง" + +#~ msgid "Pan view" +#~ msgstr "แพนวิว" + +#~ msgid "Zoom view" +#~ msgstr "ซูมดู" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "ซ้าย: %s" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index ad421a81ff..1cfbdae628 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2026-04-08 23:59+0300\n" "Last-Translator: GlauTech\n" "Language-Team: \n" @@ -5301,7 +5301,7 @@ msgstr "Hacim:" msgid "Size:" msgstr "Boyut:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "%d katmanında gcode yollarında çakışmalar bulundu, Z = %.2lfmm. Lütfen çakışan nesneleri daha uzağa ayırın (%s <-> %s)." @@ -7886,6 +7886,50 @@ msgstr "İndirilen öğeler için klasör seçin" msgid "Choose Download Directory" msgstr "İndirme Dizini seçin" +msgid "(Latest)" +msgstr "(En sonuncu)" + +msgid "Network plug-in switched successfully." +msgstr "Ağ eklentisi başarıyla değiştirildi." + +msgid "Success" +msgstr "Başarı" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın." + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"Ağ eklentisi %s sürümünü seçtiniz.\n" +"\n" +"Bu sürümü şimdi indirip yüklemek ister misiniz?\n" +"\n" +"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir." + +msgid "Download Network Plug-in" +msgstr "Ağ Eklentisini İndirin" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin" + +msgid "Network plug-in reloaded successfully." +msgstr "Ağ eklentisi başarıyla yeniden yüklendi." + +msgid "Reload" +msgstr "Yeniden yükle" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın." + +msgid "Reload Failed" +msgstr "Yeniden Yükleme Başarısız" + msgid "Associate" msgstr "Ortak" @@ -7941,12 +7985,6 @@ msgstr "Açılış ekranını göster" msgid "Show the splash screen during startup." msgstr "Açılış sırasında açılış ekranını göster." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7977,6 +8015,13 @@ msgstr "Yükleme davranışı" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Bir .3mf açılırken yazıcı/filament/işlem ayarları yüklenmeli mi?" +msgid "Auto backup" +msgstr "Otomatik yedekleme" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin." + msgid "Maximum recent files" msgstr "Son kullanılan dosyaların maksimum sayısı" @@ -7995,12 +8040,20 @@ msgstr "STEP dosyasını içe aktarırken seçenekleri göster" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Etkinleştirilirse, STEP dosyası içe aktarılırken bir parametre ayarları iletişim kutusu görüntülenir." -msgid "Auto backup" -msgstr "Otomatik yedekleme" +msgid "Quality level for Draco export" +msgstr "Draco dışa aktarımı için kalite düzeyi" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin." +msgid "bits" +msgstr "bitler" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"Mesh Draco formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n" +"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n" +"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur." msgid "Preset" msgstr "Ön ayar" @@ -8032,6 +8085,12 @@ msgstr "filamentler" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Seçilen filaman sayısına göre filaman alanı maksimum yüksekliğini optimize eder." +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "Özellikler" @@ -8044,21 +8103,6 @@ msgstr "Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir g msgid "Pop up to select filament grouping mode" msgstr "Filament gruplama modunu seçmek için açılır pencere" -msgid "Quality level for Draco export" -msgstr "Draco dışa aktarımı için kalite düzeyi" - -msgid "bits" -msgstr "bitler" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"Mesh Draco formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n" -"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n" -"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur." - msgid "Behaviour" msgstr "Davranış" @@ -8286,19 +8330,6 @@ msgstr "Yalnızca kararlı güncellemeleri kontrol edin" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin." - -msgid "Use encrypted file for token storage" -msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)" - -msgid "Filament Sync Options" -msgstr "Filament Senkronizasyon Seçenekleri" - msgid "Filament sync mode" msgstr "Filament senkronizasyon modu" @@ -8311,6 +8342,16 @@ msgstr "Filament ve Renk" msgid "Color only" msgstr "Yalnızca renk" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin." + +msgid "Use encrypted file for token storage" +msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)" + msgid "Bambu network plug-in" msgstr "" @@ -8323,35 +8364,6 @@ msgstr "Ağ eklentisi sürümü" msgid "Select the network plug-in version to use" msgstr "Kullanılacak ağ eklentisi sürümünü seçin" -msgid "(Latest)" -msgstr "(En sonuncu)" - -msgid "Network plug-in switched successfully." -msgstr "Ağ eklentisi başarıyla değiştirildi." - -msgid "Success" -msgstr "Başarı" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın." - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"Ağ eklentisi %s sürümünü seçtiniz.\n" -"\n" -"Bu sürümü şimdi indirip yüklemek ister misiniz?\n" -"\n" -"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir." - -msgid "Download Network Plug-in" -msgstr "Ağ Eklentisini İndirin" - msgid "Associate files to OrcaSlicer" msgstr "Dosyaları OrcaSlicer ile ilişkilendirin" @@ -8397,7 +8409,16 @@ msgstr "Geliştirici" msgid "Skip AMS blacklist check" msgstr "AMS kara liste kontrolünü atla" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8405,12 +8426,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "Anormal Depolamaya İzin Ver" @@ -8439,24 +8454,6 @@ msgstr "hata ayıklama" msgid "trace" msgstr "iz" -msgid "Network plug-in" -msgstr "Ağ eklentisi" - -msgid "Reload" -msgstr "Yeniden yükle" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin" - -msgid "Network plug-in reloaded successfully." -msgstr "Ağ eklentisi başarıyla yeniden yüklendi." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın." - -msgid "Reload Failed" -msgstr "Yeniden Yükleme Başarısız" - msgid "Debug" msgstr "Hata ayıklama" @@ -8472,25 +8469,6 @@ msgstr "Ön ayar senkronizasyonu" msgid "Preferences sync" msgstr "Tercihler senkronizasyonu" -msgid "View control settings" -msgstr "Kontrol ayarlarını görüntüle" - -msgid "Rotate view" -msgstr "Görüntüyü döndür" - -msgid "Pan view" -msgstr "Pan Görünümü" - -msgid "Zoom view" -msgstr "Zoom Görünümü" - -msgid "Other" -msgstr "Diğer" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor" - msgid "Enable SSL(MQTT)" msgstr "SSL'yi etkinleştir(MQTT)" @@ -13186,6 +13164,17 @@ msgstr "Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan \"fu msgid "layer" msgstr "katman" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Destekler için fan hızı" @@ -15074,6 +15063,9 @@ msgstr "Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından k msgid "Slicing Mode" msgstr "Dilimleme modu" +msgid "Other" +msgstr "Diğer" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "3DLabPrint uçak modelleri için \"Çift-tek\" seçeneğini kullanın. Modeldeki tüm delikleri kapatmak için \"Delikleri kapat\"ı kullanın." @@ -18145,6 +18137,132 @@ msgstr "Giriş/Test" msgid "Connection to printers connected via the print host failed." msgstr "Yazdırma ana bilgisayarı aracılığıyla bağlanan yazıcılara bağlantı başarısız oldu." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18227,6 +18345,19 @@ msgstr "MKS'ye bağlantı düzgün çalışıyor." msgid "Could not connect to MKS" msgstr "MKS'ye bağlanılamadı" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrint'e bağlantı düzgün çalışıyor." @@ -19383,6 +19514,28 @@ msgstr "" "Eğilmeyi önleyin\n" "ABS gibi bükülmeye yatkın malzemelere baskı yaparken, ısıtma yatağı sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını azaltabileceğini biliyor muydunuz?" +#~ msgid "Filament Sync Options" +#~ msgstr "Filament Senkronizasyon Seçenekleri" + +#~ msgid "Network plug-in" +#~ msgstr "Ağ eklentisi" + +#~ msgid "View control settings" +#~ msgstr "Kontrol ayarlarını görüntüle" + +#~ msgid "Rotate view" +#~ msgstr "Görüntüyü döndür" + +#~ msgid "Pan view" +#~ msgstr "Pan Görünümü" + +#~ msgid "Zoom view" +#~ msgstr "Zoom Görünümü" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "Sol: %s" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 2382fea8f5..5c39619017 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: orcaslicerua\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2025-03-07 09:30+0200\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" @@ -5303,7 +5303,7 @@ msgid "Size:" msgstr "Розмір:" # TODO: Review, changed by lang refactor. PR 14254 -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "" "Виявлено конфлікти шляхів gcode на рівні %d, Z = %.2lf мм. Будь ласка \n" @@ -7905,6 +7905,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Виберіть каталог завантаження" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Ассоціювати" @@ -7960,12 +7999,6 @@ msgstr "Показувати заставку" msgid "Show the splash screen during startup." msgstr "Показувати заставку під час запуску." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7996,6 +8029,13 @@ msgstr "Поведінка завантаження" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Чи повинні бути завантажені налаштування принтера/філаменту/процесу при відкритті файлу .3mf?" +msgid "Auto backup" +msgstr "Автобекап" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою." + msgid "Maximum recent files" msgstr "" @@ -8014,12 +8054,17 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Автобекап" +msgid "Quality level for Draco export" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" msgid "Preset" msgstr "Шаблон" @@ -8051,6 +8096,12 @@ msgstr "філаменти" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "" @@ -8063,18 +8114,6 @@ msgstr "З цією опцією ввімкненою, ви можете від msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "" @@ -8302,19 +8341,6 @@ msgstr "Перевіряти лише стабільні оновлення" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Автоматична синхронізація користувацьких профілів (принтер/філамент/процес)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Оновлюйте вбудовані пресети автоматично." - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -8327,6 +8353,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Оновлюйте вбудовані пресети автоматично." + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -8339,30 +8375,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Асоціювати файли з OrcaSlicer" @@ -8411,7 +8423,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "Пропустити перевірку чорного списку AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8419,12 +8440,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8451,24 +8466,6 @@ msgstr "налагодження" msgid "trace" msgstr "слід" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "" @@ -8484,25 +8481,6 @@ msgstr "Синхронізація профілів" msgid "Preferences sync" msgstr "Синхронізація налаштувань" -msgid "View control settings" -msgstr "Перегляд параметрів керування" - -msgid "Rotate view" -msgstr "Повернути вигляд" - -msgid "Pan view" -msgstr "Панорамний вигляд" - -msgid "Zoom view" -msgstr "Перегляд масштабу" - -msgid "Other" -msgstr "Інший" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Колісок миші реверсує при масштабуванні" - msgid "Enable SSL(MQTT)" msgstr "Увімкнути SSL (MQTT)" @@ -13168,6 +13146,17 @@ msgstr "Швидкість вентилятора лінійно збільшу msgid "layer" msgstr "шар" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Швидкість вентилятора під час друку підтримки" @@ -15055,6 +15044,9 @@ msgstr "Під час розрізання тріщини на трикутну msgid "Slicing Mode" msgstr "Режим нарізки" +msgid "Other" +msgstr "Інший" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Використовуйте «парний-непарний» для моделей літаків 3DLabPrint. Використовуйте «Закрити отвори», щоб закрити всі отвори в моделі." @@ -18089,6 +18081,132 @@ msgstr "Вхід/Тест" msgid "Connection to printers connected via the print host failed." msgstr "Не вдалося підключитися до принтерів, підключених через вузол друку." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18171,6 +18289,19 @@ msgstr "З’єднання з MKS працює коректно." msgid "Could not connect to MKS" msgstr "Не вдалося підключитися до MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Підключення до OctoPrint працює правильно." @@ -19327,6 +19458,22 @@ msgstr "" "Уникнення деформації\n" "Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури гарячого ліжка може зменшити ймовірність деформації?" +#~ msgid "View control settings" +#~ msgstr "Перегляд параметрів керування" + +#~ msgid "Rotate view" +#~ msgstr "Повернути вигляд" + +#~ msgid "Pan view" +#~ msgstr "Панорамний вигляд" + +#~ msgid "Zoom view" +#~ msgstr "Перегляд масштабу" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Колісок миші реверсує при масштабуванні" + #~ msgid "Enable network plug-in" #~ msgstr "Увімкнути мережевий плагін" diff --git a/localization/i18n/vi/OrcaSlicer_vi.po b/localization/i18n/vi/OrcaSlicer_vi.po index c84d377a3d..1d9b9436fb 100644 --- a/localization/i18n/vi/OrcaSlicer_vi.po +++ b/localization/i18n/vi/OrcaSlicer_vi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2025-10-02 17:43+0700\n" "Last-Translator: \n" "Language-Team: hainguyen.ts13@gmail.com\n" @@ -5273,7 +5273,7 @@ msgstr "Thể tích:" msgid "Size:" msgstr "Kích thước:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "Đã tìm thấy xung đột đường đi G-code tại lớp %d, Z = %.2lfmm. Vui lòng tách các vật thể xung đột ra xa hơn (%s <-> %s)." @@ -7844,6 +7844,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Chọn thư mục tải xuống" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Liên kết" @@ -7898,12 +7937,6 @@ msgstr "Hiển thị màn hình khởi động" msgid "Show the splash screen during startup." msgstr "Hiển thị màn hình khởi động trong khi khởi động." -msgid "Show shared profiles notification" -msgstr "" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "" - msgid "Use window buttons on left side" msgstr "" @@ -7934,6 +7967,13 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Có nên tải cài đặt máy in/filament/quy trình khi mở file 3MF?" +msgid "Auto backup" +msgstr "" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng." + msgid "Maximum recent files" msgstr "Số file gần đây tối đa" @@ -7952,12 +7992,17 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Nếu được bật, hộp thoại cài đặt tham số sẽ xuất hiện trong quá trình nhập file STEP." -msgid "Auto backup" +msgid "Quality level for Draco export" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng." +msgid "bits" +msgstr "bits" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" msgid "Preset" msgstr "Cài đặt sẵn" @@ -7989,6 +8034,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "" +msgid "Show shared profiles notification" +msgstr "" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "" + msgid "Features" msgstr "" @@ -8001,18 +8052,6 @@ msgstr "Với tùy chọn này được bật, bạn có thể gửi tác vụ msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" - msgid "Behaviour" msgstr "" @@ -8240,19 +8279,6 @@ msgstr "Chỉ kiểm tra cập nhật ổn định" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Tự động đồng bộ preset người dùng (Máy in/Filament/Quy trình)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Cập nhật preset tích hợp tự động." - -msgid "Use encrypted file for token storage" -msgstr "" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "" - -msgid "Filament Sync Options" -msgstr "" - msgid "Filament sync mode" msgstr "" @@ -8265,6 +8291,16 @@ msgstr "Sợi và Màu sắc" msgid "Color only" msgstr "Chỉ màu" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Cập nhật preset tích hợp tự động." + +msgid "Use encrypted file for token storage" +msgstr "" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "" + msgid "Bambu network plug-in" msgstr "" @@ -8277,30 +8313,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Liên kết file với OrcaSlicer" @@ -8346,7 +8358,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "Bỏ qua kiểm tra danh sách đen AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8354,12 +8375,6 @@ msgid "" "Highly experimental! Slow and may create artifact." msgstr "" -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" - msgid "Allow Abnormal Storage" msgstr "" @@ -8386,24 +8401,6 @@ msgstr "gỡ lỗi" msgid "trace" msgstr "theo dõi" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "" - -msgid "Reload the network plug-in without restarting the application" -msgstr "" - -msgid "Network plug-in reloaded successfully." -msgstr "" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "" - -msgid "Reload Failed" -msgstr "" - msgid "Debug" msgstr "" @@ -8419,25 +8416,6 @@ msgstr "Đồng bộ preset" msgid "Preferences sync" msgstr "Đồng bộ tùy chọn" -msgid "View control settings" -msgstr "Cài đặt điều khiển chế độ xem" - -msgid "Rotate view" -msgstr "Xoay chế độ xem" - -msgid "Pan view" -msgstr "Kéo chế độ xem" - -msgid "Zoom view" -msgstr "Thu phóng chế độ xem" - -msgid "Other" -msgstr "Khác" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Con lăn chuột đảo ngược khi thu phóng" - msgid "Enable SSL(MQTT)" msgstr "Bật SSL(MQTT)" @@ -13080,6 +13058,17 @@ msgstr "Tốc độ quạt sẽ được tăng tuyến tính từ không tại l msgid "layer" msgstr "lớp" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Tốc độ quạt giao diện support" @@ -14966,6 +14955,9 @@ msgstr "Vết nứt nhỏ hơn 2x bán kính đóng khe được lấp trong sli msgid "Slicing Mode" msgstr "Chế độ slice" +msgid "Other" +msgstr "Khác" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Sử dụng \"Chẵn-lẻ\" cho model máy bay 3DLabPrint. Sử dụng \"Đóng lỗ\" để đóng tất cả các lỗ trong model." @@ -18010,6 +18002,132 @@ msgstr "Đăng nhập/Kiểm tra" msgid "Connection to printers connected via the print host failed." msgstr "Kết nối với máy in được kết nối qua máy chủ in thất bại." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18092,6 +18210,19 @@ msgstr "Kết nối với MKS hoạt động chính xác." msgid "Could not connect to MKS" msgstr "Không thể kết nối với MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Kết nối với OctoPrint hoạt động chính xác." @@ -19248,6 +19379,22 @@ msgstr "" "Tránh cong vênh\n" "Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn nóng một cách thích hợp có thể giảm xác suất cong vênh không?" +#~ msgid "View control settings" +#~ msgstr "Cài đặt điều khiển chế độ xem" + +#~ msgid "Rotate view" +#~ msgstr "Xoay chế độ xem" + +#~ msgid "Pan view" +#~ msgstr "Kéo chế độ xem" + +#~ msgid "Zoom view" +#~ msgstr "Thu phóng chế độ xem" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Con lăn chuột đảo ngược khi thu phóng" + #~ msgid "Enable network plug-in" #~ msgstr "Bật plugin mạng" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 4831c28aa7..6631e4c413 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2026-06-11 12:37-0300\n" "Last-Translator: Handle \n" "Language-Team: \n" @@ -5297,7 +5297,7 @@ msgstr "体积:" msgid "Size:" msgstr "尺寸:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "发现G-code路径在层%d,高度为%.2lf mm处有冲突。请将有冲突的对象分离得更远(%s <-> %s)。" @@ -7866,6 +7866,45 @@ msgstr "选择下载项目的文件夹" msgid "Choose Download Directory" msgstr "选择下载文件夹" +msgid "(Latest)" +msgstr "(最新的)" + +msgid "Network plug-in switched successfully." +msgstr "网络插件切换成功。" + +msgid "Success" +msgstr "成功" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "无法加载网络插件。请重新启动应用程序。" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。" + +msgid "Download Network Plug-in" +msgstr "下载网络插件" + +msgid "Reload the network plug-in without restarting the application" +msgstr "重新加载网络插件而不重新启动应用程序" + +msgid "Network plug-in reloaded successfully." +msgstr "网络插件已成功重新加载。" + +msgid "Reload" +msgstr "重新加载" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "无法重新加载网络插件。请重新启动应用程序。" + +msgid "Reload Failed" +msgstr "重新加载失败" + msgid "Associate" msgstr "相关的" @@ -7921,12 +7960,6 @@ msgstr "显示启动画面" msgid "Show the splash screen during startup." msgstr "在启动时显示启动画面。" -msgid "Show shared profiles notification" -msgstr "显示共享配置文件通知" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "当所选打印机更改时,显示带有浏览共享配置文件链接的通知。" - msgid "Use window buttons on left side" msgstr "将窗口按钮置于左侧" @@ -7957,6 +7990,13 @@ msgstr "加载 交互项" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "printter/filament/process 设置项文件能否以 .3mf后缀方式打开" +msgid "Auto backup" +msgstr "自动备份" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。" + msgid "Maximum recent files" msgstr "最大最近使用文件数" @@ -7975,12 +8015,20 @@ msgstr "显示STEP网格参数设置对话框" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "如果启用,在导入STEP文件时将出现参数设置对话框" -msgid "Auto backup" -msgstr "自动备份" +msgid "Quality level for Draco export" +msgstr "Draco 导出的模型质量" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。" +msgid "bits" +msgstr "位" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"控制将网格压缩为 Draco 格式时使用的量化位深度。\n" +"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n" +"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。" msgid "Preset" msgstr "预设" @@ -8012,6 +8060,12 @@ msgstr "耗材丝" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "根据选定的耗材丝数量优化耗材区域最大高度" +msgid "Show shared profiles notification" +msgstr "显示共享配置文件通知" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "当所选打印机更改时,显示带有浏览共享配置文件链接的通知。" + msgid "Features" msgstr "特性" @@ -8024,21 +8078,6 @@ msgstr "启用此选项后,您可以同时向多个设备发送任务并管理 msgid "Pop up to select filament grouping mode" msgstr "弹出选择耗材丝分组模式" -msgid "Quality level for Draco export" -msgstr "Draco 导出的模型质量" - -msgid "bits" -msgstr "位" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"控制将网格压缩为 Draco 格式时使用的量化位深度。\n" -"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n" -"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。" - msgid "Behaviour" msgstr "行为" @@ -8283,19 +8322,6 @@ msgstr "仅检测正式版的更新" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "同步用户预设(打印机/耗材丝/工艺)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "自动更新系统预设" - -msgid "Use encrypted file for token storage" -msgstr "使用加密文件进行令牌存储" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "将身份验证令牌存储在加密文件中,而不是系统钥匙串中。 (需要重启)" - -msgid "Filament Sync Options" -msgstr "耗材丝同步选项" - msgid "Filament sync mode" msgstr "耗材丝同步模式" @@ -8308,6 +8334,16 @@ msgstr "耗材丝及颜色" msgid "Color only" msgstr "仅颜色" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "自动更新系统预设" + +msgid "Use encrypted file for token storage" +msgstr "使用加密文件进行令牌存储" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "将身份验证令牌存储在加密文件中,而不是系统钥匙串中。 (需要重启)" + msgid "Bambu network plug-in" msgstr "Bambu网络插件" @@ -8320,30 +8356,6 @@ msgstr "网络插件版本" msgid "Select the network plug-in version to use" msgstr "选择要使用的网络插件版本" -msgid "(Latest)" -msgstr "(最新的)" - -msgid "Network plug-in switched successfully." -msgstr "网络插件切换成功。" - -msgid "Success" -msgstr "成功" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "无法加载网络插件。请重新启动应用程序。" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。" - -msgid "Download Network Plug-in" -msgstr "下载网络插件" - msgid "Associate files to OrcaSlicer" msgstr "逆戟鲸切片器文件关联" @@ -8389,8 +8401,17 @@ msgstr "开发者" msgid "Skip AMS blacklist check" msgstr "跳过AMS黑名单检查" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(实验性) 在网格更改后保留绘制的特征" +msgid "Show unsupported presets" +msgstr "显示不受支持的预设" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "在打印机和耗材下拉列表中显示不兼容/不受支持的预设。这些预设无法被选择。" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" +msgstr "" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" @@ -8399,12 +8420,6 @@ msgstr "" "在更改对象网格(如切割/从磁盘重新加载/简化/修复等)后,尝试保留绘制的特征(颜色/接缝/支撑/绒毛等)。\n" "高度实验性!速度较慢且可能产生瑕疵。" -msgid "Show unsupported presets" -msgstr "显示不受支持的预设" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "在打印机和耗材下拉列表中显示不兼容/不受支持的预设。这些预设无法被选择。" - msgid "Allow Abnormal Storage" msgstr "允许异常存储" @@ -8433,24 +8448,6 @@ msgstr "调试" msgid "trace" msgstr "跟踪" -msgid "Network plug-in" -msgstr "网络插件" - -msgid "Reload" -msgstr "重新加载" - -msgid "Reload the network plug-in without restarting the application" -msgstr "重新加载网络插件而不重新启动应用程序" - -msgid "Network plug-in reloaded successfully." -msgstr "网络插件已成功重新加载。" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "无法重新加载网络插件。请重新启动应用程序。" - -msgid "Reload Failed" -msgstr "重新加载失败" - msgid "Debug" msgstr "调试" @@ -8466,25 +8463,6 @@ msgstr "配置同步" msgid "Preferences sync" msgstr "首选项同步" -msgid "View control settings" -msgstr "视图控制设置" - -msgid "Rotate view" -msgstr "旋转视角" - -msgid "Pan view" -msgstr "移动视角" - -msgid "Zoom view" -msgstr "缩放视角" - -msgid "Other" -msgstr "其他" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "缩放时鼠标滚轮反转" - msgid "Enable SSL(MQTT)" msgstr "启用SSL(MQTT)" @@ -13273,6 +13251,17 @@ msgstr "" msgid "layer" msgstr "层" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "支撐接触面风扇" @@ -15207,6 +15196,9 @@ msgstr "在三角形网格切片过程中,小于2倍间隙闭合半径的裂 msgid "Slicing Mode" msgstr "切片模式" +msgid "Other" +msgstr "其他" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "对3DLabPrint的飞机模型使用 \"奇偶\"。使用 \"闭孔 \"来关闭模型上的所有孔。" @@ -18277,6 +18269,132 @@ msgstr "登录/测试" msgid "Connection to printers connected via the print host failed." msgstr "无法通过打印机主机连接到打印机。" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "3DPrinterOS 云上传选项" @@ -18359,6 +18477,19 @@ msgstr "与 MKS 的连接正常。" msgid "Could not connect to MKS" msgstr "无法连接到 MKS。" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "成功连接到 OctoPrint。" @@ -19517,6 +19648,31 @@ msgstr "" "避免翘曲\n" "您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。" +#~ msgid "Filament Sync Options" +#~ msgstr "耗材丝同步选项" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(实验性) 在网格更改后保留绘制的特征" + +#~ msgid "Network plug-in" +#~ msgstr "网络插件" + +#~ msgid "View control settings" +#~ msgstr "视图控制设置" + +#~ msgid "Rotate view" +#~ msgstr "旋转视角" + +#~ msgid "Pan view" +#~ msgstr "移动视角" + +#~ msgid "Zoom view" +#~ msgstr "缩放视角" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "缩放时鼠标滚轮反转" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "左:%s" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index 37aab62c7e..06594ec2fd 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-28 12:42-0300\n" +"POT-Creation-Date: 2026-07-03 14:43+0200\n" "PO-Revision-Date: 2025-11-28 13:48-0600\n" "Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n" "Language-Team: \n" @@ -5339,7 +5339,7 @@ msgstr "體積:" msgid "Size:" msgstr "尺寸:" -#, c-format, boost-format +#, boost-format msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)." msgstr "發現 G-code 路徑在 %d 層,Z = %.2lf mm 處的衝突。請將有衝突的物件分離得更遠(%s <-> %s)。" @@ -7923,6 +7923,50 @@ msgstr "選擇下載項目的目標資料夾" msgid "Choose Download Directory" msgstr "選擇下載資料夾" +msgid "(Latest)" +msgstr "(最新版)" + +msgid "Network plug-in switched successfully." +msgstr "網路外掛程式切換成功。" + +msgid "Success" +msgstr "成功" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "無法載入網路外掛程式。請重新啟動應用程式。" + +#, c-format, boost-format +msgid "" +"You've selected network plug-in version %s.\n" +"\n" +"Would you like to download and install this version now?\n" +"\n" +"Note: The application may need to restart after installation." +msgstr "" +"您已選擇網路外掛程式版本 %s。\n" +"\n" +"您想立即下載並安裝此版本嗎?\n" +"\n" +"注意:安裝後應用程式可能需要重新啟動。" + +msgid "Download Network Plug-in" +msgstr "下載網路外掛程式" + +msgid "Reload the network plug-in without restarting the application" +msgstr "重新載入網路外掛程式而無需重新啟動應用程式" + +msgid "Network plug-in reloaded successfully." +msgstr "網路外掛程式重新載入成功。" + +msgid "Reload" +msgstr "重新載入" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。" + +msgid "Reload Failed" +msgstr "重新載入失敗" + msgid "Associate" msgstr "關聯" @@ -7978,12 +8022,6 @@ msgstr "顯示啟動動畫" msgid "Show the splash screen during startup." msgstr "啟動時顯示啟動動畫。" -msgid "Show shared profiles notification" -msgstr "顯示共用設定檔通知" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "變更所選列印設備時,顯示一則含有瀏覽共享設定檔連結的通知。" - msgid "Use window buttons on left side" msgstr "將視窗按鈕置於左側" @@ -8014,6 +8052,13 @@ msgstr "載入方式" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "開啟 .3mf 檔案時,是否需要載入列印設備、線材和參數設定?" +msgid "Auto backup" +msgstr "自動備份" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "定期備份專案,以便從未預期的錯誤中恢復。" + msgid "Maximum recent files" msgstr "最近開啟的檔案上限" @@ -8032,12 +8077,20 @@ msgstr "顯示 STEP 網格參數設定視窗。" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "啟用後,匯入 STEP 檔案時會顯示參數設定視窗。" -msgid "Auto backup" -msgstr "自動備份" +msgid "Quality level for Draco export" +msgstr "Draco 匯出品質等級" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "定期備份專案,以便從未預期的錯誤中恢復。" +msgid "bits" +msgstr "位元" + +msgid "" +"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" +"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" +"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." +msgstr "" +"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n" +"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n" +"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。" msgid "Preset" msgstr "預設" @@ -8069,6 +8122,12 @@ msgstr "線材" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "根據選擇的線材數量優化線材區域最大高度" +msgid "Show shared profiles notification" +msgstr "顯示共用設定檔通知" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "變更所選列印設備時,顯示一則含有瀏覽共享設定檔連結的通知。" + msgid "Features" msgstr "功能" @@ -8081,21 +8140,6 @@ msgstr "啟用時可以同時傳送到並管理多個機臺。" msgid "Pop up to select filament grouping mode" msgstr "彈出視窗選擇線材分組模式" -msgid "Quality level for Draco export" -msgstr "Draco 匯出品質等級" - -msgid "bits" -msgstr "位元" - -msgid "" -"Controls the quantization bit depth used when compressing the mesh to Draco format.\n" -"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n" -"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files." -msgstr "" -"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n" -"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n" -"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。" - msgid "Behaviour" msgstr "行為" @@ -8340,19 +8384,6 @@ msgstr "僅檢查穩定版更新" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "自動同步使用者預設(列印設備/線材/列印品質參數)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "自動更新系統預設。" - -msgid "Use encrypted file for token storage" -msgstr "使用加密檔案儲存權杖" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "將身份驗證權杖儲存在加密檔案中,而不是系統鑰匙圈。(需要重啟)" - -msgid "Filament Sync Options" -msgstr "線材同步選項" - msgid "Filament sync mode" msgstr "線材同步模式" @@ -8365,6 +8396,16 @@ msgstr "線材與顏色" msgid "Color only" msgstr "僅顏色" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "自動更新系統預設。" + +msgid "Use encrypted file for token storage" +msgstr "使用加密檔案儲存權杖" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "將身份驗證權杖儲存在加密檔案中,而不是系統鑰匙圈。(需要重啟)" + msgid "Bambu network plug-in" msgstr "Bambu 網路外掛程式" @@ -8377,35 +8418,6 @@ msgstr "網路外掛程式版本" msgid "Select the network plug-in version to use" msgstr "選擇要使用的網路外掛程式版本" -msgid "(Latest)" -msgstr "(最新版)" - -msgid "Network plug-in switched successfully." -msgstr "網路外掛程式切換成功。" - -msgid "Success" -msgstr "成功" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "無法載入網路外掛程式。請重新啟動應用程式。" - -#, c-format, boost-format -msgid "" -"You've selected network plug-in version %s.\n" -"\n" -"Would you like to download and install this version now?\n" -"\n" -"Note: The application may need to restart after installation." -msgstr "" -"您已選擇網路外掛程式版本 %s。\n" -"\n" -"您想立即下載並安裝此版本嗎?\n" -"\n" -"注意:安裝後應用程式可能需要重新啟動。" - -msgid "Download Network Plug-in" -msgstr "下載網路外掛程式" - msgid "Associate files to OrcaSlicer" msgstr "Orca Slicer 檔案關聯" @@ -8451,8 +8463,17 @@ msgstr "開發者" msgid "Skip AMS blacklist check" msgstr "跳過 AMS 黑名單檢查" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(實驗性)在網格變更後保留繪製的特徵" +msgid "Show unsupported presets" +msgstr "顯示不支援的預設" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "在列印設備和線材下拉選單中顯示不相容/不支援的預設。這些預設無法選取。" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" +msgstr "" msgid "" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" @@ -8461,12 +8482,6 @@ msgstr "" "嘗試在變更物件網格(例如切割/從磁碟重新載入/簡化/修復等)後,保留已繪製的特徵(顏色/Z 縫/支撐/絨毛等)。\n" "高度實驗性!速度緩慢且可能產生瑕疵。" -msgid "Show unsupported presets" -msgstr "顯示不支援的預設" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "在列印設備和線材下拉選單中顯示不相容/不支援的預設。這些預設無法選取。" - msgid "Allow Abnormal Storage" msgstr "允許異常儲存空間" @@ -8495,24 +8510,6 @@ msgstr "除錯" msgid "trace" msgstr "跟蹤" -msgid "Network plug-in" -msgstr "網路外掛程式" - -msgid "Reload" -msgstr "重新載入" - -msgid "Reload the network plug-in without restarting the application" -msgstr "重新載入網路外掛程式而無需重新啟動應用程式" - -msgid "Network plug-in reloaded successfully." -msgstr "網路外掛程式重新載入成功。" - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。" - -msgid "Reload Failed" -msgstr "重新載入失敗" - msgid "Debug" msgstr "除錯" @@ -8528,25 +8525,6 @@ msgstr "預設檔同步" msgid "Preferences sync" msgstr "偏好設定同步" -msgid "View control settings" -msgstr "視角控制設定" - -msgid "Rotate view" -msgstr "旋轉視角" - -msgid "Pan view" -msgstr "移動視角" - -msgid "Zoom view" -msgstr "縮放視角" - -msgid "Other" -msgstr "其他" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "縮放時滑鼠滾輪反轉" - msgid "Enable SSL(MQTT)" msgstr "啟用SSL(MQTT)" @@ -13322,6 +13300,17 @@ msgstr "風扇速度會從第「close_fan_the_first_x_layers」層開始,從 msgid "layer" msgstr "層" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "支撐界面風扇速度" @@ -15257,6 +15246,9 @@ msgstr "在三角網格切片過程中,寬度小於 2 倍間隙閉合半徑的 msgid "Slicing Mode" msgstr "切片模式" +msgid "Other" +msgstr "其他" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "針對 3DLabPrint 飛機模型,請選擇『奇偶』模式。若需閉合模型中的所有孔洞,請啟用『閉合孔洞』選項。" @@ -18325,6 +18317,132 @@ msgstr "登入/測試" msgid "Connection to printers connected via the print host failed." msgstr "經由列印主機連接的列印設備連接失敗。" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "3DPrinterOS 雲端上傳選項" @@ -18407,6 +18525,19 @@ msgstr "成功連接到 MKS。" msgid "Could not connect to MKS" msgstr "無法連接到 MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "與 OctoPrint 的連接工作正常。" @@ -19588,6 +19719,31 @@ msgstr "" "您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n" "可以降低翹曲的機率。" +#~ msgid "Filament Sync Options" +#~ msgstr "線材同步選項" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(實驗性)在網格變更後保留繪製的特徵" + +#~ msgid "Network plug-in" +#~ msgstr "網路外掛程式" + +#~ msgid "View control settings" +#~ msgstr "視角控制設定" + +#~ msgid "Rotate view" +#~ msgstr "旋轉視角" + +#~ msgid "Pan view" +#~ msgstr "移動視角" + +#~ msgid "Zoom view" +#~ msgstr "縮放視角" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "縮放時滑鼠滾輪反轉" + #, c-format, boost-format #~ msgid "Left: %s" #~ msgstr "左:%s" diff --git a/resources/handy_models/OrcaBadge.3mf b/resources/handy_models/OrcaBadge.3mf new file mode 100644 index 0000000000..936c7f038b Binary files /dev/null and b/resources/handy_models/OrcaBadge.3mf differ diff --git a/resources/handy_models/OrcaSliced.drc b/resources/handy_models/OrcaSliced.drc deleted file mode 100644 index 1dc9072b35..0000000000 Binary files a/resources/handy_models/OrcaSliced.drc and /dev/null differ diff --git a/resources/profiles/Afinia.json b/resources/profiles/Afinia.json index 1ffbbcdb61..a11cc0ecf6 100644 --- a/resources/profiles/Afinia.json +++ b/resources/profiles/Afinia.json @@ -1,6 +1,6 @@ { "name": "Afinia", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Afinia configurations", "machine_model_list": [ @@ -124,14 +124,6 @@ "name": "fdm_filament_tpu", "sub_path": "filament/fdm_filament_tpu.json" }, - { - "name": "Afinia ABS", - "sub_path": "filament/Afinia ABS.json" - }, - { - "name": "Afinia ABS+", - "sub_path": "filament/Afinia ABS+.json" - }, { "name": "Afinia ABS+@HS", "sub_path": "filament/Afinia ABS+@HS.json" @@ -140,34 +132,18 @@ "name": "Afinia ABS@HS", "sub_path": "filament/Afinia ABS@HS.json" }, - { - "name": "Afinia Value ABS", - "sub_path": "filament/Afinia Value ABS.json" - }, { "name": "Afinia Value ABS@HS", "sub_path": "filament/Afinia Value ABS@HS.json" }, - { - "name": "Afinia PLA", - "sub_path": "filament/Afinia PLA.json" - }, { "name": "Afinia PLA@HS", "sub_path": "filament/Afinia PLA@HS.json" }, - { - "name": "Afinia Value PLA", - "sub_path": "filament/Afinia Value PLA.json" - }, { "name": "Afinia Value PLA@HS", "sub_path": "filament/Afinia Value PLA@HS.json" }, - { - "name": "Afinia TPU", - "sub_path": "filament/Afinia TPU.json" - }, { "name": "Afinia TPU@HS", "sub_path": "filament/Afinia TPU@HS.json" diff --git a/resources/profiles/Afinia/filament/Afinia ABS+.json b/resources/profiles/Afinia/filament/Afinia ABS+.json deleted file mode 100644 index 74308bad42..0000000000 --- a/resources/profiles/Afinia/filament/Afinia ABS+.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFB00", - "setting_id": "i5tf9foHnTVNmA2r", - "name": "Afinia ABS+", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_abs", - "filament_flow_ratio": [ - "0.95" - ], - "filament_cost": [ - "24.99" - ], - "filament_vendor": [ - "Afinia" - ], - "fan_max_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "nozzle_temperature": [ - "275" - ], - "nozzle_temperature_initial_layer": [ - "275" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia ABS.json b/resources/profiles/Afinia/filament/Afinia ABS.json deleted file mode 100644 index d51254c1b9..0000000000 --- a/resources/profiles/Afinia/filament/Afinia ABS.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFB00", - "setting_id": "LhDHvMepbh8ecfQT", - "name": "Afinia ABS", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_abs", - "filament_flow_ratio": [ - "0.95" - ], - "filament_cost": [ - "24.99" - ], - "filament_vendor": [ - "Afinia" - ], - "fan_max_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia PLA.json b/resources/profiles/Afinia/filament/Afinia PLA.json deleted file mode 100644 index c04d368e42..0000000000 --- a/resources/profiles/Afinia/filament/Afinia PLA.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFA00", - "setting_id": "1qEFsay7kjYIUkpG", - "name": "Afinia PLA", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_pla", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Afinia" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia TPU.json b/resources/profiles/Afinia/filament/Afinia TPU.json deleted file mode 100644 index d4310612b3..0000000000 --- a/resources/profiles/Afinia/filament/Afinia TPU.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "type": "filament", - "name": "Afinia TPU", - "inherits": "fdm_filament_tpu", - "from": "system", - "setting_id": "E7WBTARZ971LaDMj", - "filament_id": "GFU01", - "instantiation": "true", - "filament_vendor": [ - "Afinia" - ], - "filament_density": [ - "1.22" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "filament_cost": [ - "41.99" - ], - "nozzle_temperature": [ - "230" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia Value ABS.json b/resources/profiles/Afinia/filament/Afinia Value ABS.json deleted file mode 100644 index 0036bea580..0000000000 --- a/resources/profiles/Afinia/filament/Afinia Value ABS.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFB00", - "setting_id": "jEYVpOPBjFtQ0DXn", - "name": "Afinia Value ABS", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_abs", - "filament_flow_ratio": [ - "0.95" - ], - "filament_cost": [ - "24.99" - ], - "filament_vendor": [ - "Afinia" - ], - "fan_max_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia Value PLA.json b/resources/profiles/Afinia/filament/Afinia Value PLA.json deleted file mode 100644 index 52d27a1f8c..0000000000 --- a/resources/profiles/Afinia/filament/Afinia Value PLA.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFA00", - "setting_id": "oNBk0IxmW7C99WI3", - "name": "Afinia Value PLA", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_pla", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Afinia" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "190" - ], - "nozzle_temperature_initial_layer": [ - "190" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json b/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json index 1987ea7070..bd4ed02497 100644 --- a/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.20mm Optimal 0.6 nozzle @Anker", + "renamed_from": "0.20mm Optimal 0.6 nozzle @Anker.json", "inherits": "fdm_process_anker_common_0_6", "from": "system", "setting_id": "re5qmcOFJ1OJP3Ip", diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 654ce46f60..67551e9685 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "02.01.00.18", + "version": "02.01.00.19", "force_update": "0", "description": "BBL configurations", "machine_model_list": [ @@ -2177,6 +2177,10 @@ "name": "Generic ABS @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth ABS rABS", + "sub_path": "filament/addnorth/addnorth ABS rABS.json" + }, { "name": "PolyLite ABS @BBL A1", "sub_path": "filament/Polymaker/PolyLite ABS @BBL A1.json" @@ -3005,6 +3009,22 @@ "name": "Generic PA @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PA Adura", + "sub_path": "filament/addnorth/addnorth PA Adura.json" + }, + { + "name": "addnorth PA Adura FDA", + "sub_path": "filament/addnorth/addnorth PA Adura FDA.json" + }, + { + "name": "addnorth PA6 Addlantis", + "sub_path": "filament/addnorth/addnorth PA6 Addlantis.json" + }, + { + "name": "addnorth PVDF Adamant S1", + "sub_path": "filament/addnorth/addnorth PVDF Adamant S1.json" + }, { "name": "Generic PA-CF", "sub_path": "filament/Generic PA-CF.json" @@ -3029,6 +3049,10 @@ "name": "Generic PA-CF @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PA-CF Adura X", + "sub_path": "filament/addnorth/addnorth PA-CF Adura X.json" + }, { "name": "Bambu PC @BBL A1", "sub_path": "filament/Bambu PC @BBL A1.json" @@ -3329,6 +3353,10 @@ "name": "Generic PC @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PC BLend HT LCF", + "sub_path": "filament/addnorth/addnorth PC BLend HT LCF.json" + }, { "name": "Generic PCTG @BBL A1", "sub_path": "filament/Generic PCTG @BBL A1.json" @@ -4185,6 +4213,30 @@ "name": "Generic PETG @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PETG Base", + "sub_path": "filament/addnorth/addnorth PETG Base.json" + }, + { + "name": "addnorth PETG ESD", + "sub_path": "filament/addnorth/addnorth PETG ESD.json" + }, + { + "name": "addnorth PETG Economy", + "sub_path": "filament/addnorth/addnorth PETG Economy.json" + }, + { + "name": "addnorth PETG Flame v0", + "sub_path": "filament/addnorth/addnorth PETG Flame v0.json" + }, + { + "name": "addnorth PETG PRO Matte", + "sub_path": "filament/addnorth/addnorth PETG PRO Matte.json" + }, + { + "name": "addnorth PETG rPETG Matte", + "sub_path": "filament/addnorth/addnorth PETG rPETG Matte.json" + }, { "name": "Generic PETG HF @BBL A1", "sub_path": "filament/Generic PETG HF @BBL A1.json" @@ -4305,6 +4357,10 @@ "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PETG-CF Rigid X", + "sub_path": "filament/addnorth/addnorth PETG-CF Rigid X.json" + }, { "name": "PolyLite PETG @BBL A1", "sub_path": "filament/Polymaker/PolyLite PETG @BBL A1.json" @@ -6589,6 +6645,34 @@ "name": "Generic PLA @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA E-PLA", + "sub_path": "filament/addnorth/addnorth PLA E-PLA.json" + }, + { + "name": "addnorth PLA Economy", + "sub_path": "filament/addnorth/addnorth PLA Economy.json" + }, + { + "name": "addnorth PLA HT-PLA PRO Matte", + "sub_path": "filament/addnorth/addnorth PLA HT-PLA PRO Matte.json" + }, + { + "name": "addnorth PLA Textura", + "sub_path": "filament/addnorth/addnorth PLA Textura.json" + }, + { + "name": "addnorth PLA Wood", + "sub_path": "filament/addnorth/addnorth PLA Wood.json" + }, + { + "name": "addnorth PLA X-PLA", + "sub_path": "filament/addnorth/addnorth PLA X-PLA.json" + }, + { + "name": "addnorth PLA rPLA RE-ADD", + "sub_path": "filament/addnorth/addnorth PLA rPLA RE-ADD.json" + }, { "name": "Generic PLA High Speed @BBL A1", "sub_path": "filament/Generic PLA High Speed @BBL A1.json" @@ -6649,6 +6733,10 @@ "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA X-PLA High Speed", + "sub_path": "filament/addnorth/addnorth PLA X-PLA High Speed.json" + }, { "name": "Generic PLA Silk", "sub_path": "filament/Generic PLA Silk.json" @@ -6689,6 +6777,10 @@ "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA Premium Silk", + "sub_path": "filament/addnorth/addnorth PLA Premium Silk.json" + }, { "name": "Generic PLA-CF", "sub_path": "filament/Generic PLA-CF.json" @@ -6729,6 +6821,10 @@ "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA-CF Carbon Fiber", + "sub_path": "filament/addnorth/addnorth PLA-CF Carbon Fiber.json" + }, { "name": "Numakers PLA+ @BBL A1", "sub_path": "filament/Numakers/Numakers PLA+ @BBL A1.json" @@ -6981,10 +7077,6 @@ "name": "Panchroma PLA @BBL X1C 0.2 nozzle", "sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json" }, - { - "name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json" - }, { "name": "Panchroma PLA Celestial @BBL A1", "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1.json" @@ -7381,6 +7473,10 @@ "name": "Panchroma PLA Silk @BBL X1C", "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C.json" }, + { + "name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json" + }, { "name": "Panchroma PLA Starlight @BBL A1", "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1.json" @@ -8889,6 +8985,18 @@ "name": "Generic TPU @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth TPU EasyFlex", + "sub_path": "filament/addnorth/addnorth TPU EasyFlex.json" + }, + { + "name": "addnorth TPU Pro Matte 85A", + "sub_path": "filament/addnorth/addnorth TPU Pro Matte 85A.json" + }, + { + "name": "addnorth TPU Pro Matte 95A", + "sub_path": "filament/addnorth/addnorth TPU Pro Matte 95A.json" + }, { "name": "Generic TPU for AMS @BBL A1", "sub_path": "filament/Generic TPU for AMS @BBL A1.json" diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json index ad96efaef4..5d2d8d305a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Bambu PLA Tough @BBL X1C", + "renamed_from": "Bambu PLA Impact @BBL X1C", "inherits": "Bambu PLA Tough @base", "from": "system", "setting_id": "GFSA09_02", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json index 057f04d232..e516c24976 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL A1", + "renamed_from": "Panchroma PLA Stain @BBL A1", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_00", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json index 4492871b7c..b9698daa75 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL A1M", + "renamed_from": "Panchroma PLA Stain @BBL A1M", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_02", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json index 39c5f418f0..fcb4636518 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL P1P", + "renamed_from": "Panchroma PLA Stain @BBL P1P", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_04", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json index c5720db9ae..804564f4e8 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL X1", + "renamed_from": "Panchroma PLA Stain @BBL X1", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_06", diff --git a/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json b/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json new file mode 100644 index 0000000000..2889bc0a39 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth ABS rABS", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GF_ANRA_00", + "filament_id": "GF_ANRA", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "25" + ], + "fan_min_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "200" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "43" + ], + "filament_density": [ + "1.03" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth ABS rABS" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "ABS" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json new file mode 100644 index 0000000000..9da0cc2b6e --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA Adura FDA", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANAF_00", + "filament_id": "GF_ANAF", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "50" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA Adura FDA" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "245" + ], + "overhang_fan_speed": [ + "70" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json new file mode 100644 index 0000000000..037ae82eed --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA Adura", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANAD_00", + "filament_id": "GF_ANAD", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "50" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA Adura" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "245" + ], + "overhang_fan_speed": [ + "70" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json b/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json new file mode 100644 index 0000000000..3b8f50c799 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA-CF Adura X", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GF_ANAX_00", + "filament_id": "GF_ANAX", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "109" + ], + "filament_density": [ + "1.2" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA-CF Adura X" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "120" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json b/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json new file mode 100644 index 0000000000..dc5e815df5 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA6 Addlantis", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANLA_00", + "filament_id": "GF_ANLA", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.62 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA6 Addlantis" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA6" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "nozzle_temperature_range_high": [ + "285" + ], + "nozzle_temperature_range_low": [ + "265" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "slow_down_layer_time": [ + "15" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json b/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json new file mode 100644 index 0000000000..e1e67fbb71 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PC BLend HT LCF", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GF_ANPBX_00", + "filament_id": "GF_ANPBX", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "109" + ], + "filament_density": [ + "1.3" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PC BLend HT LCF" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PC" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "285", + "285" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "265" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "185" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json new file mode 100644 index 0000000000..288368dd07 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG Base", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANPE_00", + "filament_id": "GF_ANPE", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "35.6" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG Base" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json new file mode 100644 index 0000000000..060ffe6b56 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG ESD", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANEG_00", + "filament_id": "GF_ANEG", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "76" + ], + "filament_density": [ + "1.3" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "20", + "20" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 high reliability - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG ESD" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "255" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json new file mode 100644 index 0000000000..c83d353302 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG Economy", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANGE_00", + "filament_id": "GF_ANGE", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "27" + ], + "filament_density": [ + "1.25" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG Economy" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json new file mode 100644 index 0000000000..96aec4f471 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG Flame v0", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANPF_00", + "filament_id": "GF_ANPF", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "71" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "20", + "20" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.4 high reliability - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG Flame V0" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "255" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json new file mode 100644 index 0000000000..a73d5ae48a --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG PRO Matte", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANPM_00", + "filament_id": "GF_ANPM", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "54.5" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG PRO Matte" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "235" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "1" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json new file mode 100644 index 0000000000..1c4f092d54 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG rPETG Matte", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANRM_00", + "filament_id": "GF_ANRM", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "36" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG rPETG Matte" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "225" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json new file mode 100644 index 0000000000..927ef1ca6e --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG-CF Rigid X", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GF_ANRX_00", + "filament_id": "GF_ANRX", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "100" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "5" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.3" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026 – Special thanks to Mats.Z (3DP24, Jonkoping University / Campus Varnamo) for profile improvements during internship autumn 2025.", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG-CF Rigid X" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "0" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "40" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json new file mode 100644 index 0000000000..d008217fcf --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA E-PLA", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANEP_00", + "filament_id": "GF_ANEP", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "5" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA E-PLA" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json new file mode 100644 index 0000000000..51b2924577 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Economy", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANPL_00", + "filament_id": "GF_ANPL", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "23" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Economy" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json new file mode 100644 index 0000000000..5ab0cc036a --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA HT-PLA PRO Matte", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANHTP_00", + "filament_id": "GF_ANHTP", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "55" + ], + "filament_density": [ + "1.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA HT-PLA PRO Matte" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "245" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json new file mode 100644 index 0000000000..caa3fb10ed --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Premium Silk", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GF_ANPS_00", + "filament_id": "GF_ANPS", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "50" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "70" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "42.5" + ], + "filament_density": [ + "1.26" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Premium Silk" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "nozzle_temperature_range_high": [ + "255" + ], + "nozzle_temperature_range_low": [ + "235" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json new file mode 100644 index 0000000000..97c7026910 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Textura", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANTE_00", + "filament_id": "GF_ANTE", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "55" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "14" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Textura" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json new file mode 100644 index 0000000000..faa711ee14 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Wood", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANPLW_00", + "filament_id": "GF_ANPLW", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "54.5" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Wood" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "0" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json new file mode 100644 index 0000000000..3ffec96061 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA X-PLA High Speed", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GF_ANXPH_00", + "filament_id": "GF_ANXPH", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA X-PLA High Speed" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json new file mode 100644 index 0000000000..b8016af159 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA X-PLA", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANXP_00", + "filament_id": "GF_ANXP", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "39" + ], + "filament_density": [ + "1.25" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "14", + "14" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA X-PLA" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json new file mode 100644 index 0000000000..ad47884179 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA rPLA RE-ADD", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANRPL_00", + "filament_id": "GF_ANRPL", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "5" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "23" + ], + "filament_density": [ + "1.25" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "16" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA rPLA RE-ADD" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json new file mode 100644 index 0000000000..608be46906 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json @@ -0,0 +1,320 @@ +{ + "type": "filament", + "name": "addnorth PLA-CF Carbon Fiber", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GF_ANPCF_00", + "filament_id": "GF_ANPCF", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "37" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA-CF Carbon Fiber" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PLA-CF" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "0" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "50" + ], + "supertack_plate_temp_initial_layer": [ + "50" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.0.0.87" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json b/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json new file mode 100644 index 0000000000..8ca7e5e5ab --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PVDF Adamant S1", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANPV_00", + "filament_id": "GF_ANPV", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "25" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "146" + ], + "filament_density": [ + "1.8" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "4", + "4" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PVDF Adamant S1" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "135" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json b/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json new file mode 100644 index 0000000000..05c7af8947 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth TPU EasyFlex", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GF_ANEF_00", + "filament_id": "GF_ANEF", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "40", + "40" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.9", + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth TPU EasyFlex" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "TPU" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json new file mode 100644 index 0000000000..e6236ed79a --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth TPU Pro Matte 85A", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GF_ANTA_00", + "filament_id": "GF_ANTA", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.2", + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.2 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "40", + "40" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth TPU Pro Matte 85A" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "TPU" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json new file mode 100644 index 0000000000..6b971b7d5c --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json @@ -0,0 +1,340 @@ +{ + "type": "filament", + "name": "addnorth TPU Pro Matte 95A", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GF_ANTM_00", + "filament_id": "GF_ANTM", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "40", + "40" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.9", + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.3 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "40", + "40" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth TPU Pro Matte 95A" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "TPU" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json b/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json index 91ce654616..57646a32c1 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.20mm Standard @BBL X1C", + "renamed_from": "0.20mm Bambu Support W @BBL X1C", "inherits": "fdm_process_single_0.20", "from": "system", "setting_id": "GP004", diff --git a/resources/profiles/Blocks.json b/resources/profiles/Blocks.json index 46df2204ef..269391c4c3 100644 --- a/resources/profiles/Blocks.json +++ b/resources/profiles/Blocks.json @@ -1,6 +1,6 @@ { "name": "Blocks", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Blocks configurations", "machine_model_list": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic ABS.json b/resources/profiles/Blocks/filament/Blocks Generic ABS.json index abb5c988dc..db6ee6f3c9 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ABS.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ABS.json @@ -85,10 +85,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json index d6d5a092ef..6836bee45e 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json @@ -85,10 +85,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic ASA.json b/resources/profiles/Blocks/filament/Blocks Generic ASA.json index a3fa2a86e8..5601ef2264 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ASA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ASA.json @@ -85,10 +85,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json index 47732a6c9d..a145a7f31d 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json @@ -91,10 +91,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PA.json b/resources/profiles/Blocks/filament/Blocks Generic PA.json index edaee826f4..9c385d7cdb 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PA.json @@ -16,10 +16,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PC.json b/resources/profiles/Blocks/filament/Blocks Generic PC.json index a6519b1c0d..9d4e153f27 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PC.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PC.json @@ -16,10 +16,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PETG.json b/resources/profiles/Blocks/filament/Blocks Generic PETG.json index 0c38a3155d..8bfeaed6b9 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PETG.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PETG.json @@ -87,14 +87,11 @@ "BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.2 nozzle", - "BLOCKS Pro S100", "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json index 7568cdf5af..5928bc953e 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json @@ -22,10 +22,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PLA.json b/resources/profiles/Blocks/filament/Blocks Generic PLA.json index 3f3838e22f..bc8c34fc26 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PLA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PLA.json @@ -45,14 +45,11 @@ "BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.2 nozzle", - "BLOCKS Pro S100", "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PVA.json b/resources/profiles/Blocks/filament/Blocks Generic PVA.json index 2719cfe661..becd53db6c 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PVA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PVA.json @@ -16,10 +16,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic TPU.json b/resources/profiles/Blocks/filament/Blocks Generic TPU.json index 5c04853ee8..decdf2eaf1 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic TPU.json +++ b/resources/profiles/Blocks/filament/Blocks Generic TPU.json @@ -60,14 +60,11 @@ "BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.2 nozzle", - "BLOCKS Pro S100", "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json index f59ea80516..8e2a5a26ef 100644 --- a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "6", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json index a91302462b..86f9cb5adb 100644 --- a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "6", "top_shell_layers": "6", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json index 9858a56f29..fa173b2bba 100644 --- a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "5", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json index 76da4b8943..ae773410b3 100644 --- a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "5", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json index 05c2f38cc1..2c39093189 100644 --- a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json index a9a24ad042..7c02d847bc 100644 --- a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json index 03c89e4f9d..9f66196279 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json @@ -9,7 +9,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json index 823ba2be23..ec45900e1e 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "5", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json index a0d141e2cd..32beb61fe9 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json @@ -14,7 +14,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json index b1d1fafd58..2bc124f2dc 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json @@ -9,7 +9,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json index e6e44642ea..9a9bfb2f49 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "5", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json index e6ff123bcd..d9d6895c3d 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json index 53086d13f2..4a21f69535 100644 --- a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json index 50391de058..6744554909 100644 --- a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json index e6d345c957..7f4af4528f 100644 --- a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json index 65cab8c4dc..0b3b324664 100644 --- a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json index 52b7bee402..0cef66fb5a 100644 --- a/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "4", "layer_height": "0.30", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json index f26d3e9dbd..bbb74c97a9 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.3", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json index 0d6d423748..26c4b0773b 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json index 6aaf2e307c..704d355221 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json index 8569bca91a..8820018b9d 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "4", "layer_height": "0.30", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json index be91067ae8..d2a815e849 100644 --- a/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.30", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json index 934c3d265b..ebecec49b8 100644 --- a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json index 1e0a5ca06c..05c4c06e22 100644 --- a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json index 8dcca94dc5..91311d8009 100644 --- a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json index a2589181e4..18d38c7c34 100644 --- a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "3", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json index 244963461b..6aec880584 100644 --- a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json index b2b329f234..b4359ae990 100644 --- a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json index 985ba6b534..45fdd61179 100644 --- a/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "2", "layer_height": "0.40", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json index 16a65d9d33..177b620e51 100644 --- a/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "4", "layer_height": "0.40", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json index 65d693fb6a..c5909e2b21 100644 --- a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json index 4b73f9d9a3..6e286f3309 100644 --- a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "3", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json index 29e1cde191..fc1a875d67 100644 --- a/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "4", "layer_height": "0.50", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json index d3308312a3..6b59b1c101 100644 --- a/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.50", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json index 9090e3fa21..80e3ba5649 100644 --- a/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.50", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json index 955a530165..d9e56aa672 100644 --- a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json @@ -10,7 +10,6 @@ "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json index 861ceb43e4..e0d5a486de 100644 --- a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json @@ -10,7 +10,6 @@ "bottom_shell_layers": "3", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json index a78632274c..e59174620f 100644 --- a/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.60", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json index 3baa554cbc..598534c050 100644 --- a/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.60", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json index 1b94ce0260..905bb32a48 100644 --- a/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.70", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json index fa7cc6f49e..49eaf2c7b9 100644 --- a/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "3", "layer_height": "0.70", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json index 7d8d9cad65..df6d97a9d7 100644 --- a/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json @@ -9,7 +9,6 @@ "top_shell_layers": "2", "layer_height": "0.80", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json b/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json index d9eb0a4508..51ecf6c306 100644 --- a/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json +++ b/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json @@ -9,11 +9,8 @@ "bridge_flow": "0.95", "brim_width": "5", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.6 nozzle", - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle", - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "print_sequence": "by layer", diff --git a/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json b/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json index 79303aa65c..10089234ee 100644 --- a/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json +++ b/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json @@ -5,11 +5,8 @@ "from": "system", "instantiation": "false", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_line_width": "0.82", diff --git a/resources/profiles/Chuanying.json b/resources/profiles/Chuanying.json index 31cc614a2d..19d5c9b7b5 100644 --- a/resources/profiles/Chuanying.json +++ b/resources/profiles/Chuanying.json @@ -1,7 +1,7 @@ { "name": "Chuanying", "url": "", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Chuanying configurations", "machine_model_list": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json b/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json index d9a05782e4..5ff81a93e1 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json @@ -19,13 +19,7 @@ "compatible_printers": [ "Chuanying X1 0.4 Nozzle", "Chuanying X1 0.6 Nozzle", - "Chuanying X1 0.8 Nozzle", - "Chuanying Adventurer 5M 0.4 Nozzle", - "Chuanying Adventurer 5M 0.6 Nozzle", - "Chuanying Adventurer 5M 0.8 Nozzle", - "Chuanying Adventurer 5M Pro 0.4 Nozzle", - "Chuanying Adventurer 5M Pro 0.6 Nozzle", - "Chuanying Adventurer 5M Pro 0.8 Nozzle" + "Chuanying X1 0.8 Nozzle" ], "compatible_printers_condition": "", "compatible_prints": [], diff --git a/resources/profiles/Comgrow.json b/resources/profiles/Comgrow.json index 51ca3951e3..da7d0e29f6 100644 --- a/resources/profiles/Comgrow.json +++ b/resources/profiles/Comgrow.json @@ -1,6 +1,6 @@ { "name": "Comgrow", - "version": "02.04.00.02", + "version": "02.04.00.03", "force_update": "0", "description": "Comgrow configurations", "machine_model_list": [ @@ -50,10 +50,6 @@ "name": "0.20mm Standard @Comgrow T500 0.6", "sub_path": "process/0.20mm Standard @Comgrow T500 0.6.json" }, - { - "name": "0.20mm Standard @Comgrow T500 1.0", - "sub_path": "process/0.20mm Standard @Comgrow T500 1.0.json" - }, { "name": "0.24mm Draft @Comgrow T500 0.4", "sub_path": "process/0.24mm Draft @Comgrow T500 0.4.json" diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json deleted file mode 100644 index 483335cda9..0000000000 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "type": "process", - "name": "0.20mm Standard @Comgrow T500 1.0", - "inherits": "fdm_process_comgrow_common", - "from": "system", - "setting_id": "2lOjEPJ5JELGadG3", - "instantiation": "true", - "adaptive_layer_height": "1", - "reduce_crossing_wall": "0", - "layer_height": "0.24", - "max_travel_detour_distance": "0", - "bottom_surface_pattern": "monotonic", - "bottom_shell_layers": "2", - "bottom_shell_thickness": "0", - "bridge_flow": "0.85", - "bridge_speed": "25", - "brim_width": "0", - "brim_object_gap": "0", - "compatible_printers_condition": "", - "print_sequence": "by layer", - "bridge_no_support": "0", - "draft_shield": "disabled", - "elefant_foot_compensation": "0.1", - "enable_arc_fitting": "0", - "outer_wall_line_width": "1.0", - "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "1.0", - "infill_direction": "45", - "sparse_infill_density": "15%", - "sparse_infill_pattern": "crosshatch", - "initial_layer_line_width": "1.0", - "initial_layer_print_height": "0.28", - "infill_combination": "0", - "sparse_infill_line_width": "1.0", - "infill_wall_overlap": "23%", - "interface_shells": "0", - "ironing_flow": "15%", - "ironing_spacing": "0.25", - "ironing_speed": "15", - "ironing_type": "no ironing", - "reduce_infill_retraction": "1", - "detect_overhang_wall": "1", - "overhang_1_4_speed": "0", - "overhang_2_4_speed": "20", - "overhang_3_4_speed": "15", - "overhang_4_4_speed": "10", - "inner_wall_line_width": "1.0", - "wall_loops": "2", - "print_settings_id": "", - "raft_layers": "0", - "seam_position": "aligned", - "skirt_distance": "3", - "skirt_height": "2", - "skirt_loops": "2", - "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", - "spiral_mode": "0", - "standby_temperature_delta": "-5", - "enable_support": "0", - "resolution": "0.012", - "support_type": "normal(auto)", - "support_style": "grid", - "support_on_build_plate_only": "0", - "support_top_z_distance": "0.15", - "support_filament": "0", - "support_line_width": "1.0", - "support_interface_loop_pattern": "0", - "support_interface_filament": "0", - "support_interface_top_layers": "3", - "support_interface_bottom_layers": "-1", - "support_interface_spacing": "0.2", - "support_interface_speed": "100%", - "support_base_pattern": "rectilinear", - "support_base_pattern_spacing": "0.2", - "support_speed": "60", - "support_threshold_angle": "30", - "support_object_xy_distance": "60%", - "tree_support_branch_angle": "40", - "tree_support_wall_count": "0", - "detect_thin_wall": "1", - "top_surface_pattern": "monotonicline", - "top_surface_line_width": "1.0", - "top_shell_layers": "2", - "top_shell_thickness": "0.8", - "initial_layer_speed": "25", - "initial_layer_infill_speed": "80", - "outer_wall_speed": "50", - "inner_wall_speed": "60", - "internal_solid_infill_speed": "60", - "top_surface_speed": "40", - "gap_infill_speed": "60", - "sparse_infill_speed": "50", - "travel_speed": "80", - "enable_prime_tower": "1", - "wipe_tower_no_sparse_layers": "0", - "prime_tower_width": "60", - "xy_hole_compensation": "0", - "xy_contour_compensation": "0", - "seam_gap": "5%", - "compatible_printers": [ - "Comgrow T500 1.0 nozzle" - ] -} diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index 8f4afaceb5..f90648d256 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -1,6 +1,6 @@ { "name": "Creality", - "version": "02.03.02.74", + "version": "02.03.02.75", "force_update": "0", "description": "Creality configurations", "machine_model_list": [ @@ -4034,6 +4034,14 @@ "name": "Creality Ender-5 Max 0.4 nozzle", "sub_path": "machine/Creality Ender-5 Max 0.4 nozzle.json" }, + { + "name": "Creality Ender-5 Max 0.6 nozzle", + "sub_path": "machine/Creality Ender-5 Max 0.6 nozzle.json" + }, + { + "name": "Creality Ender-5 Max 0.8 nozzle", + "sub_path": "machine/Creality Ender-5 Max 0.8 nozzle.json" + }, { "name": "Creality Ender-5 Plus 0.4 nozzle", "sub_path": "machine/Creality Ender-5 Plus 0.4 nozzle.json" diff --git a/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json index c85a9ed7fb..0514484af8 100644 --- a/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json @@ -153,6 +153,7 @@ "material_flow_dependent_temperature": "0", "material_flow_temp_graph": "[[3.0,220],[5.0,240],[10.0,250]]", "pressure_advance": "0.05", + "filament_id": "06101", "support_material_interface_fan_speed": "-1", "compatible_printers": [ "Creality Ender-5 Max 0.4 nozzle", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json index fb8b684ca2..420946637a 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json @@ -113,6 +113,6 @@ "initial_layer_jerk": "7", "travel_jerk": "7", "compatible_printers": [ - "Creality CR-10SE 0.2 nozzle" + "Creality CR-10 SE 0.2 nozzle" ] } diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json index dbb03f982c..c01491ecfa 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.12mm Fine @Creality Ender3V3SE 0.4", + "renamed_from": "0.12mm Fine @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", "setting_id": "W68mSPdmat2rCXuD", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json index fca0842a89..052142f6ec 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.16mm Optimal @Creality Ender3V3SE 0.4", + "renamed_from": "0.16mm Optimal @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", "setting_id": "jvnrh3jh6Btbs1Ja", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json index 8ef18f22fc..a5ea94dfcc 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.20mm Standard @Creality Ender3V3SE 0.4", + "renamed_from": "0.20mm Standard @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", "setting_id": "YLkw9eyyK7cm97ek", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json index 909172c14b..003a8287ae 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.20mm Standard @Creality K1 SE", + "renamed_from": "0.20mm Fast @Creality K1 SE 0.4", "inherits": "fdm_process_creality_common", "from": "system", "setting_id": "eR9pRC1qPENNx8U9", @@ -264,4 +265,4 @@ "wipe_tower_extra_spacing": "100%", "wipe_tower_rotation_angle": "0", "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70" -} \ No newline at end of file +} diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json index 6b750b66c1..beefae6aa5 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.24mm Draft @Creality Ender3V3SE 0.4", + "renamed_from": "0.24mm Draft @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", "setting_id": "Hg10EUNCLMEYYBN1", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json index 1ef9c0d23f..600550ddc5 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.48mm Draft @Creality K1C", + "renamed_from": "0.48mm Draft @Creality K1C (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", "setting_id": "qaiff3f8gSQ1GVj1", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json index 5287c675c4..c2ba7dfa97 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json @@ -2,6 +2,7 @@ "type": "filament", "setting_id": "pKzSR8XeyyUDbrNW", "name": "Generic PETG PRO @Elegoo", + "renamed_from": "Elegoo Generic PETG PRO", "from": "system", "instantiation": "true", "inherits": "Generic PETG @base", diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json index e47738f33a..45c67d8876 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Ginger Generic PETG", + "renamed_from": "Ginger Generic rPETG", "inherits": "fdm_filament_common", "from": "system", "setting_id": "ue95N2e65rdp5K6c", diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json index 4f06396086..8038a710c0 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Ginger Generic PLA", + "renamed_from": "Ginger Generic rPLA", "inherits": "fdm_filament_common", "from": "system", "setting_id": "Z1scjKDBFoDaTa2C", diff --git a/resources/profiles/MagicMaker.json b/resources/profiles/MagicMaker.json index aa542ca7f6..ede555b66c 100644 --- a/resources/profiles/MagicMaker.json +++ b/resources/profiles/MagicMaker.json @@ -1,6 +1,6 @@ { "name": "MagicMaker", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "MagicMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json index bb0eeafbc1..b56e29914f 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json @@ -110,6 +110,6 @@ "travel_acceleration": "10000", "travel_speed": "300", "compatible_printers": [ - "MM hqs sf 0.4 nozzle" + "MM hqs SF 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena.json b/resources/profiles/OrcaArena.json index 1a31ac393e..c649cf3e6b 100644 --- a/resources/profiles/OrcaArena.json +++ b/resources/profiles/OrcaArena.json @@ -1,7 +1,7 @@ { "name": "Orca Arena Printer", "url": "", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Orca Arena configuration files", "machine_model_list": [ diff --git a/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json index c523f9d118..6094cd8748 100644 --- a/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "8hA0aiO1Qtv9IfeR", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json b/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json index 7eeb047bad..bf86dc0727 100644 --- a/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json @@ -6,7 +6,6 @@ "setting_id": "t6ZUh6RIxH5i7Ju0", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json index 3cd96eb834..3fc7023735 100644 --- a/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "AnDHc3M6fQLAl6VE", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json index 738a5b15e5..88e6fcc7ad 100644 --- a/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "Z4u3mxJ72aSZDIxB", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json b/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json index 0e4eb56c4b..6247866b62 100644 --- a/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json @@ -6,7 +6,6 @@ "setting_id": "orfsZJWNnKXKdxaZ", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json index 8387067418..07bc4c2c10 100644 --- a/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "GO4dmyDkhygncuJZ", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json index aaa7977707..8aed263410 100644 --- a/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "MVY5JxFxbdSUWTOW", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json b/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json index 48b9a73569..41fa924295 100644 --- a/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json @@ -6,7 +6,6 @@ "setting_id": "KGSeKT36RuDzR3E6", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json index 1787003456..77dadbf538 100644 --- a/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "IbPMWoSXjuZxo5po", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json index 0890099421..53ea2b1a9e 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json @@ -15,7 +15,6 @@ "support_interface_filament": "0", "enable_prime_tower": "1", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json index 8065a312e5..d0c2031acd 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json @@ -6,7 +6,6 @@ "setting_id": "vKHHMGciyRPz96ys", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json index 1341747d28..ee901caa2e 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json @@ -9,7 +9,6 @@ "wall_loops": "6", "sparse_infill_density": "25%", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json b/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json index 1032f70b45..699f45deee 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json @@ -6,7 +6,6 @@ "setting_id": "A3tBfYESL5BUa6az", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json index 6533c7b6a1..32786a465d 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "EHZbaCSjWI2NuLBb", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json index 444689ccb0..95ed3be57d 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "YUmFXao5txOnlhO6", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json b/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json index c2f4fb1869..9a38db80af 100644 --- a/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json @@ -6,7 +6,6 @@ "setting_id": "Q03WAuYXUC4h4Vyk", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json index 24710670e8..20d5bc0dca 100644 --- a/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json @@ -8,7 +8,6 @@ "wall_loops": "4", "sparse_infill_density": "25%", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json index a0673a65ec..2438ba8d71 100644 --- a/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "B1M42JYHlcp5aUoq", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json index 486db25408..04a6431b1f 100644 --- a/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "N5ONn0pY2DO8xlFq", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json index cfe7f6cdc5..ea6aed50dc 100644 --- a/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "aKOq8cZ3LHNl61tR", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json index c3346b84fd..079f2d6c0f 100644 --- a/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "ZcviTCabCemJLEEa", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json index a33f4875ce..49de0404c6 100644 --- a/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json @@ -6,7 +6,6 @@ "setting_id": "tqiu1hNVhXEsBBig", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json index 09d32605c0..c16448b1e4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json @@ -18,5 +18,5 @@ "5" ], "compatible_printers": [], - "renamed_from": "Elegoo PETG PRO" + "renamed_from": "Elegoo PETG PRO;Elegoo PETG Pro @System" } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json index e593e9d944..92b7cb43ef 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json @@ -33,5 +33,5 @@ "250" ], "compatible_printers": [], - "renamed_from": "Elegoo Rapid PETG;Elegoo Rapid PETG+" + "renamed_from": "Elegoo Rapid PETG;Elegoo Rapid PETG+;Elegoo RAPID PETG;Elegoo RAPID PETG+" } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json index cea129f125..f19e51bcf3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json @@ -45,5 +45,5 @@ "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" ], "compatible_printers": [], - "renamed_from": "Elegoo Rapid PLA+" + "renamed_from": "Elegoo Rapid PLA+;Elegoo RAPID PLA+" } diff --git a/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json b/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json index 92a6a01b54..100057e25b 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json +++ b/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Peopoly Generic PLA", + "renamed_from": "Peopoly Generic PLA 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", "setting_id": "KNsVV4dvEWAAkzDE", diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json index 935de537be..113b085c96 100644 --- a/resources/profiles/Prusa.json +++ b/resources/profiles/Prusa.json @@ -1,6 +1,6 @@ { "name": "Prusa", - "version": "02.04.00.02", + "version": "02.04.00.03", "force_update": "0", "description": "Prusa configurations", "machine_model_list": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json index 248fec014e..1a7cb2de7f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json @@ -11,8 +11,6 @@ "Prusa MK4S 0.3 nozzle", "Prusa MK4S 0.4 nozzle", "Prusa MK4S 0.5 nozzle", - "Prusa MK4S HF0.25 nozzle", - "Prusa MK4S HF0.3 nozzle", "Prusa MK4S HF0.4 nozzle", "Prusa MK4S HF0.5 nozzle" ], diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json index 5831a94e2c..9b3eeedca3 100644 --- a/resources/profiles/Qidi.json +++ b/resources/profiles/Qidi.json @@ -1,6 +1,6 @@ { "name": "Qidi", - "version": "02.04.00.05", + "version": "02.04.00.06", "force_update": "0", "description": "Qidi configurations", "machine_model_list": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json index 49320e218a..5a6b2f07b2 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json index fee65970b0..1a6930ff43 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json index 09f1fb1695..9ceb5904ff 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json index 4dae9d8980..c1b4ec3fc1 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json @@ -46,9 +46,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json index ba727b25b8..e97ce167f1 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json index 5014051e99..ca2475da91 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json index dd01a68668..95434aff3a 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json index a21fcdd1b8..ea5ef9b75d 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json index 5116b08e50..3d978affa5 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json index c2a838f36e..37749f7ca1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json index d81164ca79..7aea599422 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json index d18a295fe2..2a465f6e24 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json index f62408c77a..ffb2cc0e34 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json @@ -46,9 +46,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json index cb8360eb88..e6b90b25f2 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json index 6f795a2d1a..6a763393a7 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json index 88654fc93f..679eb2b2f1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json index 9c7fd6a7f0..b891604161 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json index ad2f0ea5ca..af0f830e19 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json index 70eea238a7..3fb6ca6406 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json index 343532d893..403311644b 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json @@ -13,9 +13,6 @@ "0.018" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json index e607261a7b..5d43601751 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json @@ -16,9 +16,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json index 5245a44f18..028e0adeb3 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json index e8cd86f5c7..f6989b46b5 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json @@ -13,9 +13,6 @@ "0.017" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json index 7d4f71ce12..c15b896bde 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json @@ -13,9 +13,6 @@ "0.009" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json index 01350e1ea5..24c3e1cf0e 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json index 61c0284750..13684caa4b 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json @@ -13,9 +13,6 @@ "0.018" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json index dc21b3a5de..8112c07176 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json @@ -16,9 +16,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json index 5906642a85..a52b240410 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json index 6a6146b45c..f18131f02b 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json @@ -13,9 +13,6 @@ "0.017" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json index 0f34d71be3..93bcd56559 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json @@ -13,9 +13,6 @@ "0.009" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json index 75ce27f9d1..e2d1d05e99 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json index 39a07cf95e..dfb6609b1c 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "Bambu ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json index e2c3030e3b..2b36f967cf 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "yHD2P97YYI869y1a", "name": "Bambu ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "yHD2P97YYI869y1a", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json index 10ec6383a0..e2f06e9934 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "dIUVKJDEofMGqc8C", "name": "Bambu ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "dIUVKJDEofMGqc8C", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json index 58aaacd95b..2c13e2c8e4 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "0leYv1TdNe38wFpf", "name": "Bambu ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "0leYv1TdNe38wFpf", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json index 28665dc9c8..c8444cefc5 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "BvoaoxjqBQLvupeM", "name": "Bambu ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "BvoaoxjqBQLvupeM", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json index 72d1927919..d1898e4363 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json index 66001efe72..6a28da194b 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", "name": "Bambu PETG@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json index 51ba15b52f..42067817a2 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DR6lPjo6HXfJPRev", "name": "Bambu PETG @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "DR6lPjo6HXfJPRev", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json index 7b9782ef8f..8a896b3329 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "abyo9tUNfJ41WD2x", "name": "Bambu PETG @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "abyo9tUNfJ41WD2x", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json index 9865c50726..2fae6cf452 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cG6FXCNr8n34Asel", "name": "Bambu PETG @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "cG6FXCNr8n34Asel", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json index a708271c03..73c64a15e5 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "3Opgt1lYHnCWi4G6", "name": "Bambu PETG @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "3Opgt1lYHnCWi4G6", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json index fb888aace6..b1f2cdde9f 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "Bambu PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json index c019944137..12285e7c4d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "WIoSfzFsVr63PIJn", "name": "Bambu PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "WIoSfzFsVr63PIJn", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json index b82b0a8823..e161dece7d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "6R2VF4VRx4OsEAIr", "name": "Bambu PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "6R2VF4VRx4OsEAIr", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json index d74f7260b9..71e19f220f 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4nf4gNkkvFnDbzRa", "name": "Bambu PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "4nf4gNkkvFnDbzRa", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json index ca5a2cbccf..530a3c736d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "CHcUut3zMsRJAIcx", "name": "Bambu PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "CHcUut3zMsRJAIcx", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json index 58d59acd15..9e42298338 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json index 5da1d44234..88edeb6155 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_11", "name": "Generic ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json index dda60ce5c0..207cf1e0b4 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "fcId8eFG20nodipB", "name": "Generic ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "fcId8eFG20nodipB", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json index fb3f1312e7..451c335f10 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "nCmyUKILQpR1nypd", "name": "Generic ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "nCmyUKILQpR1nypd", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json index 8a739d319d..d791bd5a0a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "7wsHMKJwQfUfZ3za", "name": "Generic ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "7wsHMKJwQfUfZ3za", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json index 52abfdd912..b9013037ea 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "XLORH5X2VLIxTozv", "name": "Generic ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "XLORH5X2VLIxTozv", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json index e312c30d89..55a834093d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_23", "name": "Generic PC@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_23", + "instantiation": "false", "box_temperature_range_high": [ "65" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json index 1f0164a7ea..4e87bf0e05 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "khy9tY2jZWHSlIYt", "name": "Generic PC @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "khy9tY2jZWHSlIYt", + "instantiation": "true", "filament_flow_ratio": [ "0.94" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json index 2ae7390dce..223c79e125 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Wcm3rVsaUpou9xRq", "name": "Generic PC @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "Wcm3rVsaUpou9xRq", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json index a0309f3090..35810c1389 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "8pHle7WRU4FL2qfo", "name": "Generic PC @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "8pHle7WRU4FL2qfo", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json index 10e997a5ac..9475d0540e 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ymIxEf9ioip57TML", "name": "Generic PC @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "ymIxEf9ioip57TML", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json index 474110b39a..5a8d64615a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json index bb5626f5af..88c5c926ab 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_41", "name": "Generic PETG@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json index 4ca9c116b9..caafd9a2b4 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "IcynzuX5ojXgX2dk", "name": "Generic PETG @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "IcynzuX5ojXgX2dk", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json index 5a357083f9..dd81e8a652 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "7QauCi8rhighWkri", "name": "Generic PETG @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "7QauCi8rhighWkri", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json index f24c9ab3f2..4c15643367 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "AM1y4FYs7fv4WTTo", "name": "Generic PETG @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "AM1y4FYs7fv4WTTo", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json index 87c4b09afc..a7b4dafa9f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "b3TpL9kGWf1wSydw", "name": "Generic PETG @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "b3TpL9kGWf1wSydw", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json index f9166759aa..82423a614d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_1", "name": "Generic PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_1", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json index 2f4f15b1a9..b30e1859f4 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "CWSMY19Jhd6LzFUN", "name": "Generic PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "CWSMY19Jhd6LzFUN", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json index 42f22ee9b7..2f542cae4b 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "kraVpglrBGD9sQyx", "name": "Generic PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "kraVpglrBGD9sQyx", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json index 8e515fb705..5baec42a5c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "0DL2rwUIpvOFPKE0", "name": "Generic PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "0DL2rwUIpvOFPKE0", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json index 28d0b656fc..4bab1ef889 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "wtOTxeDyt3j7HsQD", "name": "Generic PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "wtOTxeDyt3j7HsQD", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json index 89d1dd4273..1254b1d53a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_4", "name": "Generic PLA Silk@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json index 460e6f45db..98e493a89b 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "tsr5C6eghwRIitda", "name": "Generic PLA Silk @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@Q2C-Series", + "from": "system", + "setting_id": "tsr5C6eghwRIitda", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json index edfc93a77a..70493f1386 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5V4coBYC2JEZQSbX", "name": "Generic PLA Silk @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@Q2C-Series", + "from": "system", + "setting_id": "5V4coBYC2JEZQSbX", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json index b9c00254ae..83d77e0781 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "Generic PLA+@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json index 5d881e5f44..6590492654 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cP5qtEGISpluvrXW", "name": "Generic PLA+ @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "cP5qtEGISpluvrXW", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json index b15b57a2fa..880fa72b0d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "INOTrdxOY3ewHs3Z", "name": "Generic PLA+ @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "INOTrdxOY3ewHs3Z", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json index aa86b84deb..baeeb621f8 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "QWeloGY9T9GkaFK1", "name": "Generic PLA+ @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "QWeloGY9T9GkaFK1", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json index 3658a4752a..0d932a6f55 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "C2oqTFXtdd2clnM3", "name": "Generic PLA+ @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "C2oqTFXtdd2clnM3", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json index e85ca39375..107d337155 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json @@ -78,4 +78,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json index 2be0d857de..8e867a26f2 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_50", "name": "Generic TPU 95A@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_50", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -78,4 +78,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json index 279d732847..07aa43c4bc 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "HeDaMTs4C6suBJvO", "name": "Generic TPU 95A @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@Q2C-Series", + "from": "system", + "setting_id": "HeDaMTs4C6suBJvO", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json index c3e782b1ca..15440badb9 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TOHG37PMxN9MzVub", "name": "Generic TPU 95A @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@Q2C-Series", + "from": "system", + "setting_id": "TOHG37PMxN9MzVub", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json index 27f3b05a1c..1ef0d0537c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "HqURiXvBLRyvLAxP", "name": "Generic TPU 95A @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@Q2C-Series", + "from": "system", + "setting_id": "HqURiXvBLRyvLAxP", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json index 66271afb20..c55ccaa1a9 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json index 9db585481a..81736dcccf 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "HATCHBOX ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json index 67c130c50a..f9893bbfa6 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "UesqbiCMHRmklDRk", "name": "HATCHBOX ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "UesqbiCMHRmklDRk", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json index d9c305e08a..3d2b88ff36 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "mEWH2YlONmNpempZ", "name": "HATCHBOX ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "mEWH2YlONmNpempZ", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json index dd3d976943..13d451d40d 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "khy95fONrq7reiSC", "name": "HATCHBOX ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "khy95fONrq7reiSC", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json index 82b5e8b9de..48393718de 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "sHLcYLMcJTimp3ru", "name": "HATCHBOX ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "sHLcYLMcJTimp3ru", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json index 44d0907bb8..10f557a994 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json index e70a0e8bda..fd739c1779 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", "name": "HATCHBOX PETG@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json index 6d115fbb6f..c8a14456ab 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "bZMXQWqTu8l3MYJi", "name": "HATCHBOX PETG @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "bZMXQWqTu8l3MYJi", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json index f693e1013a..94fa73262a 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DekQbcVeKQg9v5Zr", "name": "HATCHBOX PETG @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "DekQbcVeKQg9v5Zr", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json index cdf86d5334..81287ec494 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "zVhQ76dkj0h0CQYk", "name": "HATCHBOX PETG @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "zVhQ76dkj0h0CQYk", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json index 7bffd6c302..b57b5063c9 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Kzuc0pyjxtH6gI13", "name": "HATCHBOX PETG @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "Kzuc0pyjxtH6gI13", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json index 7446be6e2a..4af2d4f816 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "HATCHBOX PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json index e7909d67c2..7403dd2e6e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "11BHrX7imCTIzPP4", "name": "HATCHBOX PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "11BHrX7imCTIzPP4", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json index 5b680b590e..c944c6727e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "VSgatTEDBtv2agXN", "name": "HATCHBOX PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "VSgatTEDBtv2agXN", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json index ecb8c50339..f920c660f1 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "24LLJRtj2iivS6vL", "name": "HATCHBOX PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "24LLJRtj2iivS6vL", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json index 437b7bb3da..64c86e9767 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "HRdiQVVY5WjNXLYx", "name": "HATCHBOX PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "HRdiQVVY5WjNXLYx", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json index 7011359a4b..5c2067f362 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json index 98d987be8d..a6639b3999 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "Overture ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json index a73afb4255..47f9bcbcaa 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "VYySI4tCOnfTintD", "name": "Overture ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "VYySI4tCOnfTintD", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json index f7013864a0..78ddc8d476 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "JBDqdi6986HRAEXu", "name": "Overture ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "JBDqdi6986HRAEXu", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json index ec16053469..c9fbc3b6b9 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "zfd7hNsD4gyvYjmL", "name": "Overture ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "zfd7hNsD4gyvYjmL", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json index e9c17844d1..82c04c4130 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "dIK2bO9muHCLmfLE", "name": "Overture ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "dIK2bO9muHCLmfLE", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json index 16d59f7135..986e906c0c 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "Overture PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json index d0a478cc84..0057d79f2e 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "sR59dH6Xa2wZYoju", "name": "Overture PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "sR59dH6Xa2wZYoju", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json index 5a086039ca..40773ccdd1 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "bwwB2ntJKEDSM6nC", "name": "Overture PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "bwwB2ntJKEDSM6nC", + "instantiation": "true", "pressure_advance": [ "0.037" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json index 4af8a954ba..0297ea0c7d 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Bo9y4EOopqDnhhLP", "name": "Overture PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "Bo9y4EOopqDnhhLP", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json index c40f182132..94d5dcbef2 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "G7hnYFzduUlF4ecC", "name": "Overture PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "G7hnYFzduUlF4ecC", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json index 6b4a385323..b1af2354b5 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json index 0e912714a1..6d6c27b6b1 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "PolyLite ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json index aaca305b61..1a09049ecd 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "dO4VcqJOzHGsGTMp", "name": "PolyLite ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "dO4VcqJOzHGsGTMp", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json index 1d40193bfb..58131134b9 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "1IndaP5mD4ThRTLJ", "name": "PolyLite ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "1IndaP5mD4ThRTLJ", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json index af0dbf4d6d..c2906f30f1 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TUafLspNks0QbMsJ", "name": "PolyLite ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "TUafLspNks0QbMsJ", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json index b405b2c329..173dfb62cc 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Zl7BXkcC643FrwXj", "name": "PolyLite ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "Zl7BXkcC643FrwXj", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json index 7baead0ac4..c42c4aee25 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "PolyLite PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json index f6f72ae2af..a0b3a1e558 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "70CH88wjjjp10p1v", "name": "PolyLite PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "70CH88wjjjp10p1v", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json index 808daed644..62642b48b6 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "55gNJLcwSNCpFRLt", "name": "PolyLite PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "55gNJLcwSNCpFRLt", + "instantiation": "true", "pressure_advance": [ "0.037" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json index 5f521634c7..0e70b612bf 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "lfJLLN90UJoDH6DQ", "name": "PolyLite PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "lfJLLN90UJoDH6DQ", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json index c34dbd8c73..d0a812de02 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ZZWSUwsp8FdHoO50", "name": "PolyLite PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "ZZWSUwsp8FdHoO50", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json index adc083302c..62dc85146b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json index f8bf048e38..be98105a39 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_14", "name": "QIDI ABS Odorless@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_14", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json index 33443ab95d..5fadadb693 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GxP0Whwhk4Cnxdu0", "name": "QIDI ABS Odorless @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "GxP0Whwhk4Cnxdu0", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json index f4037f59e8..53ecb12131 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "XF8GYACz5foSzwPu", "name": "QIDI ABS Odorless @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "XF8GYACz5foSzwPu", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json index 7ef82c2bac..6e8d7b8f21 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "S2ZKcCRBaIhCz34L", "name": "QIDI ABS Odorless @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "S2ZKcCRBaIhCz34L", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json index 7080c73d69..4d01f4dfa0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "MKJrQNyu3db94dD8", "name": "QIDI ABS Odorless @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "MKJrQNyu3db94dD8", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json index 6137bc75a1..9d7e3d0e7f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json index a11c5b01bc..da40111dc4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_11", "name": "QIDI ABS Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json index 3e4c7cb795..7414cc2398 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qBCJHTf8UYAhtS9Z", "name": "QIDI ABS Rapido @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "qBCJHTf8UYAhtS9Z", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json index cd0bb491a0..78296a14ee 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TKmusP00QtJde1tv", "name": "QIDI ABS Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "TKmusP00QtJde1tv", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json index c15f087c60..bc0547202e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "hjWAIr9vj3lifTuF", "name": "QIDI ABS Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "hjWAIr9vj3lifTuF", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json index 73d7cb17be..e29659bf00 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "PseIYzUGugsYqd0n", "name": "QIDI ABS Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "PseIYzUGugsYqd0n", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json index 8a59afe0bb..46ccb9e691 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json index fba8b9596d..afd2b355cb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_13", "name": "QIDI ABS Rapido Metal@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_13", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json index 8b5375d3cf..4ea9d4de5b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "aThu2ymueO59okjd", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "aThu2ymueO59okjd", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json index b91e0ee5b8..f716a877af 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "U9oVegNbFTAg0hI1", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "U9oVegNbFTAg0hI1", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json index 3b90d3d363..26430a7e04 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "1ZuCqDtoglHX0n3E", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "1ZuCqDtoglHX0n3E", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json index 1030b71c83..6ee3923750 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "AtfdZuYrdD1DIwFP", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "AtfdZuYrdD1DIwFP", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json index bdf566541f..a20b7bb2c1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json index 4f09b67dc6..5e6df7914d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_12", "name": "QIDI ABS-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_12", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json index b9ec956682..49f9ae3111 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "aOg4RWjgsKxj4d64", "name": "QIDI ABS-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@Q2C-Series", + "from": "system", + "setting_id": "aOg4RWjgsKxj4d64", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json index 96b26f3bb1..ab98a3b777 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "3S7sFSqdn1XuuXHd", "name": "QIDI ABS-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@Q2C-Series", + "from": "system", + "setting_id": "3S7sFSqdn1XuuXHd", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json index bfbc0aa7da..62adde1284 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "fJC5bkmVshJcddR1", "name": "QIDI ABS-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@Q2C-Series", + "from": "system", + "setting_id": "fJC5bkmVshJcddR1", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json index 3f385e1e20..88e5d964e7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json index 33b5374fec..c68044bfaf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_18", "name": "QIDI ASA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_18", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json index d4dd95c885..f69af8550d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4trzdB5fUzgXxLr6", "name": "QIDI ASA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "4trzdB5fUzgXxLr6", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json index c94814e3c7..04837378d7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "2IWByRV9P9UE0erA", "name": "QIDI ASA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "2IWByRV9P9UE0erA", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json index f6f0b4deca..7ee05b965c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "b8YU4smViFgry570", "name": "QIDI ASA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "b8YU4smViFgry570", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json index 03d9b03942..806e473ec2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "1TgAeftVfWoXHcKD", "name": "QIDI ASA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "1TgAeftVfWoXHcKD", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json index 71869ca1b5..b449906758 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json @@ -123,4 +123,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json index 536cee0b3c..3c810517f6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_19", "name": "QIDI ASA-Aero@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_19", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -120,4 +120,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json index cc4df5b074..195ab6336b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "oLZHWEc83L05TKNQ", "name": "QIDI ASA-Aero @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-Aero@Q2C-Series", + "from": "system", + "setting_id": "oLZHWEc83L05TKNQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json index f7a738d8fb..4d2165ffd1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_20", "name": "QIDI ASA-CF@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json index 094e71797e..99e1043b46 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_20", "name": "QIDI ASA-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json index 54afbdc668..7eb6667692 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "kLkuuwlQ2g8ApMCR", "name": "QIDI ASA-CF @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2-Series", + "from": "system", + "setting_id": "kLkuuwlQ2g8ApMCR", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json index 174d9f2cfd..6c9d5cf3c9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qTg48cwBkLGytsgu", "name": "QIDI ASA-CF @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2-Series", + "from": "system", + "setting_id": "qTg48cwBkLGytsgu", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json index 25ad05f80a..112657bad9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "UbgM0Eu2AGwYjS8s", "name": "QIDI ASA-CF @Qidi Q2 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2-Series", + "from": "system", + "setting_id": "UbgM0Eu2AGwYjS8s", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json index a6ef7644d4..d8564ecc4a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "3c5EBxNEeYAgyIUe", "name": "QIDI ASA-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2C-Series", + "from": "system", + "setting_id": "3c5EBxNEeYAgyIUe", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json index 5aa60a991f..3ff312b625 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4sIBlrLnfparzSFk", "name": "QIDI ASA-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2C-Series", + "from": "system", + "setting_id": "4sIBlrLnfparzSFk", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json index e88a3eda1f..3b6a221de9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4LCHbc83VORH1Hmk", "name": "QIDI ASA-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2C-Series", + "from": "system", + "setting_id": "4LCHbc83VORH1Hmk", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json index b5601c41da..c15cf5ca65 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json index e351368f14..3dbd928222 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_27", "name": "QIDI PA12-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_27", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json index 9f3401b5b3..22a84e33fa 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "1u8IFKUCIggct4ah", "name": "QIDI PA12-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@Q2C-Series", + "from": "system", + "setting_id": "1u8IFKUCIggct4ah", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json index c9cd8ee8e1..4155ad71ed 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "czMRbKZQEfYYX2SC", "name": "QIDI PA12-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@Q2C-Series", + "from": "system", + "setting_id": "czMRbKZQEfYYX2SC", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json index 38e8ca89e3..162c8a3e2f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qevQtRgFRnkNJlbU", "name": "QIDI PA12-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@Q2C-Series", + "from": "system", + "setting_id": "qevQtRgFRnkNJlbU", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json index b52f31c315..fe908219a5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json index 03b0f27f2a..d76e92349e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_30", "name": "QIDI PAHT-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_30", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json index 2eac92f0c0..89b01339e5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "19JEwv2utbuBcOd2", "name": "QIDI PAHT-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@Q2C-Series", + "from": "system", + "setting_id": "19JEwv2utbuBcOd2", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json index 6d04cdad4c..b3449a2ac7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cQvObLcttxZG7V6I", "name": "QIDI PAHT-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@Q2C-Series", + "from": "system", + "setting_id": "cQvObLcttxZG7V6I", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json index 208c06e64d..02e35ec9df 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "bUKhJUHlLLhYyq0v", "name": "QIDI PAHT-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@Q2C-Series", + "from": "system", + "setting_id": "bUKhJUHlLLhYyq0v", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json index 8a76c25532..e694512bc7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json index af89065e6c..cb8c2640a3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_31", "name": "QIDI PAHT-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_31", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json index 0fa9c0ef16..31a10c7f72 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "vxdq7Nwg4esRFNu9", "name": "QIDI PAHT-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@Q2C-Series", + "from": "system", + "setting_id": "vxdq7Nwg4esRFNu9", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json index ea111115fd..81b6907f8b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "O3fRuZz1uLd5xrgg", "name": "QIDI PAHT-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@Q2C-Series", + "from": "system", + "setting_id": "O3fRuZz1uLd5xrgg", + "instantiation": "true", "pressure_advance": [ "0.015" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json index 39b97843fd..c54ee9ceec 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "fF4PUJX9cgyqBj5s", "name": "QIDI PAHT-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@Q2C-Series", + "from": "system", + "setting_id": "fF4PUJX9cgyqBj5s", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json index f7bfd3bfd6..d4639142de 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json index a9a7f91093..b0e25aa480 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_34", "name": "QIDI PC-ABS-FR@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_34", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json index bf20fd4b8c..9ee10c8fd2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "MV0BnLVqbpTmN4pY", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC-ABS-FR@Q2C-Series", + "from": "system", + "setting_id": "MV0BnLVqbpTmN4pY", + "instantiation": "true", "pressure_advance": [ "0.042" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json index c97d92cd39..f1b5dcfd8d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "fpfPAd5ZXdxRIrcy", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC-ABS-FR@Q2C-Series", + "from": "system", + "setting_id": "fpfPAd5ZXdxRIrcy", + "instantiation": "true", "pressure_advance": [ "0.031" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json index a5bd083d10..16739f1322 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ZqkkkXPjbuCIpnMv", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC-ABS-FR@Q2C-Series", + "from": "system", + "setting_id": "ZqkkkXPjbuCIpnMv", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json index f0af9e1f40..9dd9600bf9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_36", "name": "QIDI PEBA 95A@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_36", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -93,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json index 241738fe65..e1c1441da1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_36", "name": "QIDI PEBA 95A@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_36", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -93,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json index dc324d3ea2..9bac0f5d4a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "A8c8z50h8irCTzgy", "name": "QIDI PEBA 95A @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2-Series", + "from": "system", + "setting_id": "A8c8z50h8irCTzgy", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json index 444af78ff9..5f2b92705b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "UKXpo4G5hGGZsn3A", "name": "QIDI PEBA 95A @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2-Series", + "from": "system", + "setting_id": "UKXpo4G5hGGZsn3A", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json index 9d2006b8c1..7aa853435d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "vJ2SMIO0mxCouFWb", "name": "QIDI PEBA 95A @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2C-Series", + "from": "system", + "setting_id": "vJ2SMIO0mxCouFWb", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json index 7969106f59..cc307111ca 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "w9NXPAGugtCOi4g4", "name": "QIDI PEBA 95A @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2C-Series", + "from": "system", + "setting_id": "w9NXPAGugtCOi4g4", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json index fe35c0b840..211f90a3a6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json index 5ab5930eb1..59f7315e29 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_37", "name": "QIDI PET-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_37", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json index 42ea7a834d..3421801cf6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "bqf0nv6TibBm2zIy", "name": "QIDI PET-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@Q2C-Series", + "from": "system", + "setting_id": "bqf0nv6TibBm2zIy", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json index e68ba6334d..d66e9e34af 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ZyRe7KewhXKNHXUR", "name": "QIDI PET-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@Q2C-Series", + "from": "system", + "setting_id": "ZyRe7KewhXKNHXUR", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json index bd6a78e34e..43e288d25f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Oz5J6NHYJpy0Qhm2", "name": "QIDI PET-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@Q2C-Series", + "from": "system", + "setting_id": "Oz5J6NHYJpy0Qhm2", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json index 2de43e370e..85fc6f5847 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json index 66c090696d..c7e66b7972 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_38", "name": "QIDI PET-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_38", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json index 5be6ed7b52..b7b373581a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "zeqpSRbhDK45RDxT", "name": "QIDI PET-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@Q2C-Series", + "from": "system", + "setting_id": "zeqpSRbhDK45RDxT", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json index e049945b83..e16b9e19aa 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TKco12fyuw1wZ8yF", "name": "QIDI PET-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@Q2C-Series", + "from": "system", + "setting_id": "TKco12fyuw1wZ8yF", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json index e4b0805376..2ef8dac1a2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "0zEwjck3KMuCUV65", "name": "QIDI PET-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@Q2C-Series", + "from": "system", + "setting_id": "0zEwjck3KMuCUV65", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json index 057b427271..ba87c9a3b7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json index fd0687c6b9..a08ec8af68 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_39", "name": "QIDI PETG Basic@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_39", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json index ffd95ccd28..fa133ab110 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cmDsiuMabyDU7XoL", "name": "QIDI PETG Basic @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "cmDsiuMabyDU7XoL", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json index 029a8255a7..7ed12927a4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "myllwvTQwpkLwYOJ", "name": "QIDI PETG Basic @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "myllwvTQwpkLwYOJ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json index f7545df975..ae210b4526 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "uJRjUoz9NvS8UNbZ", "name": "QIDI PETG Basic @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "uJRjUoz9NvS8UNbZ", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json index 29968a5c10..2403813ee6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4GmsTinCKy3DJIRj", "name": "QIDI PETG Basic @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "4GmsTinCKy3DJIRj", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json index 328af0661d..9815a8eb64 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json index 0eb330fc47..1c50f16b51 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_41", "name": "QIDI PETG Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json index 4688dd740b..3a1e0feda8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GGulRExJ8O22prw5", "name": "QIDI PETG Rapido @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "GGulRExJ8O22prw5", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json index f0467ebc00..0a1066eecd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "aPlfkb8XVHh2ImCZ", "name": "QIDI PETG Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "aPlfkb8XVHh2ImCZ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json index c1281c715a..868f11f254 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "JKLS99QCyNqP6HpN", "name": "QIDI PETG Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "JKLS99QCyNqP6HpN", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json index 29852440cd..02a49b12bb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "91jRijgkVsBVcseN", "name": "QIDI PETG Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "91jRijgkVsBVcseN", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json index 7c208b4b10..b8f8c4ec5f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json index eebbf9eb2a..3f272efaee 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_40", "name": "QIDI PETG Tough@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_40", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json index bb19426f61..eb3348ae01 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "rv26NO5Wot3ze5vT", "name": "QIDI PETG Tough @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "rv26NO5Wot3ze5vT", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json index 413e1ebc22..84195ef6d4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GZWWBRvZwhVvxHqg", "name": "QIDI PETG Tough @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "GZWWBRvZwhVvxHqg", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json index b5b8d2d588..ac8acabcda 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "3rOOjrvu6WClnoDc", "name": "QIDI PETG Tough @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "3rOOjrvu6WClnoDc", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json index 21a4edbcef..d2a0f96fe0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "h2JK23LvFSKngIoU", "name": "QIDI PETG Tough @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "h2JK23LvFSKngIoU", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json index b8541224c4..64a56ca919 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json index 984eead1b4..6010799fff 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_45", "name": "QIDI PETG Translucent@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_45", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json index b823909287..345e993b73 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "e2GEG1ZDjxFPcf3T", "name": "QIDI PETG Translucent @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "e2GEG1ZDjxFPcf3T", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json index c5625da33b..c33f7317fb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "D1FXyPnXPva8J8GK", "name": "QIDI PETG Translucent @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "D1FXyPnXPva8J8GK", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json index 4d5f78d671..3979d32a39 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "93FRGhgEpKKEV1Us", "name": "QIDI PETG Translucent @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "93FRGhgEpKKEV1Us", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json index c6c343efd8..784175ab2a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "KTBwATMsWZDT9JSd", "name": "QIDI PETG Translucent @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "KTBwATMsWZDT9JSd", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json index fa007aeb0d..475b8f2a78 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json index 1a3bfa76e5..4ba3a94c25 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_42", "name": "QIDI PETG-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_42", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json index 1d54a2ef38..f3a969c7d5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "a3TeQs2LPkvVHhuQ", "name": "QIDI PETG-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@Q2C-Series", + "from": "system", + "setting_id": "a3TeQs2LPkvVHhuQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json index 76bd4c30ce..fe6b63b5ac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "mIQgT9i0sI6nUk2K", "name": "QIDI PETG-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@Q2C-Series", + "from": "system", + "setting_id": "mIQgT9i0sI6nUk2K", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json index 2c26e4f62c..a22fcd12e1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "e9OFaUogg3JwJ8p1", "name": "QIDI PETG-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@Q2C-Series", + "from": "system", + "setting_id": "e9OFaUogg3JwJ8p1", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json index a0cbef07ca..d510eb7fe8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json index 660a2a4d06..353d2eb3ee 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_43", "name": "QIDI PETG-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_43", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json index a8116f9b0b..7a9d1eec5f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "88oBSw0H0cVUieZQ", "name": "QIDI PETG-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@Q2C-Series", + "from": "system", + "setting_id": "88oBSw0H0cVUieZQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json index 8023d9d26e..4a22fd5257 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4tN3kEMXaHjBBxwF", "name": "QIDI PETG-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@Q2C-Series", + "from": "system", + "setting_id": "4tN3kEMXaHjBBxwF", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json index d13eb6d356..0a492ed9bd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Gf491nomAtcjhAvJ", "name": "QIDI PETG-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@Q2C-Series", + "from": "system", + "setting_id": "Gf491nomAtcjhAvJ", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json index ea9bfcb1cf..4597470db3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_7", "name": "QIDI PLA Basic@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_7", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json index 30afead70d..2947822c17 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "wpQKjPe8jRwQ3WBI", "name": "QIDI PLA Basic @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "wpQKjPe8jRwQ3WBI", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json index 66d36a13b9..86445026a4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "jlX2OfKRNzFI682k", "name": "QIDI PLA Basic @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "jlX2OfKRNzFI682k", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json index fe3ec70e7e..2e707d20f6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "oxEN8DYf9kkKS8qg", "name": "QIDI PLA Basic @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "oxEN8DYf9kkKS8qg", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json index 59a50b46e7..6261c8e6ac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "gEs3guvsWgjmTsHz", "name": "QIDI PLA Basic @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "gEs3guvsWgjmTsHz", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json index a487a0a004..824ff1d846 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_8", "name": "QIDI PLA Matte Basic@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_8", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json index 5ff9cf828f..f6a7b35d95 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "FYKnzaxIcuv1gjpL", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "FYKnzaxIcuv1gjpL", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json index 0e7b800526..943994cfea 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "KMss48gyKoL4j5zn", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "KMss48gyKoL4j5zn", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json index f2560dbdec..544cf55818 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "bausfUncYuKRihBt", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "bausfUncYuKRihBt", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json index df852a8a74..d39bee62b2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5yqKP3fPaQr6GJvk", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "5yqKP3fPaQr6GJvk", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json index 48c549235e..d3afa29ba4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_1", "name": "QIDI PLA Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_1", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json index eea346db62..8616e8692b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "jwbytNUPLwz51w3j", "name": "QIDI PLA Rapido @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "jwbytNUPLwz51w3j", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json index 620b080842..d45e2ab2a0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "YRPfFnPdVsDfaafq", "name": "QIDI PLA Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "YRPfFnPdVsDfaafq", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json index ceefe5e06e..bfef1b2a40 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "eGM1To6M3Nonr9WC", "name": "QIDI PLA Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "eGM1To6M3Nonr9WC", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json index 69c4b11a20..85774af891 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "NMRzlpF5RoggSMUB", "name": "QIDI PLA Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "NMRzlpF5RoggSMUB", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json index 644d98f36c..b8cf01a822 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_2", "name": "QIDI PLA Rapido Matte@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_2", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json index 252cd5e317..df760ae937 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "RJQBUrDfhHtKj6XI", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "RJQBUrDfhHtKj6XI", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json index 47ef0abb3f..b5f36950fe 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "tH0zT7nTGNX82gV3", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "tH0zT7nTGNX82gV3", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json index 3986d88e73..021e11cc55 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "H9XIQdpvredK4doN", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "H9XIQdpvredK4doN", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json index 238e5ea341..f8b8746941 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ejvNsJ67Q3e5GQLN", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "ejvNsJ67Q3e5GQLN", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json index 9ae9864bd7..2e3295cd86 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_3", "name": "QIDI PLA Rapido Metal@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_3", + "instantiation": "false", "filament_type": [ "PLA" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json index 83db10e234..a1e4c8976d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "6zLncXZ6JCWQWc69", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "6zLncXZ6JCWQWc69", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json index b8c7d0f1f1..19da87c65c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "mn6J5ZBTjcr4cINP", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "mn6J5ZBTjcr4cINP", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json index e71aca74bb..d4f0ba4005 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "mGnSMw4Pg5llLuLo", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "mGnSMw4Pg5llLuLo", + "instantiation": "true", "pressure_advance": [ "0.020" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json index dfc789c39a..c041fe4d0c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cAFmKJHPAshlluST", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "cAFmKJHPAshlluST", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json index fc484b6ead..9d07d3375e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_4", "name": "QIDI PLA Rapido Silk@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json index d79972344a..d42e11b9ae 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "UiribWz6dXt3jzup", "name": "QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@Q2C-Series", + "from": "system", + "setting_id": "UiribWz6dXt3jzup", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json index c658450bc2..5e7bbaefdc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "yZ3G2LyyN2iP9RTu", "name": "QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@Q2C-Series", + "from": "system", + "setting_id": "yZ3G2LyyN2iP9RTu", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json index e472c6c14b..67832cba33 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_5", "name": "QIDI PLA-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_5", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json index 8b683ddf12..d582cc6eac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "n8Oq2FaJ7D6LodTC", "name": "QIDI PLA-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@Q2C-Series", + "from": "system", + "setting_id": "n8Oq2FaJ7D6LodTC", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json index 530b7ffa84..1f11e861fd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "lmelEA4doZJ4NESg", "name": "QIDI PLA-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@Q2C-Series", + "from": "system", + "setting_id": "lmelEA4doZJ4NESg", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json index 0f93d1446c..8b28308b25 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "YCDOpbUtf3MQEMW9", "name": "QIDI PLA-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@Q2C-Series", + "from": "system", + "setting_id": "YCDOpbUtf3MQEMW9", + "instantiation": "true", "filament_max_volumetric_speed": [ "18" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json index b660907a06..dc4e1fd221 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json index f6c81f01cc..2f27693f04 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_44", "name": "QIDI PPS-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_44", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json index 942442c970..7bb6e1ff78 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "gskPF1tpzSKrb6zt", "name": "QIDI PPS-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@Q2C-Series", + "from": "system", + "setting_id": "gskPF1tpzSKrb6zt", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json index d37c2ad801..8376eb7332 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "E6qMYOhwcaLXpho8", "name": "QIDI PPS-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@Q2C-Series", + "from": "system", + "setting_id": "E6qMYOhwcaLXpho8", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json index ae6c940b29..7a72aacab7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "PyswXDniz2jG2qcr", "name": "QIDI PPS-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@Q2C-Series", + "from": "system", + "setting_id": "PyswXDniz2jG2qcr", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json index 5b856a470e..f1de945749 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_46", "name": "QIDI PPS-GF@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_46", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -114,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json index 24edfefc73..3fda14c322 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_46", "name": "QIDI PPS-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_46", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json index 5e0f3658dd..fb481f5704 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "VNDS3Q7xaoZKbu92", "name": "QIDI PPS-GF @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2-Series", + "from": "system", + "setting_id": "VNDS3Q7xaoZKbu92", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json index e82f6c1a54..45e0e4e8bc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Pmt9r3KLuDxb36mX", "name": "QIDI PPS-GF @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2-Series", + "from": "system", + "setting_id": "Pmt9r3KLuDxb36mX", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json index b922eaf99b..798ff1fee2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "x4hehtim7NYSSmaf", "name": "QIDI PPS-GF @Qidi Q2 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2-Series", + "from": "system", + "setting_id": "x4hehtim7NYSSmaf", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json index 5f6cb39bb4..c93e3ec0e6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DXf7va4b0pLFJAI6", "name": "QIDI PPS-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2C-Series", + "from": "system", + "setting_id": "DXf7va4b0pLFJAI6", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json index 91dfdf41bc..6478df6ddc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "FigvAJn38PfjU9LR", "name": "QIDI PPS-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2C-Series", + "from": "system", + "setting_id": "FigvAJn38PfjU9LR", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json index 3bb98f4f5a..33a66769c3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "6pOI4AUFTKKOtmdi", "name": "QIDI PPS-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2C-Series", + "from": "system", + "setting_id": "6pOI4AUFTKKOtmdi", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json index 7d3df895ae..7e12181e9d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json index 7a263101f0..1dfffa1bd7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_32", "name": "QIDI Support For PAHT@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_32", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json index 4f7c6a3527..38dbf5a936 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4lFfvmONQVUb7PSr", "name": "QIDI Support For PAHT @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@Q2C-Series", + "from": "system", + "setting_id": "4lFfvmONQVUb7PSr", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json index 0be3a07ba3..694ea5743a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "a8HNWpPJjrCglxFd", "name": "QIDI Support For PAHT @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@Q2C-Series", + "from": "system", + "setting_id": "a8HNWpPJjrCglxFd", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json index 045df06e14..56f87e457a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "rSb8eojmAbRLKH5t", "name": "QIDI Support For PAHT @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@Q2C-Series", + "from": "system", + "setting_id": "rSb8eojmAbRLKH5t", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json index e0f9db452a..25dca621ad 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json index 4a29cb7f0f..f126a37f8e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_33", "name": "QIDI Support For PET/PA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_33", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json index fa401f781d..67c5633682 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "G3r0SQ4Ms90nYDmW", "name": "QIDI Support For PET/PA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@Q2C-Series", + "from": "system", + "setting_id": "G3r0SQ4Ms90nYDmW", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json index 33bb3ec8a0..f717441c2d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5ZtHiuELFCXDNEZq", "name": "QIDI Support For PET/PA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@Q2C-Series", + "from": "system", + "setting_id": "5ZtHiuELFCXDNEZq", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json index ad2242cc58..121e87d77f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qM1c1tU9XPi4CiyV", "name": "QIDI Support For PET/PA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@Q2C-Series", + "from": "system", + "setting_id": "qM1c1tU9XPi4CiyV", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json index 5393003f87..b31512f047 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json @@ -81,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json index 8280fbdea7..dd9b428fed 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_50", "name": "QIDI TPU 95A-HF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_50", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -81,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json index 1e7d7eb482..eef0ac7e52 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "fDu71TIyslwqfIIC", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@Q2C-Series", + "from": "system", + "setting_id": "fDu71TIyslwqfIIC", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json index 00bc79f4a0..af7204ccc4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "X3Bq50h7OpyI5cwA", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@Q2C-Series", + "from": "system", + "setting_id": "X3Bq50h7OpyI5cwA", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json index faff7dea65..2e9de3a04a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4U8zmwkMTYVejPbB", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@Q2C-Series", + "from": "system", + "setting_id": "4U8zmwkMTYVejPbB", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json index be5148f681..38a1c1883a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json @@ -90,4 +90,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json index 81b31b797d..525aebb88f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_49", "name": "QIDI TPU-Aero@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_49", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -90,4 +90,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json index e4e1048735..d3f3d9b0db 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "A1IqfJw7OqImKRHJ", "name": "QIDI TPU-Aero @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@Q2C-Series", + "from": "system", + "setting_id": "A1IqfJw7OqImKRHJ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json index 15a8ce05fe..7f087fc206 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "XeIEGj6ExW5qlZ1J", "name": "QIDI TPU-Aero @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@Q2C-Series", + "from": "system", + "setting_id": "XeIEGj6ExW5qlZ1J", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json index ed14acab0f..5e995b72be 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_15", "name": "QIDI TPU-GF@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_15", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -81,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json index 928aac6715..b17c65d3e7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_15", "name": "QIDI TPU-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_15", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -81,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json index 1766326a1d..99616b8c77 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "d6oaFn6pmW0P34cY", "name": "QIDI TPU-GF @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2-Series", + "from": "system", + "setting_id": "d6oaFn6pmW0P34cY", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json index 689d9a86a8..906eba9410 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "K8X4uDSRbm3mPQEq", "name": "QIDI TPU-GF @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2-Series", + "from": "system", + "setting_id": "K8X4uDSRbm3mPQEq", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json index d2eff0e7ab..f639c76378 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "s2xF6tQzUnKYjAUQ", "name": "QIDI TPU-GF @Qidi Q2 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2-Series", + "from": "system", + "setting_id": "s2xF6tQzUnKYjAUQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json index f062c3cc83..72aad58783 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "NsOYbxppmw9kQgvx", "name": "QIDI TPU-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2C-Series", + "from": "system", + "setting_id": "NsOYbxppmw9kQgvx", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json index 97f52e1a6c..49cb7de124 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "1GHTHZoint67pkmJ", "name": "QIDI TPU-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2C-Series", + "from": "system", + "setting_id": "1GHTHZoint67pkmJ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json index e559383456..a56f66ced3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "XtqGcST9qlQZzfHa", "name": "QIDI TPU-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2C-Series", + "from": "system", + "setting_id": "XtqGcST9qlQZzfHa", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json index 3139b843c9..5b9881cb9f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json @@ -96,4 +96,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json index 144f055c32..7f11a52b7c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_24", "name": "QIDI UltraPA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_24", + "instantiation": "false", "box_temperature_range_high": [ "55" ], @@ -96,4 +96,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json index 12982db3ca..3439b3f086 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Sp4WwVIaTBVVDnDc", "name": "QIDI UltraPA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@Q2C-Series", + "from": "system", + "setting_id": "Sp4WwVIaTBVVDnDc", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json index 6faeea6437..5343f85817 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "OXR5eUAK3x6nPOM3", "name": "QIDI UltraPA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@Q2C-Series", + "from": "system", + "setting_id": "OXR5eUAK3x6nPOM3", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json index 596f1316e5..74753c4b81 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "VbDeId9i65hJlNYr", "name": "QIDI UltraPA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@Q2C-Series", + "from": "system", + "setting_id": "VbDeId9i65hJlNYr", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json index 71dfd883fb..194fe42853 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json index 0fd084680a..1593decfea 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_26", "name": "QIDI UltraPA-CF25@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_26", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json index c064ac9ba4..a689c8ce7f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ggjTMm3h4Arw55tk", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@Q2C-Series", + "from": "system", + "setting_id": "ggjTMm3h4Arw55tk", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json index eb7136af9a..120360350a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ZOb1u0Ah3o9PI6I8", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@Q2C-Series", + "from": "system", + "setting_id": "ZOb1u0Ah3o9PI6I8", + "instantiation": "true", "pressure_advance": [ "0.022" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json index afd7dee706..8dbffcb651 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "mQuwjxr0XlcacKg5", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@Q2C-Series", + "from": "system", + "setting_id": "mQuwjxr0XlcacKg5", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json index 556dc01252..5a7882bd68 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_6", "name": "QIDI WOOD Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_6", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json index b1348b7aed..b7d4a9a6b0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "F750rXpmPM7beVmY", "name": "QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@Q2C-Series", + "from": "system", + "setting_id": "F750rXpmPM7beVmY", + "instantiation": "true", "pressure_advance": [ "0.044" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json index 082ac7d793..410393c710 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "fMxaTtxy9Zsksahc", "name": "QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@Q2C-Series", + "from": "system", + "setting_id": "fMxaTtxy9Zsksahc", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json index 747c76fe12..239fbfcb4f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ILkX32CTmrBR01UC", "name": "QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@Q2C-Series", + "from": "system", + "setting_id": "ILkX32CTmrBR01UC", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json index fb1ae0ca89..9340c8b402 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json index 5e272b3e75..651828c165 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json index b49c26fbc6..951ebcacd6 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json @@ -31,9 +31,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json index 8d00ff5d33..eda2713729 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json index 1b40a92d7a..96ad8b214c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json index 9edf8f842a..7678378711 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json index e8393047dd..552acb8b6e 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json @@ -25,9 +25,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json index aa05221df4..695dfa0702 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json @@ -16,9 +16,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json index 0a1d5c9545..b3f2dbf64d 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json @@ -31,9 +31,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF.json b/resources/profiles/Qidi/filament/QIDI ABS-GF.json index 08f59fbf97..a6d53698c7 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF.json @@ -64,14 +64,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json index 6d01edd178..bffe8b53c8 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json index 8f45e5f746..67eac5a65f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json index eb8a886300..d7fa79e31b 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI ASA-CF", "setting_id": "UZg7s2SVhCGDcdkA", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI ASA-CF", - "name": "QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle", "during_print_exhaust_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json index 391b25db42..4f166dfd1a 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI ASA-CF", "setting_id": "x8avbSHn73PayVfR", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI ASA-CF", - "name": "QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle", "during_print_exhaust_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json index 53cb7bdfee..7df6c822af 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle", + "inherits": "QIDI ASA-CF", "setting_id": "FagCR4bLL1ctSXax", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle" ], - "inherits": "QIDI ASA-CF", - "name": "QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle", "during_print_exhaust_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json index 1eacf83551..33af36c33b 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "T6U1oaEsA0T3ogMM", "name": "QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "T6U1oaEsA0T3ogMM", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json index 09beb03076..c549a01bb3 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "8Xm0AjRaktaNfo4o", "name": "QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "8Xm0AjRaktaNfo4o", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json index 7aa7d42800..c62d7926f9 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "4p12RphItNlfwqwT", "name": "QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "4p12RphItNlfwqwT", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json index 81a273ab26..ef993b3193 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "346HiaeZvs3BoFUb", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "346HiaeZvs3BoFUb", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json index 4d1131e3ed..d768ca7ab5 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "LROz60JZsh6GN7CK", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "LROz60JZsh6GN7CK", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json index 2526df2bf8..8eb7f15885 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "5OR8LnFPipv3h4h8", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "5OR8LnFPipv3h4h8", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json index 6fa01a68be..2bc6a5eb2e 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "0pF0sUnOWKqV3N78", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "0pF0sUnOWKqV3N78", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json index fa87cb0ea2..c8e51ef7fb 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Ag8e5im3pDAL1G7F", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "Ag8e5im3pDAL1G7F", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json index ab0da7d418..e4a4a4e6ce 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Hxv9UhjQyQbFkTc1", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "Hxv9UhjQyQbFkTc1", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json index 4142c5d027..e3d8e010cd 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "wyns97Rn3EVTl0v5", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "wyns97Rn3EVTl0v5", + "filament_id": "GFB99", + "instantiation": "true", "additional_cooling_fan_speed_unseal": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json index 2736dcc0ea..20348ce7cf 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "zituWsHG83yRR1lM", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "zituWsHG83yRR1lM", + "filament_id": "GFB99", + "instantiation": "true", "additional_cooling_fan_speed_unseal": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json index 58f0689cdb..ea8120a8d6 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "2CgI1u8NrWGqxN1C", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "2CgI1u8NrWGqxN1C", + "filament_id": "GFB99", + "instantiation": "true", "additional_cooling_fan_speed_unseal": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF.json b/resources/profiles/Qidi/filament/QIDI ASA-CF.json index 85fb38e2b7..9e1ac1c012 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_0_1_20", "name": "QIDI ASA-CF", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_common", + "from": "system", + "filament_id": "QD_0_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI ASA.json b/resources/profiles/Qidi/filament/QIDI ASA.json index 952390ed4a..bfd6c00df7 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA.json +++ b/resources/profiles/Qidi/filament/QIDI ASA.json @@ -49,24 +49,15 @@ "40" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json index c1f7e61556..a57e564ca4 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json @@ -67,14 +67,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -109,4 +104,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF.json b/resources/profiles/Qidi/filament/QIDI PA12-CF.json index 7e2745e42c..7276593388 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF.json @@ -64,14 +64,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -106,4 +101,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json index f21d9bac1b..62533cfa49 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json @@ -70,14 +70,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -112,4 +107,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json index c544698fdc..ea7f2a65c6 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json @@ -10,9 +10,6 @@ "0.016" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json index 69ae49e776..4496ed57ea 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json @@ -10,9 +10,6 @@ "0.023" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json index 806dcb1a63..1ca4105b5b 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json @@ -101,4 +101,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json index 07d12f2df7..8ef70475b3 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI PEBA 95A", "setting_id": "VNbCsg7HAvK02shi", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI PEBA 95A", - "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json index cd94ebab15..153b1c8543 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI PEBA 95A", "setting_id": "SBJaM8xcxmruL8Sx", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI PEBA 95A", - "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json index 778a6ae1df..7111d6c347 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TbhTBJp30kh8yQFL", "name": "QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A", + "from": "system", + "setting_id": "TbhTBJp30kh8yQFL", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json index 6d191276b6..4b8b7c4993 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "dU7GaenYyWsX49Hf", "name": "QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A", + "from": "system", + "setting_id": "dU7GaenYyWsX49Hf", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json index 6f8b9c1367..4695bcf9ae 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "QD_0_1_36", - "setting_id": "qkErLCeMU5ufGB0k", "name": "QIDI PEBA 95A", - "from": "system", - "instantiation": "true", "inherits": "fdm_filament_tpu", + "from": "system", + "setting_id": "qkErLCeMU5ufGB0k", + "filament_id": "QD_0_1_36", + "instantiation": "true", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF.json b/resources/profiles/Qidi/filament/QIDI PET-CF.json index e426cdf320..561c9f0929 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF.json @@ -67,14 +67,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -109,4 +104,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json index a07d1a326e..400337fbd8 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json @@ -13,8 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json index cd3c601da6..f87c252aa5 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json @@ -13,8 +13,6 @@ "0.01" ], "compatible_printers": [ - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF.json b/resources/profiles/Qidi/filament/QIDI PET-GF.json index 61fa65632b..444747342d 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF.json @@ -98,4 +98,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json index fc12164989..9aa6df6a65 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json index 4165ed02c7..5cc5b51fd3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json @@ -10,9 +10,6 @@ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json index 1620d6cd70..a4844774cc 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json @@ -10,9 +10,6 @@ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json index 48826d0703..d925f371b2 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json index 6a214eff46..e1636c5d4a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json @@ -10,9 +10,6 @@ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json index 7b5941164d..ad4044f181 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json @@ -10,9 +10,6 @@ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json index d5cdf158bf..0dfd072089 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json @@ -46,9 +46,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json index 2f7579c984..2f5838b537 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json index 5a5a9a4a4d..68706bbe3c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json index 8f169985b8..126d86f7bb 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json index 3335b5984a..79d558d34f 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json @@ -19,9 +19,6 @@ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json index df1157dcc0..02e4793b34 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json @@ -10,9 +10,6 @@ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF.json b/resources/profiles/Qidi/filament/QIDI PETG-CF.json index f3b49b6148..734b4722ca 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF.json @@ -61,14 +61,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF.json b/resources/profiles/Qidi/filament/QIDI PETG-GF.json index 1dc5312349..060219b0b0 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF.json @@ -61,14 +61,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json index da76bcd665..52c98be3a0 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json index c649d8d658..ab3cc9c974 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json index 14da2310e7..0dc39007eb 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json index 50120cf72e..25eeab9475 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json index 2168a18fa2..bbea662f87 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json index 0c1657f487..6418a8fa5e 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json index 64c3e9bf69..c316f431a1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json index c01fcd8cdb..42556d2f6b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json index 8cabbff1a5..93f8b8b239 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json index ee82976dfe..0392403caf 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json @@ -22,9 +22,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json index 6922e1e702..34bcfbab7b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json @@ -22,9 +22,6 @@ "21" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json index 218c704674..8e168e3347 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json @@ -22,9 +22,6 @@ "21" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json index 2b1a0d27ec..92d6c1a902 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json index 7a9ffd4155..26f96a21f6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json index 6089fca9f4..4a4f0ffd10 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json index f90993ad9b..dbe2d57ace 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json index be0f422692..b877e50774 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json @@ -56,4 +56,4 @@ "textured_plate_temp_initial_layer": [ "55" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json index 59d8a28bd7..6d266568a1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json @@ -10,9 +10,6 @@ "0.01" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json index 4c265e6c64..ed91757e71 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json @@ -13,9 +13,6 @@ "18" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json index 766cbc9d76..d90bd4e3c8 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json @@ -43,8 +43,6 @@ "300" ], "compatible_printers": [ - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json index 85bcda5991..20cbb98a2d 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json @@ -43,8 +43,6 @@ "300" ], "compatible_printers": [ - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF.json b/resources/profiles/Qidi/filament/QIDI PPS-CF.json index 9956719bce..13db20b99f 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF.json @@ -98,4 +98,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json index 9bfcda342b..6f520e1d27 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI PPS-GF", "setting_id": "VgQiY3csDj6bBWSk", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI PPS-GF", - "name": "QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json index 11af4ff9fb..d7e1fa61d5 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI PPS-GF", "setting_id": "8hFaMBYD7pnmsZWd", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI PPS-GF", - "name": "QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json index fabf608b4b..d3adec2da2 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle", + "inherits": "QIDI PPS-GF", "setting_id": "BcrvpHAPx0FBvOi3", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle" ], - "inherits": "QIDI PPS-GF", - "name": "QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json index d33145496d..72a765d490 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "U9L7E06Sy2Wnwskl", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF", + "from": "system", + "setting_id": "U9L7E06Sy2Wnwskl", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json index ec108b2b4c..5e77b3ea7d 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "crnZYfMj2aMvTdj3", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF", + "from": "system", + "setting_id": "crnZYfMj2aMvTdj3", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json index 97b8c8b7f6..b98fc5ef13 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "MuexSudjg1ht7pBE", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF", + "from": "system", + "setting_id": "MuexSudjg1ht7pBE", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF.json b/resources/profiles/Qidi/filament/QIDI PPS-GF.json index 22115f4423..8688747e35 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "QD_0_1_46", - "setting_id": "uoOOXPpTEGa9bqhx", "name": "QIDI PPS-GF", - "from": "system", - "instantiation": "true", "inherits": "fdm_filament_pa", + "from": "system", + "setting_id": "uoOOXPpTEGa9bqhx", + "filament_id": "QD_0_1_46", + "instantiation": "true", "box_temperature_range_high": [ "65" ], @@ -125,4 +125,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json index 29a044f7cf..338628640c 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json index 1c05119853..cf18d83f80 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json index 12020a0fcb..70f7e16ecd 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json @@ -52,8 +52,6 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json index 3944b54bcf..897e274d70 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI TPU-GF", "setting_id": "GufOfCCphUDzeSo1", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI TPU-GF", - "name": "QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json index a49857f4d4..0bd0d3ce6a 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI TPU-GF", "setting_id": "nY6q9vd6lpaXiQpc", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI TPU-GF", - "name": "QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json index 2679b15ab1..528ae87a68 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", - "filament_id": "GFB99", + "name": "QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle", + "inherits": "QIDI TPU-GF", "setting_id": "67agKUajM0pFFhia", + "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle" ], - "inherits": "QIDI TPU-GF", - "name": "QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json index a0956abad6..b84207fb37 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "YPsFiwLaWWLToPfS", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF", + "from": "system", + "setting_id": "YPsFiwLaWWLToPfS", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json index 38135ff5ba..f5d627ac3a 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "jz0KDkNI4lYi5wi2", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF", + "from": "system", + "setting_id": "jz0KDkNI4lYi5wi2", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json index f11f5aeff6..00bd1f2e0e 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "R45ynb8LjuLowV3e", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF", + "from": "system", + "setting_id": "R45ynb8LjuLowV3e", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF.json b/resources/profiles/Qidi/filament/QIDI TPU-GF.json index 71de3ddcd4..af3827eb77 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "QD_0_1_15", - "setting_id": "r8sdMolKGn3b52NX", "name": "QIDI TPU-GF", - "from": "system", - "instantiation": "true", "inherits": "fdm_filament_tpu", + "from": "system", + "setting_id": "r8sdMolKGn3b52NX", + "filament_id": "QD_0_1_15", + "instantiation": "true", "filament_adhesiveness_category": [ "600" ], diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json index d0751aa6de..9ae8202bce 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json @@ -70,14 +70,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -112,4 +107,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json index 184fcd067e..60731be079 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json @@ -16,9 +16,6 @@ "0.02" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json index bb19d9a0b9..a33c51e4b6 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json @@ -16,9 +16,6 @@ "0.01" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS.json b/resources/profiles/Qidi/filament/Qidi Generic ABS.json index 31a71e8698..f0ced9aabb 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS.json @@ -52,24 +52,15 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA.json b/resources/profiles/Qidi/filament/Qidi Generic ASA.json index 9f5ea3921b..e7878476b5 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA.json @@ -40,24 +40,15 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json index 09df2572a3..880a914309 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PA.json b/resources/profiles/Qidi/filament/Qidi Generic PA.json index cfbca39398..4e1f0d20ba 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PA.json @@ -37,14 +37,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json index dd155a633e..5b7bbeb84a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json index f11b7b8737..d7a15d0bc0 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json @@ -10,9 +10,6 @@ "0.008" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC.json b/resources/profiles/Qidi/filament/Qidi Generic PC.json index 8707544fef..a0a745246e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC.json @@ -55,8 +55,6 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json index 122ddcd44a..3a668823ca 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json @@ -67,9 +67,6 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", @@ -79,15 +76,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG.json b/resources/profiles/Qidi/filament/Qidi Generic PETG.json index 11ade0545f..993b9764ba 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG.json @@ -55,24 +55,15 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json index daabd5f8c9..128da01c7e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json @@ -38,15 +38,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", @@ -73,4 +67,4 @@ "textured_plate_temp_initial_layer": [ "55" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+.json index 4d2a6d490d..cf8733d478 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+.json @@ -34,20 +34,11 @@ "220" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", - "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle" + "Qidi X-Max 3 0.4 nozzle" ] } diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json index 347dbea220..ced518b3a6 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json @@ -37,9 +37,6 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", @@ -49,15 +46,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA.json b/resources/profiles/Qidi/filament/Qidi Generic PLA.json index 51b1b0e4c8..2dc3b25203 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA.json @@ -28,20 +28,11 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", - "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle" + "Qidi X-Max 3 0.4 nozzle" ] } diff --git a/resources/profiles/Qidi/filament/Qidi Generic PVA.json b/resources/profiles/Qidi/filament/Qidi Generic PVA.json index 72fb04eeff..3479b4eb41 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PVA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PVA.json @@ -25,9 +25,6 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", @@ -37,15 +34,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json index 3856665525..d83d0599af 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json @@ -40,14 +40,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU.json b/resources/profiles/Qidi/filament/Qidi Generic TPU.json index 99091f6e70..8c57a5d28a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU.json @@ -34,14 +34,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json index e247cc7bd1..e6faf129d7 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json index 8beacd464c..ba588dc809 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json @@ -31,14 +31,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json index 79b53cd63d..875715d005 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ObaWhyOT9RNUMdI6", "name": "Bambu ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "ObaWhyOT9RNUMdI6", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json index 2fda0a076e..b284d30bd7 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "83TZ1o0skCCYg62Y", "name": "Bambu ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "83TZ1o0skCCYg62Y", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json index 4df827d40d..167ff14a45 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "e4v59EmfFFUmBihO", "name": "Bambu ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "e4v59EmfFFUmBihO", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json index ec0679bd48..2f53b5312e 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "3AQsEBmdQQWNiIO4", "name": "Bambu ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "3AQsEBmdQQWNiIO4", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json index 12f403b5dd..62e6a4204e 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "Bambu ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json index 8a56205956..0c1fc6a7a0 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "9TNhIV7wgatcYh1N", "name": "Bambu PETG @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "9TNhIV7wgatcYh1N", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json index 4eb8ad8658..81c28e3e75 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "nVBMZmiIghleaUTP", "name": "Bambu PETG @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "nVBMZmiIghleaUTP", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json index f8755d705b..0d6bc21a30 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "uUNbXyfDOU57SVNN", "name": "Bambu PETG @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "uUNbXyfDOU57SVNN", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json index 40d2053087..74dd607729 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "hrxYuEAVW4fZYJmK", "name": "Bambu PETG @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "hrxYuEAVW4fZYJmK", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json index 540ec2a828..cdfabbe5a0 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", "name": "Bambu PETG@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json index fb4cff4b0d..86bd5507f4 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "96Jkldwh5ncSfFDu", "name": "Bambu PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "96Jkldwh5ncSfFDu", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json index 459a2004fe..74a8b6befd 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "aU8ZGs9t4nFOU6gO", "name": "Bambu PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "aU8ZGs9t4nFOU6gO", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json index b2ac2772a5..af287e369b 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "NGrzUVbjJYUmUH8b", "name": "Bambu PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "NGrzUVbjJYUmUH8b", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json index 140e2df96c..1a087563a2 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "HoqzQQGC1YAYrE0K", "name": "Bambu PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "HoqzQQGC1YAYrE0K", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json index c6f987b072..9db6ab9698 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "Bambu PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json index fba3225f6c..d279972582 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "FZbHj2p2roIxznOM", "name": "Generic ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "FZbHj2p2roIxznOM", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json index ff87f48a23..3a094b95fb 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ysDcErFoFj9ed7bU", "name": "Generic ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "ysDcErFoFj9ed7bU", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json index 47f97d0f8c..da90b9cf70 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qLHOUz2Ygnup2DQB", "name": "Generic ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "qLHOUz2Ygnup2DQB", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json index dedf402f34..14f7a4c706 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "tnWPrR1DH65ueDeo", "name": "Generic ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "tnWPrR1DH65ueDeo", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json index 35acd35fd0..e01dbb5296 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_11", "name": "Generic ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json index fb4099671d..bcfe6f21a3 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "0jPfHsrKufenRV54", "name": "Generic PC @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "0jPfHsrKufenRV54", + "instantiation": "true", "filament_flow_ratio": [ "0.94" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json index 0ddf9878bc..0c16607133 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "SL8yGVK6yyh7Ce0P", "name": "Generic PC @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "SL8yGVK6yyh7Ce0P", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json index 555e4f994b..c8ecea8665 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "KNMYMJ4gcwLaJrXB", "name": "Generic PC @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "KNMYMJ4gcwLaJrXB", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json index 25a87d7047..55f5ec2e32 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "7YEkA5j3W20o8tTN", "name": "Generic PC @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "7YEkA5j3W20o8tTN", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json index 79b5ad6df7..655713b891 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_23", "name": "Generic PC@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_23", + "instantiation": "false", "box_temperature_range_high": [ "65" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json index 54be6195d1..27f9b8f7fd 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "yEnyAQ47lfdqYm0q", "name": "Generic PETG @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "yEnyAQ47lfdqYm0q", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json index f953534dfb..6ac1d60861 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "XCv5iF6yKlQSg53I", "name": "Generic PETG @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "XCv5iF6yKlQSg53I", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json index f99ba18992..a003e3aff7 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "vMG4ik94FbjX2HGU", "name": "Generic PETG @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "vMG4ik94FbjX2HGU", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json index 7d48cb368a..f07ffe5566 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "lHOyUewbi7eXOiX2", "name": "Generic PETG @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "lHOyUewbi7eXOiX2", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json index 95729f6f26..e855840148 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_41", "name": "Generic PETG@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json index 5d86c316e8..eb98e9507a 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "VHIjYrFQCcCuLx3y", "name": "Generic PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "VHIjYrFQCcCuLx3y", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json index da6649ec09..9b275f3488 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "yE9wOy1UAO2mMq9b", "name": "Generic PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "yE9wOy1UAO2mMq9b", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json index edcdc800da..77af563c8e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "q4GoIMWFilTiYsxq", "name": "Generic PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "q4GoIMWFilTiYsxq", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json index 3d68584be9..03707d096e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "K7Rs9SipNTYpW0NV", "name": "Generic PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "K7Rs9SipNTYpW0NV", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json index 61bf876a2f..a4ee80e67d 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_1", "name": "Generic PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_1", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json index 7fd5d8f4c8..eb72a9d250 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "H5WaVHBEGGXCBNCG", "name": "Generic PLA Silk @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@X-Max 4-Series", + "from": "system", + "setting_id": "H5WaVHBEGGXCBNCG", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json index 4c44f7e405..35da3b09de 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "U9QBvAi10Oy73olq", "name": "Generic PLA Silk @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@X-Max 4-Series", + "from": "system", + "setting_id": "U9QBvAi10Oy73olq", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json index d09639f39c..e83be7d908 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_4", "name": "Generic PLA Silk@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json index b3c5951634..4bf10a5dcf 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5zmqHwM0HFBxi2xH", "name": "Generic PLA+ @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "5zmqHwM0HFBxi2xH", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json index 2fee85c05a..2964658af4 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "G43aOOmnvhwXsZ3L", "name": "Generic PLA+ @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "G43aOOmnvhwXsZ3L", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json index 013e9d99b4..76fa92cb25 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "x2KsG7GA8CRgmngd", "name": "Generic PLA+ @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "x2KsG7GA8CRgmngd", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json index d8b298f5b3..bf346d72f9 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "p0gZGSbqtHedXLe4", "name": "Generic PLA+ @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "p0gZGSbqtHedXLe4", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json index 9f552d2055..924752466e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "Generic PLA+@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json index 2ad8273d99..0de6b84a22 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qBceIx6IKWOfED8g", "name": "Generic TPU 95A @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@X-Max 4-Series", + "from": "system", + "setting_id": "qBceIx6IKWOfED8g", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json index 04799caeb0..0e90822f80 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Uh1TenQIQNw4u4JD", "name": "Generic TPU 95A @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@X-Max 4-Series", + "from": "system", + "setting_id": "Uh1TenQIQNw4u4JD", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json index c0093ad634..86665a59ad 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "pkkTq8YNVI54H3nT", "name": "Generic TPU 95A @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@X-Max 4-Series", + "from": "system", + "setting_id": "pkkTq8YNVI54H3nT", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json index 1fa872badd..10a520531d 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_50", "name": "Generic TPU 95A@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_50", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -78,4 +78,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json index d364f20974..b049af2921 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "oEc7qBp8hGIUKMhs", "name": "HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "oEc7qBp8hGIUKMhs", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json index f89eeeee9e..9c9ed72cf1 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "pkguUnnJl8nPCxfU", "name": "HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "pkguUnnJl8nPCxfU", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json index 853aa2a5d1..3716bc9068 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "FMrsa95wzL2qFuLP", "name": "HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "FMrsa95wzL2qFuLP", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json index 323a0ddcfe..c4da12b133 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "JR1t0jGog7DCHEzN", "name": "HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "JR1t0jGog7DCHEzN", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json index 35434f69c7..d7e4f1c7ed 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "HATCHBOX ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json index 5349842e9f..57566fa1a0 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "sGRdg0IX4MrMGWpj", "name": "HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "sGRdg0IX4MrMGWpj", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json index feb59955cd..06daf029ea 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "WDKsFE4N46eYgxds", "name": "HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "WDKsFE4N46eYgxds", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json index c28b55a7bd..facc884298 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "U3ssAv86SBQsTGzv", "name": "HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "U3ssAv86SBQsTGzv", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json index af1affe66d..7d76bf5825 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Y5FdpTxdj2CmzU7R", "name": "HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "Y5FdpTxdj2CmzU7R", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json index 4cf0e98504..9e9abfbd09 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", "name": "HATCHBOX PETG@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json index b9379ed924..068dc22078 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "O435vUq8oUXZh0L5", "name": "HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "O435vUq8oUXZh0L5", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json index 15174b1ded..fa5d0636de 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "kjoWs9L40bAEED57", "name": "HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "kjoWs9L40bAEED57", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json index d1cdc13052..49f240f349 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "d9Zcvd5g3fN8TZw9", "name": "HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "d9Zcvd5g3fN8TZw9", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json index f082447bd7..85523eecb4 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "15ojXVF9I50YBsnG", "name": "HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "15ojXVF9I50YBsnG", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json index 42a8ad8af9..2cb6be1fc3 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "HATCHBOX PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json index d39feec3f6..8afc2ba0cf 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GCuVY57NORejEknS", "name": "Overture ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "GCuVY57NORejEknS", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json index 4296fbbeb5..0c89e039bf 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "wmt9ksAtegWWht1z", "name": "Overture ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "wmt9ksAtegWWht1z", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json index b990151e56..cc48031499 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "jDN2TUgHD6iLIZ7D", "name": "Overture ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "jDN2TUgHD6iLIZ7D", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json index 8c0a9c172c..22229cc60d 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "2EkhezFbXvWIoAZL", "name": "Overture ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "2EkhezFbXvWIoAZL", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json index a3a689a2ed..485db36e9a 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "Overture ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json index 2021327b82..5b17637aaf 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "fviMGr9MBOAvKSMl", "name": "Overture PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "fviMGr9MBOAvKSMl", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json index e60ee9fbdd..bbcec8fd61 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "3QdWBhSArEkFau2X", "name": "Overture PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "3QdWBhSArEkFau2X", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json index e830d41b28..a657b5ecf3 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "38fBe2sB0HgNFCoW", "name": "Overture PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "38fBe2sB0HgNFCoW", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json index 638efeb787..13e9783c44 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "CRiRufyTStiGQonN", "name": "Overture PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "CRiRufyTStiGQonN", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json index 513a5b3ca1..289af93715 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "Overture PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json index 30de035042..06964bd545 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "0tZA7mEPnBAdWefh", "name": "PolyLite ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "0tZA7mEPnBAdWefh", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json index 26828e39c2..0c82acba82 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "CVP2UVOtfgJoI2NW", "name": "PolyLite ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "CVP2UVOtfgJoI2NW", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json index ea4bfcfaf4..ac59a90e8c 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cO252ch3uc4X0sUb", "name": "PolyLite ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "cO252ch3uc4X0sUb", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json index 018c41ea29..bfbfc602a4 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "wADGmAQqZes67Lqy", "name": "PolyLite ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "wADGmAQqZes67Lqy", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json index 371d89eacc..215fb00a92 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", "name": "PolyLite ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json index ded9914cc7..cabcb1eeb8 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ka8gZuf48AuqSkSU", "name": "PolyLite PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "ka8gZuf48AuqSkSU", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json index 28e74e3923..d1ffbd8d5c 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "lW8UIaUPIj0pljBX", "name": "PolyLite PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "lW8UIaUPIj0pljBX", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json index 80158c1852..f22212a279 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "AvqYCDxCnR3mvEw5", "name": "PolyLite PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "AvqYCDxCnR3mvEw5", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json index 2c6d53b035..848e79c392 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "SCUFdT0Jg2I90rjB", "name": "PolyLite PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "SCUFdT0Jg2I90rjB", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json index f13ced863c..e8fe4ba7f5 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", "name": "PolyLite PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json index 0b3471f511..0364d6dfdb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "P9rZniuGhkyBT4xR", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "P9rZniuGhkyBT4xR", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json index 88932fd132..8ea6617866 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "w5Cgcs8HAWM0Gmx3", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "w5Cgcs8HAWM0Gmx3", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json index 1da14e505f..bb276f2c71 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GXg11Gby0pXOyr5J", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "GXg11Gby0pXOyr5J", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json index 83a6cb83b3..e22b270073 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "tOi3ws4LIN7tR2qs", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "tOi3ws4LIN7tR2qs", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json index e329451f0f..0b89883f41 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_14", "name": "QIDI ABS Odorless@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_14", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json index 162059643e..14a76ca31f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "oOA6I3Q7KelWtMFu", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "oOA6I3Q7KelWtMFu", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json index af63f14075..16ea4c1c25 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "WvzjNaRg6EkNgzjf", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "WvzjNaRg6EkNgzjf", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json index 7ecdcb828a..36f1e10adf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "6TTHdmjRlvqpH5IG", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "6TTHdmjRlvqpH5IG", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json index 951468d205..11a9f3103f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "X2wpQ4ikglynRcLd", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "X2wpQ4ikglynRcLd", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json index 95bcbdf733..3ba45a14dc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_11", "name": "QIDI ABS Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json index d67b0d6e84..f866e34533 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DgxYozgTj91Hs07I", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "DgxYozgTj91Hs07I", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json index e7f6850e31..be43663052 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Ri9lbsfhJ9pWPpm0", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "Ri9lbsfhJ9pWPpm0", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json index 265c1bf0fb..e006e78442 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cNyXIPAHCyRz9Okg", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "cNyXIPAHCyRz9Okg", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json index 3e0d7dd6a7..bfb6ff3503 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "JIvkxvNlR0MCJrQs", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "JIvkxvNlR0MCJrQs", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json index 5bb429b414..64dc667a44 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_13", "name": "QIDI ABS Rapido Metal@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_13", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json index 9c03598127..9485ac8bb1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "7rBwXoSZicndxSxN", "name": "QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "7rBwXoSZicndxSxN", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json index 74283eea0a..f26055a2bd 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "D1xWI85mnQvPbOuZ", "name": "QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "D1xWI85mnQvPbOuZ", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json index aa3d6099b6..a26856ff91 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "dcUYtrXA3WEz7Qw7", "name": "QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "dcUYtrXA3WEz7Qw7", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json index fb6604a691..218e883448 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_12", "name": "QIDI ABS-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_12", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json index 0a2cca8395..209c517b3c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5MVL667eGducTxlJ", "name": "QIDI ASA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "5MVL667eGducTxlJ", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json index bfb0cdf847..f7f53e4050 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "YDuJZ0iqN7SAWpTC", "name": "QIDI ASA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "YDuJZ0iqN7SAWpTC", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json index a5253cdaef..fa7b3100b2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "XpaM6LL4AaIEi5gv", "name": "QIDI ASA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "XpaM6LL4AaIEi5gv", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json index c178f358bf..7b0380d6e2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "1OZ3ubOH5ohBw93u", "name": "QIDI ASA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "1OZ3ubOH5ohBw93u", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json index dc0e0a267d..c6937e0080 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_18", "name": "QIDI ASA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_18", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json index dd37bb5010..fc4c361ccd 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "jco0JlspeZFkBZGm", "name": "QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-Aero@X-Max 4-Series", + "from": "system", + "setting_id": "jco0JlspeZFkBZGm", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json index e082ad92ea..3a66fdea86 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_19", "name": "QIDI ASA-Aero@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_19", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -123,4 +123,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json index 86f68d4bee..62aa5bb086 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5xQW6rGlxlsZ4WhW", "name": "QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "5xQW6rGlxlsZ4WhW", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json index 8327f5b921..98e56b9e57 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "s5YLcZKFAILv0wjd", "name": "QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "s5YLcZKFAILv0wjd", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json index 2af4e37ed7..40e163ae44 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "8lzlWAr4uET3GYfl", "name": "QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "8lzlWAr4uET3GYfl", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json index 42cc1566c8..3cc72406a4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_20", "name": "QIDI ASA-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json index 81756a7c90..eff7e6cfbc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "bvcofqyzQpeYVWTm", "name": "QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@X-Max 4-Series", + "from": "system", + "setting_id": "bvcofqyzQpeYVWTm", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json index 72e1e03a40..b9d207d293 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "SVtAHcmEht7OlGN8", "name": "QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@X-Max 4-Series", + "from": "system", + "setting_id": "SVtAHcmEht7OlGN8", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json index f060ca5d5e..66d4b39799 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "bScZQ1EI4JxMsx3C", "name": "QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@X-Max 4-Series", + "from": "system", + "setting_id": "bScZQ1EI4JxMsx3C", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json index e18c8aea7d..e217915579 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_27", "name": "QIDI PA12-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_27", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json index 93797a0128..b2eaf9d024 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DQcIvG8x4BpZjdQA", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@X-Max 4-Series", + "from": "system", + "setting_id": "DQcIvG8x4BpZjdQA", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json index 5e605fc9b3..0644c5ecc0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "XgMFDDBcAUniNXKJ", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@X-Max 4-Series", + "from": "system", + "setting_id": "XgMFDDBcAUniNXKJ", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json index 1e78202989..f0f3884f82 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "BGadPdyFw29nwAsN", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@X-Max 4-Series", + "from": "system", + "setting_id": "BGadPdyFw29nwAsN", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json index 1228b841d3..83cd3e27cb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_30", "name": "QIDI PAHT-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_30", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json index daf1de3fea..9025d9735b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "EK8Y1A5fxjCeEYUC", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@X-Max 4-Series", + "from": "system", + "setting_id": "EK8Y1A5fxjCeEYUC", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json index a37e607a3a..a9891c8028 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "a7EgUbRW0oiTv2h6", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@X-Max 4-Series", + "from": "system", + "setting_id": "a7EgUbRW0oiTv2h6", + "instantiation": "true", "pressure_advance": [ "0.015" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json index 398f8528c1..08fde22204 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Awxpatb5e911W0ob", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@X-Max 4-Series", + "from": "system", + "setting_id": "Awxpatb5e911W0ob", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json index ffba1289bd..8a35c7330b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_31", "name": "QIDI PAHT-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_31", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json index 6ecad2e89d..52926118e1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "EpS2lRAk9UncJ0Qh", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC/ABS-FR@X-Max 4-Series", + "from": "system", + "setting_id": "EpS2lRAk9UncJ0Qh", + "instantiation": "true", "pressure_advance": [ "0.042" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json index 98b1d44897..a3ef17c438 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Jw5thBn1X17HLO9z", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC/ABS-FR@X-Max 4-Series", + "from": "system", + "setting_id": "Jw5thBn1X17HLO9z", + "instantiation": "true", "pressure_advance": [ "0.031" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json index afb0136958..431f459c4f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "BWOz40OlG1iMj6Vw", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC/ABS-FR@X-Max 4-Series", + "from": "system", + "setting_id": "BWOz40OlG1iMj6Vw", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json index 4c1a7a0551..7bffaf11b5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_34", "name": "QIDI PC/ABS-FR@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_34", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json index 0629d6e5d6..0ad43d79fe 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "LoUbSrp97ASAWCv0", "name": "QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@X-Max 4-Series", + "from": "system", + "setting_id": "LoUbSrp97ASAWCv0", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json index 9bff864924..68aca47d7d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "i1nFTiljEkCDsFuv", "name": "QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@X-Max 4-Series", + "from": "system", + "setting_id": "i1nFTiljEkCDsFuv", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json index 410c24b52a..4745e19ad2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_36", "name": "QIDI PEBA 95A@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_36", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -93,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json index 0534443042..b0592cad49 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "mT9CQnGe7QsIIhSe", "name": "QIDI PET-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@X-Max 4-Series", + "from": "system", + "setting_id": "mT9CQnGe7QsIIhSe", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json index f8645a8cb6..726c879459 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "wnPptldjH9zMQbkt", "name": "QIDI PET-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@X-Max 4-Series", + "from": "system", + "setting_id": "wnPptldjH9zMQbkt", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json index adeea38af5..5089c84e64 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "YXvYJNsbPq1I73qT", "name": "QIDI PET-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@X-Max 4-Series", + "from": "system", + "setting_id": "YXvYJNsbPq1I73qT", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json index fef1a864bf..6322639eb3 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_37", "name": "QIDI PET-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_37", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json index 5a8a17b280..f7b945a118 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "C3LQIPedb6PsEmGT", "name": "QIDI PET-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@X-Max 4-Series", + "from": "system", + "setting_id": "C3LQIPedb6PsEmGT", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json index dabc0baa77..027407ba38 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "KJ4oFQ5v88asP6iA", "name": "QIDI PET-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@X-Max 4-Series", + "from": "system", + "setting_id": "KJ4oFQ5v88asP6iA", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json index 41ca474513..7610afd6cc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "oJkEJM2H0stUQMK3", "name": "QIDI PET-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@X-Max 4-Series", + "from": "system", + "setting_id": "oJkEJM2H0stUQMK3", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json index a8471b4e8f..f18e2de950 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_38", "name": "QIDI PET-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_38", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -108,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json index 28d09eefb2..d0346e4887 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "WEaXpXvyA5hqq0im", "name": "QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "WEaXpXvyA5hqq0im", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json index cf48f1bf15..59404ca4ca 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "wCCu8057Era4CijT", "name": "QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "wCCu8057Era4CijT", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json index bcd4fc82eb..85a4c419d6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qWr1RECkmgLE4twO", "name": "QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "qWr1RECkmgLE4twO", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json index bfe75162a9..6877fbebf4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5cteLaAFOkUiomwZ", "name": "QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "5cteLaAFOkUiomwZ", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json index c143ef6dc1..c7261208cc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_39", "name": "QIDI PETG Basic@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_39", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json index eb08dcae9f..626c97e27a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "l8Gi0pl4dIfwZa7q", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "l8Gi0pl4dIfwZa7q", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json index 7a26f9d924..4bdb48b487 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "OaXBvDWS1KlXsk35", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "OaXBvDWS1KlXsk35", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json index a128746115..89077f8e3c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "UWgxbuEi0PR1Bk9x", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "UWgxbuEi0PR1Bk9x", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json index 3d50a6e8b4..582331ef46 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ocfw23IsmIIFawjn", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "ocfw23IsmIIFawjn", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json index 9e605a7b30..3050d4abd6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_41", "name": "QIDI PETG Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json index dd0aab3362..d9de99537b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "recYp5LV45rKzUq3", "name": "QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "recYp5LV45rKzUq3", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json index caab74c35c..c357a72246 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "IFt5bMViSdnVkDAl", "name": "QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "IFt5bMViSdnVkDAl", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json index a4ce524ce8..2f4cf744e8 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "7GJvjbWv3gOXoUvj", "name": "QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "7GJvjbWv3gOXoUvj", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json index c6921f4d9c..96bd404f8d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "YYal7rkOGoxl5M90", "name": "QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "YYal7rkOGoxl5M90", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json index 28514379ba..783925d2b5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_40", "name": "QIDI PETG Tough@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_40", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json index 2282637b57..510b48ee3f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "xV6r3J8c0VyXevMw", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "xV6r3J8c0VyXevMw", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json index 3dcf852454..862f84d23a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "eSXGagVI0DLddfoG", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "eSXGagVI0DLddfoG", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json index 30a79b6057..187642bff9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "C9cBAgUo3sugnEaq", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "C9cBAgUo3sugnEaq", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json index 4338b2c24e..0ee4a9f1d5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "xG2wymZpv7dQzfVO", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "xG2wymZpv7dQzfVO", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json index b3f1028714..21477a006f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_45", "name": "QIDI PETG Translucent@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_45", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json index 9f5093e3b9..409410fb13 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TDyJQysBZx5uUrXh", "name": "QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@X-Max 4-Series", + "from": "system", + "setting_id": "TDyJQysBZx5uUrXh", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json index 78371efb6a..21290ab1a2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "etqMwbqNIOEghI9H", "name": "QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@X-Max 4-Series", + "from": "system", + "setting_id": "etqMwbqNIOEghI9H", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json index 744d0c9bd2..3dd72e9df6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "V4quEOjLx2qHAENH", "name": "QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@X-Max 4-Series", + "from": "system", + "setting_id": "V4quEOjLx2qHAENH", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json index 2c4d782060..f3aabb1ef5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_42", "name": "QIDI PETG-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_42", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json index d8dbbf4d74..4f9abce155 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DfvA2AssIgxg2koP", "name": "QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@X-Max 4-Series", + "from": "system", + "setting_id": "DfvA2AssIgxg2koP", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json index 19f6f0ffd5..e164733a7a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "w2EZhFm9uYLHfoY0", "name": "QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@X-Max 4-Series", + "from": "system", + "setting_id": "w2EZhFm9uYLHfoY0", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json index f5b536e731..33f6c88e34 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "NpAT6MflDcl3D2rS", "name": "QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@X-Max 4-Series", + "from": "system", + "setting_id": "NpAT6MflDcl3D2rS", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json index 7b50dbef69..9b0379ea52 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_43", "name": "QIDI PETG-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_43", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -99,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json index 26a930ddd5..0382b40391 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "pddM6YtMN5SKOSMQ", "name": "QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "pddM6YtMN5SKOSMQ", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json index 95f3534ad2..c7ec1fa038 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "umI102qmWo3VoYi2", "name": "QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "umI102qmWo3VoYi2", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json index d81d83caeb..b30f57044e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "URPeTXoO4r5OBh25", "name": "QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "URPeTXoO4r5OBh25", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json index f9da44a522..e4997e03d9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ZdqynZo83hNZawRl", "name": "QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "ZdqynZo83hNZawRl", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json index 240ccf69bc..2dd1d28dd4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_7", "name": "QIDI PLA Basic@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_7", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json index 7e621e82e8..f1c17a69b5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "h5G8OJslnFi8fmdc", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "h5G8OJslnFi8fmdc", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json index 9081e59adb..d0eefd0853 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DgGnTvWpHJFGfJCL", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "DgGnTvWpHJFGfJCL", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json index 788438a7e5..ae9f6a9d28 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "SZEGJceJHgMEypjt", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "SZEGJceJHgMEypjt", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json index ab7d7008dc..9da229311d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "AgUB1GEL5WUGnWsQ", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "AgUB1GEL5WUGnWsQ", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json index 4b1d114494..dd407427ce 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_8", "name": "QIDI PLA Matte Basic@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_8", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json index c7400c45a9..f012c1c429 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "0OwEIMl2JDQ83ncL", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "0OwEIMl2JDQ83ncL", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json index 3686637234..5b29e0c4fe 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cxfsTjUCjfXJJy7O", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "cxfsTjUCjfXJJy7O", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json index f0f93e48b5..2f8d70cb22 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "EM9t6mc5WT25tSIb", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "EM9t6mc5WT25tSIb", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json index 2777e5e808..66706320b9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "CiU7D3vAVnI4xrwj", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "CiU7D3vAVnI4xrwj", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json index a705cce6e5..1e6ea5b8e0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_1", "name": "QIDI PLA Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_1", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json index eede4a017e..90f2a2fa46 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DhEvGD0RSCSk2d70", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "DhEvGD0RSCSk2d70", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json index 28ec114ab3..b8010a20ad 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "EBkHdd7eIzYaFq4Q", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "EBkHdd7eIzYaFq4Q", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json index b339658282..07c19f4ac3 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "hJTZCUqdro9cM0iU", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "hJTZCUqdro9cM0iU", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json index 8ba8df38d6..84e9dd58d7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ZlwpCyFIbmdKAFNg", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "ZlwpCyFIbmdKAFNg", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json index bcb92786ec..95d0666c1d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_2", "name": "QIDI PLA Rapido Matte@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_2", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json index 8aeddf082d..3ad4eb9eee 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "CKpTA0DVUTXA8qjd", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "CKpTA0DVUTXA8qjd", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json index 4e35fad83e..4eb339e085 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TJU0fHGhDcWt7GPM", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "TJU0fHGhDcWt7GPM", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json index 7832d2936b..5699a9eeb4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "JYahu02iwuKpbggG", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "JYahu02iwuKpbggG", + "instantiation": "true", "pressure_advance": [ "0.020" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json index 929bb30eed..8a35e17880 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "uhlIGeykRuykDpRI", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "uhlIGeykRuykDpRI", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json index 1a9c7cd235..0f848e6d5b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_3", "name": "QIDI PLA Rapido Metal@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_3", + "instantiation": "false", "filament_type": [ "PLA" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json index d4d2acd0a7..803447ddbb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "TKspEfbNEp1WaWQu", "name": "QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@X-Max 4-Series", + "from": "system", + "setting_id": "TKspEfbNEp1WaWQu", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json index d330cf2ffa..8b41dcc7b6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "gwb8oIZXCTsucanO", "name": "QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@X-Max 4-Series", + "from": "system", + "setting_id": "gwb8oIZXCTsucanO", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json index 33e1b4ecc7..d5f3d83679 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_4", "name": "QIDI PLA Rapido Silk@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json index 90c7715de0..23ead78cc7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "zIWB6n4Y6KbWWKuf", "name": "QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "zIWB6n4Y6KbWWKuf", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json index d20e595d0f..a9072d35ea 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "CbQ9Va3xYMh6UIyM", "name": "QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "CbQ9Va3xYMh6UIyM", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json index 74ad535dfa..b6a9d80d9d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "YkwsVaruM5PpT62P", "name": "QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "YkwsVaruM5PpT62P", + "instantiation": "true", "filament_max_volumetric_speed": [ "18" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json index 96dc7d3b30..7331ce75ad 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_5", "name": "QIDI PLA-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_5", + "instantiation": "false", "additional_cooling_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json index 098716ece7..ae9fd7fecf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "sVoMm6efHm39fUK1", "name": "QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@X-Max 4-Series", + "from": "system", + "setting_id": "sVoMm6efHm39fUK1", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json index c6052fda79..e7d9d5888d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "y8Xv7Pqorh4ZF8Ww", "name": "QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@X-Max 4-Series", + "from": "system", + "setting_id": "y8Xv7Pqorh4ZF8Ww", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json index 92c2cbd8e8..9308486ff4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "txGnWJtLJxdfF7Ig", "name": "QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@X-Max 4-Series", + "from": "system", + "setting_id": "txGnWJtLJxdfF7Ig", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json index f5e31a939e..c5500bb3c0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_44", "name": "QIDI PPS-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_44", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -114,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json index fa6686616b..929396025a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "6R6uV98QWzvGnfdF", "name": "QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "6R6uV98QWzvGnfdF", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json index 64a21e811e..c0f1a6682f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GRzzsOhAcBUXfeqv", "name": "QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "GRzzsOhAcBUXfeqv", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json index 03435c9ddd..f6aad50b5f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "4C4lvz22vs9gYyoc", "name": "QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "4C4lvz22vs9gYyoc", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json index 2fddfed82b..318920501f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_46", "name": "QIDI PPS-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_46", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -114,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json index 26da2f1ff9..063f802c12 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "5XqtyE2cFilMZ5oq", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@X-Max 4-Series", + "from": "system", + "setting_id": "5XqtyE2cFilMZ5oq", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json index fc2fbd2fe9..2f2a79bd3e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "qHgcoY85C9pOvHYc", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@X-Max 4-Series", + "from": "system", + "setting_id": "qHgcoY85C9pOvHYc", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json index 29bcaa2d57..4d9c13f466 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "8jwLzHbcdONs3hjM", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@X-Max 4-Series", + "from": "system", + "setting_id": "8jwLzHbcdONs3hjM", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json index 2866fb5e5c..2a1eddd8a2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_32", "name": "QIDI Support For PAHT@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_32", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json index 4f8f19afb9..4c28f0ba6b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "cG5iURd9NCebOAh9", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@X-Max 4-Series", + "from": "system", + "setting_id": "cG5iURd9NCebOAh9", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json index 9402e7dc55..432c3d6f19 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "mm8A9WWVfwTmqaPl", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@X-Max 4-Series", + "from": "system", + "setting_id": "mm8A9WWVfwTmqaPl", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json index 38e2b4db47..d982419cb2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Z9QN6YE7IWNY5IHb", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@X-Max 4-Series", + "from": "system", + "setting_id": "Z9QN6YE7IWNY5IHb", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json index 5014408699..64fbb1eb22 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_33", "name": "QIDI Support For PET/PA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_33", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -111,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json index 0b90ed0b14..16d91fc786 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "DMbPx29AcKUuqzsv", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@X-Max 4-Series", + "from": "system", + "setting_id": "DMbPx29AcKUuqzsv", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json index 8b75e0f31c..5825e7b997 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "NFokjNJ9qsILhMSx", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@X-Max 4-Series", + "from": "system", + "setting_id": "NFokjNJ9qsILhMSx", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json index 5a0d31b2cd..661591f9fe 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "SE0coLF7Tk072e8V", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@X-Max 4-Series", + "from": "system", + "setting_id": "SE0coLF7Tk072e8V", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json index a2efbe6df4..fea6c771ac 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_50", "name": "QIDI TPU 95A-HF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_50", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -93,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json index 1ab60c94bb..7351937b9c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "Fkhiu19XGkXfBFY2", "name": "QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@X-Max 4-Series", + "from": "system", + "setting_id": "Fkhiu19XGkXfBFY2", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json index 3322222f12..5372eafbca 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "ee5KMq5e4UacCHvc", "name": "QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@X-Max 4-Series", + "from": "system", + "setting_id": "ee5KMq5e4UacCHvc", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json index cf37b31de9..7aeb542fec 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_49", "name": "QIDI TPU-Aero@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_49", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -90,4 +90,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json index 7ddadf0b0d..5de0f35944 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "2c4nAo9FUfwdwYkK", "name": "QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@X-Max 4-Series", + "from": "system", + "setting_id": "2c4nAo9FUfwdwYkK", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json index 2faa3c9a72..ec9ba91ae9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "NtAR4vgqjQ8xKSME", "name": "QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@X-Max 4-Series", + "from": "system", + "setting_id": "NtAR4vgqjQ8xKSME", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json index 5c2cd9898b..894f41389c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "MfXlO4PPSwLn750m", "name": "QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@X-Max 4-Series", + "from": "system", + "setting_id": "MfXlO4PPSwLn750m", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json index fcde31942c..25a934fd19 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_15", "name": "QIDI TPU-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_15", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -93,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json index 879b2b5625..980fdec257 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "drEdS5phclobkiNO", "name": "QIDI UltraPA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@X-Max 4-Series", + "from": "system", + "setting_id": "drEdS5phclobkiNO", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json index eed99a78ac..767114a559 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "3XnXQeVV7CjgvnrM", "name": "QIDI UltraPA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@X-Max 4-Series", + "from": "system", + "setting_id": "3XnXQeVV7CjgvnrM", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json index 7269771e1e..a3d32abfa1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "9j84XHFT395HsjDa", "name": "QIDI UltraPA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@X-Max 4-Series", + "from": "system", + "setting_id": "9j84XHFT395HsjDa", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json index 0b0a02f22c..1194e6c03d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_24", "name": "QIDI UltraPA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_24", + "instantiation": "false", "box_temperature_range_high": [ "55" ], @@ -96,4 +96,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json index f65978a6f3..c720797765 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "vPCQfOT2QXyEpBWg", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@X-Max 4-Series", + "from": "system", + "setting_id": "vPCQfOT2QXyEpBWg", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json index 65428f606d..b4db634051 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "NWcMSTjsGdH8otAe", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@X-Max 4-Series", + "from": "system", + "setting_id": "NWcMSTjsGdH8otAe", + "instantiation": "true", "pressure_advance": [ "0.022" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json index 7b3083a4e3..2e5e48504a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "1KMg11UnJuf06LFh", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@X-Max 4-Series", + "from": "system", + "setting_id": "1KMg11UnJuf06LFh", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json index 16903363a9..21629d63c9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_26", "name": "QIDI UltraPA-CF25@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_26", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -114,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json index b8469f502c..81fed9fb7e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "PbuzdsBOxIvSbjXa", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "PbuzdsBOxIvSbjXa", + "instantiation": "true", "pressure_advance": [ "0.044" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json index fa1f27bdc3..b16ee178dc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "MdLYL9OkYMo0bBue", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "MdLYL9OkYMo0bBue", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json index 6e9d7835d0..a3466d2988 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "uJnCn3Hls6d5gHQA", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "uJnCn3Hls6d5gHQA", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json index e1633ea57d..d62533d44e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_6", "name": "QIDI WOOD Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_6", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/fdm_filament_abs.json b/resources/profiles/Qidi/filament/fdm_filament_abs.json index 31fb0134a0..4783e2162c 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_abs.json +++ b/resources/profiles/Qidi/filament/fdm_filament_abs.json @@ -106,4 +106,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/fdm_filament_asa.json b/resources/profiles/Qidi/filament/fdm_filament_asa.json index 9f98db937c..747499b141 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_asa.json +++ b/resources/profiles/Qidi/filament/fdm_filament_asa.json @@ -106,4 +106,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/fdm_filament_pet.json b/resources/profiles/Qidi/filament/fdm_filament_pet.json index 4096649e98..91c289c722 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_pet.json +++ b/resources/profiles/Qidi/filament/fdm_filament_pet.json @@ -88,4 +88,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/fdm_filament_tpu.json b/resources/profiles/Qidi/filament/fdm_filament_tpu.json index d072ae17e2..f261d24923 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_tpu.json +++ b/resources/profiles/Qidi/filament/fdm_filament_tpu.json @@ -97,4 +97,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json index 7b5b19bb50..b8e618919a 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "machine", - "setting_id": "QgiXsDkRCjIHtpEa", "name": "Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Qidi X-Max 4 0.4 nozzle", + "from": "system", + "setting_id": "QgiXsDkRCjIHtpEa", + "instantiation": "true", "printer_model": "Qidi X-Max 4", "printer_variant": "0.2", "default_filament_profile": [ diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json index 6c9fac780b..be754eb338 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json @@ -1,11 +1,11 @@ { - "box_id": "3", "type": "machine", - "setting_id": "uzcPSO0U1ZQCXXNN", "name": "Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_machine_x_common", + "from": "system", + "setting_id": "uzcPSO0U1ZQCXXNN", + "instantiation": "true", + "box_id": "3", "printer_model": "Qidi X-Max 4", "gcode_flavor": "klipper", "default_print_profile": "0.20mm Standard @X-Max 4", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json index 0707b7a1a3..be75b991a3 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "machine", - "setting_id": "Ict0ZAEiGgYeu7AJ", "name": "Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Qidi X-Max 4 0.4 nozzle", + "from": "system", + "setting_id": "Ict0ZAEiGgYeu7AJ", + "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle" ], diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json index 2c063d9fc9..6276609a58 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "machine", - "setting_id": "pJbz2SGfvEar8cGh", "name": "Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Qidi X-Max 4 0.4 nozzle", + "from": "system", + "setting_id": "pJbz2SGfvEar8cGh", + "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle" ], diff --git a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json index 6043f3b072..93be914bd5 100644 --- a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "9aEE4QRwpA84OcRn", "name": "0.08mm Extra Fine @X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "9aEE4QRwpA84OcRn", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "5", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json index 715a3c2772..499d8ad5cb 100644 --- a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "669lYZL76CKm2XKo", "name": "0.08mm Extra Fine @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "669lYZL76CKm2XKo", + "instantiation": "true", "bottom_color_penetration_layers": "7", "bottom_shell_layers": "7", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json index a922128442..2f49cb3ba1 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "ABeYedxpPRk7Mv4k", "name": "0.10mm Standard @X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "ABeYedxpPRk7Mv4k", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "5", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json index d455be4044..70d97f84ab 100644 --- a/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "CcdlmUxcXQuw5HGG", "name": "0.12mm Balanced Quality @X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "CcdlmUxcXQuw5HGG", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "5", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json b/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json index cff8348586..932a708742 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "LwuGo5RPFaXOdGOP", "name": "0.12mm Fine @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "LwuGo5RPFaXOdGOP", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "7", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json b/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json index 7610bd5ca2..d734a14634 100644 --- a/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "AhcbXuW6Py1OlLEz", "name": "0.16mm Balanced Quality @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "AhcbXuW6Py1OlLEz", + "instantiation": "true", "bottom_color_penetration_layers": "4", "bottom_shell_layers": "4", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json index a556f237a9..91d939fec5 100644 --- a/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "JpZoDa8jLalawI6Q", "name": "0.16mm Standard @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "JpZoDa8jLalawI6Q", + "instantiation": "true", "bottom_color_penetration_layers": "4", "bottom_shell_layers": "4", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json index 671d097afc..8d281627ea 100644 --- a/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "VRTEmrje8hig7qJc", "name": "0.18mm Balanced Quality @X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "VRTEmrje8hig7qJc", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json b/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json index 685d5c157d..5c879d83ab 100644 --- a/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json @@ -1,9 +1,9 @@ { "type": "process", - "setting_id": "oM72sw3mW85qL45A", "name": "0.20mm Balanced Strength @X-Max 4", - "from": "system", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "oM72sw3mW85qL45A", "instantiation": "true", "bottom_shell_layers": "4", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json index 8f5969e8a8..4bbea2ec6d 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json @@ -1,9 +1,9 @@ { "type": "process", - "setting_id": "2TsaNedKJlTmULOi", "name": "0.20mm Standard @X-Max 4", - "from": "system", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "2TsaNedKJlTmULOi", "instantiation": "true", "bridge_flow": "1", "default_acceleration": [ diff --git a/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json index bf6a7dcd8f..53429a10d1 100644 --- a/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "kye0mwcHVzDEfide", "name": "0.24mm Balanced Quality @X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "kye0mwcHVzDEfide", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json index e1898e9cb8..646cf814e4 100644 --- a/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "FjwVknjxJnYTs3uo", "name": "0.24mm Balanced Strength @X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "FjwVknjxJnYTs3uo", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json index 66650b0aa3..3aeb4203e4 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json @@ -1,9 +1,9 @@ { "type": "process", - "setting_id": "fJge4LaVkm7mmi3g", "name": "0.24mm Standard @X-Max 4", - "from": "system", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "fJge4LaVkm7mmi3g", "instantiation": "true", "bridge_flow": "1", "default_acceleration": [ diff --git a/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json index 40ae121e1d..7622dd4325 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "TOsqMoGa5GvywEWI", "name": "0.30mm Standard @X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "TOsqMoGa5GvywEWI", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json index e404cb19ed..052f88bb4a 100644 --- a/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "U4yjBHhJwsHTIDHc", "name": "0.32mm Balanced Strength @X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "U4yjBHhJwsHTIDHc", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "50" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json index 7252d3d8a5..4aa16d0e45 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "qT32mSKhstIeb8R2", "name": "0.40mm Standard @X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "qT32mSKhstIeb8R2", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA.json index 65bd1177ed..b9d21e3bf2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Snapmaker PLA", + "renamed_from": "PolyLite PLA", "inherits": "Snapmaker PLA @base", "from": "system", "setting_id": "cW1b4nGxE9yXIXJP", diff --git a/resources/profiles/Voron.json b/resources/profiles/Voron.json index 24c9f82e9c..74df754a9d 100644 --- a/resources/profiles/Voron.json +++ b/resources/profiles/Voron.json @@ -206,6 +206,10 @@ "name": "0.24mm Fine 0.8 nozzle @Voron", "sub_path": "process/0.24mm Fine 0.8 nozzle @Voron.json" }, + { + "name": "0.32mm Optimal 0.8 nozzle @Voron", + "sub_path": "process/0.32mm Optimal 0.8 nozzle @Voron.json" + }, { "name": "0.40mm Standard 0.8 nozzle @Voron", "sub_path": "process/0.40mm Standard 0.8 nozzle @Voron.json" diff --git a/resources/profiles/Voron/process/0.32mm Optimal 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.32mm Optimal 0.8 nozzle @Voron.json new file mode 100644 index 0000000000..d354153c14 --- /dev/null +++ b/resources/profiles/Voron/process/0.32mm Optimal 0.8 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "name": "0.32mm Optimal 0.8 nozzle @Voron", + "inherits": "fdm_process_voron_common_0_8", + "from": "system", + "setting_id": "ivS6U4AuIoj1cJhZ", + "instantiation": "true", + "bottom_shell_layers": "3", + "top_shell_layers": "3", + "layer_height": "0.32" +} diff --git a/resources/profiles/Wanhao France.json b/resources/profiles/Wanhao France.json index 92fc62c4bd..92694fe476 100644 --- a/resources/profiles/Wanhao France.json +++ b/resources/profiles/Wanhao France.json @@ -1,6 +1,6 @@ { "name": "Wanhao France", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Wanhao France D12 configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao France/filament/YUMI PETG.json b/resources/profiles/Wanhao France/filament/YUMI PETG.json index b8046df21f..ca5eb1b5c9 100644 --- a/resources/profiles/Wanhao France/filament/YUMI PETG.json +++ b/resources/profiles/Wanhao France/filament/YUMI PETG.json @@ -263,11 +263,11 @@ "D12 500 PRO M2 DIRECT 0.4 nozzle", "D12 500 PRO SMARTPAD DIRECT 0.4 nozzle", "D12 230 PRO M2 MONO DUAL 0.4 nozzle", - "D12 230 PRO M2 MONO DUAL PoopTool 0.4 nozzle", + "D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool", "D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle", - "D12 230 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", + "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool", "D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "D12 300 PRO M2 MONO DUAL 0.4 nozzle", diff --git a/resources/profiles/re3D.json b/resources/profiles/re3D.json index aff4e932aa..e0acc669d0 100644 --- a/resources/profiles/re3D.json +++ b/resources/profiles/re3D.json @@ -1,6 +1,6 @@ { "name": "re3D", - "version": "02.04.00.02", + "version": "02.04.00.03", "force_update": "0", "description": "re3D configurations", "machine_model_list": [ diff --git a/resources/profiles/re3D/filament/re3D Greengate rPETG.json b/resources/profiles/re3D/filament/re3D Greengate rPETG.json index 5111e5b951..de56af4f02 100644 --- a/resources/profiles/re3D/filament/re3D Greengate rPETG.json +++ b/resources/profiles/re3D/filament/re3D Greengate rPETG.json @@ -10,9 +10,12 @@ "re3D Greengate rPETG" ], "compatible_printers": [ - "re3D GigabotX 2", - "re3D GigabotX 2 XLT", - "re3D TerabotX 2" + "re3D GigabotX 2 0.8 nozzle", + "re3D GigabotX 2 XLT 0.8 nozzle", + "re3D TerabotX 2 0.8 nozzle", + "re3D GigabotX 2 1.75 nozzle", + "re3D GigabotX 2 XLT 1.75 nozzle", + "re3D TerabotX 2 1.75 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D PC.json b/resources/profiles/re3D/filament/re3D PC.json index 36e475e4e9..d24b00d482 100644 --- a/resources/profiles/re3D/filament/re3D PC.json +++ b/resources/profiles/re3D/filament/re3D PC.json @@ -10,9 +10,12 @@ "re3D PC" ], "compatible_printers": [ - "re3D Gigabot 4", - "re3D Gigabot 4 XLT", - "re3D Terabot 4" + "re3D Gigabot 4 0.4 nozzle", + "re3D Gigabot 4 XLT 0.4 nozzle", + "re3D Terabot 4 0.4 nozzle", + "re3D Gigabot 4 0.8 nozzle", + "re3D Gigabot 4 XLT 0.8 nozzle", + "re3D Terabot 4 0.8 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D PETG.json b/resources/profiles/re3D/filament/re3D PETG.json index fb4cf4278c..a52d5b742c 100644 --- a/resources/profiles/re3D/filament/re3D PETG.json +++ b/resources/profiles/re3D/filament/re3D PETG.json @@ -10,9 +10,12 @@ "re3D PETG" ], "compatible_printers": [ - "re3D Gigabot 4", - "re3D Gigabot 4 XLT", - "re3D Terabot 4" + "re3D Gigabot 4 0.4 nozzle", + "re3D Gigabot 4 XLT 0.4 nozzle", + "re3D Terabot 4 0.4 nozzle", + "re3D Gigabot 4 0.8 nozzle", + "re3D Gigabot 4 XLT 0.8 nozzle", + "re3D Terabot 4 0.8 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D PLA.json b/resources/profiles/re3D/filament/re3D PLA.json index c3eb730024..7b153db22b 100644 --- a/resources/profiles/re3D/filament/re3D PLA.json +++ b/resources/profiles/re3D/filament/re3D PLA.json @@ -10,9 +10,12 @@ "re3D PLA" ], "compatible_printers": [ - "re3D Gigabot 4", - "re3D Gigabot 4 XLT", - "re3D Terabot 4" + "re3D Gigabot 4 0.4 nozzle", + "re3D Gigabot 4 XLT 0.4 nozzle", + "re3D Terabot 4 0.4 nozzle", + "re3D Gigabot 4 0.8 nozzle", + "re3D Gigabot 4 XLT 0.8 nozzle", + "re3D Terabot 4 0.8 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D rPP.json b/resources/profiles/re3D/filament/re3D rPP.json index d226697240..bf96aa51e6 100644 --- a/resources/profiles/re3D/filament/re3D rPP.json +++ b/resources/profiles/re3D/filament/re3D rPP.json @@ -13,9 +13,12 @@ "re3D rPP" ], "compatible_printers": [ - "re3D GigabotX 2", - "re3D GigabotX 2 XLT", - "re3D TerabotX 2" + "re3D GigabotX 2 0.8 nozzle", + "re3D GigabotX 2 XLT 0.8 nozzle", + "re3D TerabotX 2 0.8 nozzle", + "re3D GigabotX 2 1.75 nozzle", + "re3D GigabotX 2 XLT 1.75 nozzle", + "re3D TerabotX 2 1.75 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/web/data/text.js b/resources/web/data/text.js index 33fbc89087..95342acdaf 100644 --- a/resources/web/data/text.js +++ b/resources/web/data/text.js @@ -1739,11 +1739,11 @@ var LangText = { orca3: "Slaptas režimas", orca5: "Įjungti slaptą režimą.", orca6: "Bambu Cloud", - orca7: "Orca Cloud Account", - orca8: "Not signed in", - orca9: "Bambu Cloud Account", - orca10: "Not connected", - orca11: "Connected", + orca7: "Orca Cloud paskyra", + orca8: "Neprisiregistruota", + orca9: "Bambu Cloud paskyra", + orca10: "Neprisijungta", + orca11: "Prisijungta", }, }; diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 91c95b7c5a..8f79462918 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -186,9 +186,12 @@ if (WIN32) if(MSVC) target_link_options(OrcaSlicer_app_gui PUBLIC "$<$:/DEBUG>") endif() - target_compile_definitions(OrcaSlicer_app_gui PRIVATE -DSLIC3R_WRAPPER_NOCONSOLE) + target_compile_definitions(OrcaSlicer_app_gui PRIVATE "$<$>:SLIC3R_WRAPPER_NOCONSOLE>") add_dependencies(OrcaSlicer_app_gui OrcaSlicer) - set_target_properties(OrcaSlicer_app_gui PROPERTIES OUTPUT_NAME "orca-slicer") + set_target_properties(OrcaSlicer_app_gui PROPERTIES + OUTPUT_NAME "orca-slicer" + WIN32_EXECUTABLE "$>" + ) target_link_libraries(OrcaSlicer_app_gui PRIVATE boost_headeronly) endif () diff --git a/src/OrcaSlicer.cpp b/src/OrcaSlicer.cpp index 53f0352c09..7e1341ac18 100644 --- a/src/OrcaSlicer.cpp +++ b/src/OrcaSlicer.cpp @@ -1317,7 +1317,13 @@ int CLI::run(int argc, char **argv) return CLI_INVALID_PARAMS; } BOOST_LOG_TRIVIAL(info) << "finished setup params, argc="<< argc << std::endl; - std::string temp_path = wxFileName::GetTempDir().utf8_str().data(); + std::string temp_path = per_user_temp_dir(wxFileName::GetTempDir().utf8_str().data(), per_user_temp_id()); + // Some consumers write into the temp root directly, so create it up front. + try { + boost::filesystem::create_directories(temp_path); + } catch (const std::exception &ex) { + BOOST_LOG_TRIVIAL(warning) << "failed to create per-user temp dir " << temp_path << ": " << ex.what(); + } set_temporary_dir(temp_path); m_extra_config.apply(m_config, true); diff --git a/src/libslic3r/AppConfig.cpp b/src/libslic3r/AppConfig.cpp index e84f469670..c81e6c391c 100644 --- a/src/libslic3r/AppConfig.cpp +++ b/src/libslic3r/AppConfig.cpp @@ -579,9 +579,16 @@ void AppConfig::set_defaults() if (get("enable_step_mesh_setting").empty()) { set_bool("enable_step_mesh_setting", true); } - if (get("linear_defletion", "angle_defletion").empty()) { - set("linear_defletion", "0.003"); - set("angle_defletion", "0.5"); + // Migrate legacy misspelled keys (linear_defletion/angle_defletion) to the corrected spelling. + if (get("linear_deflection").empty() && !get("linear_defletion").empty()) + set("linear_deflection", get("linear_defletion")); + if (get("angle_deflection").empty() && !get("angle_defletion").empty()) + set("angle_deflection", get("angle_defletion")); + if (get("linear_deflection").empty()) { + set("linear_deflection", "0.003"); + } + if (get("angle_deflection").empty()) { + set("angle_deflection", "0.5"); } if (get("is_split_compound").empty()) { set_bool("is_split_compound", false); diff --git a/src/libslic3r/Brim.cpp b/src/libslic3r/Brim.cpp index 91d72faa70..a2942e5dae 100644 --- a/src/libslic3r/Brim.cpp +++ b/src/libslic3r/Brim.cpp @@ -61,7 +61,7 @@ static bool use_brim_efc_outline(const PrintObject &object) && object.config().raft_layers.value == 0; } -//ORCA: Helper for snapping painted ears to the EFC outline. +//ORCA: Helper for projecting painted ears to the EFC outline. static bool closest_point_on_expolygons(const ExPolygons &polygons, const Point &from, Point &closest_out) { double min_dist2 = std::numeric_limits::max(); @@ -69,23 +69,22 @@ static bool closest_point_on_expolygons(const ExPolygons &polygons, const Point for (const ExPolygon &poly : polygons) { for (int i = 0; i < poly.num_contours(); ++i) { - const Point *candidate = poly.contour_or_hole(i).closest_point(from); - if (candidate == nullptr) - continue; - const int64_t dx = int64_t(candidate->x()) - int64_t(from.x()); - const int64_t dy = int64_t(candidate->y()) - int64_t(from.y()); - const double dist2 = double(dx * dx + dy * dy); - if (dist2 < min_dist2) { - min_dist2 = dist2; - closest_out = *candidate; - found = true; + const Lines lines = poly.contour_or_hole(i).lines(); + for (const Line &line : lines) { + Point candidate; + const double dist2 = line.distance_to_squared(from, &candidate); + if (dist2 < min_dist2) { + min_dist2 = dist2; + closest_out = candidate; + found = true; + } } } } return found; } -//ORCA: Helper for matching painted ears to their original island before EFC snapping. +//ORCA: Helper for matching painted ears to their original island before EFC projection. static int find_containing_expolygon_index(const ExPolygons &polygons, const Point &from) { for (size_t idx = 0; idx < polygons.size(); ++idx) { @@ -95,7 +94,7 @@ static int find_containing_expolygon_index(const ExPolygons &polygons, const Poi return -1; } -//ORCA: Keep painted ear snapping on the matching island when using EFC outline. +//ORCA: Keep painted ear projection on the matching island when using EFC outline. static bool closest_point_on_matching_island(const ExPolygons &raw_outline, const ExPolygons &efc_outline, const Point &from, Point &closest_out) { const int island_idx = find_containing_expolygon_index(raw_outline, from); @@ -106,6 +105,7 @@ static bool closest_point_on_matching_island(const ExPolygons &raw_outline, cons } return closest_point_on_expolygons(efc_outline, from, closest_out); } + //ORCA: Use post-processed first-layer slices (including EFC) for brim outline. // Returns ExPolygons of the bottom layer after all first-layer modifiers // (including elephant foot compensation, if enabled) have been applied. @@ -358,11 +358,12 @@ static ExPolygons make_brim_ears(const PrintObject* object, const double& flowWi if (brim_ear_points.size() <= 0) { return mouse_ears_ex; } - //ORCA: Painted ears can snap to the EFC-adjusted outline when enabled. + //ORCA: Painted ears follow the EFC-adjusted outline when enabled, while + // preserving their position along the selected outline segment. const bool use_efc_outline = use_brim_efc_outline(*object); const ExPolygons &raw_outline = object->layers().front()->lslices; //ORCA: Lazily computed EFC-adjusted bottom outline. - //Stored separately so we can avoid recomputation unless EFC snapping is used. + //Stored separately so we can avoid recomputation unless EFC projection is used. ExPolygons efc_outline_storage; const ExPolygons* efc_outline = nullptr; @@ -390,17 +391,17 @@ static ExPolygons make_brim_ears(const PrintObject* object, const double& flowWi int32_t pt_x = scale_(pos.x()); int32_t pt_y = scale_(pos.y()); - //ORCA: Snap painted ears to the EFC-adjusted outline when enabled. + //ORCA: Project painted ears to the EFC-adjusted outline when enabled. if (use_efc_outline) { if (efc_outline == nullptr) { - //ORCA: Compute EFC-adjusted outline lazily for painted ear snapping. + //ORCA: Compute the EFC-adjusted outline lazily for painted ear projection. efc_outline_storage = get_print_object_bottom_layer_expolygons(*object); efc_outline = &efc_outline_storage; } if (!efc_outline->empty()) { Point closest_point; - //ORCA: Snap within the matching island to avoid drifting to another island. + //ORCA: Project within the matching island to avoid drifting to another island. if (closest_point_on_matching_island( raw_outline, *efc_outline, diff --git a/src/libslic3r/CMakeLists.txt b/src/libslic3r/CMakeLists.txt index 9b67d7ab50..93946ca477 100644 --- a/src/libslic3r/CMakeLists.txt +++ b/src/libslic3r/CMakeLists.txt @@ -534,6 +534,7 @@ endif () encoding_check(libslic3r) target_compile_definitions(libslic3r PUBLIC -DUSE_TBB -DTBB_USE_CAPTURED_EXCEPTION=0) +target_compile_definitions(libslic3r PRIVATE $<$:SLIC3R_CONSOLE_LOG>) target_include_directories(libslic3r PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} PUBLIC ${CMAKE_CURRENT_BINARY_DIR}) target_include_directories(libslic3r SYSTEM PUBLIC ${EXPAT_INCLUDE_DIRS}) diff --git a/src/libslic3r/ExtrusionEntity.hpp b/src/libslic3r/ExtrusionEntity.hpp index 180312aa6d..e8348b3bd5 100644 --- a/src/libslic3r/ExtrusionEntity.hpp +++ b/src/libslic3r/ExtrusionEntity.hpp @@ -96,12 +96,21 @@ inline bool is_solid_infill(ExtrusionRole role) || role == erIroning; } -inline bool is_bridge(ExtrusionRole role) { +inline bool is_bridge(ExtrusionRole role) +{ return role == erBridgeInfill || role == erInternalBridgeInfill || role == erOverhangPerimeter; } +// Orca +inline bool is_support(ExtrusionRole role) +{ + return role == erSupportMaterial + || role == erSupportMaterialInterface + || role == erSupportTransition; +} + class ExtrusionEntity { public: diff --git a/src/libslic3r/Fill/Fill.cpp b/src/libslic3r/Fill/Fill.cpp index 1e0a9af3e2..bdb21124d4 100644 --- a/src/libslic3r/Fill/Fill.cpp +++ b/src/libslic3r/Fill/Fill.cpp @@ -936,9 +936,16 @@ std::vector group_fills(const Layer &layer, LockRegionParam &lock_p region_config.sparse_infill_rotate_template.value); params.fixed_angle = !region_config.sparse_infill_rotate_template.value.empty(); } else { - params.angle = calculate_infill_rotation_angle(layer.object(), layer.id(), region_config.solid_infill_direction.value, - region_config.solid_infill_rotate_template.value); - params.fixed_angle = !region_config.solid_infill_rotate_template.value.empty(); + const bool top_layer_direction_set = surface.is_top() && region_config.top_layer_direction.value >= 0.; + const bool bottom_layer_direction_set = surface.is_bottom() && region_config.bottom_layer_direction.value >= 0.; + if (top_layer_direction_set || bottom_layer_direction_set) { + params.angle = Geometry::deg2rad(top_layer_direction_set ? region_config.top_layer_direction.value : region_config.bottom_layer_direction.value); + params.fixed_angle = true; + } else { + params.angle = calculate_infill_rotation_angle(layer.object(), layer.id(), region_config.solid_infill_direction.value, + region_config.solid_infill_rotate_template.value); + params.fixed_angle = !region_config.solid_infill_rotate_template.value.empty(); + } } params.bridge_angle = float(surface.bridge_angle); @@ -1599,16 +1606,20 @@ void Layer::make_ironing() ironing_params.height = default_layer_height * 0.01 * (!config.filament_ironing_flow.is_nil(extruder_idx) ? config.filament_ironing_flow.get_at(extruder_idx) : config.ironing_flow); - ironing_params.speed = (!config.filament_ironing_speed.is_nil(extruder_idx) - ? config.filament_ironing_speed.get_at(extruder_idx) - : config.ironing_speed); - double ironing_angle = (config.ironing_angle_fixed ? 0 : calculate_infill_rotation_angle(this->object(), this->id(), config.solid_infill_direction.value, config.solid_infill_rotate_template.value)) + config.ironing_angle * M_PI / 180.; + ironing_params.speed = (!config.filament_ironing_speed.is_nil(extruder_idx) + ? config.filament_ironing_speed.get_at(extruder_idx) + : config.ironing_speed); + const bool top_layer_direction_set = config.top_layer_direction.value >= 0.; + const double top_layer_base_angle = top_layer_direction_set ? + Geometry::deg2rad(config.top_layer_direction.value) : + calculate_infill_rotation_angle(this->object(), this->id(), config.solid_infill_direction.value, config.solid_infill_rotate_template.value); + double ironing_angle = (config.ironing_angle_fixed ? 0. : top_layer_base_angle) + config.ironing_angle * M_PI / 180.; if (config.align_infill_direction_to_model) { auto m = this->object()->trafo().matrix(); ironing_angle += atan2((double)m(1, 0), (double)m(0, 0)); } - ironing_params.angle = ironing_angle; - ironing_params.fixed_angle = config.ironing_angle_fixed || !config.solid_infill_rotate_template.value.empty(); + ironing_params.angle = ironing_angle; + ironing_params.fixed_angle = config.ironing_angle_fixed || top_layer_direction_set || !config.solid_infill_rotate_template.value.empty(); ironing_params.pattern = config.ironing_pattern; ironing_params.layerm = layerm; by_extruder.emplace_back(ironing_params); diff --git a/src/libslic3r/Format/STEP.cpp b/src/libslic3r/Format/STEP.cpp index 3ea3de5914..8b07286c5b 100644 --- a/src/libslic3r/Format/STEP.cpp +++ b/src/libslic3r/Format/STEP.cpp @@ -230,8 +230,8 @@ static void getNamedSolids(const TopLoc_Location& location, } //bool load_step(const char *path, Model *model, bool& is_cancel, -// double linear_defletion/*=0.003*/, -// double angle_defletion/*= 0.5*/, +// double linear_deflection/*=0.003*/, +// double angle_deflection/*= 0.5*/, // bool isSplitCompound, // ImportStepProgressFn stepFn, StepIsUtf8Fn isUtf8Fn, long& mesh_face_num) //{ @@ -288,7 +288,7 @@ static void getNamedSolids(const TopLoc_Location& location, // stl.resize(namedSolids.size()); // tbb::parallel_for(tbb::blocked_range(0, namedSolids.size()), [&](const tbb::blocked_range &range) { // for (size_t i = range.begin(); i < range.end(); i++) { -// BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_defletion, false, angle_defletion, true); +// BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_deflection, false, angle_deflection, true); // // BBS: calculate total number of the nodes and triangles // int aNbNodes = 0; // int aNbTriangles = 0; @@ -511,8 +511,8 @@ Step::Step_Status Step::load() Step::Step_Status Step::mesh(Model* model, bool& is_cancel, bool isSplitCompound, - double linear_defletion/*=0.003*/, - double angle_defletion/*= 0.5*/) + double linear_deflection/*=0.003*/, + double angle_deflection/*= 0.5*/) { bool task_result = false; @@ -544,7 +544,7 @@ Step::Step_Status Step::mesh(Model* model, stl.resize(namedSolids.size()); tbb::parallel_for(tbb::blocked_range(0, namedSolids.size()), [&](const tbb::blocked_range& range) { for (size_t i = range.begin(); i < range.end(); i++) { - BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_defletion, false, angle_defletion, true); + BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_deflection, false, angle_deflection, true); // BBS: calculate total number of the nodes and triangles int aNbNodes = 0; int aNbTriangles = 0; @@ -689,15 +689,15 @@ void Step::clean_mesh_data() } } -unsigned int Step::get_triangle_num(double linear_defletion, double angle_defletion) +unsigned int Step::get_triangle_num(double linear_deflection, double angle_deflection) { unsigned int tri_num = 0; try { Handle(StepProgressIncdicator) progress = new StepProgressIncdicator(m_stop_mesh); clean_mesh_data(); IMeshTools_Parameters param; - param.Deflection = linear_defletion; - param.Angle = angle_defletion; + param.Deflection = linear_deflection; + param.Angle = angle_deflection; param.InParallel = true; for (int i = 0; i < m_name_solids.size(); ++i) { BRepMesh_IncrementalMesh mesh(m_name_solids[i].solid, param, progress->Start()); @@ -719,7 +719,7 @@ unsigned int Step::get_triangle_num(double linear_defletion, double angle_deflet return tri_num; } -unsigned int Step::get_triangle_num_tbb(double linear_defletion, double angle_defletion) +unsigned int Step::get_triangle_num_tbb(double linear_deflection, double angle_deflection) { unsigned int tri_num = 0; clean_mesh_data(); @@ -727,7 +727,7 @@ unsigned int Step::get_triangle_num_tbb(double linear_defletion, double angle_de [&](const tbb::blocked_range& range) { for (size_t i = range.begin(); i < range.end(); i++) { unsigned int solids_tri_num = 0; - BRepMesh_IncrementalMesh mesh(m_name_solids[i].solid, linear_defletion, false, angle_defletion, true); + BRepMesh_IncrementalMesh mesh(m_name_solids[i].solid, linear_deflection, false, angle_deflection, true); for (TopExp_Explorer anExpSF(m_name_solids[i].solid, TopAbs_FACE); anExpSF.More(); anExpSF.Next()) { TopLoc_Location aLoc; Handle(Poly_Triangulation) aTriangulation = BRep_Tool::Triangulation(TopoDS::Face(anExpSF.Current()), aLoc); diff --git a/src/libslic3r/Format/STEP.hpp b/src/libslic3r/Format/STEP.hpp index 3253553567..1a65d5956b 100644 --- a/src/libslic3r/Format/STEP.hpp +++ b/src/libslic3r/Format/STEP.hpp @@ -38,8 +38,8 @@ struct NamedSolid //BBS: Load an step file into a provided model. extern bool load_step(const char *path, Model *model, bool& is_cancel, - double linear_defletion = 0.003, - double angle_defletion = 0.5, + double linear_deflection = 0.003, + double angle_deflection = 0.5, bool isSplitCompound = false, ImportStepProgressFn proFn = nullptr, StepIsUtf8Fn isUtf8Fn = nullptr, @@ -98,14 +98,14 @@ public: Step(std::string path, ImportStepProgressFn stepFn = nullptr, StepIsUtf8Fn isUtf8Fn = nullptr); ~Step(); Step_Status load(); - unsigned int get_triangle_num(double linear_defletion, double angle_defletion); - unsigned int get_triangle_num_tbb(double linear_defletion, double angle_defletion); + unsigned int get_triangle_num(double linear_deflection, double angle_deflection); + unsigned int get_triangle_num_tbb(double linear_deflection, double angle_deflection); void clean_mesh_data(); Step_Status mesh(Model* model, bool& is_cancel, bool isSplitCompound, - double linear_defletion = 0.003, - double angle_defletion = 0.5); + double linear_deflection = 0.003, + double angle_deflection = 0.5); std::atomic m_stop_mesh{false}; void update_process(int load_stage, int current, int total, bool& cancel); diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 80b9cb47ee..6740b2d234 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -5925,8 +5925,8 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, const auto speed_for_path = [&speed, &small_peri_speed](const ExtrusionPath& path) { // don't apply small perimeter setting for overhangs/bridges/non-perimeters - const bool is_small_peri = is_perimeter(path.role()) && !is_bridge(path.role()) && small_peri_speed > 0; - return is_small_peri ? small_peri_speed : speed; + const bool is_small_small_perimeter = small_peri_speed > 0 && !is_bridge(path.role()) && is_perimeter(path.role()); + return is_small_small_perimeter ? small_peri_speed : speed; }; @@ -5948,8 +5948,8 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, // Orca: end of multipath average mm3_per_mm value calculation if (!enable_seam_slope) { - for (ExtrusionPaths::iterator path = paths.begin(); path != paths.end(); ++path) { - gcode += this->_extrude(*path, description, speed_for_path(*path)); + for (const ExtrusionPath& path : paths) { + gcode += this->_extrude(path, description, speed_for_path(path)); // Orca: Adaptive PA - dont adapt PA after the first multipath extrusion is completed // as we have already set the PA value to the average flow over the totality of the path // in the first extrude move @@ -5985,8 +5985,8 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, new_loop.clip_slope(seam_gap); // Then extrude it - for (const auto& p : new_loop.get_all_paths()) { - gcode += this->_extrude(*p, description, speed_for_path(*p)); + for (const ExtrusionPath* path : new_loop.get_all_paths()) { + gcode += this->_extrude(*path, description, speed_for_path(*path)); // Orca: Adaptive PA - dont adapt PA after the first pultipath extrusion is completed // as we have already set the PA value to the average flow over the totality of the path // in the first extrude move @@ -6142,7 +6142,7 @@ std::string GCode::extrude_path(const ExtrusionPath& path, const std::string& de std::string gcode = this->_extrude(path, description, speed); if (m_wipe.enable && FILAMENT_CONFIG(wipe)) { m_wipe.path = path.polyline.to_polyline(); - if (is_tree(this->config().support_type) && (path.role() == erSupportMaterial || path.role() == erSupportMaterialInterface || path.role() == erSupportTransition)) { + if (is_tree(this->config().support_type) && is_support(path.role())) { if ((m_wipe.path.first_point() - m_wipe.path.last_point()).cast().norm() > scale_(0.2)) { double min_dist = scale_(0.2); int i = 0; @@ -6210,13 +6210,30 @@ std::string GCode::extrude_infill(const Print &print, const std::vector SMALL_PERIMETER_LENGTH(NOZZLE_CONFIG(small_support_perimeter_threshold))) + return default_speed; + + double small_perimeter_speed = -1.0; + + const auto base_speed = (role == erSupportMaterialInterface) + ? NOZZLE_CONFIG(support_interface_speed) : NOZZLE_CONFIG(support_speed); + + if (NOZZLE_CONFIG(small_support_perimeter_speed).value == 0) + small_perimeter_speed = base_speed * 0.5; + else + small_perimeter_speed = NOZZLE_CONFIG(small_support_perimeter_speed).get_abs_value(base_speed); + + return small_perimeter_speed > 0 ? small_perimeter_speed : default_speed; + }; + std::string gcode; - if (! support_fills.entities.empty()) { + if (!support_fills.entities.empty()) { ExtrusionEntitiesPtr extrusions; extrusions.reserve(support_fills.entities.size()); @@ -6233,28 +6250,27 @@ std::string GCode::extrude_support(const ExtrusionEntityCollection &support_fill if (!support_fills.no_sort) chain_and_reorder_extrusion_entities(extrusions, m_last_pos.to_point()); - //const double support_speed = m_config.support_speed.value; - //const double support_interface_speed = m_config.get_abs_value("support_interface_speed"); for (const ExtrusionEntity *ee : extrusions) { ExtrusionRole role = ee->role(); - assert(role == erSupportMaterial || role == erSupportMaterialInterface || role == erSupportTransition || role == erIroning); + assert(is_support(role) || role == erIroning); + const char* label = (role == erSupportMaterial) ? support_label : ((role == erSupportMaterialInterface) ? support_interface_label : ((role == erIroning) ? support_ironing_label : support_transition_label)); - // BBS - //const double speed = (role == erSupportMaterial) ? support_speed : support_interface_speed; - const double speed = -1.0; + const ExtrusionPath* path = dynamic_cast(ee); const ExtrusionMultiPath* multipath = dynamic_cast(ee); const ExtrusionLoop* loop = dynamic_cast(ee); const ExtrusionEntityCollection* collection = dynamic_cast(ee); - if (path) - gcode += this->extrude_path(*path, label, speed); + + if (path) { + gcode += extrude_path(*path, label, speed_for_path(path->length(), role)); + } else if (multipath) { - gcode += this->extrude_multi_path(*multipath, label, speed); + gcode += extrude_multi_path(*multipath, label, speed_for_path(multipath->length(), role)); } else if (loop) { - gcode += this->extrude_loop(*loop, label, speed); + gcode += extrude_loop(*loop, label, speed_for_path(loop->length(), role)); } else if (collection) { gcode += extrude_support(*collection, support_extrusion_role); @@ -6574,12 +6590,10 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, speed = NOZZLE_CONFIG(initial_layer_infill_speed); } else if (path.role() == erGapFill) { speed = NOZZLE_CONFIG(gap_infill_speed); - } - else if (path.role() == erSupportMaterial || - path.role() == erSupportMaterialInterface) { - const double support_speed = NOZZLE_CONFIG(support_speed); - const double support_interface_speed = NOZZLE_CONFIG(support_interface_speed); - speed = (path.role() == erSupportMaterial) ? support_speed : support_interface_speed; + } else if (path.role() == erSupportMaterial) { + speed = NOZZLE_CONFIG(support_speed); + } else if (path.role() == erSupportMaterialInterface) { + speed = NOZZLE_CONFIG(support_interface_speed); } else { throw Slic3r::InvalidArgument("Invalid speed"); } diff --git a/src/libslic3r/GCode/GCodeProcessor.cpp b/src/libslic3r/GCode/GCodeProcessor.cpp index cc5036846e..44cb185aec 100644 --- a/src/libslic3r/GCode/GCodeProcessor.cpp +++ b/src/libslic3r/GCode/GCodeProcessor.cpp @@ -310,6 +310,7 @@ void GCodeProcessor::TimeMachine::reset() g1_times_cache = std::vector(); first_layer_time = 0.0f; prepare_time = 0.0f; + m_additional_time_buffer.clear(); } static void planner_forward_pass_kernel(const GCodeProcessor::TimeBlock& prev, GCodeProcessor::TimeBlock& curr) @@ -395,13 +396,53 @@ static void recalculate_trapezoids(std::vector& block } } -void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks, float additional_time) +GCodeProcessor::TimeMachine::AdditionalBuffer GCodeProcessor::TimeMachine::merge_adjacent_additional_time_blocks(const AdditionalBuffer& buffer) { - if (!enabled || blocks.size() < 2) + AdditionalBuffer merged; + if (buffer.empty()) + return merged; + + AdditionalBufferBlock current_block = buffer.front(); + for (size_t idx = 1; idx < buffer.size(); ++idx) { + const AdditionalBufferBlock& next_block = buffer[idx]; + if (current_block.first == next_block.first) + current_block.second += next_block.second; + else { + merged.push_back(current_block); + current_block = next_block; + } + } + merged.push_back(current_block); + return merged; +} + +void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks, float additional_time, EMoveType target_move_type, bool is_final) +{ + if (!enabled) return; + // Orca: on the finalization pass, drain extra time that is still buffered (e.g. a + // trailing filament change) even with fewer than two blocks queued -- no later pass + // exists to attribute it on. Every other pass keeps the original >= 2 requirement, + // and an empty buffer keeps today's early-return unchanged (no behavior change). + const bool drain_final = is_final && !m_additional_time_buffer.empty(); + if (blocks.size() < 2 && !drain_final) { + // Not enough blocks to attribute the extra time to yet; buffer it so it is + // applied on a later pass instead of being dropped. + if (additional_time > 0.0f) + m_additional_time_buffer.emplace_back(target_move_type, additional_time); + return; + } assert(keep_last_n_blocks <= blocks.size()); + // Merge any previously buffered extra time with this call's extra time. Each + // entry is applied, in order, to the first block matching its target move type + // (EMoveType::Noop matches any block). + AdditionalBuffer additional_buffer = m_additional_time_buffer; + if (additional_time > 0.0f) + additional_buffer.emplace_back(target_move_type, additional_time); + additional_buffer = merge_adjacent_additional_time_blocks(additional_buffer); + // reverse_pass for (int i = static_cast(blocks.size()) - 1; i > 0; --i) { planner_reverse_pass_kernel(blocks[i - 1], blocks[i]); @@ -415,11 +456,17 @@ void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, P recalculate_trapezoids(blocks); const size_t n_blocks_process = blocks.size() - keep_last_n_blocks; + size_t additional_buffer_idx = 0; for (size_t i = 0; i < n_blocks_process; ++i) { const TimeBlock& block = blocks[i]; float block_time = block.time(); - if (i == 0) - block_time += additional_time; + if (additional_buffer_idx < additional_buffer.size()) { + const EMoveType buf_move_type = additional_buffer[additional_buffer_idx].first; + if (buf_move_type == EMoveType::Noop || buf_move_type == block.move_type) { + block_time += additional_buffer[additional_buffer_idx].second; + ++additional_buffer_idx; + } + } time += double(block_time); result.moves[block.move_id].time[static_cast(mode)] = block_time; @@ -532,6 +579,28 @@ void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, P it_stop_time->elapsed_time = float(time); } + // Carry forward any extra time that found no matching block this pass, so it + // is retried against the blocks of a later pass. + m_additional_time_buffer.clear(); + if (additional_buffer_idx < additional_buffer.size()) { + if (is_final) { + // Orca EOF hardening: no later pass remains to attribute this remainder, + // so add it to the machine total (and the custom-gcode cache) instead of + // dropping it. Deliberately NOT attributed to any move vertex, so a stray + // filament-change delay can never leak into an extrusion role's time. + // (BambuStudio drops the remainder here.) + float leftover = 0.0f; + for (size_t i = additional_buffer_idx; i < additional_buffer.size(); ++i) + leftover += additional_buffer[i].second; + time += double(leftover); + gcode_time.cache += leftover; + } else { + m_additional_time_buffer.insert(m_additional_time_buffer.end(), + additional_buffer.begin() + additional_buffer_idx, + additional_buffer.end()); + } + } + if (keep_last_n_blocks) { blocks.erase(blocks.begin(), blocks.begin() + n_blocks_process); @@ -2625,7 +2694,9 @@ void GCodeProcessor::finalize(bool post_process) } } - calculate_time(m_result); + // Orca: final pass -- also drains any filament-change delay still buffered because + // calculate_time early-returns with fewer than two queued blocks (see calculate_time). + calculate_time(m_result, 0, 0.0f, EMoveType::Noop, /*is_final=*/true); // process the time blocks for (size_t i = 0; i < static_cast(PrintEstimatedStatistics::ETimeMode::Count); ++i) { @@ -5525,9 +5596,35 @@ void GCodeProcessor::process_filament_change(int id) } m_cp_color.current = m_extruder_colors[next_filament_id]; - simulate_st_synchronize(extra_time); - // store tool change move + + // Store the tool-change move first, then attribute the filament-change delay to + // it rather than to whichever motion block happens to be pending. This keeps the + // delay out of the per-role feature-time distribution (tool-change moves are not + // counted as an extrusion role) while still including it in the total and + // per-layer times. store_move_vertex(EMoveType::Tool_change); + + // Construct a zero-distance time block for the tool-change move on each enabled + // machine so the synchronize below can land the delay on it. The synchronize + // flushes with keep_last_n_blocks == 0; if fewer than two blocks are queued it + // buffers the delay instead, and this block stays queued to receive it on a + // later pass. + for (size_t i = 0; i < static_cast(PrintEstimatedStatistics::ETimeMode::Count); ++i) { + TimeMachine& machine = m_time_processor.machines[i]; + if (!machine.enabled) + continue; + TimeBlock block; + block.move_id = static_cast(m_result.moves.size()) - 1; + block.move_type = EMoveType::Tool_change; + block.layer_id = std::max(1, m_layer_id); + block.g1_line_id = m_g1_line_id; + block.flags.prepare_stage = m_processing_start_custom_gcode; + block.distance = 0.0f; + block.calculate_trapezoid(); + machine.blocks.push_back(block); + } + + simulate_st_synchronize(extra_time, EMoveType::Tool_change); } void GCodeProcessor::store_move_vertex(EMoveType type, EMovePathType path_type, bool internal_only) @@ -5851,13 +5948,13 @@ void GCodeProcessor::process_filaments(CustomGCode::Type code) } } -void GCodeProcessor::calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks, float additional_time) +void GCodeProcessor::calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks, float additional_time, EMoveType target_move_type, bool is_final) { // calculate times std::vector actual_speed_moves; for (size_t i = 0; i < static_cast(PrintEstimatedStatistics::ETimeMode::Count); ++i) { TimeMachine& machine = m_time_processor.machines[i]; - machine.calculate_time(m_result, static_cast(i), keep_last_n_blocks, additional_time); + machine.calculate_time(m_result, static_cast(i), keep_last_n_blocks, additional_time, target_move_type, is_final); if (static_cast(i) == PrintEstimatedStatistics::ETimeMode::Normal) actual_speed_moves = std::move(machine.actual_speed_moves); } @@ -5911,9 +6008,9 @@ void GCodeProcessor::calculate_time(GCodeProcessorResult& result, size_t keep_la } } -void GCodeProcessor::simulate_st_synchronize(float additional_time) +void GCodeProcessor::simulate_st_synchronize(float additional_time, EMoveType target_move_type) { - calculate_time(m_result, 0, additional_time); + calculate_time(m_result, 0, additional_time, target_move_type); } void GCodeProcessor::update_estimated_times_stats() diff --git a/src/libslic3r/GCode/GCodeProcessor.hpp b/src/libslic3r/GCode/GCodeProcessor.hpp index 546df6fbb2..1d2e0890da 100644 --- a/src/libslic3r/GCode/GCodeProcessor.hpp +++ b/src/libslic3r/GCode/GCodeProcessor.hpp @@ -560,9 +560,24 @@ class Print; //BBS: prepare stage time before print model, including start gcode time and mostly same with start gcode time float prepare_time; + // Orca: extra time (e.g. a filament-change delay) that can't be attributed to a + // matching block on this pass is buffered here and retried on a later pass, so it + // is never folded into an unrelated move. On the final pass no later pass remains, + // so any still-unmatched remainder is added to the machine total (never to a move + // vertex) instead of being dropped, keeping get_time() consistent with the + // filament-change statistics. Orca-only EOF hardening; BambuStudio drops it. + using AdditionalBufferBlock = std::pair; + using AdditionalBuffer = std::vector; + AdditionalBuffer m_additional_time_buffer; + void reset(); - void calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks = 0, float additional_time = 0.0f); + // Merge adjacent buffer entries that target the same move type. + static AdditionalBuffer merge_adjacent_additional_time_blocks(const AdditionalBuffer& buffer); + + // additional_time is attributed to the first block matching target_move_type + // (EMoveType::Noop matches any block, i.e. the first processed block). + void calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks = 0, float additional_time = 0.0f, EMoveType target_move_type = EMoveType::Noop, bool is_final = false); }; struct UsedFilaments // filaments per ColorChange @@ -1115,10 +1130,10 @@ class Print; void process_custom_gcode_time(CustomGCode::Type code); void process_filaments(CustomGCode::Type code); - void calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks = 0, float additional_time = 0.0f); + void calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks = 0, float additional_time = 0.0f, EMoveType target_move_type = EMoveType::Noop, bool is_final = false); // Simulates firmware st_synchronize() call - void simulate_st_synchronize(float additional_time = 0.0f); + void simulate_st_synchronize(float additional_time = 0.0f, EMoveType target_move_type = EMoveType::Noop); void update_estimated_times_stats(); diff --git a/src/libslic3r/Layer.cpp b/src/libslic3r/Layer.cpp index 18b0af9989..b3a145bed0 100644 --- a/src/libslic3r/Layer.cpp +++ b/src/libslic3r/Layer.cpp @@ -149,6 +149,7 @@ bool Layer::is_perimeter_compatible(const Print& print, const PrintRegion& a, co && config.inner_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.inner_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) && config.outer_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.outer_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) && config.small_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.small_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) + && config.small_support_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.small_support_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) && config.gap_infill_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.gap_infill_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) && config.filter_out_gap_fill.value == other_config.filter_out_gap_fill.value && config.detect_overhang_wall == other_config.detect_overhang_wall diff --git a/src/libslic3r/Model.cpp b/src/libslic3r/Model.cpp index ede9a15d33..1177a5227d 100644 --- a/src/libslic3r/Model.cpp +++ b/src/libslic3r/Model.cpp @@ -187,8 +187,8 @@ Model Model::read_from_step(const std::string& ImportStepProgressFn stepFn, StepIsUtf8Fn stepIsUtf8Fn, std::function step_mesh_fn, - double linear_defletion, - double angle_defletion, + double linear_deflection, + double angle_deflection, bool is_split_compound) { Model model; @@ -201,13 +201,13 @@ Model Model::read_from_step(const std::string& goto _finished; } if (step_mesh_fn) { - if (step_mesh_fn(step_file, linear_defletion, angle_defletion, is_split_compound) == -1) { + if (step_mesh_fn(step_file, linear_deflection, angle_deflection, is_split_compound) == -1) { status = Step::Step_Status::CANCEL; goto _finished; } } - status = step_file.mesh(&model, is_cb_cancel, is_split_compound, linear_defletion, angle_defletion); + status = step_file.mesh(&model, is_cb_cancel, is_split_compound, linear_deflection, angle_deflection); _finished: @@ -3226,6 +3226,7 @@ double Model::findMaxSpeed(const ModelObject* object) { double topSolidInfillSpeedObj = Model::printSpeedMap.topSolidInfillSpeed; double supportSpeedObj = Model::printSpeedMap.supportSpeed; double smallPerimeterSpeedObj = Model::printSpeedMap.smallPerimeterSpeed; + double smallSupportPerimeterSpeedObj = Model::printSpeedMap.smallSupportPerimeterSpeed; for (std::string objectKey : objectKeys) { if (objectKey == "inner_wall_speed"){ perimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); @@ -3243,8 +3244,10 @@ double Model::findMaxSpeed(const ModelObject* object) { externalPerimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); if (objectKey == "small_perimeter_speed") smallPerimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); + if (objectKey == "small_support_perimeter_speed") + smallSupportPerimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); } - objMaxSpeed = std::max(perimeterSpeedObj, std::max(externalPerimeterSpeedObj, std::max(infillSpeedObj, std::max(solidInfillSpeedObj, std::max(topSolidInfillSpeedObj, std::max(supportSpeedObj, std::max(smallPerimeterSpeedObj, objMaxSpeed))))))); + objMaxSpeed = std::max(perimeterSpeedObj, std::max(externalPerimeterSpeedObj, std::max(infillSpeedObj, std::max(solidInfillSpeedObj, std::max(topSolidInfillSpeedObj, std::max(supportSpeedObj, std::max(smallPerimeterSpeedObj, std::max(smallSupportPerimeterSpeedObj, objMaxSpeed)))))))); if (objMaxSpeed <= 0) objMaxSpeed = 250.; return objMaxSpeed; } diff --git a/src/libslic3r/Model.hpp b/src/libslic3r/Model.hpp index d8697adb41..b15124d9ed 100644 --- a/src/libslic3r/Model.hpp +++ b/src/libslic3r/Model.hpp @@ -1467,6 +1467,7 @@ struct GlobalSpeedMap double topSolidInfillSpeed; double supportSpeed; double smallPerimeterSpeed; + double smallSupportPerimeterSpeed; double maxSpeed; Polygon bed_poly; }; @@ -1588,8 +1589,8 @@ public: ImportStepProgressFn stepFn, StepIsUtf8Fn stepIsUtf8Fn, std::function step_mesh_fn, - double linear_defletion, - double angle_defletion, + double linear_deflection, + double angle_deflection, bool is_split_compound); //BBS: add part plate related logic diff --git a/src/libslic3r/PlaceholderParser.cpp b/src/libslic3r/PlaceholderParser.cpp index f03a5cee38..865b70434b 100644 --- a/src/libslic3r/PlaceholderParser.cpp +++ b/src/libslic3r/PlaceholderParser.cpp @@ -836,9 +836,11 @@ namespace client static std::map tag_to_error_message; size_t get_extruder_id() const { - const ConfigOptionInts * filament_map_opt = external_config->option("filament_map"); - if (filament_map_opt && current_extruder_id < filament_map_opt->values.size()) { - return filament_map_opt->values[current_extruder_id]; + if (external_config != nullptr) { + const ConfigOptionInts * filament_map_opt = external_config->option("filament_map"); + if (filament_map_opt && current_extruder_id < filament_map_opt->values.size()) { + return filament_map_opt->values[current_extruder_id]; + } } return 0; } @@ -1096,27 +1098,109 @@ namespace client const ConfigOptionVectorBase* vec = static_cast(opt.opt); if (vec->empty()) ctx->throw_exception("Indexing an empty vector variable", opt.it_range); + + // Helper to resolve a FloatOrPercent value (handles ratio_over chain for percent values). + // elem_index: the element index used to access this vector element, so that + // parent vectors (via ratio_over) use the same index rather than the current extruder. + auto resolve_float_or_percent = [ctx, &opt, &output](const FloatOrPercent &fop, size_t elem_index) { + std::string opt_key(opt.it_range.begin(), opt.it_range.end()); + if (boost::ends_with(opt_key, "line_width")) { + // Line width supports defaults and a complex graph of dependencies. + output.set_d(Flow::extrusion_width(opt_key, *ctx, static_cast(ctx->current_extruder_id))); + } else if (! fop.percent) { + // Not a percent, just return the value. + output.set_d(fop.value); + } else { + // Resolve dependencies using the "ratio_over" link to a parent value. + const ConfigOptionDef *opt_def = print_config_def.get(opt_key); + assert(opt_def != nullptr); + double v = fop.value * 0.01; // percent to ratio + for (;;) { + const ConfigOption *opt_parent = opt_def->ratio_over.empty() ? nullptr : ctx->resolve_symbol(opt_def->ratio_over); + if (opt_parent == nullptr) + ctx->throw_exception("FloatOrPercent variable failed to resolve the \"ratio_over\" dependencies", opt.it_range); + if (boost::ends_with(opt_def->ratio_over, "line_width")) { + // Line width supports defaults and a complex graph of dependencies. + assert(opt_parent->type() == coFloatOrPercent); + v *= Flow::extrusion_width(opt_def->ratio_over, static_cast(opt_parent), *ctx, static_cast(ctx->current_extruder_id)); + break; + } + if (opt_parent->type() == coFloat || opt_parent->type() == coFloatOrPercent) { + v *= opt_parent->getFloat(); + if (opt_parent->type() == coFloat || ! static_cast(opt_parent)->percent) + break; + v *= 0.01; // percent to ratio + } else if (opt_parent->type() == coFloats) { + // Vector parent: extract the value for the current extruder. + const ConfigOptionFloatsNullable *parent_nullable = dynamic_cast(opt_parent); + if (parent_nullable) { + v *= (parent_nullable->size() == 1) ? parent_nullable->get_at(0) : parent_nullable->get_at(elem_index); + } else { + const ConfigOptionFloats *parent_vec = static_cast(opt_parent); + v *= (parent_vec->size() == 1) ? parent_vec->get_at(0) : parent_vec->get_at(elem_index); + } + break; + } else if (opt_parent->type() == coFloatsOrPercents) { + // Vector parent with percent support: extract the FloatOrPercent for the current extruder. + const ConfigOptionFloatsOrPercentsNullable *parent_nullable = dynamic_cast(opt_parent); + if (parent_nullable) { + const FloatOrPercent &parent_fop = (parent_nullable->size() == 1) ? parent_nullable->get_at(0) : parent_nullable->get_at(elem_index); + if (! parent_fop.percent) { + v *= parent_fop.value; + break; + } + v *= parent_fop.value * 0.01; // percent to ratio + } else { + const ConfigOptionFloatsOrPercents *parent_vec = static_cast(opt_parent); + const FloatOrPercent &parent_fop = (parent_vec->size() == 1) ? parent_vec->get_at(0) : parent_vec->get_at(elem_index); + if (! parent_fop.percent) { + v *= parent_fop.value; + break; + } + v *= parent_fop.value * 0.01; // percent to ratio + } + } + // Continue one level up in the "ratio_over" hierarchy. + opt_def = print_config_def.get(opt_def->ratio_over); + assert(opt_def != nullptr); + } + output.set_d(v); + } + }; + if (!opt.has_index()) { // Allow omitting extruder id when referencing vectors switch (opt.opt->type()) { case coFloats: { - const ConfigOptionFloatsNullable* opt_floatsnullable = static_cast(opt.opt); + const ConfigOptionFloatsNullable* opt_floatsnullable = dynamic_cast(opt.opt); if (opt_floatsnullable) { if (opt_floatsnullable->size() == 1) { // old version - output.set_d(static_cast(opt.opt)->get_at(0)); + output.set_d(opt_floatsnullable->get_at(0)); } else { - output.set_d(static_cast(opt.opt)->get_at(ctx->get_extruder_id())); + output.set_d(opt_floatsnullable->get_at(ctx->get_extruder_id())); } } else { const ConfigOptionFloats* opt_floats = static_cast(opt.opt); if (opt_floats->size() == 1) { // old version - output.set_d(static_cast(opt.opt)->get_at(0)); + output.set_d(opt_floats->get_at(0)); } else { - output.set_d(static_cast(opt.opt)->get_at(ctx->get_extruder_id())); + output.set_d(opt_floats->get_at(ctx->get_extruder_id())); } } break; } + case coFloatsOrPercents: { + const ConfigOptionFloatsOrPercentsNullable *opt_vec_nullable = dynamic_cast(opt.opt); + if (opt_vec_nullable) { + size_t elem_index = (opt_vec_nullable->size() == 1) ? 0 : ctx->get_extruder_id(); + resolve_float_or_percent(opt_vec_nullable->get_at(elem_index), elem_index); + } else { + const ConfigOptionFloatsOrPercents *opt_vec = static_cast(opt.opt); + size_t elem_index = (opt_vec->size() == 1) ? 0 : ctx->get_extruder_id(); + resolve_float_or_percent(opt_vec->get_at(elem_index), elem_index); + } + break; + } default: ctx->throw_exception("Referencing a vector variable when scalar is expected", opt.it_range); } } else { @@ -1131,6 +1215,15 @@ namespace client case coPoints: output.set_s(to_string(static_cast(opt.opt)->values[idx])); break; case coBools: output.set_b(static_cast(opt.opt)->values[idx] != 0); break; case coEnums: output.set_i(static_cast(opt.opt)->values[idx]); break; + case coFloatsOrPercents: { + const ConfigOptionFloatsOrPercentsNullable *opt_vec_nullable = dynamic_cast(opt.opt); + if (opt_vec_nullable) { + resolve_float_or_percent(opt_vec_nullable->values[idx], idx); + } else { + resolve_float_or_percent(static_cast(opt.opt)->values[idx], idx); + } + break; + } default: ctx->throw_exception("Unsupported vector variable type", opt.it_range); } diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 0ac8562a38..eceb67f590 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -1062,6 +1062,8 @@ static std::vector s_Preset_print_options{ "bottom_surface_pattern", "infill_direction", "solid_infill_direction", + "top_layer_direction", + "bottom_layer_direction", "counterbore_hole_bridging", "infill_shift_step", "sparse_infill_rotate_template", @@ -1213,6 +1215,8 @@ static std::vector s_Preset_print_options{ "wall_maximum_deviation", "small_perimeter_speed", "small_perimeter_threshold", + "small_support_perimeter_speed", + "small_support_perimeter_threshold", "bridge_angle", "internal_bridge_angle", "relative_bridge_angle", @@ -1290,6 +1294,7 @@ static std::vector s_Preset_print_options{ "hole_to_polyhole", "hole_to_polyhole_threshold", "hole_to_polyhole_twisted", + "hole_to_polyhole_max_edges", "mmu_segmented_region_max_width", "mmu_segmented_region_interlocking_depth", "small_area_infill_flow_compensation", @@ -1872,6 +1877,26 @@ int PresetCollection::get_differed_values_to_update(Preset& preset, std::mapserialize(); } + + // Orca: force-emit nullable filament override keys whenever they hold a nil ("off") + // value, even when the diff dropped them because the parent is nil too. Otherwise the + // key is absent from the synced profile and the cloud re-materializes it against the + // option's non-nil default (e.g. filament_retract_before_wipe -> 100%), silently + // resurrecting an override the user turned off. See GitHub issue on Retract Before Wipe. + if (m_type == Preset::TYPE_FILAMENT) { + for (const std::string& opt_key : filament_extruder_override_keys) { + if (key_values.count(opt_key)) + continue; // already carried by the diff + const auto* opt_vec = dynamic_cast(preset.config.option(opt_key)); + if (opt_vec == nullptr) + continue; + bool has_nil = false; + for (size_t i = 0; i < opt_vec->size(); ++i) + if (opt_vec->is_nil(i)) { has_nil = true; break; } + if (has_nil) + key_values[opt_key] = opt_vec->serialize(); + } + } } else { for (auto iter = preset.config.cbegin(); iter != preset.config.cend(); ++iter) diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index ad65f693dd..03f2b595f8 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -542,6 +542,12 @@ PresetsConfigSubstitutions PresetBundle::load_presets(AppConfig &config, Forward load_user_presets(dir_user_presets, substitution_rule); } + // Rewrite renamed compatible_printers / compatible_prints references before selection. Skipped + // in validation mode so the profile validator (has_errors -> check_preset_references) sees the + // raw vendor-JSON references instead of the silently-repaired ones. + if (!validation_mode) + this->normalize_compatible_presets(); + this->update_multi_material_filament_presets(); this->update_compatible(PresetSelectCompatibleType::Never); @@ -768,6 +774,8 @@ PresetsConfigSubstitutions PresetBundle::load_project_embedded_presets(std::vect //this->update_multi_material_filament_presets(); //this->update_compatible(PresetSelectCompatibleType::Never); + // Rewrite renamed compatible references before the caller (Plater) selects the project presets. + this->normalize_compatible_presets(); if (! errors_cummulative.empty()) throw Slic3r::RuntimeError(errors_cummulative); @@ -1145,6 +1153,9 @@ PresetsConfigSubstitutions PresetBundle::load_user_presets(AppConfig & this->printers.update_after_user_presets_loaded(); }*/ + // Rewrite renamed compatible references in synced user presets before compatibility is evaluated. + this->normalize_compatible_presets(); + this->update_multi_material_filament_presets(); this->update_compatible(PresetSelectCompatibleType::Never); //this->load_selections(config, PresetPreferences()); @@ -1830,6 +1841,9 @@ PresetsConfigSubstitutions PresetBundle::update_subscribed_presets( BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << " failed to save bundle metadata to: " << metadata_save_path.string(); } + // Rewrite renamed compatible references in synced user presets before compatibility is evaluated. + this->normalize_compatible_presets(); + this->update_multi_material_filament_presets(); this->update_compatible(PresetSelectCompatibleType::Never); @@ -5355,6 +5369,49 @@ void PresetBundle::update_multi_material_filament_presets(size_t to_delete_filam } } +// Rewrite a preset-name-list field (compatible_printers / compatible_prints) so references to a +// renamed system preset point at the current name. Sibling-collection analog of +// Preset::normalize_inherits: target.find_preset(name, false) resolves "renamed_from" recursively +// and returns nullptr for unknown names, so we rewrite only on a positive, changed match and leave +// user/deleted names untouched. +static void normalize_compatible_field(Preset &preset, const char *field_key, PresetCollection &target) +{ + auto *opt = preset.config.option(field_key); + if (opt == nullptr) + return; + for (std::string &name : opt->values) { + if (name.empty()) + continue; + if (const Preset *resolved = target.find_preset(name, false); resolved != nullptr && resolved->name != name) + name = resolved->name; + } +} + +// Resolve compatible_printers / compatible_prints references that point at a renamed system preset +// to the current name, mirroring Preset::normalize_inherits for the "inherits" field. Because these +// fields reference presets in sibling collections (printers / prints / sla_prints), the resolution +// cannot happen inside a single collection's load_presets() and runs here, after update_system_maps() +// has built every collection's rename map. Must be called before selection so the rewritten stored +// preset is copied into the edited preset by select_preset (no spurious "modified" flag). +void PresetBundle::normalize_compatible_presets() +{ + // compatible_printers references a printer preset; compatible_prints (filaments / SLA materials) + // references a process preset. System presets are normalized too: a vendor profile can itself + // reference a sibling preset by a name that was later renamed, and the rewrite is in-memory only + // (system presets are never persisted back to vendor JSON). (begin()/end() skip defaults.) + auto normalize = [this](PresetCollection &holders, PresetCollection *processes) { + for (Preset &p : holders) { + normalize_compatible_field(p, "compatible_printers", this->printers); + if (processes != nullptr) + normalize_compatible_field(p, "compatible_prints", *processes); + } + }; + normalize(this->prints, nullptr); + normalize(this->filaments, &this->prints); + normalize(this->sla_prints, nullptr); + normalize(this->sla_materials, &this->sla_prints); +} + void PresetBundle::update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible) { const Preset &printer_preset = this->printers.get_edited_preset(); @@ -5609,6 +5666,9 @@ bool PresetBundle::has_errors(bool check_duplicate_filament_subtypes) const if (check_duplicate_filament_subtypes && this->check_duplicate_filament_subtypes()) has_errors = true; + if (this->check_preset_references()) + has_errors = true; + return has_errors; } @@ -5639,6 +5699,68 @@ static std::string preset_file_uri(const std::string &file) return uri; } +// Orca: validator-only. Flag any system preset whose inherits / compatible_printers / +// compatible_prints references a name that no longer resolves. Uses find_preset (exact match, then +// the renamed_from map - no fuzzy find_preset2, no alias resolution), so: +// nullptr -> the referenced preset was deleted/renamed away (name is dangling), +// resolved != name -> the reference uses an old name that renamed_from maps to a current one. +// Both should be fixed at the source rather than relying on load-time normalization - which is why +// normalize_compatible_presets() is skipped in validation mode (see load_presets), so this sees the +// raw vendor-JSON references. Safe under a single-vendor run (-v) too: inherits / compatible_printers +// / compatible_prints only name same-vendor or OrcaFilamentLibrary presets (both loaded), so a +// reference that does not resolve is genuinely dangling rather than an unloaded cross-vendor preset. +bool PresetBundle::check_preset_references() const +{ + bool found = false; + + // Resolve one reference (an inherits parent or a compatible_* entry) against its target + // collection and log if it is dangling (unknown) or uses a renamed preset's old name. + auto report_ref = [&](const Preset &p, const std::string &name, const PresetCollection &target, + const char *verb, const char *noun) { + const Preset *resolved = target.find_preset(name, false); + if (resolved == nullptr) { + found = true; + BOOST_LOG_TRIVIAL(error) << "Preset \"" << p.name << "\" " << verb << " unknown " << noun << " \"" << name << "\":\n" + << preset_file_uri(p.file); + } else if (resolved->name != name) { + found = true; + BOOST_LOG_TRIVIAL(error) << "Preset \"" << p.name << "\" " << verb << " renamed " << noun << " \"" << name + << "\" (now \"" << resolved->name << "\"):\n" << preset_file_uri(p.file); + } + }; + + auto check_list = [&](const Preset &p, const char *key, const PresetCollection &target) { + const auto *opt = p.config.option(key); + if (opt == nullptr) + return; + for (const std::string &name : opt->values) + if (!name.empty()) + report_ref(p, name, target, "references", key); + }; + + auto check_collection = [&](const PresetCollection &holders, const PresetCollection *processes) { + for (const Preset &p : holders) { + if (!p.is_system) + continue; + if (const std::string &inh = p.inherits(); !inh.empty()) + report_ref(p, inh, holders, "inherits", "parent"); + check_list(p, "compatible_printers", this->printers); + if (processes != nullptr) + check_list(p, "compatible_prints", *processes); + } + }; + + // Printers carry no compatible_printers/compatible_prints (those name a printer, so a printer + // holding them makes no sense); check_list is a no-op for them, so only their inherits is checked. + check_collection(this->printers, nullptr); + check_collection(this->prints, nullptr); + check_collection(this->filaments, &this->prints); + check_collection(this->sla_prints, nullptr); + check_collection(this->sla_materials, &this->sla_prints); + + return found; +} + // Orca: a filament is matched from the AMS by (filament_id + printer compatibility). // For any one printer, at most one instantiated filament preset with a given // filament_id may be compatible - otherwise the AMS match is ambiguous and the diff --git a/src/libslic3r/PresetBundle.hpp b/src/libslic3r/PresetBundle.hpp index e5def0269b..5488c4264f 100644 --- a/src/libslic3r/PresetBundle.hpp +++ b/src/libslic3r/PresetBundle.hpp @@ -482,6 +482,11 @@ public: void update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible); void update_compatible(PresetSelectCompatibleType select_other_if_incompatible) { this->update_compatible(select_other_if_incompatible, select_other_if_incompatible); } + // Rewrite compatible_printers / compatible_prints references that point at a renamed system + // preset to the current name, mirroring Preset::normalize_inherits for the "inherits" field. + // Call after loading presets and before selection; requires update_system_maps() to have run. + void normalize_compatible_presets(); + // Set the is_visible flag for printer vendors, printer models and printer variants // based on the user configuration. // If the "vendor" section is missing, enable all models and variants of the particular vendor. @@ -514,9 +519,13 @@ public: return { Preset::TYPE_PRINTER, Preset::TYPE_SLA_PRINT, Preset::TYPE_SLA_MATERIAL }; } - // Orca: for validation only. The duplicate filament subtype check is opt-in for now + // Orca: for validation only. bool has_errors(bool check_duplicate_filament_subtypes = false) const; + // Orca: for validation only. Flag any system preset whose inherits / compatible_printers / + // compatible_prints references a deleted (unknown) or renamed (old) preset name. + bool check_preset_references() const; + private: // ---- VendorCache — header-only metadata struct -------------------------- // Preset collections are NOT stored here; they are serialized directly from diff --git a/src/libslic3r/PrintBase.cpp b/src/libslic3r/PrintBase.cpp index 821cf8a7f8..4448c12c76 100644 --- a/src/libslic3r/PrintBase.cpp +++ b/src/libslic3r/PrintBase.cpp @@ -21,11 +21,12 @@ void PrintTryCancel::operator()() size_t PrintStateBase::g_last_timestamp = 0; -// Update "scale", "input_filename", "input_filename_base" placeholders from the current m_objects. +// Update "scale", "input_filename", "input_filename_base", "first_object_name" placeholders from the current m_objects. void PrintBase::update_object_placeholders(DynamicConfig &config, const std::string &default_ext) const { // get the first input file name std::string input_file; + std::string first_object_name; std::vector v_scale; int num_objects = 0; int num_instances = 0; @@ -38,6 +39,8 @@ void PrintBase::update_object_placeholders(DynamicConfig &config, const std::str } if (printable) { ++ num_objects; + if (num_objects == 1) + first_object_name = model_object->name; // CHECK_ME -> Is the following correct ? v_scale.push_back("x:" + boost::lexical_cast(printable->get_scaling_factor(X) * 100) + "% y:" + boost::lexical_cast(printable->get_scaling_factor(Y) * 100) + @@ -51,6 +54,7 @@ void PrintBase::update_object_placeholders(DynamicConfig &config, const std::str config.set_key_value("num_instances", new ConfigOptionInt(num_instances)); config.set_key_value("scale", new ConfigOptionStrings(v_scale)); + config.set_key_value("first_object_name", new ConfigOptionString(first_object_name)); if (! input_file.empty()) { // get basename with and without suffix const std::string input_filename = boost::filesystem::path(input_file).filename().string(); diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 0369c70ee3..bfc7c88861 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2191,6 +2191,28 @@ void PrintConfigDef::init_fff_params() def->nullable = true; def->set_default_value(new ConfigOptionFloatsNullable{0}); + def = this->add("small_support_perimeter_speed", coFloatsOrPercents); + def->label = L("Small support perimeters"); + def->category = L("Speed"); + def->tooltip = L("Same as \"Small perimeters\", but for supports. " + "This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. " + "If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. " + "Set to zero for auto."); + def->sidetext = L("mm/s or %"); + def->ratio_over = "outer_wall_speed"; + def->min = 1; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(50, true)}); + + def = this->add("small_support_perimeter_threshold", coFloats); + def->label = L("Small support perimeters threshold"); + def->category = L("Speed"); + def->tooltip = L("This sets the threshold for small support perimeter length. The default threshold is 0mm."); + def->sidetext = L("mm"); // millimeters, CIS languages need translation + def->min = 0; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloatsNullable{0}); + def = this->add("wall_sequence", coEnum); def->label = L("Walls printing order"); def->category = L("Quality"); @@ -2426,18 +2448,19 @@ void PrintConfigDef::init_fff_params() // xgettext:no-c-format, no-boost-format def = this->add("adaptive_pressure_advance_overhangs", coBools); - def->label = L("Enable adaptive pressure advance for overhangs (beta)"); - def->tooltip = L("Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, " - "as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" - "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."); + def->label = L("Enable adaptive pressure advance within features (beta)"); + def->tooltip = L("Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n\n" + "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n\n" + "This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBools{ false }); def = this->add("adaptive_pressure_advance_bridges", coFloats); - def->label = L("Pressure advance for bridges"); - def->tooltip = L("Pressure advance value for bridges. Set to 0 to disable.\n\n" - "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. " - "This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."); + def->label = L("Static pressure advance for bridges"); + def->tooltip = L("Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" + "equivalent walls (using adaptive settings if enabled).\n\n" + "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. " + "This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."); def->max = 2; def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloats { 0.0 }); @@ -2983,6 +3006,26 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(45)); + def = this->add("top_layer_direction", coFloat); + def->label = L("Top layer direction"); + def->category = L("Strength"); + def->tooltip = L("Optional absolute angle for top-layer infill and ironing base direction. Set to -1 to use the current solid infill direction behavior."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = -1; + def->max = 360; + def->mode = comSimple; + def->set_default_value(new ConfigOptionFloat(-1)); + + def = this->add("bottom_layer_direction", coFloat); + def->label = L("Bottom layer direction"); + def->category = L("Strength"); + def->tooltip = L("Optional absolute angle for bottom-layer infill. Set to -1 to use the current solid infill direction behavior."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = -1; + def->max = 360; + def->mode = comSimple; + def->set_default_value(new ConfigOptionFloat(-1)); + def = this->add("sparse_infill_density", coPercent); def->label = L("Sparse infill density"); def->category = L("Strength"); @@ -7094,6 +7137,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(true)); + def = this->add("hole_to_polyhole_max_edges", coInt); + def->label = L("Maximum Polyhole edge count"); + def->category = L("Quality"); + def->tooltip = L("Maximum number of polyhole edges" + "\nThis setting limits the amount of edges a polyhole can have"); + def->mode = comExpert; + def->min = 3; + def->set_default_value(new ConfigOptionInt(50)); + def = this->add("thumbnails", coString); def->label = L("G-code thumbnails"); def->tooltip = L("Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the following format: \"XxY, XxY, ...\""); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index d59608f467..fb2cd65898 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -1107,6 +1107,8 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionFloatsNullable, outer_wall_speed)) ((ConfigOptionFloat, infill_direction)) ((ConfigOptionFloat, solid_infill_direction)) + ((ConfigOptionFloat, top_layer_direction)) + ((ConfigOptionFloat, bottom_layer_direction)) ((ConfigOptionString, solid_infill_rotate_template)) ((ConfigOptionBool, symmetric_infill_y_axis)) ((ConfigOptionFloat, infill_shift_step)) @@ -1209,6 +1211,8 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionFloat, filter_out_gap_fill)) ((ConfigOptionFloatsOrPercentsNullable, small_perimeter_speed)) ((ConfigOptionFloatsNullable, small_perimeter_threshold)) + ((ConfigOptionFloatsOrPercentsNullable, small_support_perimeter_speed)) + ((ConfigOptionFloatsNullable, small_support_perimeter_threshold)) ((ConfigOptionFloat, top_solid_infill_flow_ratio)) ((ConfigOptionFloat, bottom_solid_infill_flow_ratio)) ((ConfigOptionFloatOrPercent, infill_anchor)) @@ -1221,6 +1225,8 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionBool, hole_to_polyhole)) ((ConfigOptionFloatOrPercent, hole_to_polyhole_threshold)) ((ConfigOptionBool, hole_to_polyhole_twisted)) + ((ConfigOptionInt, hole_to_polyhole_max_edges)) + ((ConfigOptionBool, overhang_reverse)) ((ConfigOptionBool, overhang_reverse_internal_only)) ((ConfigOptionFloatOrPercent, overhang_reverse_threshold)) diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp index 07a6150af5..13d7297f93 100644 --- a/src/libslic3r/PrintObject.cpp +++ b/src/libslic3r/PrintObject.cpp @@ -157,10 +157,10 @@ std::vector> PrintObject::all_regions( return out; } -Polygons create_polyholes(const Point center, const coord_t radius, const coord_t nozzle_diameter, bool multiple) +Polygons create_polyholes(const Point center, const coord_t radius, const coord_t nozzle_diameter, bool multiple, int max_edges) { // n = max(round(2 * d), 3); // for 0.4mm nozzle - size_t nb_edges = (int)std::max(3, (int)std::round(4.0 * unscaled(radius) * 0.4 / unscaled(nozzle_diameter))); + size_t nb_edges = (int)std::min(max_edges, std::max(3, (int)std::round(4.0 * unscaled(radius) * 0.4 / unscaled(nozzle_diameter)))); // cylinder(h = h, r = d / cos (180 / n), $fn = n); //create x polyholes by rotation if multiple int nb_polyhole = 1; @@ -190,8 +190,8 @@ void PrintObject::_transform_hole_to_polyholes() { // get all circular holes for each layer // the id is center-diameter-extruderid - //the tuple is Point center; float diameter_max; int extruder_id; coord_t max_variation; bool twist; - std::vector, Polygon*>>> layerid2center; + //the tuple is Point center; float diameter_max; int extruder_id; coord_t max_variation; bool twist; int max_edges; + std::vector, Polygon*>>> layerid2center; for (size_t i = 0; i < this->m_layers.size(); i++) layerid2center.emplace_back(); tbb::parallel_for( tbb::blocked_range(0, m_layers.size()), @@ -230,9 +230,10 @@ void PrintObject::_transform_hole_to_polyholes() // SCALED_EPSILON was a bit too harsh. Now using a config, as some may want some harsh setting and some don't. coord_t max_variation = std::max(SCALED_EPSILON, scale_(this->m_layers[layer_idx]->m_regions[region_idx]->region().config().hole_to_polyhole_threshold.get_abs_value(unscaled(diameter_sum / hole.points.size())))); bool twist = this->m_layers[layer_idx]->m_regions[region_idx]->region().config().hole_to_polyhole_twisted.value; + int max_edges = this->m_layers[layer_idx]->m_regions[region_idx]->region().config().hole_to_polyhole_max_edges.value; if (diameter_max - diameter_min < max_variation * 2 && diameter_line_max - diameter_line_min < max_variation * 2) { layerid2center[layer_idx].emplace_back( - std::tuple{center, diameter_max, layer->m_regions[region_idx]->region().config().outer_wall_filament_id.value, max_variation, twist}, & hole); + std::tuple{center, diameter_max, layer->m_regions[region_idx]->region().config().outer_wall_filament_id.value, max_variation, twist, max_edges}, & hole); } } } @@ -243,14 +244,14 @@ void PrintObject::_transform_hole_to_polyholes() } }); //sort holes per center-diameter - std::map, std::vector>> id2layerz2hole; + std::map, std::vector>> id2layerz2hole; //search & find hole that span at least X layers const size_t min_nb_layers = 2; for (size_t layer_idx = 0; layer_idx < this->m_layers.size(); ++layer_idx) { for (size_t hole_idx = 0; hole_idx < layerid2center[layer_idx].size(); ++hole_idx) { //get all other same polygons - std::tuple& id = layerid2center[layer_idx][hole_idx].first; + std::tuple& id = layerid2center[layer_idx][hole_idx].first; float max_z = layers()[layer_idx]->print_z; std::vector> holes; holes.emplace_back(layerid2center[layer_idx][hole_idx].second, layer_idx); @@ -258,7 +259,7 @@ void PrintObject::_transform_hole_to_polyholes() if (layers()[search_layer_idx]->print_z - layers()[search_layer_idx]->height - max_z > EPSILON) break; //search an other polygon with same id for (size_t search_hole_idx = 0; search_hole_idx < layerid2center[search_layer_idx].size(); ++search_hole_idx) { - std::tuple& search_id = layerid2center[search_layer_idx][search_hole_idx].first; + std::tuple& search_id = layerid2center[search_layer_idx][search_hole_idx].first; if (std::get<2>(id) == std::get<2>(search_id) && std::get<0>(id).distance_to(std::get<0>(search_id)) < std::get<3>(id) && std::abs(std::get<1>(id) - std::get<1>(search_id)) < std::get<3>(id) @@ -279,7 +280,7 @@ void PrintObject::_transform_hole_to_polyholes() } //create a polyhole per id and replace holes points by it. for (auto entry : id2layerz2hole) { - Polygons polyholes = create_polyholes(std::get<0>(entry.first), std::get<1>(entry.first), scale_(print()->config().nozzle_diameter.get_at(std::get<2>(entry.first) - 1)), std::get<4>(entry.first)); + Polygons polyholes = create_polyholes(std::get<0>(entry.first), std::get<1>(entry.first), scale_(print()->config().nozzle_diameter.get_at(std::get<2>(entry.first) - 1)), std::get<4>(entry.first), std::get<5>(entry.first)); for (auto& poly_to_replace : entry.second) { Polygon polyhole = polyholes[poly_to_replace.second % polyholes.size()]; //search the clone in layers->slices @@ -1111,6 +1112,8 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "outer_wall_speed" || opt_key == "small_perimeter_speed" || opt_key == "small_perimeter_threshold" + || opt_key == "small_support_perimeter_speed" + || opt_key == "small_support_perimeter_threshold" || opt_key == "sparse_infill_speed" || opt_key == "inner_wall_speed" || opt_key == "support_speed" @@ -1203,6 +1206,7 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "hole_to_polyhole" || opt_key == "hole_to_polyhole_threshold" || opt_key == "hole_to_polyhole_twisted" + || opt_key == "hole_to_polyhole_max_edges" ) { steps.emplace_back(posSlice); } else if (opt_key == "enable_support") { @@ -1303,6 +1307,8 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "skeleton_infill_line_width" || opt_key == "infill_direction" || opt_key == "solid_infill_direction" + || opt_key == "top_layer_direction" + || opt_key == "bottom_layer_direction" || opt_key == "align_infill_direction_to_model" || opt_key == "extra_solid_infills" || opt_key == "ensure_vertical_shell_thickness" @@ -1424,6 +1430,8 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "outer_wall_speed" || opt_key == "small_perimeter_speed" || opt_key == "small_perimeter_threshold" + || opt_key == "small_support_perimeter_speed" + || opt_key == "small_support_perimeter_threshold" || opt_key == "sparse_infill_speed" || opt_key == "inner_wall_speed" || opt_key == "internal_solid_infill_speed" diff --git a/src/libslic3r/Utils.hpp b/src/libslic3r/Utils.hpp index f1bdd89712..a76857dc4b 100644 --- a/src/libslic3r/Utils.hpp +++ b/src/libslic3r/Utils.hpp @@ -194,6 +194,7 @@ std::string debug_out_path(const char *name, ...); // smaller level means less log. level=5 means saving all logs. void set_log_path_and_level(const std::string& file, unsigned int level); void flush_logs(); +void shutdown_console_logging(); boost::filesystem::path get_log_file_name(); // A special type for strings encoded in the local Windows 8-bit code page. @@ -299,6 +300,10 @@ std::string header_gcodeviewer_generated(); // getpid platform wrapper extern unsigned get_current_pid(); +// Per-user id for isolating temp dirs; empty on Windows (its temp dir is already per-user). +std::string per_user_temp_id(); +// Per-user temp root under `base`; an empty `user_id` returns `base` unchanged. +std::string per_user_temp_dir(const std::string &base, const std::string &user_id); // BBS: backup & restore std::string get_process_name(int pid); diff --git a/src/libslic3r/utils.cpp b/src/libslic3r/utils.cpp index 42dcc14878..131369d212 100644 --- a/src/libslic3r/utils.cpp +++ b/src/libslic3r/utils.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -46,14 +47,19 @@ #include #include #include +#include #include +#include #include #include #include #include #include +#include #include +#include +#include #include #include @@ -174,6 +180,7 @@ unsigned get_logging_level() } boost::shared_ptr> g_log_sink; +boost::shared_ptr> g_console_log_sink; // Force set_logging_level(<=error) after loading of the DLL. // This is currently only needed if libslic3r is loaded as a shared library into Perl interpreter @@ -346,6 +353,19 @@ namespace src = boost::log::sources; namespace expr = boost::log::expressions; namespace keywords = boost::log::keywords; namespace attrs = boost::log::attributes; +namespace sinks = boost::log::sinks; + +void shutdown_console_logging() +{ + if (!g_console_log_sink) + return; + + auto console_sink = g_console_log_sink; + boost::log::core::get()->remove_sink(console_sink); + console_sink->stop(); + g_console_log_sink.reset(); +} + void set_log_path_and_level(const std::string& file, unsigned int level) { #ifdef __APPLE__ @@ -377,6 +397,24 @@ void set_log_path_and_level(const std::string& file, unsigned int level) keywords::auto_flush = true ); + shutdown_console_logging(); + +#ifdef SLIC3R_CONSOLE_LOG + auto console_backend = boost::make_shared(); + console_backend->add_stream(boost::shared_ptr(&std::cout, boost::null_deleter())); + console_backend->auto_flush(true); + + g_console_log_sink = boost::make_shared>(console_backend); + g_console_log_sink->set_formatter( + expr::stream + << "[" << expr::attr< logging::trivial::severity_level >("Severity") << "]\t" + << expr::format_date_time< boost::posix_time::ptime >("TimeStamp", "%Y-%m-%d %H:%M:%S.%f") << " " + <<"[Thread " << expr::attr("ThreadID") << "]" + << ": " << expr::smessage + ); + boost::log::core::get()->add_sink(g_console_log_sink); +#endif + logging::add_common_attributes(); set_logging_level(level); @@ -1247,6 +1285,24 @@ unsigned get_current_pid() #endif } +std::string per_user_temp_id() +{ +#ifdef WIN32 + return {}; +#else + return std::to_string(static_cast(::getuid())); +#endif +} + +std::string per_user_temp_dir(const std::string &base, const std::string &user_id) +{ + if (user_id.empty()) + return base; + // Keep the id at the top level so each user's dir sits directly in the world-writable temp + // root; a shared parent dir would be owned by whichever user created it first. + return base + "/orcaslicer_" + user_id; +} + // BBS: backup & restore std::string get_process_name(int pid) { diff --git a/src/slic3r/GUI/ConfigManipulation.cpp b/src/slic3r/GUI/ConfigManipulation.cpp index b70ccacc17..46758e3e64 100644 --- a/src/slic3r/GUI/ConfigManipulation.cpp +++ b/src/slic3r/GUI/ConfigManipulation.cpp @@ -710,6 +710,8 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, in toggle_field("bottom_surface_pattern", has_bottom_shell); toggle_field("top_surface_density", has_top_shell); toggle_field("bottom_surface_density", has_bottom_shell); + toggle_field("top_layer_direction", has_top_shell); + toggle_field("bottom_layer_direction", has_bottom_shell); for (auto el : { "infill_direction", "sparse_infill_line_width", "gap_fill_target","filter_out_gap_fill","infill_wall_overlap", "bridge_angle", "internal_bridge_angle", "relative_bridge_angle", @@ -844,6 +846,10 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, in // toggle_line("support_speed", have_support_material || have_skirt_height); // toggle_line("support_interface_speed", have_support_material && have_support_interface); + // Orca: + for (auto el : {"small_support_perimeter_speed", "small_support_perimeter_threshold"}) + toggle_field(el, config->opt_bool("enable_support")); + // BBS //toggle_field("support_material_synchronize_layers", have_support_soluble); @@ -974,7 +980,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, in toggle_line("min_width_top_surface", config->opt_bool("only_one_wall_top") || ((config->opt_float("min_length_factor") > 0.5f) && have_arachne)); // 0.5 is default value - for (auto el : { "hole_to_polyhole_threshold", "hole_to_polyhole_twisted" }) + for (auto el : { "hole_to_polyhole_threshold", "hole_to_polyhole_twisted", "hole_to_polyhole_max_edges" }) toggle_line(el, config->opt_bool("hole_to_polyhole")); bool has_detect_overhang_wall = config->opt_bool("detect_overhang_wall"); diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 8ffac135ff..4237632393 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -2062,6 +2062,7 @@ void GLCanvas3D::render(bool only_init) _render_sla_slices(); _render_selection(); _render_objects(GLVolumeCollection::ERenderType::Transparent, !m_gizmos.is_running()); + _render_wireframe_overlay(); } /* preview render */ else if (m_canvas_type == ECanvasType::CanvasPreview && m_render_preview) { @@ -2087,6 +2088,7 @@ void GLCanvas3D::render(bool only_init) //_render_selection(); // BBS: add outline logic _render_objects(GLVolumeCollection::ERenderType::Transparent, !m_gizmos.is_running()); + _render_wireframe_overlay(); } _render_sequential_clearance(); @@ -8237,6 +8239,46 @@ void GLCanvas3D::_render_objects(GLVolumeCollection::ERenderType type, bool with m_camera_clipping_plane = ClippingPlane::ClipsNothing(); } +void GLCanvas3D::_render_wireframe_overlay() +{ + if (!wxGetApp().plater()->is_show_wireframe()) + return; + if (m_volumes.empty()) + return; + +#if SLIC3R_OPENGL_ES + GLShaderProgram* shader = wxGetApp().get_shader("wireframe"); +#else + GLShaderProgram* shader = wxGetApp().get_shader("mm_contour"); +#endif + if (shader == nullptr) + return; + + const Camera& camera = wxGetApp().plater()->get_camera(); + const Transform3d& view_matrix = camera.get_view_matrix(); + const Transform3d& proj_matrix = camera.get_projection_matrix(); + const Size sz = get_canvas_size(); + + shader->start_using(); + shader->set_uniform("offset", OpenGLManager::get_gl_info().is_mesa() ? 0.0005 : 0.00001); + shader->set_uniform("view_model_matrix", view_matrix); + shader->set_uniform("projection_matrix", proj_matrix); + + glsafe(::glEnable(GL_DEPTH_TEST)); +#if !SLIC3R_OPENGL_ES + if (!OpenGLManager::get_gl_info().is_core_profile()) + glsafe(::glLineWidth(1.0f)); + glsafe(::glPolygonMode(GL_FRONT_AND_BACK, GL_LINE)); +#endif + + m_volumes.render(GLVolumeCollection::ERenderType::Opaque, false, view_matrix, proj_matrix, sz); + +#if !SLIC3R_OPENGL_ES + glsafe(::glPolygonMode(GL_FRONT_AND_BACK, GL_FILL)); +#endif + shader->stop_using(); +} + //BBS: GUI refactor: add canvas size as parameters void GLCanvas3D::_render_gcode(int canvas_width, int canvas_height) { @@ -9275,6 +9317,12 @@ void GLCanvas3D::_render_canvas_toolbar() [this]{wxGetApp().toggle_show_outline();} ); + create_menu_item( _utf8(L("Wireframe")), + m_canvas_type != ECanvasType::CanvasPreview, // not work on preview + p->is_show_wireframe(), + [this, p]{p->toggle_show_wireframe(); m_dirty = true;} + ); + create_menu_item( _utf8(L("Realistic View")), true, cfg->get_bool(SETTING_OPENGL_REALISTIC_MODE), diff --git a/src/slic3r/GUI/GLCanvas3D.hpp b/src/slic3r/GUI/GLCanvas3D.hpp index 72e7f1f8e2..a3209dcc1c 100644 --- a/src/slic3r/GUI/GLCanvas3D.hpp +++ b/src/slic3r/GUI/GLCanvas3D.hpp @@ -1256,6 +1256,7 @@ private: void _render_platelist(const Transform3d& view_matrix, const Transform3d& projection_matrix, bool bottom, bool only_current, bool only_body = false, int hover_id = -1, bool render_cali = false, bool show_grid = true); //BBS: add outline drawing logic void _render_objects(GLVolumeCollection::ERenderType type, bool with_outline = true); + void _render_wireframe_overlay(); //BBS: GUI refactor: add canvas size as parameters void _render_gcode(int canvas_width, int canvas_height); //BBS: render a plane for assemble diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index b6ab6dc706..1fb4d24f84 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -304,6 +304,9 @@ public: m_bg_color = StateColor::darkModeColorFor(wxColour("#FFFFFF")); m_fg_color = StateColor::darkModeColorFor(wxColour("#6B6A6A")); + m_progress_bg_color = StateColor::darkModeColorFor(wxColour("#DFDFDF")); + m_progress_fg_color = StateColor::darkModeColorFor(wxColour("#009688")); + m_progress_h = FromDIP(6); bool dark_mode = m_fg_color != wxColour("#6B6A6A"); wxSize sz = m_window->GetClientSize(); BitmapCache bmp_cache; @@ -333,20 +336,34 @@ public: dc.DrawLabel(m_text_version, rc, wxALIGN_CENTER); dc.SetFont(m_font_action); - rc.y = c_sz.GetHeight() * 0.88; + rc.y = c_sz.GetHeight() * 0.85; rc.height = dc.GetTextExtent(m_text_action).GetHeight(); dc.DrawLabel(m_text_action, rc, wxALIGN_CENTER); + + const wxRect progress_rc(0, c_sz.GetHeight() - m_progress_h, c_sz.GetWidth(), m_progress_h); + + dc.SetPen(*wxTRANSPARENT_PEN); + dc.SetBrush(wxBrush(m_progress_bg_color)); + dc.DrawRectangle(progress_rc); + + const int fill_width = progress_rc.GetWidth() * m_progress * 0.01; + if (fill_width > 0) { + dc.SetBrush(wxBrush(m_progress_fg_color)); + dc.DrawRectangle(0, progress_rc.GetTop(), fill_width, m_progress_h); + } } - void SetText(const wxString& text) + void SetText(const wxString& text, int progress) { - if (!text.empty()) { + int calc_progress = std::max(m_progress, std::clamp(progress, 0, 100)); + if (m_text_action != text || m_progress != calc_progress){ m_text_action = text; + m_progress = calc_progress; m_window->Refresh(); m_window->Update(); #ifdef __WXOSX__ - // without this code splash screen wouldn't be updated under OSX - wxYield(); + // without this code splash screen wouldn't be updated under OSX + wxYield(); #endif } } @@ -383,9 +400,13 @@ private: wxBitmap m_logo_bmp; wxColour m_fg_color; wxColour m_bg_color; + wxColour m_progress_bg_color; + wxColour m_progress_fg_color; wxString m_text_version = GUI_App::format_display_version(); wxString m_text_action = _L("Loading configuration") + dots; + int m_progress = 0; + int m_progress_h = 6; wxFont m_font_version = Label::Body_16; wxFont m_font_action = Label::Body_16; @@ -1153,7 +1174,7 @@ std::string GUI_App::get_plugin_url(std::string name, std::string country_code) std::string url = get_http_url(country_code); std::string curr_version; - if (NetworkAgent::use_legacy_network) { + if (use_legacy_network_plugin()) { curr_version = BAMBU_NETWORK_AGENT_VERSION_LEGACY; } else if (name == "plugins" && app_config) { std::string user_version = app_config->get_network_plugin_version(); @@ -1208,7 +1229,7 @@ int GUI_App::download_plugin(std::string name, std::string package_name, Install // Determine OS type for plugin download (must be set per-request since global // extra headers are no longer initialised on this branch). #if defined(__WINDOWS__) - std::string os_type = (is_running_on_arm64() && !NetworkAgent::use_legacy_network) ? "windows_arm" : "windows"; + std::string os_type = (is_running_on_arm64() && !use_legacy_network_plugin()) ? "windows_arm" : "windows"; #elif defined(__APPLE__) std::string os_type = "macos"; #elif defined(__linux__) @@ -1437,8 +1458,32 @@ int GUI_App::install_plugin(std::string name, std::string package_name, InstallP boost::filesystem::create_directories(dest_path.parent_path()); std::string dest_zip_file = encode_path(dest_path.string().c_str()); try { - if (fs::exists(dest_path)) - fs::remove(dest_path); + if (fs::exists(dest_path)) { + boost::system::error_code ec; + fs::remove(dest_path, ec); + if (ec) { + // On Windows a currently-loaded DLL (e.g. BambuSource.dll, or the + // networking library in legacy mode) cannot be deleted or overwritten + // in place, which failed the whole install with "The plug-in file may + // be in use" (issue #14373). It CAN however be renamed aside: the + // running module keeps mapping the renamed file while we write the new + // one. The stale ".old" copy is cleared on the next install/launch. + boost::filesystem::path aside = dest_path; + aside += ".old"; + boost::system::error_code ec2; + fs::remove(aside, ec2); + fs::rename(dest_path, aside, ec2); + if (ec2) { + close_zip_reader(&archive); + BOOST_LOG_TRIVIAL(error) << "[install_plugin] cannot replace in-use file " + << dest_path.string() << ": " << ec2.message(); + if (pro_fn) { pro_fn(InstallStatusUnzipFailed, 0, cancel); } + return InstallStatusUnzipFailed; + } + BOOST_LOG_TRIVIAL(warning) << "[install_plugin] " << dest_path.filename().string() + << " was in use, renamed aside to .old"; + } + } mz_bool res = 0; #ifndef WIN32 if (S_ISLNK(stat.m_external_attr >> 16)) { @@ -1887,7 +1932,7 @@ bool GUI_App::check_networking_version() } std::string studio_ver; - if (NetworkAgent::use_legacy_network) { + if (use_legacy_network_plugin()) { studio_ver = BAMBU_NETWORK_AGENT_VERSION_LEGACY; } else if (app_config) { std::string user_version = app_config->get_network_plugin_version(); @@ -1909,6 +1954,11 @@ bool GUI_App::check_networking_version() return false; } +bool GUI_App::use_legacy_network_plugin() const +{ + return app_config && BBLNetworkPlugin::is_legacy_version(app_config->get_network_plugin_version()); +} + bool GUI_App::is_compatibility_version() { BOOST_LOG_TRIVIAL(info) << __FUNCTION__<< boost::format(": m_networking_compatible=%1%")%m_networking_compatible; @@ -2211,6 +2261,7 @@ GUI_App::~GUI_App() BOOST_LOG_TRIVIAL(info) << __FUNCTION__<< boost::format(": exit"); + shutdown_console_logging(); } bool GUI_App::is_blocking_printing(MachineObject *obj_) @@ -2856,7 +2907,7 @@ bool GUI_App::on_init_inner() //BBS use BBL splashScreen scrn = new SplashScreen(splashscreen_pos); wxYield(); - scrn->SetText(_L("Loading configuration") + dots); + scrn->SetText(_L("Loading configuration") + dots, 5); } BOOST_LOG_TRIVIAL(info) << "loading systen presets..."; @@ -3003,9 +3054,8 @@ bool GUI_App::on_init_inner() // Orca: select network plugin version based on configured version string std::string configured_version = app_config->get_network_plugin_version(); - NetworkAgent::use_legacy_network = (configured_version == BAMBU_NETWORK_AGENT_VERSION_LEGACY); BOOST_LOG_TRIVIAL(info) << "Network plugin mode: " - << (NetworkAgent::use_legacy_network ? ("legacy (version: " + std::string(BAMBU_NETWORK_AGENT_VERSION_LEGACY) + ")") : ("modern (version: " + configured_version + ")")); + << (use_legacy_network_plugin() ? ("legacy (version: " + std::string(BAMBU_NETWORK_AGENT_VERSION_LEGACY) + ")") : ("modern (version: " + configured_version + ")")); // Force legacy network plugin if debugger attached // See https://github.com/bambulab/BambuStudio/issues/6726 /* if (!NetworkAgent::use_legacy_network) { @@ -3035,7 +3085,7 @@ bool GUI_App::on_init_inner() // Enable all substitutions (in both user and system profiles), but log the substitutions in user profiles only. // If there are substitutions in system profiles, then a "reconfigure" event shall be triggered, which will force // installation of a compatible system preset, thus nullifying the system preset substitutions. - if (scrn) { scrn->SetText(_L("Loading printer & filament profiles") + dots); wxYield(); } + if (scrn) { scrn->SetText(_L("Loading printer & filament profiles") + dots, 30); wxYield(); } init_params->preset_substitutions = preset_bundle->load_presets(*app_config, ForwardCompatibilitySubstitutionRule::EnableSystemSilent); } catch (const std::exception& ex) { @@ -3066,7 +3116,7 @@ bool GUI_App::on_init_inner() if (scrn) { const auto scrn_txt = _L("Creating main window") + dots; - scrn->SetText(scrn_txt); + scrn->SetText(scrn_txt, 70); wxYield(); } BOOST_LOG_TRIVIAL(info) << "create the main window"; @@ -3094,7 +3144,7 @@ bool GUI_App::on_init_inner() plater_->set_printer_technology(ptFFF); } else { - if (scrn) { scrn->SetText(_L("Loading current preset") + dots); wxYield(); } + if (scrn) { scrn->SetText(_L("Loading current preset") + dots, 85); wxYield(); } load_current_presets(); } @@ -3108,10 +3158,10 @@ bool GUI_App::on_init_inner() #ifdef __WINDOWS__ mainframe->topbar()->SaveNormalRect(); #endif - if (scrn) { scrn->SetText(_L("Showing main window") + dots); wxYield(); } + if (scrn) { scrn->SetText(_L("Showing main window") + dots, 95); wxYield(); } mainframe->Show(true); // Close the splash now that the main UI is visible. - if (scrn) { scrn->Destroy(); scrn = nullptr; } + if (scrn) { scrn->SetText(_L("Showing main window") + dots, 100); scrn->Destroy(); scrn = nullptr; } BOOST_LOG_TRIVIAL(info) << "main frame firstly shown"; //#if BBL_HAS_FIRST_PAGE @@ -3284,7 +3334,7 @@ void GUI_App::copy_network_if_available() fs::remove(network_library); BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": Copying network library from " << network_library << " to " << network_library_dst << " successfully."; - app_config->set(SETTING_NETWORK_PLUGIN_VERSION, cached_version); + app_config->set_network_plugin_version(cached_version); app_config->save(); } @@ -3320,6 +3370,26 @@ void GUI_App::copy_network_if_available() bool GUI_App::on_init_network(bool try_backup) { + // Clean up stale ".old" files left by install_plugin() when it had to rename an in-use + // DLL aside (see the rename-aside path in install_plugin). This runs before the plug-in + // is (re)loaded - at startup nothing is mapped yet, and on a hot reload the previous + // module has already been unloaded - so the previously locked files can now be removed. + { + boost::filesystem::path plugin_folder = boost::filesystem::path(data_dir()) / "plugins"; + boost::system::error_code ec; + if (boost::filesystem::is_directory(plugin_folder, ec)) { + for (boost::filesystem::directory_iterator it(plugin_folder, ec), end; !ec && it != end; it.increment(ec)) { + if (it->path().extension() == ".old") { + boost::system::error_code rm_ec; + boost::filesystem::remove(it->path(), rm_ec); + if (rm_ec) + BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": could not remove stale " << it->path().filename().string() + << " (" << rm_ec.message() << "), will retry next launch"; + } + } + } + } + auto should_load_networking_plugin = app_config->get_bool("installed_networking"); std::string config_version = app_config->get_network_plugin_version(); @@ -3349,7 +3419,7 @@ bool GUI_App::on_init_network(bool try_backup) if (config_base != loaded_version) { BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": syncing config version from " << config_version << " to loaded " << loaded_version; - app_config->set(SETTING_NETWORK_PLUGIN_VERSION, loaded_version); + app_config->set_network_plugin_version(loaded_version); app_config->save(); } } @@ -3475,7 +3545,7 @@ bool GUI_App::on_init_network(bool try_backup) m_user_manager = new Slic3r::UserManager(); } - if (should_load_networking_plugin && m_networking_compatible && !NetworkAgent::use_legacy_network) { + if (should_load_networking_plugin && m_networking_compatible && !use_legacy_network_plugin()) { app_config->clear_remind_network_update_later(); if (has_network_update_available()) { @@ -5029,21 +5099,28 @@ void GUI_App::on_http_error(wxCommandEvent &evt) if (plater != nullptr && wxGetApp().imgui()->display_initialized()) { std::string text; + // Name the specific preset in the header so the user knows which one conflicts. + // The agent injects the local preset name into every 409 conflict body, so this is + // normally populated; fall back to a generic header if it is somehow missing. + const std::string header = conflict_preset_name.empty() + ? _u8L("Cloud sync conflict:") + : format(_u8L("Cloud sync conflict for preset \"%s\":"), conflict_preset_name); + switch (conflict_code) { case -1: - text = _u8L("Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" + text = header + " " + _u8L("This preset has a newer version in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset."); break; case -2: - text = _u8L("Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" + text = header + " " + _u8L("A preset with this name already exists in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset."); break; case -3: - text = _u8L("Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" + text = header + " " + _u8L("A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset."); break; default: - text = _u8L("Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" + text = header + " " + _u8L("There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset."); break; }; @@ -5062,10 +5139,12 @@ void GUI_App::on_http_error(wxCommandEvent &evt) [this, conflict_setting_id, conflict_preset_name, conflict_user_id](wxEvtHandler*) { if (mainframe == nullptr) return false; - MessageDialog - dlg(mainframe, - _L("Force push will overwrite the cloud copy with your local preset changes.\nDo you want to continue?"), - _L("Resolve cloud sync conflict"), wxCENTER | wxYES_NO | wxNO_DEFAULT | wxICON_WARNING); + const wxString confirm_msg = conflict_preset_name.empty() + ? _L("Force push will overwrite the cloud copy with your local preset changes.\nDo you want to continue?") + : format_wxstr(_L("Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\nDo you want to continue?"), + conflict_preset_name); + MessageDialog dlg(mainframe, confirm_msg, _L("Resolve cloud sync conflict"), + wxCENTER | wxYES_NO | wxNO_DEFAULT | wxICON_WARNING); if (dlg.ShowModal() != wxID_YES) return false; @@ -6501,14 +6580,14 @@ void GUI_App::sync_preset(Preset* preset, bool force) result = 0; // Set to 0 so the sync_info gets saved below // Show user notification - CallAfter([this] { + CallAfter([this, name = preset->name] { static bool size_limit_dialog_notified = false; if (size_limit_dialog_notified) return; size_limit_dialog_notified = true; if (mainframe == nullptr) return; - auto msg = _L("The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."); + auto msg = format_wxstr(_L("The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."), name); MessageDialog(mainframe, msg, _L("Sync user presets"), wxICON_WARNING | wxOK).ShowModal(); }); // NOTE: Don't return here - let execution continue to save the sync_info diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index c749280ed3..2260417649 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -742,6 +742,7 @@ public: int install_plugin(std::string name, std::string package_name, InstallProgressFn pro_fn = nullptr, WasCancelledFn cancel_fn = nullptr); std::string get_http_url(std::string country_code, std::string path = {}); std::string get_model_http_url(std::string country_code); + bool use_legacy_network_plugin() const; bool is_compatibility_version(); bool check_networking_version(); void cancel_networking_install(); diff --git a/src/slic3r/GUI/GUI_Factories.cpp b/src/slic3r/GUI/GUI_Factories.cpp index e7f789820c..ccb6dedd29 100644 --- a/src/slic3r/GUI/GUI_Factories.cpp +++ b/src/slic3r/GUI/GUI_Factories.cpp @@ -141,6 +141,8 @@ std::map> SettingsFactory::PART_CATE {"infill_wall_overlap", "", 1}, {"top_bottom_infill_wall_overlap", "", 1}, {"solid_infill_direction", "", 1}, + {"top_layer_direction", "", 1}, + {"bottom_layer_direction", "", 1}, {"infill_direction", "", 1}, {"bridge_angle", "", 1}, {"internal_bridge_angle", "", 1}, @@ -590,6 +592,7 @@ wxMenu* MenuFactory::append_submenu_add_handy_model(wxMenu* menu, ModelVolumeTyp static const std::vector handy_models = { {L("Orca Cube"), {"OrcaCube_v2.drc", "OrcaPlug_v2.drc"}, true}, {L("OrcaSliced Combo"), {"OrcaSliced.3mf", "OrcaCube_v2.drc", "OrcaPlug_v2.drc"}, true}, + {L("Orca Badge"), {"OrcaBadge.3mf"}}, {L("Orca Tolerance Test"), {"OrcaToleranceTest.drc"}}, {L("3DBenchy"), {"3DBenchy.drc"}}, {L("Cali Cat"), {"calicat.drc"}}, diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index d56439f05a..fcdf005aad 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -2316,9 +2316,9 @@ void ObjectList::load_modifier(const wxArrayString& input_files, ModelObject& mo try { if (boost::iends_with(input_file, ".stp") || boost::iends_with(input_file, ".step")) { - double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_defletion")); + double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_deflection")); if (linear <= 0) linear = 0.003; - double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_defletion")); + double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_deflection")); if (angle <= 0) angle = 0.5; bool split_compound = wxGetApp().app_config->get_bool("is_split_compound"); model = Model::read_from_step( @@ -2328,8 +2328,8 @@ void ObjectList::load_modifier(const wxArrayString& input_files, ModelObject& mo if (wxGetApp().app_config->get_bool("enable_step_mesh_setting")) { StepMeshDialog mesh_dlg(nullptr, file, linear, angle); if (mesh_dlg.ShowModal() == wxID_OK) { - linear_value = mesh_dlg.get_linear_defletion(); - angle_value = mesh_dlg.get_angle_defletion(); + linear_value = mesh_dlg.get_linear_deflection(); + angle_value = mesh_dlg.get_angle_deflection(); is_split = mesh_dlg.get_split_compound_value(); return 1; } diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp b/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp index 6c6f913276..0bdc3d1302 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp @@ -91,9 +91,14 @@ Vec3d GLGizmoMeasure::get_feature_offset(const Measure::SurfaceFeature &feature) } case Measure::SurfaceFeatureType::Edge: { - std::optional p = feature.get_extra_point(); - assert(p.has_value()); - ret = *p; + // Only polygon edges store an extra point (the polygon centre); plain edges have none. + const std::optional extra = feature.get_extra_point(); + if (extra.has_value()) + ret = *extra; + else { + const auto [pt1, pt2] = feature.get_edge(); + ret = 0.5 * (pt1 + pt2); + } break; } case Measure::SurfaceFeatureType::Point: @@ -1065,7 +1070,7 @@ void GLGizmoMeasure::on_render() if (requires_raycaster_update) { if (m_gripper_id_raycast_map.find(GripperType::SPHERE_2) != m_gripper_id_raycast_map.end()) { - m_gripper_id_raycast_map[GripperType::SPHERE_2]->set_transform(Geometry::translation_transform(get_feature_offset(*m_selected_features.first.feature)) * + m_gripper_id_raycast_map[GripperType::SPHERE_2]->set_transform(Geometry::translation_transform(get_feature_offset(*m_selected_features.second.feature)) * Geometry::scale_transform(inv_zoom)); } } diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp index 5737484960..8878d1f3ad 100644 --- a/src/slic3r/GUI/MediaPlayCtrl.cpp +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp @@ -7,7 +7,7 @@ #include "I18N.hpp" #include "MsgDialog.hpp" #include "DownloadProgressDialog.hpp" -#include "slic3r/Utils/NetworkAgent.hpp" +#include "slic3r/Utils/BBLNetworkPlugin.hpp" #include @@ -161,7 +161,7 @@ void MediaPlayCtrl::SetMachineObject(MachineObject* obj) m_device_busy = obj->is_camera_busy_off(); m_tutk_state = obj->tutk_state; - if (DevPrinterConfigUtil::get_printer_series_str(obj->printer_type) == "series_o" && NetworkAgent::use_legacy_network) { + if (DevPrinterConfigUtil::get_printer_series_str(obj->printer_type) == "series_o" && BBLNetworkPlugin::instance().use_legacy_network()) { // Legacy plugin cannot support remote play for H2D, force using local mode m_remote_proto = MachineObject::LVR_None; } diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 77ca0ad4e0..26b9217b3f 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -253,18 +253,6 @@ static void set_config_values(DynamicPrintConfig *config, const std::string &key } } -template -static void set_config_values(ModelConfig& config, const std::string &key, T value) -{ - auto config_opt = config.get().option(key); - if (config_opt) { - config.set_key_value(key, new OptionType(config_opt->values.size(), value)); - } - else { - BOOST_LOG_TRIVIAL(info) << "set_config_values: the key" << key << "is empty."; - } -} - bool Plater::has_illegal_filename_characters(const wxString& wxs_name) { std::string name = into_u8(wxs_name); @@ -2110,8 +2098,15 @@ Sidebar::Sidebar(Plater *parent) p->m_panel_filament_title->SetBackgroundColor(title_bg); p->m_panel_filament_title->SetBackgroundColor2(0xF1F1F1); p->m_panel_filament_title->Bind(wxEVT_LEFT_UP, [this](wxMouseEvent &e) { - if (e.GetPosition().x > (p->m_flushing_volume_btn->IsShown() - ? p->m_flushing_volume_btn->GetPosition().x : (p->m_bpButton_add_filament->GetPosition().x - FromDIP(30)))) // ORCA exclude area of del button from titlebar collapse/expand feature to fix undesired collapse when user spams del filament button + if (!p || !p->m_panel_filament_content || !m_scrolled_sizer || !p->m_bpButton_set_filament || !p->m_flushing_volume_btn || !p->m_bpButton_add_filament || !ams_btn) + return; + // ORCA exclude area of del button from titlebar collapse/expand feature to fix undesired collapse when user spams del filament button + // also block fold/unfold feature when user clicks to spacing between icons + int exclude_pt = p->m_bpButton_set_filament->GetPosition().x; // maximum fixed item + if (p->m_flushing_volume_btn->IsShown()) exclude_pt = p->m_flushing_volume_btn->GetPosition().x; + else if (p->m_bpButton_add_filament->IsShown()) exclude_pt = p->m_bpButton_add_filament->GetPosition().x - FromDIP(30); // reserve spacing for delete button + else if (ams_btn->IsShown()) exclude_pt = ams_btn->GetPosition().x; + if (e.GetPosition().x > exclude_pt) return; p->m_panel_filament_content->Show(!p->m_panel_filament_content->IsShown()); m_scrolled_sizer->Layout(); @@ -6642,9 +6637,9 @@ std::vector Plater::priv::load_files(const std::vector& input_ }; if (boost::iends_with(path.string(), ".stp") || boost::iends_with(path.string(), ".step")) { - double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_defletion")); + double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_deflection")); if (linear <= 0) linear = 0.003; - double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_defletion")); + double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_deflection")); if (angle <= 0) angle = 0.5; bool split_compound = wxGetApp().app_config->get_bool("is_split_compound"); model = Slic3r::Model:: read_from_step(path.string(), strategy, @@ -6676,8 +6671,8 @@ std::vector Plater::priv::load_files(const std::vector& input_ if (wxGetApp().app_config->get_bool("enable_step_mesh_setting")) { StepMeshDialog mesh_dlg(nullptr, file, linear, angle); if (mesh_dlg.ShowModal() == wxID_OK) { - linear_value = mesh_dlg.get_linear_defletion(); - angle_value = mesh_dlg.get_angle_defletion(); + linear_value = mesh_dlg.get_linear_deflection(); + angle_value = mesh_dlg.get_angle_deflection(); is_split = mesh_dlg.get_split_compound_value(); return 1; } @@ -8423,8 +8418,8 @@ bool Plater::priv::replace_volume_with_stl(int object_idx, int volume_idx, const const bool is_step = boost::algorithm::iends_with(path, ".stp") || boost::algorithm::iends_with(path, ".step"); if (is_step) { auto config = wxGetApp().app_config; - double linear = std::max(0.003, string_to_double_decimal_point(config->get("linear_defletion"))); - double angle = std::max(0.5, string_to_double_decimal_point(config->get("angle_defletion"))); + double linear = std::max(0.003, string_to_double_decimal_point(config->get("linear_deflection"))); + double angle = std::max(0.5, string_to_double_decimal_point(config->get("angle_deflection"))); bool split_compound = config->get_bool("is_split_compound"); bool is_user_cancel = false; @@ -8432,8 +8427,8 @@ bool Plater::priv::replace_volume_with_stl(int object_idx, int volume_idx, const if (wxGetApp().app_config->get_bool("enable_step_mesh_setting")) { StepMeshDialog mesh_dlg(nullptr, file, linear, angle); if (mesh_dlg.ShowModal() == wxID_OK) { - linear_value = mesh_dlg.get_linear_defletion(); - angle_value = mesh_dlg.get_angle_defletion(); + linear_value = mesh_dlg.get_linear_deflection(); + angle_value = mesh_dlg.get_angle_deflection(); is_split = mesh_dlg.get_split_compound_value(); return 1; } @@ -8916,8 +8911,8 @@ void Plater::priv::reload_from_disk() // BBS: backup if (boost::iends_with(path, ".stp") || boost::iends_with(path, ".step")) { - double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_defletion")); - double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_defletion")); + double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_deflection")); + double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_deflection")); bool is_split = wxGetApp().app_config->get_bool("is_split_compound"); new_model = Model::read_from_step(path, LoadStrategy::AddDefaultInstances | LoadStrategy::LoadModel, nullptr, nullptr, nullptr, linear, angle, is_split); }else { @@ -8964,7 +8959,14 @@ void Plater::priv::reload_from_disk() if (has_source && old_volume->source.object_idx < int(new_model.objects.size())) { const ModelObject *obj = new_model.objects[old_volume->source.object_idx]; if (old_volume->source.volume_idx < int(obj->volumes.size())) { - if (obj->volumes[old_volume->source.volume_idx]->source.input_file == old_volume->source.input_file) { + const std::string &new_input_file = obj->volumes[old_volume->source.volume_idx]->source.input_file; + const std::string &old_input_file = old_volume->source.input_file; + // Orca: match on the exact source path first, then fall back to filename-only so reload + // still matches when the project stored a bare filename and the file was found next to + // the project (same-folder fallback) or picked via the locate dialog (#12992). + if (new_input_file == old_input_file || + boost::algorithm::iequals(fs::path(new_input_file).filename().string(), + fs::path(old_input_file).filename().string())) { new_volume_idx = old_volume->source.volume_idx; new_object_idx = old_volume->source.object_idx; match_found = true; @@ -12894,9 +12896,9 @@ void Plater::_calib_pa_pattern(const Calib_Params& params) auto &obj_config = obj->config; if (speeds.size() > 1) - set_config_values(obj_config, "outer_wall_speed", tspd); + obj_config.set_key_value("outer_wall_speed", new ConfigOptionFloatsNullable(1, tspd)); if (accels.size() > 1) - set_config_values(obj_config, "outer_wall_acceleration", tacc); + obj_config.set_key_value("outer_wall_acceleration", new ConfigOptionFloatsNullable(1, tacc)); auto cur_plate = get_partplate_list().get_plate(plate_idx); if (!cur_plate) { @@ -13315,10 +13317,11 @@ void Plater::calib_max_vol_speed(const Calib_Params& params) max_lh->values[i] = layer_height; } - set_config_values(filament_config, "filament_max_volumetric_speed", 200); + const double filament_max_volumetric_speed = filament_config->option("filament_max_volumetric_speed")->get_at(0); + set_config_values(filament_config, "filament_max_volumetric_speed", std::max(filament_max_volumetric_speed, 200.0)); filament_config->set_key_value("slow_down_layer_time", new ConfigOptionFloats{0.0}); printer_config->set_key_value("resonance_avoidance", new ConfigOptionBool{false}); - set_config_values(obj_cfg, "enable_overhang_speed", false); + obj_cfg.set_key_value("enable_overhang_speed", new ConfigOptionBoolsNullable(1, false)); obj_cfg.set_key_value("wall_loops", new ConfigOptionInt(1)); obj_cfg.set_key_value("alternate_extra_wall", new ConfigOptionBool(false)); obj_cfg.set_key_value("top_shell_layers", new ConfigOptionInt(0)); @@ -13509,9 +13512,11 @@ void Plater::calib_input_shaping_freq(const Calib_Params& params) print_config->set_key_value("spiral_mode", new ConfigOptionBool(true)); print_config->set_key_value("spiral_mode_smooth", new ConfigOptionBool(false)); print_config->set_key_value("bottom_surface_pattern", new ConfigOptionEnum(ipRectilinear)); - set_config_values(print_config, "outer_wall_speed", 200.); - set_config_values(print_config, "default_acceleration", 20000.); - set_config_values(print_config, "outer_wall_acceleration", 20000.); + const double machine_max_speed = std::min(printer_config->option("machine_max_speed_x")->get_at(0), printer_config->option("machine_max_speed_y")->get_at(0)); + const double machine_max_acceleration = printer_config->option("machine_max_acceleration_extruding")->get_at(0); + set_config_values(print_config, "outer_wall_speed", machine_max_speed); + set_config_values(print_config, "default_acceleration", machine_max_acceleration); + set_config_values(print_config, "outer_wall_acceleration", machine_max_acceleration); print_config->set_key_value("precise_z_height", new ConfigOptionBool(false)); model().objects[0]->config.set_key_value("brim_type", new ConfigOptionEnum(btOuterOnly)); model().objects[0]->config.set_key_value("brim_width", new ConfigOptionFloat(3.0)); @@ -13571,9 +13576,11 @@ void Plater::calib_input_shaping_damp(const Calib_Params& params) print_config->set_key_value("spiral_mode", new ConfigOptionBool(true)); print_config->set_key_value("spiral_mode_smooth", new ConfigOptionBool(false)); print_config->set_key_value("bottom_surface_pattern", new ConfigOptionEnum(ipRectilinear)); - set_config_values(print_config, "outer_wall_speed", 200.); - set_config_values(print_config, "default_acceleration", 20000.); - set_config_values(print_config, "outer_wall_acceleration", 20000.); + const double machine_max_speed = std::min(printer_config->option("machine_max_speed_x")->get_at(0), printer_config->option("machine_max_speed_y")->get_at(0)); + const double machine_max_acceleration = printer_config->option("machine_max_acceleration_extruding")->get_at(0); + set_config_values(print_config, "outer_wall_speed", machine_max_speed); + set_config_values(print_config, "default_acceleration", machine_max_acceleration); + set_config_values(print_config, "outer_wall_acceleration", machine_max_acceleration); print_config->set_key_value("precise_z_height", new ConfigOptionBool(false)); model().objects[0]->config.set_key_value("brim_type", new ConfigOptionEnum(btOuterOnly)); model().objects[0]->config.set_key_value("brim_width", new ConfigOptionFloat(3.0)); @@ -13625,7 +13632,8 @@ void Plater::Calib_Cornering(const Calib_Params& params) filament_config->set_key_value("slow_down_layer_time", new ConfigOptionFloats { 0.0 }); filament_config->set_key_value("slow_down_min_speed", new ConfigOptionFloats { 0.0 }); filament_config->set_key_value("slow_down_for_layer_cooling", new ConfigOptionBools{false}); - filament_config->set_key_value("filament_max_volumetric_speed", new ConfigOptionFloats{200}); + const double filament_max_volumetric_speed = filament_config->option("filament_max_volumetric_speed")->get_at(0); + filament_config->set_key_value("filament_max_volumetric_speed", new ConfigOptionFloats{std::max(filament_max_volumetric_speed, 200.0)}); set_config_values(print_config, "enable_overhang_speed", false); print_config->set_key_value("timelapse_type", new ConfigOptionEnum(tlTraditional)); print_config->set_key_value("wall_loops", new ConfigOptionInt(1)); @@ -13636,9 +13644,11 @@ void Plater::Calib_Cornering(const Calib_Params& params) print_config->set_key_value("spiral_mode", new ConfigOptionBool(true)); print_config->set_key_value("spiral_mode_smooth", new ConfigOptionBool(false)); print_config->set_key_value("bottom_surface_pattern", new ConfigOptionEnum(ipRectilinear)); - set_config_values(print_config, "outer_wall_speed", 200.); - set_config_values(print_config, "default_acceleration", 2000.); - set_config_values(print_config, "outer_wall_acceleration", 2000.); + const double machine_max_speed = std::min(printer_config->option("machine_max_speed_x")->get_at(0), printer_config->option("machine_max_speed_y")->get_at(0)); + const double machine_max_acceleration = printer_config->option("machine_max_acceleration_extruding")->get_at(0); + set_config_values(print_config, "outer_wall_speed", machine_max_speed); + set_config_values(print_config, "default_acceleration", machine_max_acceleration); + set_config_values(print_config, "outer_wall_acceleration", machine_max_acceleration); print_config->set_key_value("precise_z_height", new ConfigOptionBool(false)); model().objects[0]->config.set_key_value("brim_type", new ConfigOptionEnum(btOuterOnly)); model().objects[0]->config.set_key_value("brim_width", new ConfigOptionFloat(3.0)); diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index f3e54adf45..af7522c33d 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -783,6 +783,47 @@ wxBoxSizer *PreferencesDialog::create_camera_orbit_mult_input(wxString title, wx return m_sizer; } +wxBoxSizer *PreferencesDialog::create_item_decimal_input(wxString title, wxString title2, wxString tooltip, std::string param, double min, double max, int decimals, const wxString wiki_url) +{ + auto tip = tooltip.IsEmpty() ? title : tooltip; // auto fill tooltips with title if its empty + + wxBoxSizer *m_sizer = create_item_label(title, tip, wiki_url); + + auto input = new ::TextInput(m_parent, wxEmptyString, title2, wxEmptyString, wxDefaultPosition, DESIGN_INPUT_SIZE, wxTE_PROCESS_ENTER); + StateColor input_bg(std::pair(wxColour("#F0F0F1"), StateColor::Disabled), std::pair(*wxWHITE, StateColor::Enabled)); + input->SetBackgroundColor(input_bg); + input->GetTextCtrl()->SetValue(app_config->get(param)); + wxTextValidator validator(wxFILTER_NUMERIC); + input->SetToolTip(tooltip); + input->GetTextCtrl()->SetValidator(validator); + + m_sizer->Add(input, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, FromDIP(5)); + + auto apply_value = [this, param, input, min, max, decimals]() { + auto value = input->GetTextCtrl()->GetValue(); + double conv = min; + if (value.ToCDouble(&conv)) { + conv = conv < min ? min : conv > max ? max : conv; + auto strval = std::string(wxString::FromCDouble(conv, decimals).mb_str()); + input->GetTextCtrl()->SetValue(strval); + app_config->set(param, strval); + } + }; + + input->GetTextCtrl()->Bind(wxEVT_TEXT_ENTER, [apply_value](wxCommandEvent &e) { + apply_value(); + wxGetApp().app_config->save(); + e.Skip(); + }); + + input->GetTextCtrl()->Bind(wxEVT_KILL_FOCUS, [apply_value](wxFocusEvent &e) { + apply_value(); + e.Skip(); + }); + + return m_sizer; +} + wxBoxSizer *PreferencesDialog::create_item_backup(wxString title, wxString tooltip) { auto tip = tooltip.IsEmpty() ? title : tooltip; // auto fill tooltips with title if its empty @@ -1251,26 +1292,17 @@ wxBoxSizer *PreferencesDialog::create_item_network_plugin_version(wxString title old_version = get_latest_network_version(); } - app_config->set(SETTING_NETWORK_PLUGIN_VERSION, new_version); + app_config->set_network_plugin_version(new_version); app_config->save(); if (new_version != old_version) { BOOST_LOG_TRIVIAL(info) << "Network plugin version changed from " << old_version << " to " << new_version; - // Update the use_legacy_network flag immediately - bool is_legacy = (new_version == BAMBU_NETWORK_AGENT_VERSION_LEGACY); - bool was_legacy = (old_version == BAMBU_NETWORK_AGENT_VERSION_LEGACY); - if (is_legacy != was_legacy) { - Slic3r::NetworkAgent::use_legacy_network = is_legacy; - BOOST_LOG_TRIVIAL(info) << "Updated use_legacy_network flag to " << is_legacy; - } - if (!selected_ver.warning.empty()) { MessageDialog warn_dlg(this, wxString::FromUTF8(selected_ver.warning), _L("Warning"), wxOK | wxCANCEL | wxICON_WARNING); if (warn_dlg.ShowModal() != wxID_OK) { - app_config->set(SETTING_NETWORK_PLUGIN_VERSION, old_version); + app_config->set_network_plugin_version(old_version); app_config->save(); - Slic3r::NetworkAgent::use_legacy_network = was_legacy; e.Skip(); return; } @@ -1614,6 +1646,15 @@ void PreferencesDialog::create_items() ); g_sizer->Add(item_step_dialog); + auto item_step_linear = create_item_decimal_input(_L("STEP importing: linear deflection"), "mm", _L("Linear deflection used when meshing imported STEP files.\nSmaller values produce higher-quality meshes but increase processing time.\nUsed as the default in the import dialog, or directly when the import dialog is disabled.\nDefault: 0.003 mm."), "linear_deflection", 0.001, 0.1, 3); + g_sizer->Add(item_step_linear); + + auto item_step_angle = create_item_decimal_input(_L("STEP importing: angle deflection"), "", _L("Angle deflection used when meshing imported STEP files.\nSmaller values produce higher-quality meshes but increase processing time.\nUsed as the default in the import dialog, or directly when the import dialog is disabled.\nDefault: 0.5."), "angle_deflection", 0.01, 1.0, 2); + g_sizer->Add(item_step_angle); + + auto item_step_split = create_item_checkbox(_L("STEP importing: Split into multiple objects"), _L("If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\nUsed as the default in the import dialog, or directly when the import dialog is disabled.\nDefault: disabled."), "is_split_compound"); + g_sizer->Add(item_step_split); + auto item_draco_bits = create_item_spinctrl(_L("Quality level for Draco export"), "", _L("bits"), _L("Controls the quantization bit depth used when compressing the mesh to Draco format.\n" @@ -1623,6 +1664,13 @@ void PreferencesDialog::create_items() ); g_sizer->Add(item_draco_bits); + auto item_full_source_paths = create_item_checkbox(_L("Store full source file paths in projects"), + _L("If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so " + "\"Reload from disk\" still works when the source file is kept in a different folder than the project. " + "If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."), + "export_sources_full_pathnames"); + g_sizer->Add(item_full_source_paths); + //// GENERAL > Preset g_sizer->Add(create_item_title(_L("Preset")), 1, wxEXPAND); diff --git a/src/slic3r/GUI/Preferences.hpp b/src/slic3r/GUI/Preferences.hpp index 86d1e06358..95bfcb5367 100644 --- a/src/slic3r/GUI/Preferences.hpp +++ b/src/slic3r/GUI/Preferences.hpp @@ -96,6 +96,7 @@ public: wxBoxSizer *create_item_input(wxString title, wxString title2, wxString tooltip, std::string param, std::function onchange = {}, const wxString wiki_url = ""); wxBoxSizer *create_item_spinctrl(wxString title, wxString title2, wxString side_label, wxString tooltip, std::string param, int min, int max, std::function onchange = nullptr, const wxString wiki_url = ""); wxBoxSizer *create_camera_orbit_mult_input(wxString title, wxString tooltip); + wxBoxSizer *create_item_decimal_input(wxString title, wxString title2, wxString tooltip, std::string param, double min, double max, int decimals, const wxString wiki_url = ""); wxBoxSizer *create_item_backup(wxString title, wxString tooltip); wxBoxSizer *create_item_auto_reslice(wxString title, wxString checkbox_tooltip, wxString delay_tooltip); wxBoxSizer *create_item_bambu_cloud(wxString title, wxString tooltip); diff --git a/src/slic3r/GUI/Selection.cpp b/src/slic3r/GUI/Selection.cpp index fadc5a3f2f..b2caaed55d 100644 --- a/src/slic3r/GUI/Selection.cpp +++ b/src/slic3r/GUI/Selection.cpp @@ -535,6 +535,9 @@ void Selection::drop() for (unsigned int i : m_list) { GLVolume& volume = *(*m_volumes)[i]; + // Skip the wipe tower: its synthetic id (>= 1000) is not an index into m_model->objects. + if (volume.object_idx() >= 1000) + continue; ModelObject* model_object = m_model->objects[volume.object_idx()]; if (model_object != nullptr) { @@ -1848,6 +1851,9 @@ void Selection::notify_instance_update(int object_idx, int instance_idx) for (unsigned int i : m_list) { int obj_index = (*m_volumes)[i]->object_idx(); + // Skip the wipe tower: its synthetic id (>= 1000) is not an index into m_model->objects. + if (obj_index >= 1000) + continue; //-1 means all the instance in this object if (instance_idx == -1) { diff --git a/src/slic3r/GUI/StepMeshDialog.cpp b/src/slic3r/GUI/StepMeshDialog.cpp index 5f74a79b7d..33e1c4914a 100644 --- a/src/slic3r/GUI/StepMeshDialog.cpp +++ b/src/slic3r/GUI/StepMeshDialog.cpp @@ -144,7 +144,7 @@ StepMeshDialog::StepMeshDialog(wxWindow* parent, Slic3r::Step& file, double line linear_sizer->Add(linear_title, 0, wxALIGN_LEFT); linear_sizer->AddStretchSpacer(1); wxSlider* linear_slider = new wxSlider(this, wxID_ANY, - SLIDER_SCALE(get_linear_defletion()), + SLIDER_SCALE(get_linear_deflection()), 1, 100, wxDefaultPosition, wxSize(SLIDER_WIDTH, SLIDER_HEIGHT), wxSL_HORIZONTAL); @@ -199,7 +199,7 @@ StepMeshDialog::StepMeshDialog(wxWindow* parent, Slic3r::Step& file, double line angle_sizer->Add(angle_title, 0, wxALIGN_LEFT); angle_sizer->AddStretchSpacer(1); wxSlider* angle_slider = new wxSlider(this, wxID_ANY, - SLIDER_SCALE_10(get_angle_defletion()), + SLIDER_SCALE_10(get_angle_deflection()), 1, 100, wxDefaultPosition, wxSize(SLIDER_WIDTH, SLIDER_HEIGHT), wxSL_HORIZONTAL); @@ -265,6 +265,14 @@ StepMeshDialog::StepMeshDialog(wxWindow* parent, Slic3r::Step& file, double line mesh_face_number_sizer->Add(mesh_face_number_text, 0, wxALIGN_LEFT); bSizer->Add(mesh_face_number_sizer, 0, wxEXPAND | wxALL, LEFT_RIGHT_PADING); + wxBoxSizer* save_default_sizer = new wxBoxSizer(wxHORIZONTAL); + m_save_default_checkbox = new wxCheckBox(this, wxID_ANY, _L("Save these settings as default"), wxDefaultPosition, wxDefaultSize, 0); + m_save_default_checkbox->SetFont(::Label::Body_14); + m_save_default_checkbox->SetForegroundColour(StateColor::darkModeColorFor(FONT_COLOR)); + m_save_default_checkbox->SetToolTip(_L("If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences).")); + save_default_sizer->Add(m_save_default_checkbox, 0, wxALIGN_LEFT); + bSizer->Add(save_default_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, LEFT_RIGHT_PADING); + wxBoxSizer* bSizer_button = new wxBoxSizer(wxHORIZONTAL); bSizer_button->SetMinSize(wxSize(FromDIP(100), -1)); m_checkbox = new wxCheckBox(this, wxID_ANY, _L("Don't show again"), wxDefaultPosition, wxDefaultSize, 0); @@ -284,9 +292,11 @@ StepMeshDialog::StepMeshDialog(wxWindow* parent, Slic3r::Step& file, double line if (m_checkbox->IsChecked()) { wxGetApp().app_config->set_bool("enable_step_mesh_setting", false); } - wxGetApp().app_config->set_bool("is_split_compound", m_split_compound_checkbox->GetValue()); - wxGetApp().app_config->set("linear_defletion", float_to_string_decimal_point(get_linear_defletion(), 3)); - wxGetApp().app_config->set("angle_defletion", float_to_string_decimal_point(get_angle_defletion(), 2)); + if (m_save_default_checkbox->IsChecked()) { + wxGetApp().app_config->set_bool("is_split_compound", m_split_compound_checkbox->GetValue()); + wxGetApp().app_config->set("linear_deflection", float_to_string_decimal_point(get_linear_deflection(), 3)); + wxGetApp().app_config->set("angle_deflection", float_to_string_decimal_point(get_angle_deflection(), 2)); + } EndModal(wxID_OK); } @@ -354,21 +364,21 @@ void StepMeshDialog::stop_task() void StepMeshDialog::update_mesh_number_text() { - if ((m_last_linear == get_linear_defletion()) && (m_last_angle == get_angle_defletion()) && (m_mesh_number != 0)) + if ((m_last_linear == get_linear_deflection()) && (m_last_angle == get_angle_deflection()) && (m_mesh_number != 0)) return; wxString newText = wxString::Format(_L("Calculating, please wait...")); mesh_face_number_text->SetLabel(newText); stop_task(); if (!m_task) { m_task = new boost::thread(Slic3r::create_thread([this]() -> void { - m_mesh_number = m_file.get_triangle_num(get_linear_defletion(), get_angle_defletion()); + m_mesh_number = m_file.get_triangle_num(get_linear_deflection(), get_angle_deflection()); if (m_mesh_number != 0) { wxString number_text = wxString::Format("%d", m_mesh_number); wxCommandEvent event(wxEVT_THREAD_DONE); event.SetString(number_text); wxPostEvent(this, event); - m_last_linear = get_linear_defletion(); - m_last_angle = get_angle_defletion(); + m_last_linear = get_linear_deflection(); + m_last_angle = get_angle_deflection(); } })); } diff --git a/src/slic3r/GUI/StepMeshDialog.hpp b/src/slic3r/GUI/StepMeshDialog.hpp index 6b14ecfc66..af7f150157 100644 --- a/src/slic3r/GUI/StepMeshDialog.hpp +++ b/src/slic3r/GUI/StepMeshDialog.hpp @@ -14,7 +14,7 @@ public: StepMeshDialog(wxWindow* parent, Slic3r::Step& file, double linear_init, double angle_init); ~StepMeshDialog() override; void on_dpi_changed(const wxRect& suggested_rect) override; - inline double get_linear_defletion() { + inline double get_linear_deflection() { double value; if (m_linear_last.ToDouble(&value)) { return value; @@ -22,7 +22,7 @@ public: return m_last_linear; } } - inline double get_angle_defletion() { + inline double get_angle_deflection() { double value; if (m_angle_last.ToDouble(&value)) { return value; @@ -37,6 +37,7 @@ private: Slic3r::Step& m_file; wxCheckBox* m_checkbox = nullptr; wxCheckBox* m_split_compound_checkbox = nullptr; + wxCheckBox* m_save_default_checkbox = nullptr; wxString m_linear_last; wxString m_angle_last; wxStaticText* mesh_face_number_text; diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 39512eb396..52537d9331 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2647,6 +2647,7 @@ void TabPrint::build() optgroup->append_single_option_line("hole_to_polyhole", "quality_settings_precision#polyholes"); optgroup->append_single_option_line("hole_to_polyhole_threshold", "quality_settings_precision#polyholes"); optgroup->append_single_option_line("hole_to_polyhole_twisted", "quality_settings_precision#polyholes"); + optgroup->append_single_option_line("hole_to_polyhole_max_edges", "quality_settings_precision#polyholes"); optgroup = page->new_optgroup(L("Ironing"), L"param_ironing"); optgroup->append_single_option_line("ironing_type", "quality_settings_ironing#type"); @@ -2741,10 +2742,12 @@ void TabPrint::build() optgroup->append_single_option_line("top_shell_thickness", "strength_settings_top_bottom_shells#shell-thickness"); optgroup->append_single_option_line("top_surface_density", "strength_settings_top_bottom_shells#surface-density"); optgroup->append_single_option_line("top_surface_pattern", "strength_settings_top_bottom_shells#surface-pattern"); + optgroup->append_single_option_line("top_layer_direction", "strength_settings_infill#top-direction"); optgroup->append_single_option_line("bottom_shell_layers", "strength_settings_top_bottom_shells#shell-layers"); optgroup->append_single_option_line("bottom_shell_thickness", "strength_settings_top_bottom_shells#shell-thickness"); optgroup->append_single_option_line("bottom_surface_density", "strength_settings_top_bottom_shells#surface-density"); optgroup->append_single_option_line("bottom_surface_pattern", "strength_settings_top_bottom_shells#surface-pattern"); + optgroup->append_single_option_line("bottom_layer_direction", "strength_settings_infill#direction"); optgroup->append_single_option_line("top_bottom_infill_wall_overlap", "strength_settings_top_bottom_shells#infillwall-overlap"); optgroup = page->new_optgroup(L("Infill"), L"param_infill"); @@ -2807,6 +2810,8 @@ void TabPrint::build() optgroup->append_single_option_line("ironing_speed", "speed_settings_other_layers_speed#ironing-speed"); optgroup->append_single_option_line("support_speed", "speed_settings_other_layers_speed#support", 0); optgroup->append_single_option_line("support_interface_speed", "speed_settings_other_layers_speed#support-interface", 0); + optgroup->append_single_option_line("small_support_perimeter_speed", "speed_settings_other_layers_speed#small-tree-support-perimeters", 0); + optgroup->append_single_option_line("small_support_perimeter_threshold", "speed_settings_other_layers_speed#small-tree-support-perimeters-threshold", 0); optgroup = page->new_optgroup(L("Overhang speed"), L"param_overhang_speed", 15); optgroup->append_single_option_line("enable_overhang_speed", "speed_settings_overhang_speed#slow-down-for-overhang", 0); diff --git a/src/slic3r/GUI/wxExtensions.cpp b/src/slic3r/GUI/wxExtensions.cpp index 66ad109fab..e40046c37d 100644 --- a/src/slic3r/GUI/wxExtensions.cpp +++ b/src/slic3r/GUI/wxExtensions.cpp @@ -436,7 +436,9 @@ wxBitmap create_scaled_bitmap( const std::string& bmp_name_in, return create_scaled_bitmap2(bmp_name_in, cache, win, px_cnt, grayscale, resize, array_new_color); } unsigned int width = 0; - unsigned int height = (unsigned int) (win->FromDIP(px_cnt) + 0.5f); + // win may be nullptr; use the static overload, which falls back to the primary display DPI. + // Calling win->FromDIP() on a null win is UB and lets the optimizer drop later null checks. + unsigned int height = (unsigned int) (wxWindow::FromDIP(px_cnt, win) + 0.5f); std::string bmp_name = bmp_name_in; boost::replace_last(bmp_name, ".png", ""); @@ -450,7 +452,7 @@ wxBitmap create_scaled_bitmap( const std::string& bmp_name_in, // Try loading an SVG first, then PNG if SVG was not found: wxBitmap *bmp = cache.load_svg(bmp_name, width, height, grayscale, dark_mode, new_color, resize ? em_unit(win) * 0.1f : 0.f); if (bmp == nullptr) { - bmp = cache.load_png(bmp_name, width, height, grayscale, resize ? win->FromDIP(10) * 0.1f : 0.f); + bmp = cache.load_png(bmp_name, width, height, grayscale, resize ? wxWindow::FromDIP(10, win) * 0.1f : 0.f); } if (bmp == nullptr) { @@ -471,7 +473,8 @@ wxBitmap create_scaled_bitmap2(const std::string& bmp_name_in, Slic3r::GUI::Bitm const vector& array_new_color/* = vector()*/) // color witch will used instead of orange { unsigned int width = 0; - unsigned int height = (unsigned int)(win->FromDIP(px_cnt) + 0.5f); + // win may be nullptr; see create_scaled_bitmap() above. + unsigned int height = (unsigned int)(wxWindow::FromDIP(px_cnt, win) + 0.5f); std::string bmp_name = bmp_name_in; boost::replace_last(bmp_name, ".png", ""); diff --git a/src/slic3r/Utils/BBLNetworkPlugin.cpp b/src/slic3r/Utils/BBLNetworkPlugin.cpp index 0f74808c44..142b2a41cc 100644 --- a/src/slic3r/Utils/BBLNetworkPlugin.cpp +++ b/src/slic3r/Utils/BBLNetworkPlugin.cpp @@ -79,7 +79,7 @@ int BBLNetworkPlugin::initialize(bool using_backup, const std::string& version) // Auto-migration: If loading legacy version and versioned library doesn't exist, // but unversioned legacy library does exist, copy it to versioned format - if (version == BAMBU_NETWORK_AGENT_VERSION_LEGACY) { + if (is_legacy_version(version)) { boost::filesystem::path versioned_path; boost::filesystem::path legacy_path; #if defined(_MSC_VER) || defined(_WIN32) @@ -162,12 +162,15 @@ int BBLNetworkPlugin::initialize(bool using_backup, const std::string& version) // Load all function pointers load_all_function_pointers(); - // Sync legacy network flag from NetworkAgent (set during GUI_App initialization) - m_use_legacy_network = NetworkAgent::use_legacy_network; + // Sync legacy network flag from loaded plugin + m_use_legacy_network = is_legacy_version(version); std::string loaded_version; if (m_get_version) { loaded_version = m_get_version(); + if (!loaded_version.empty()) { + m_use_legacy_network = is_legacy_version(loaded_version); + } } BOOST_LOG_TRIVIAL(info) << "BBLNetworkPlugin::initialize: legacy_mode=" @@ -208,6 +211,8 @@ int BBLNetworkPlugin::unload() clear_all_function_pointers(); + m_use_legacy_network = false; + return 0; } @@ -377,7 +382,7 @@ bool BBLNetworkPlugin::versioned_library_exists(const std::string& version) if (boost::filesystem::exists(path)) return true; - if (version == BAMBU_NETWORK_AGENT_VERSION_LEGACY) { + if (is_legacy_version(version)) { return legacy_library_exists(); } diff --git a/src/slic3r/Utils/BBLNetworkPlugin.hpp b/src/slic3r/Utils/BBLNetworkPlugin.hpp index 812a2c91c5..ddbc0ac67c 100644 --- a/src/slic3r/Utils/BBLNetworkPlugin.hpp +++ b/src/slic3r/Utils/BBLNetworkPlugin.hpp @@ -266,6 +266,7 @@ public: // Legacy Network Flag // ======================================================================== + static bool is_legacy_version(const std::string& version) { return version == BAMBU_NETWORK_AGENT_VERSION_LEGACY; } bool use_legacy_network() const { return m_use_legacy_network; } void set_use_legacy_network(bool legacy) { m_use_legacy_network = legacy; } @@ -404,7 +405,7 @@ private: NetworkLibraryLoadError m_load_error; // Legacy network compatibility flag - bool m_use_legacy_network{true}; + bool m_use_legacy_network{false}; // Function pointers func_check_debug_consistent m_check_debug_consistent{nullptr}; diff --git a/src/slic3r/Utils/NetworkAgent.cpp b/src/slic3r/Utils/NetworkAgent.cpp index 8a3d2953b0..5073ac133c 100644 --- a/src/slic3r/Utils/NetworkAgent.cpp +++ b/src/slic3r/Utils/NetworkAgent.cpp @@ -32,8 +32,6 @@ int invoke_on_all_cloud_agents(const std::map #endif -#if defined(__APPLE__) +#if !defined(_WIN32) #include +#include +#include +#endif + +#if defined(__APPLE__) #include #endif @@ -76,6 +81,60 @@ constexpr const char* SECRET_STORE_SERVICE = "OrcaSlicer/Auth"; constexpr const char* SECRET_STORE_USER = "orca_refresh_token"; constexpr std::chrono::seconds TOKEN_REFRESH_SKEW{900}; // 15 minutes +// Cross-process advisory lock serializing refresh-token rotation between Orca instances on +// this machine. The Supabase refresh token rotates on every use, so read -> spend -> write-back +// of the rotated successor must be one critical section across processes; otherwise a second +// instance can re-spend a token a peer already rotated, triggering `refresh_token_already_used`. +// Blocks until acquired (kernel sleep, no CPU spin). It cannot deadlock permanently because the +// refresh POST is bounded (http_post_token uses timeout_max) and both back-ends release +// automatically if the holder dies. Same machine only; cross-device concurrency is still +// governed by the server's reuse-detection grace window. +class InterProcessRefreshTokenLock +{ +public: + explicit InterProcessRefreshTokenLock(const std::string& path) + { + if (path.empty()) { m_locked = true; return; } // no path -> proceed unsynchronized +#if defined(_WIN32) + const std::wstring name = L"Local\\OrcaTokenRefresh_" + std::to_wstring(std::hash{}(path)); + m_handle = ::CreateMutexW(nullptr, FALSE, name.c_str()); + if (!m_handle) { m_locked = true; return; } // can't create -> don't block + const DWORD r = ::WaitForSingleObject(m_handle, INFINITE); // blocks, no spin + m_locked = (r == WAIT_OBJECT_0 || r == WAIT_ABANDONED); // ABANDONED: prior holder crashed +#else + m_fd = ::open(path.c_str(), O_RDWR | O_CREAT | O_CLOEXEC, 0600); + if (m_fd == -1) { m_locked = true; return; } // can't open -> don't block + struct flock fl{}; + fl.l_type = F_WRLCK; fl.l_whence = SEEK_SET; fl.l_start = 0; fl.l_len = 0; + int rc; + do { rc = ::fcntl(m_fd, F_SETLKW, &fl); } while (rc == -1 && errno == EINTR); // blocks in kernel + m_locked = (rc != -1); +#endif + } + + ~InterProcessRefreshTokenLock() + { +#if defined(_WIN32) + if (m_handle) { if (m_locked) ::ReleaseMutex(m_handle); ::CloseHandle(m_handle); } +#else + if (m_fd != -1) ::close(m_fd); // closing the fd releases the lock we hold +#endif + } + + bool locked() const { return m_locked; } + + InterProcessRefreshTokenLock(const InterProcessRefreshTokenLock&) = delete; + InterProcessRefreshTokenLock& operator=(const InterProcessRefreshTokenLock&) = delete; + +private: + bool m_locked = false; +#if defined(_WIN32) + HANDLE m_handle = nullptr; +#else + int m_fd = -1; +#endif +}; + // Return a JSON field only when it is present as a string. Missing or non-string values normalize to empty. std::string get_json_string_field(const json& j, const std::string& key) { @@ -1649,8 +1708,7 @@ RefreshResult OrcaCloudServiceAgent::refresh_now(const std::string& refresh_toke } auto worker = [this, refresh_token, reason]() { - (void) reason; - RefreshResult r = refresh_session_with_token(refresh_token); + RefreshResult r = refresh_session_with_token(refresh_token, reason); refresh_running.store(false); return r; }; @@ -1670,20 +1728,39 @@ RefreshResult OrcaCloudServiceAgent::refresh_now(const std::string& refresh_toke RefreshResult OrcaCloudServiceAgent::refresh_from_storage(const std::string& reason, bool async) { - std::string refresh_token = get_refresh_token(); - if (refresh_token.empty()) { - std::string user_secret; - if (load_user_secret(user_secret) && !user_secret.empty()) { - SessionInfo stored_session; - parse_stored_secret(user_secret, refresh_token, stored_session); - } + (void) async; // currently all callers are calling this function synchronous anyway + + // Blocks until we own the lock (kernel sleep, no spin). Cannot deadlock permanently: + // the refresh POST is bounded (http_post_token timeout_max) and the lock auto-releases + // on process death, so no holder can keep it longer than that bound. + InterProcessRefreshTokenLock lock(token_lock_path()); + if (!lock.locked()) { + // Lock syscall genuinely failed (rare). Proceed best-effort rather than give up. + BOOST_LOG_TRIVIAL(warning) << "OrcaCloudServiceAgent: token refresh lock unavailable, " + "proceeding unsynchronized (reason=" << reason << ")"; } + + std::string refresh_token; + std::string user_secret; + + // We read the refresh token from the OS keychain as the source of truth + if (load_user_secret(user_secret) && !user_secret.empty()) { + SessionInfo stored_session; + parse_stored_secret(user_secret, refresh_token, stored_session); + } + + // We only read from memory if the read from OS keychain fails + if (refresh_token.empty()) + refresh_token = get_refresh_token(); + if (refresh_token.empty()) { BOOST_LOG_TRIVIAL(warning) << "OrcaCloudServiceAgent: no refresh token available for refresh (reason=" << reason << ")"; return RefreshResult::AuthRejected; // no persisted token: nothing to preserve } - return refresh_now(refresh_token, reason, async); + // Synchronous: hold the lock across the network round-trip AND the write-back that + // set_user_session performs, so the rotation is atomic w.r.t. other instances. + return refresh_now(refresh_token, reason, /*async=*/false); } bool OrcaCloudServiceAgent::refresh_if_expiring(std::chrono::seconds skew, const std::string& reason) @@ -1696,8 +1773,14 @@ bool OrcaCloudServiceAgent::refresh_if_expiring(std::chrono::seconds skew, const if (!needs_refresh) return true; - if (refresh_from_storage(reason, false) == RefreshResult::Success) return true; + // First attempt. refresh_from_storage blocks on the cross-process lock and reads the + // freshest token from the store, so cross-instance contention is already resolved here. + RefreshResult r = refresh_from_storage(reason, false); + if (r == RefreshResult::Success) return true; + if (r == RefreshResult::AuthRejected) return false; // definitive: retrying the same token can't help + // One retry, only for a transient network failure of the refresh POST (lost response, + // timeout, 429/5xx -> Transient). The retry re-acquires the lock and re-reads the store. std::this_thread::sleep_for(std::chrono::milliseconds(750)); return refresh_from_storage(reason + "_retry", false) == RefreshResult::Success; } @@ -1716,7 +1799,23 @@ static RefreshResult classify_refresh_result(unsigned http_code, bool session_es : RefreshResult::Transient; // 2xx but unusable body } -RefreshResult OrcaCloudServiceAgent::refresh_session_with_token(const std::string& refresh_token) +// Best-effort extraction of GoTrue's "error_code" field (e.g. "refresh_token_already_used"). +// Returns "" if the body is not a JSON object or lacks the field. +static std::string extract_error_code(const std::string& body) +{ + const json j = json::parse(body, nullptr, false); + if (j.is_object()) + return get_json_string_field(j, "error_code"); + return ""; +} + +static long long now_epoch_seconds() +{ + return std::chrono::duration_cast( + std::chrono::system_clock::now().time_since_epoch()).count(); +} + +RefreshResult OrcaCloudServiceAgent::refresh_session_with_token(const std::string& refresh_token, const std::string& reason) { std::string body = "{\"refresh_token\":\"" + refresh_token + "\"}"; std::string url = auth_base_url + auth_constants::TOKEN_PATH + "?grant_type=refresh_token"; @@ -1725,6 +1824,12 @@ RefreshResult OrcaCloudServiceAgent::refresh_session_with_token(const std::strin // http_post_token sets http_code to 0 when the server could not be reached. http_post_token(body, &response, &http_code, url); + const long long now_s = now_epoch_seconds(); + const long long last_ok = last_refresh_success_epoch.load(std::memory_order_relaxed); + const long long since_last_ok = (last_ok == 0) ? -1 : (now_s - last_ok); // -1 = no success yet this process + const long long since_start = now_s - agent_start_epoch; + const std::string log_reason = reason.empty() ? "-" : reason; + bool established = false; if (http_code >= 200 && http_code < 300) { if (session_handler) { @@ -1738,10 +1843,47 @@ RefreshResult OrcaCloudServiceAgent::refresh_session_with_token(const std::strin BOOST_LOG_TRIVIAL(error) << "OrcaCloudServiceAgent: token refresh parse exception - " << e.what(); } } + if (established) { + last_refresh_success_epoch.store(now_s, std::memory_order_relaxed); + BOOST_LOG_TRIVIAL(info) << "[auth] event=refresh_ok reason=" << log_reason + << " secs_since_last_success=" << since_last_ok; + } } else { + // Diagnostics to classify a future refresh_token_already_used incident from logs alone + // - secs_since_last_success large (or -1 = none this process) => stale token beyond the + // reuse-grace window (the ">1h gap" residual). + // - stored_differs=true => another instance/device already rotated the token in the + // shared secret store (the multi-session residual). + const std::string error_code = extract_error_code(response); + + // Only meaningful when the server actually rejected us (not a bare transport failure). + bool stored_present = false, stored_differs = false; + if (http_code >= 400) { + std::string stored_secret, stored_token; + SessionInfo ignored; + if (load_user_secret(stored_secret) && !stored_secret.empty() + && parse_stored_secret(stored_secret, stored_token, ignored) && !stored_token.empty()) { + stored_present = true; + stored_differs = (stored_token != refresh_token); + } + } + + std::string user_id_copy; + { + std::lock_guard lock(session_mutex); + user_id_copy = session.user_id; + } + std::string truncated_response = response.size() > 200 ? response.substr(0, 200) + "..." : response; - BOOST_LOG_TRIVIAL(warning) << "OrcaCloudServiceAgent: token refresh failed - http_code=" << http_code - << ", response_body=" << truncated_response; + BOOST_LOG_TRIVIAL(warning) << "[auth] event=refresh_rejected http_code=" << http_code + << " error_code=" << (error_code.empty() ? "-" : error_code) + << " reason=" << log_reason + << " stored_present=" << (stored_present ? "true" : "false") + << " stored_differs=" << (stored_differs ? "true" : "false") + << " secs_since_last_success=" << since_last_ok + << " secs_since_start=" << since_start + << " user_id=" << (user_id_copy.empty() ? "-" : user_id_copy) + << " response_body=" << truncated_response; } return classify_refresh_result(http_code, established); @@ -2206,6 +2348,9 @@ bool OrcaCloudServiceAgent::http_post_token(const std::string& body, std::string resp_body = body; BOOST_LOG_TRIVIAL(error) << "OrcaCloudServiceAgent: HTTP error - " << error; }) + // Keep this timeout finite: refresh_from_storage holds a cross-process lock across + // this call, so an unbounded refresh POST would let one instance wedge token refresh + // for every other Orca instance on the machine. .timeout_max(30) .perform_sync(); @@ -2843,4 +2988,13 @@ int OrcaCloudServiceAgent::get_shared_bundle(const std::string& bundle_id, std:: } } +std::string OrcaCloudServiceAgent::token_lock_path() const +{ + if (config_dir.empty()) + return {}; + wxFileName lock(wxString::FromUTF8(config_dir.c_str()), "orca_refresh_token.lock"); + lock.Normalize(); + return lock.GetFullPath().ToStdString(); +} + } // namespace Slic3r diff --git a/src/slic3r/Utils/OrcaCloudServiceAgent.hpp b/src/slic3r/Utils/OrcaCloudServiceAgent.hpp index 871f43163e..a9ec3d5e81 100644 --- a/src/slic3r/Utils/OrcaCloudServiceAgent.hpp +++ b/src/slic3r/Utils/OrcaCloudServiceAgent.hpp @@ -287,7 +287,7 @@ public: bool refresh_if_expiring(std::chrono::seconds skew, const std::string& reason); RefreshResult refresh_from_storage(const std::string& reason, bool async = false); RefreshResult refresh_now(const std::string& refresh_token, const std::string& reason, bool async = false); - RefreshResult refresh_session_with_token(const std::string& refresh_token); + RefreshResult refresh_session_with_token(const std::string& refresh_token, const std::string& reason = ""); // Session state helpers. nickname is the human-facing UI label after provider fallback resolution. bool set_user_session(const std::string& token, @@ -350,6 +350,9 @@ private: std::string map_to_json(const std::map& map); void json_to_map(const std::string& json, std::map& map); + // Refresh token lock + std::string token_lock_path() const; + // Member variables - configuration std::string log_dir; std::string config_dir; @@ -370,6 +373,12 @@ private: SessionInfo session; mutable std::mutex session_mutex; + // Refresh diagnostics (see docs/analysis/refresh_token_already_used.md). Epoch seconds so the + // refresh-failure log can report token staleness without holding a lock or logging any token. + std::atomic last_refresh_success_epoch{0}; // 0 = no success yet this process + const long long agent_start_epoch{std::chrono::duration_cast( + std::chrono::system_clock::now().time_since_epoch()).count()}; + // Member variables - connection state bool is_connected{false}; bool enable_track{false}; diff --git a/src/slic3r/Utils/PresetUpdater.cpp b/src/slic3r/Utils/PresetUpdater.cpp index 768d183f44..540cbaafdd 100644 --- a/src/slic3r/Utils/PresetUpdater.cpp +++ b/src/slic3r/Utils/PresetUpdater.cpp @@ -836,7 +836,7 @@ void PresetUpdater::priv::sync_plugins(std::string http_url, std::string plugin_ BOOST_LOG_TRIVIAL(info) << "non need to sync plugins for there is no plugins currently."; return; } - std::string curr_version = NetworkAgent::use_legacy_network ? BAMBU_NETWORK_AGENT_VERSION_LEGACY : get_latest_network_version(); + std::string curr_version = GUI::wxGetApp().use_legacy_network_plugin() ? BAMBU_NETWORK_AGENT_VERSION_LEGACY : get_latest_network_version(); std::string using_version = curr_version.substr(0, 9) + "00"; std::string cached_version; @@ -931,7 +931,7 @@ void PresetUpdater::priv::sync_plugins(std::string http_url, std::string plugin_ } #if defined(__WINDOWS__) - if (GUI::wxGetApp().is_running_on_arm64() && !NetworkAgent::use_legacy_network) { + if (GUI::wxGetApp().is_running_on_arm64() && !GUI::wxGetApp().use_legacy_network_plugin()) { //set to arm64 for plugins std::map current_headers = Slic3r::Http::get_extra_headers(); current_headers["X-BBL-OS-Type"] = "windows_arm"; @@ -951,7 +951,7 @@ void PresetUpdater::priv::sync_plugins(std::string http_url, std::string plugin_ BOOST_LOG_TRIVIAL(warning) << format("[Orca Updater] sync_plugins: %1%", e.what()); } #if defined(__WINDOWS__) - if (GUI::wxGetApp().is_running_on_arm64() && !NetworkAgent::use_legacy_network) { + if (GUI::wxGetApp().is_running_on_arm64() && !GUI::wxGetApp().use_legacy_network_plugin()) { //set back std::map current_headers = Slic3r::Http::get_extra_headers(); current_headers["X-BBL-OS-Type"] = "windows"; diff --git a/tests/fff_print/CMakeLists.txt b/tests/fff_print/CMakeLists.txt index 1467c1397f..a91d25609a 100644 --- a/tests/fff_print/CMakeLists.txt +++ b/tests/fff_print/CMakeLists.txt @@ -7,6 +7,7 @@ add_executable(${_TEST_NAME}_tests test_fill.cpp test_flow.cpp test_gcode.cpp + test_gcode_timing.cpp test_gcodewriter.cpp test_model.cpp test_print.cpp diff --git a/tests/fff_print/test_gcode_timing.cpp b/tests/fff_print/test_gcode_timing.cpp new file mode 100644 index 0000000000..646ab1bbbe --- /dev/null +++ b/tests/fff_print/test_gcode_timing.cpp @@ -0,0 +1,325 @@ +#include + +#include "libslic3r/libslic3r.h" +#include "libslic3r/GCode/GCodeProcessor.hpp" +#include "libslic3r/PrintConfig.hpp" + +#include "test_utils.hpp" + +#include +#include + +using namespace Slic3r; +using Catch::Matchers::WithinAbs; + +// Regression coverage for filament/tool-change time being folded into the first +// pending motion block (an extrusion move) instead of the tool-change move, and +// for that delay being dropped entirely when too few motion blocks precede the +// change. See BambuStudio "seperate flush time from other types" (c54a8333c7) +// and the follow-up "unprocessed addtional time" fix (27ef0b1bef). +namespace { + +constexpr size_t NORMAL = static_cast(PrintEstimatedStatistics::ETimeMode::Normal); + +FullPrintConfig make_config(double load_time, double unload_time, double tool_change_time) +{ + FullPrintConfig config; // default-initialized with the built-in defaults + config.gcode_flavor.value = gcfMarlinFirmware; + // Two filaments, both assigned to the same (single) extruder, so a T1 after + // T0 is a same-extruder filament swap that costs unload + load time. + config.filament_diameter.values = {1.75, 1.75}; + config.filament_map.values = {1, 1}; + config.machine_load_filament_time.value = load_time; + config.machine_unload_filament_time.value = unload_time; + config.machine_tool_change_time.value = tool_change_time; + return config; +} + +void run_processor(GCodeProcessor& proc, const FullPrintConfig& config, const char* gcode) +{ + // reserved_tag() selects between two tag tables based on this shared static, and + // other tests in the binary mutate it -- pin it so our "; FEATURE:" role tags are + // parsed deterministically regardless of test execution order. + GCodeProcessor::s_IsBBLPrinter = true; + ScopedTemporaryFile temp(".gcode"); + { + std::ofstream os(temp.string()); + os << gcode; + } + proc.apply_config(config); + // No producer marker in the gcode, so process_file keeps our applied config. + proc.process_file(temp.string()); +} + +// Estimated time per extrusion role, grouped exactly the way libvgcode builds the +// feature-type legend: sum MoveVertex.time over EMoveType::Extrude moves keyed by +// extrusion_role (see ViewerImpl.cpp:1017 -- only Extrude moves are counted). +std::map role_times(const GCodeProcessorResult& r) +{ + std::map m; + for (const auto& mv : r.moves) + if (mv.type == EMoveType::Extrude) + m[mv.extrusion_role] += mv.time[NORMAL]; + return m; +} + +// Sum of estimated time attributed to tool-change moves. +double sum_tool_change_time(const GCodeProcessorResult& r) +{ + double t = 0.0; + for (const auto& mv : r.moves) + if (mv.type == EMoveType::Tool_change) + t += mv.time[NORMAL]; + return t; +} + +// Total filament-change delay, accumulated independently of the timing machinery. +double filament_change_delay(const GCodeProcessorResult& r) +{ + const auto& s = r.print_statistics; + return s.total_filament_load_time + s.total_filament_unload_time + s.total_tool_change_time; +} + +} // namespace + +TEST_CASE("Filament-change time is attributed to tool-change moves, not extrusion roles", "[GCodeTiming]") +{ + // Relative extrusion (M83) so every "E5" is a real 5mm extrusion move rather + // than a zero-delta travel. Two real travels precede T0 so its delay is flushed + // cleanly. The extrusions after T0 span several roles (Outer wall, Sparse infill, + // Inner wall); the first pending block at T1 is an "Outer wall" move, so the + // buggy code folds the T1 delay into that role. The per-role check below verifies + // EVERY role stays clean, not just one, and catches any role-to-role misattribution. + const char* gcode = + "M83\n" + "; FEATURE: Outer wall\n" + "G1 X10 Y10 Z0.2 F600\n" + "G1 X0 Y0 F6000\n" + "T0\n" + "; FEATURE: Outer wall\n" + "G1 X50 Y0 E5 F1800\n" + "G1 X50 Y50 E5\n" + "; FEATURE: Sparse infill\n" + "G1 X0 Y50 E5\n" + "G1 X0 Y0 E5\n" + "T1\n" + "; FEATURE: Inner wall\n" + "G1 X50 Y0 E5\n" + "G1 X50 Y50 E5\n"; + + GCodeProcessor proc_zero; + run_processor(proc_zero, make_config(0.0, 0.0, 0.0), gcode); + const GCodeProcessorResult& r_zero = proc_zero.get_result(); + + const double load = 10.0; + const double unload = 5.0; + GCodeProcessor proc_delay; + run_processor(proc_delay, make_config(load, unload, 0.0), gcode); + const GCodeProcessorResult& r_delay = proc_delay.get_result(); + + const double delay = filament_change_delay(r_delay); + + // Preconditions: the filament changes were charged, and cost nothing in the + // zero-time baseline. + REQUIRE(delay > 0.0); + REQUIRE_THAT(filament_change_delay(r_zero), WithinAbs(0.0, 1e-9)); + + // The delay must not inflate the time of ANY extrusion role. Compare the full + // per-role breakdown (exactly how the feature-type legend is built) between the + // zero-delay and delayed runs -- every role must match to within tolerance. + const auto roles_zero = role_times(r_zero); + const auto roles_delay = role_times(r_delay); + // Guard: the gcode must genuinely exercise multiple distinct roles (Outer wall, + // Sparse infill, Inner wall), otherwise this check would silently cover only one. + REQUIRE(roles_zero.size() >= 3); + REQUIRE(roles_zero.size() == roles_delay.size()); + for (const auto& [role, zero_time] : roles_zero) { + INFO("extrusion role index = " << static_cast(role)); + REQUIRE(roles_delay.count(role) == 1); + REQUIRE_THAT(roles_delay.at(role), WithinAbs(zero_time, 1e-2)); + } + + // The delay must instead land on the tool-change moves, so per-move consumers + // (layer-time view, layer slider) stay consistent. + REQUIRE_THAT(sum_tool_change_time(r_delay), WithinAbs(delay, 1e-2)); + + // Both tool changes occur on layer 1, so the delay must also be reflected in + // the first-layer time. + const double first_layer_delta = proc_delay.get_first_layer_time(PrintEstimatedStatistics::ETimeMode::Normal) + - proc_zero.get_first_layer_time(PrintEstimatedStatistics::ETimeMode::Normal); + REQUIRE_THAT(first_layer_delta, WithinAbs(delay, 1e-2)); +} + +TEST_CASE("Filament-change time is not dropped when few motion blocks precede the change", "[GCodeTiming]") +{ + // Only a single motion block precedes T0, so the buggy code's "fewer than two + // pending blocks" early-out discards that filament-change delay entirely, + // making the total print time inconsistent with the reported statistics. + const char* gcode = + "; FEATURE: Outer wall\n" + "G1 X10 Y10 Z0.2 F600\n" + "T0\n" + "G1 X50 Y0 E5 F1800\n" + "G1 X50 Y50 E5\n" + "T1\n" + "G1 X0 Y50 E5\n" + "G1 X0 Y0 E5\n"; + + GCodeProcessor proc_zero; + run_processor(proc_zero, make_config(0.0, 0.0, 0.0), gcode); + + const double load = 10.0; + const double unload = 5.0; + GCodeProcessor proc_delay; + run_processor(proc_delay, make_config(load, unload, 0.0), gcode); + const GCodeProcessorResult& r_delay = proc_delay.get_result(); + + const double delay = filament_change_delay(r_delay); + REQUIRE(delay > 0.0); + + // Every second of reported filament-change delay must be present in the total + // estimated print time; none may be silently dropped. + const double total_delta = proc_delay.get_time(PrintEstimatedStatistics::ETimeMode::Normal) + - proc_zero.get_time(PrintEstimatedStatistics::ETimeMode::Normal); + REQUIRE_THAT(total_delta, WithinAbs(delay, 1e-2)); +} + +TEST_CASE("Back-to-back tool changes buffer then merge into one tool-change block", "[GCodeTiming]") +{ + // T0 is the very first line: the block queue is empty when its delay is synchronized, + // so with only the single (artificial) tool-change block queued the delay can't be + // attributed yet and is buffered. T1 follows immediately with no motion between; its + // synchronize now sees two tool-change blocks queued, so its own delay joins the buffered + // T0 entry at application time, the two same-type entries merge into one, and the sum + // lands entirely on the first tool-change block. The trailing travels leave both runs + // with >= 2 blocks so their end-of-file flush is identical and cancels in every delta. + const char* gcode = + "T0\n" // first charged change (load only); empty queue -> buffers (Tool_change,10) + "T1\n" // same-extruder swap (unload+load); merges with buffered T0 entry to (Tool_change,25) + "G1 X10 Y0 Z0.2 F6000\n" // travels: keep >= 2 blocks queued at EOF (flushed identically by both runs) + "G1 X10 Y10\n" + "G1 X0 Y10\n"; + + GCodeProcessor proc_zero; + run_processor(proc_zero, make_config(0.0, 0.0, 0.0), gcode); + const GCodeProcessorResult& r_zero = proc_zero.get_result(); + + GCodeProcessor proc_delay; + run_processor(proc_delay, make_config(10.0, 5.0, 0.0), gcode); + const GCodeProcessorResult& r_delay = proc_delay.get_result(); + + // T0 load 10 + T1 unload 5 + T1 load 10 = 25. + const double delay = filament_change_delay(r_delay); + REQUIRE(delay > 0.0); + REQUIRE_THAT(delay, WithinAbs(25.0, 1e-6)); + REQUIRE_THAT(filament_change_delay(r_zero), WithinAbs(0.0, 1e-9)); + + // The whole buffered-then-merged delay must reach the total print time. + const double total_delta = proc_delay.get_time(PrintEstimatedStatistics::ETimeMode::Normal) + - proc_zero.get_time(PrintEstimatedStatistics::ETimeMode::Normal); + REQUIRE_THAT(total_delta, WithinAbs(delay, 1e-2)); + + // ...and must land on the tool-change moves, not on any extrusion role. + REQUIRE_THAT(sum_tool_change_time(r_delay), WithinAbs(25.0, 1e-2)); + REQUIRE_THAT(sum_tool_change_time(r_zero), WithinAbs(0.0, 1e-9)); + + // Characterization (documents the current merge-collapse behavior, not a correctness + // requirement): the two buffered same-type entries combine onto the FIRST artificial + // tool-change block; the second receives nothing. Had the merge regressed, the 10 and 15 + // would land on separate moves instead of 25 and 0. + std::vector tc; + for (const auto& mv : r_delay.moves) + if (mv.type == EMoveType::Tool_change) + tc.push_back(mv.time[NORMAL]); + REQUIRE(tc.size() >= 2); + REQUIRE_THAT(tc[0], WithinAbs(25.0, 1e-2)); + REQUIRE_THAT(tc[1], WithinAbs(0.0, 1e-9)); +} + +TEST_CASE("Trailing tool change at end of file is drained, not dropped", "[GCodeTiming]") +{ + // A tool change is the last line of the file, with only its single artificial block + // queued. Its delay is buffered (fewer than two blocks) and there is no later motion to + // flush it, so only the finalization pass can attribute it. Without the end-of-file drain + // the delay would be stranded in the buffer and the total print time would disagree with + // the reported filament-change statistics. + const char* gcode = + "G1 X10 Y0 Z0.2 F6000\n" // three travels -> three blocks queued (no E, so no filament is selected) + "G1 X10 Y10\n" + "G1 X0 Y10\n" + "G4 S0\n" // dwell with S present -> full flush; queue and buffer now empty + "T0\n"; // trailing change, nothing after: buffers (Tool_change,10), one block queued + + GCodeProcessor proc_zero; + run_processor(proc_zero, make_config(0.0, 0.0, 0.0), gcode); + const GCodeProcessorResult& r_zero = proc_zero.get_result(); + + GCodeProcessor proc_delay; + run_processor(proc_delay, make_config(10.0, 5.0, 0.0), gcode); + const GCodeProcessorResult& r_delay = proc_delay.get_result(); + + // T0 is the first charged change on an empty extruder, so it costs the load time only. + const double delay = filament_change_delay(r_delay); + REQUIRE(delay > 0.0); + REQUIRE_THAT(delay, WithinAbs(10.0, 1e-6)); + + // The trailing change's delay must survive to the total: the zero run buffers nothing and + // drops its artificial block, so the motion cancels and the delta is exactly the drained delay. + const double total_delta = proc_delay.get_time(PrintEstimatedStatistics::ETimeMode::Normal) + - proc_zero.get_time(PrintEstimatedStatistics::ETimeMode::Normal); + REQUIRE_THAT(total_delta, WithinAbs(delay, 1e-2)); + + // The size-1 drain runs the body, so the delay lands on the artificial tool-change move. + REQUIRE_THAT(sum_tool_change_time(r_delay), WithinAbs(10.0, 1e-2)); + REQUIRE_THAT(sum_tool_change_time(r_zero), WithinAbs(0.0, 1e-9)); +} + +TEST_CASE("Carried-forward tool-change delay reaches the total without polluting roles", "[GCodeTiming]") +{ + // A wildcard dwell delay is buffered ahead of the tool-change delay, so when the blocks + // are next flushed the dwell's (Noop) entry consumes the artificial tool-change block and + // the tool-change entry finds no matching block and carries forward. It stays unmatched + // through the remaining extrusion moves and is only resolved at finalization, where the + // end-of-file fold adds it to the machine total and the custom-gcode cache -- never to a + // move vertex, so it cannot leak into an extrusion role's time. + const char* gcode = + "M83\n" + "G4 S3\n" // empty queue -> buffers (Noop,3) [wildcard delay] + "T0\n" // one block queued -> buffers (Tool_change,10) behind the dwell + "; FEATURE: Inner wall\n" + "G1 X20 Y0 Z0.2 E5 F1800\n" // extrusion m1: queue is [artificial_TC0, m1] + "G4 S0\n" // flush: (Noop,3) consumes artificial_TC0; (Tool_change,10) carries forward + "G1 X20 Y20 E5\n" // extrusion m2 + "G1 X0 Y20 E5\n"; // extrusion m3: at EOF queue is [m2, m3], buffer is [(Tool_change,10)] + + GCodeProcessor proc_zero; + run_processor(proc_zero, make_config(0.0, 0.0, 0.0), gcode); + const GCodeProcessorResult& r_zero = proc_zero.get_result(); + + GCodeProcessor proc_delay; + run_processor(proc_delay, make_config(10.0, 5.0, 0.0), gcode); + const GCodeProcessorResult& r_delay = proc_delay.get_result(); + + // T0 is the first charged change (load only); the fixed dwell delays are not in these counters. + const double delay = filament_change_delay(r_delay); + REQUIRE(delay > 0.0); + REQUIRE_THAT(delay, WithinAbs(10.0, 1e-6)); + + // The stranded tool-change delay must be drained into the total, not dropped. The 3s dwell + // is identical in both runs and cancels along with all motion, leaving exactly the delay. + const double total_delta = proc_delay.get_time(PrintEstimatedStatistics::ETimeMode::Normal) + - proc_zero.get_time(PrintEstimatedStatistics::ETimeMode::Normal); + REQUIRE_THAT(total_delta, WithinAbs(delay, 1e-2)); + + // Pollution safety: the drained delay must NOT appear in any extrusion role. Every role's + // time must match between the zero and delayed runs -- this is what the total-only fold buys. + const auto rz = role_times(r_zero); + const auto rd = role_times(r_delay); + REQUIRE(rz.size() >= 1); + REQUIRE(rz.size() == rd.size()); + for (const auto& [role, zero_time] : rz) { + INFO("extrusion role index = " << static_cast(role)); + REQUIRE(rd.count(role) == 1); + REQUIRE_THAT(rd.at(role), WithinAbs(zero_time, 1e-2)); + } +} diff --git a/tests/fff_print/test_print.cpp b/tests/fff_print/test_print.cpp index c86cfa71dd..0791d4f7f1 100644 --- a/tests/fff_print/test_print.cpp +++ b/tests/fff_print/test_print.cpp @@ -183,6 +183,74 @@ void trigger_precise_wall_warning(DynamicPrintConfig& c) } // namespace +// --------------------------------------------------------------------------- +// {first_object_name} filename placeholder +// --------------------------------------------------------------------------- +namespace { + +// Add a printable 20mm cube named `name` to `model`; returns it so the caller can tweak it. +ModelObject* add_named_cube(Model& model, const std::string& name) +{ + ModelObject* obj = model.add_object(); + obj->name = name; + obj->add_volume(make_cube(20.0, 20.0, 20.0)); + obj->add_instance(); + obj->ensure_on_bed(); + return obj; +} + +// Resolve `format` to an output file name for a print of `model`. `filename_base`, when set, +// is the saved-project name passed to output_filename(). +std::string resolved_output_name(Model& model, const std::string& format, const std::string& filename_base = {}) +{ + DynamicPrintConfig config = DynamicPrintConfig::full_print_config(); + config.set_key_value("filename_format", new ConfigOptionString(format)); + + Print print; + for (ModelObject* obj : model.objects) + print.auto_assign_extruders(obj); + print.apply(model, config); + return print.output_filename(filename_base); +} + +} // namespace + +TEST_CASE("Print: {first_object_name} names the first printable object on the plate", "[Print]") +{ + Model model; + + SECTION("uses the object's name") { + add_named_cube(model, "WidgetPart"); + CHECK(resolved_output_name(model, "{first_object_name}") == "WidgetPart.gcode"); + } + + SECTION("picks the first when several objects are printable") { + add_named_cube(model, "FirstPart"); + add_named_cube(model, "SecondPart"); + CHECK(resolved_output_name(model, "{first_object_name}") == "FirstPart.gcode"); + } + + SECTION("skips objects outside the print volume (e.g. on another plate)") { + // First in model order, but not on the current plate, so is_printable() is false. + add_named_cube(model, "OtherPlatePart")->instances.front()->print_volume_state = ModelInstancePVS_Fully_Outside; + add_named_cube(model, "OnPlatePart"); + CHECK(resolved_output_name(model, "{first_object_name}") == "OnPlatePart.gcode"); + } + + SECTION("is empty when the object has no name") { + add_named_cube(model, ""); + CHECK(resolved_output_name(model, "part_{first_object_name}") == "part_.gcode"); + } +} + +TEST_CASE("Print: {first_object_name} is not replaced by the saved-project file name", "[Print]") +{ + // Passing a saved-project file name as the filename_base must not change {first_object_name}. + Model model; + add_named_cube(model, "WidgetPart"); + CHECK(resolved_output_name(model, "{first_object_name}", "SavedProject") == "WidgetPart.gcode"); +} + TEST_CASE("Print::validate stacks independent warnings", "[Print][validate]") { // Two unrelated checks (region precise-wall + machine acceleration) must each diff --git a/tests/libslic3r/CMakeLists.txt b/tests/libslic3r/CMakeLists.txt index 5ced761fea..54bda1ec2e 100644 --- a/tests/libslic3r/CMakeLists.txt +++ b/tests/libslic3r/CMakeLists.txt @@ -24,6 +24,7 @@ add_executable(${_TEST_NAME}_tests test_stl.cpp test_meshboolean.cpp test_marchingsquares.cpp + test_utils.cpp test_timeutils.cpp test_voronoi.cpp test_optimizers.cpp diff --git a/tests/libslic3r/test_placeholder_parser.cpp b/tests/libslic3r/test_placeholder_parser.cpp index 6654a42bee..8b96305b95 100644 --- a/tests/libslic3r/test_placeholder_parser.cpp +++ b/tests/libslic3r/test_placeholder_parser.cpp @@ -11,8 +11,8 @@ SCENARIO("Placeholder parser scripting", "[PlaceholderParser]") { config.set_deserialize_strict( { { "printer_notes", " PRINTER_VENDOR_PRUSA3D PRINTER_MODEL_MK2 " }, - { "nozzle_diameter", "0.6;0.6;0.6;0.6" }, - { "nozzle_temperature", "357;359;363;378" } + { "nozzle_diameter", "0.6,0.6,0.6,0.6" }, + { "nozzle_temperature", "357,359,363,378" } }); // To test the "min_width_top_surface" over "inner_wall_line_width". config.option("inner_wall_line_width")->value = 150.; @@ -121,8 +121,8 @@ SCENARIO("Placeholder parser variables", "[PlaceholderParser]") { config.set_deserialize_strict({ { "filament_notes", "testnotes" }, { "enable_pressure_advance", "1" }, - { "nozzle_diameter", "0.6;0.6;0.6;0.6" }, - { "nozzle_temperature", "357;359;363;378" } + { "nozzle_diameter", "0.6,0.6,0.6,0.6" }, + { "nozzle_temperature", "357,359,363,378" } }); PlaceholderParser::ContextData context_with_global_dict; @@ -241,3 +241,97 @@ SCENARIO("Placeholder parser variables", "[PlaceholderParser]") { } SECTION("if else completely empty") { REQUIRE(parser.process("{if false then elsif false then else endif}", 0, nullptr, nullptr, nullptr) == ""); } } + +SCENARIO("Placeholder parser coFloatsOrPercents vector access", "[PlaceholderParser]") { + PlaceholderParser parser; + auto config = DynamicPrintConfig::full_print_config(); + + // outer_wall_speed is the ratio_over target for small_perimeter_speed. + // Different values per extruder to verify parent resolves at the same element index. + config.set_deserialize_strict({ + { "outer_wall_speed", "60,70,80,90" }, + { "nozzle_diameter", "0.4,0.4,0.4,0.4" }, + { "pressure_advance", "1.5,2.0,3.0,4.0" } // coFloats non-nullable + }); + // small_perimeter_speed: + // [0] = 50% of outer_wall_speed[0] (= 60) → 30 + // [1] = 80% of outer_wall_speed[1] (= 70) → 56 + // [2] = 0 absolute + // [3] = 50% of outer_wall_speed[3] (= 90) → 45 + config.option("small_perimeter_speed")->values = { + FloatOrPercent{50.0, true}, // 50% of outer_wall_speed[0] (60) = 30 + FloatOrPercent{80.0, true}, // 80% of outer_wall_speed[1] (70) = 56 + FloatOrPercent{0.0, false}, // absolute: 0 + FloatOrPercent{50.0, true}, // 50% of outer_wall_speed[3] (90) = 45 + }; + + parser.apply_config(config); + parser.set("foo", 0); + parser.set("bar", 1); + parser.set("baz", 3); + parser.set("num_extruders", 4); + + SECTION("Indexed access - percent resolved against parent at same index [0]") { + // 50% of outer_wall_speed[0] (60) = 30 + REQUIRE(std::stod(parser.process("{small_perimeter_speed[0]}")) == Catch::Approx(30.0)); + } + + SECTION("Indexed access - percent resolved against parent at same index [1]") { + // 80% of outer_wall_speed[1] (70) = 56 + REQUIRE(std::stod(parser.process("{small_perimeter_speed[1]}")) == Catch::Approx(56.0)); + } + + SECTION("Indexed access - percent resolved against parent at same index [3]") { + // 50% of outer_wall_speed[3] (90) = 45 + REQUIRE(std::stod(parser.process("{small_perimeter_speed[3]}")) == Catch::Approx(45.0)); + } + + SECTION("Variable-indexed access via foo (=0) - percent value") { + // 50% of outer_wall_speed[0] (60) = 30 + REQUIRE(std::stod(parser.process("{small_perimeter_speed[foo]}")) == Catch::Approx(30.0)); + } + + SECTION("Variable-indexed access via bar (=1) - percent value") { + // 80% of outer_wall_speed[1] (70) = 56 + REQUIRE(std::stod(parser.process("{small_perimeter_speed[bar]}")) == Catch::Approx(56.0)); + } + + SECTION("Variable-indexed access via baz (=3) - percent value") { + // 50% of outer_wall_speed[3] (90) = 45 + REQUIRE(std::stod(parser.process("{small_perimeter_speed[baz]}")) == Catch::Approx(45.0)); + } + + SECTION("Literal-indexed access - absolute value") { + REQUIRE(std::stod(parser.process("{small_perimeter_speed[2]}")) == Catch::Approx(0.0)); + } + + SECTION("No-index (extruder-based) access - percent resolved via current extruder") { + // Extruder 0 = 50% of outer_wall_speed[0] (60) = 30 + REQUIRE(std::stod(parser.process("{small_perimeter_speed}")) == Catch::Approx(30.0)); + } + + SECTION("Out-of-range index clamps to index 0") { + // Index 99 is out of range, clamps to 0: 50% of outer_wall_speed[0] (60) = 30 + REQUIRE(std::stod(parser.process("{small_perimeter_speed[99]}")) == Catch::Approx(30.0)); + } + + SECTION("coFloats no-index access - nullable (outer_wall_speed)") { + // outer_wall_speed is ConfigOptionFloatsNullable, exercises the 'if' branch + REQUIRE(std::stod(parser.process("{outer_wall_speed}")) == Catch::Approx(60.0)); + } + + SECTION("coFloats indexed access - nullable") { + // outer_wall_speed[2] = 80 + REQUIRE(std::stod(parser.process("{outer_wall_speed[2]}")) == Catch::Approx(80.0)); + } + + SECTION("coFloats no-index access - non-nullable (pressure_advance)") { + // pressure_advance is ConfigOptionFloats (non-nullable), exercises the 'else' branch + REQUIRE(std::stod(parser.process("{pressure_advance}")) == Catch::Approx(1.5)); + } + + SECTION("coFloats indexed access - non-nullable") { + // pressure_advance[2] = 3.0 + REQUIRE(std::stod(parser.process("{pressure_advance[2]}")) == Catch::Approx(3.0)); + } +} diff --git a/tests/libslic3r/test_preset_bundle_loading.cpp b/tests/libslic3r/test_preset_bundle_loading.cpp index a543b64e7e..b3bf1c15d3 100644 --- a/tests/libslic3r/test_preset_bundle_loading.cpp +++ b/tests/libslic3r/test_preset_bundle_loading.cpp @@ -3,6 +3,7 @@ #include #include "libslic3r/PresetBundle.hpp" +#include "libslic3r/AppConfig.hpp" using namespace Slic3r; @@ -298,3 +299,168 @@ TEST_CASE("Removed Generic parent is normalized into a loaded filament's inherit CHECK(bundle.filaments.get_preset_parent(*child)->name == "Generic PLA @System"); } +namespace { + +// A live reference to a preset's compatible_printers / compatible_prints list. Fetches the *stored* +// preset (real=true) so writes and reads hit the same object; creates the option if absent. +std::vector &compatible_list(PresetCollection &coll, const std::string &preset_name, const char *field_key) +{ + Preset *preset = coll.find_preset(preset_name, /*first_visible_if_not_found=*/false, /*real=*/true); + REQUIRE(preset != nullptr); + return preset->config.option(field_key, true)->values; +} + +} // namespace + +TEST_CASE("Renamed printer/process names are normalized into compatible lists on load", "[Preset][Rename]") +{ + PresetBundle bundle; + + // Current printer + process, each renamed from an older name. + add_inmemory_preset(bundle.printers, "New Printer"); + set_renamed_from(bundle.printers, "New Printer", { "Old Printer" }); + add_inmemory_preset(bundle.prints, "New Process"); + set_renamed_from(bundle.prints, "New Process", { "Old Process" }); + + // A user process still compatible with the OLD printer name. + add_inmemory_preset(bundle.prints, "My Process"); + compatible_list(bundle.prints, "My Process", "compatible_printers") = { "Old Printer" }; + + // A user filament referencing the OLD printer AND OLD process names, plus an unknown printer. + add_inmemory_preset(bundle.filaments, "My Filament"); + compatible_list(bundle.filaments, "My Filament", "compatible_printers") = { "Old Printer", "Unknown Printer" }; + compatible_list(bundle.filaments, "My Filament", "compatible_prints") = { "Old Process" }; + + // Build the rename maps (done during system load in the real pipeline), then normalize. + AppConfig app_config; + bundle.load_installed_printers(app_config); // rebuilds every collection's rename map + bundle.normalize_compatible_presets(); + + // The stale printer name in a process' compatible_printers is rewritten to the current name. + CHECK(compatible_list(bundle.prints, "My Process", "compatible_printers") == std::vector{ "New Printer" }); + + // The stale process name in a filament's compatible_prints is rewritten (this field has no + // runtime rename fallback, so load-time normalization is the only fix). + CHECK(compatible_list(bundle.filaments, "My Filament", "compatible_prints") == std::vector{ "New Process" }); + + // The renamed printer is rewritten while the unknown/deleted name is preserved as-is. + CHECK(compatible_list(bundle.filaments, "My Filament", "compatible_printers") == + (std::vector{ "New Printer", "Unknown Printer" })); + + // Normalizing rewrites config in place without flagging the preset dirty. + CHECK_FALSE(bundle.prints.find_preset("My Process", false, true)->is_dirty); + + // A system preset that already references the current name is left untouched (idempotent no-op). + bundle.normalize_compatible_presets(); + CHECK(compatible_list(bundle.prints, "My Process", "compatible_printers") == std::vector{ "New Printer" }); +} + +TEST_CASE("Renamed names are normalized into a SYSTEM preset's compatible lists", "[Preset][Rename]") +{ + PresetBundle bundle; + + // Current printer + process, each renamed from an older name. + add_inmemory_preset(bundle.printers, "New Printer"); + set_renamed_from(bundle.printers, "New Printer", { "Old Printer" }); + add_inmemory_preset(bundle.prints, "New Process"); + set_renamed_from(bundle.prints, "New Process", { "Old Process" }); + + // A *system* (vendor) filament whose own compatible lists still reference the OLD names. A vendor + // profile can point at a sibling preset that was later renamed, so system presets must be + // normalized too (they are skipped by neither collection walk). + add_inmemory_preset(bundle.filaments, "System Filament").is_system = true; + compatible_list(bundle.filaments, "System Filament", "compatible_printers") = { "Old Printer" }; + compatible_list(bundle.filaments, "System Filament", "compatible_prints") = { "Old Process" }; + + AppConfig app_config; + bundle.load_installed_printers(app_config); // build the rename maps + bundle.normalize_compatible_presets(); + + // The stale references in the system preset are rewritten to the current names. + CHECK(compatible_list(bundle.filaments, "System Filament", "compatible_printers") == + std::vector{ "New Printer" }); + CHECK(compatible_list(bundle.filaments, "System Filament", "compatible_prints") == + std::vector{ "New Process" }); + + // The rewrite does not flag the system preset dirty, and is idempotent. + CHECK_FALSE(bundle.filaments.find_preset("System Filament", false, true)->is_dirty); + bundle.normalize_compatible_presets(); + CHECK(compatible_list(bundle.filaments, "System Filament", "compatible_printers") == + std::vector{ "New Printer" }); +} + +TEST_CASE("compatible_prints on SLA materials resolves against sla_prints, not prints", "[Preset][Rename]") +{ + PresetBundle bundle; + + // A renamed SLA process, and a same-named FFF process that must NOT be picked up: resolving the + // SLA material's compatible_prints against `prints` would wrongly rewrite to "Wrong FFF Process". + add_inmemory_preset(bundle.sla_prints, "New SLA Process"); + set_renamed_from(bundle.sla_prints, "New SLA Process", { "Old SLA Process" }); + add_inmemory_preset(bundle.prints, "Wrong FFF Process"); + set_renamed_from(bundle.prints, "Wrong FFF Process", { "Old SLA Process" }); + + add_inmemory_preset(bundle.sla_materials, "My SLA Material"); + compatible_list(bundle.sla_materials, "My SLA Material", "compatible_prints") = { "Old SLA Process" }; + + AppConfig app_config; + bundle.load_installed_printers(app_config); + bundle.normalize_compatible_presets(); + + CHECK(compatible_list(bundle.sla_materials, "My SLA Material", "compatible_prints") == + std::vector{ "New SLA Process" }); +} + +TEST_CASE("Profile validator flags dangling and renamed preset references", "[Preset][Validate]") +{ + PresetBundle bundle; + + // Current printers: a real one, and a renamed one (its old name resolves via renamed_from). + add_inmemory_preset(bundle.printers, "Real Printer"); + add_inmemory_preset(bundle.printers, "New Printer"); + set_renamed_from(bundle.printers, "New Printer", { "Old Printer" }); + + // A real process, referenced from a filament's compatible_prints. + add_inmemory_preset(bundle.prints, "Real Process").is_system = true; + + // A fully valid system filament: references only current names. + add_inmemory_preset(bundle.filaments, "Good Filament").is_system = true; + compatible_list(bundle.filaments, "Good Filament", "compatible_printers") = { "Real Printer" }; + compatible_list(bundle.filaments, "Good Filament", "compatible_prints") = { "Real Process" }; + + AppConfig app_config; + bundle.load_installed_printers(app_config); // build the rename maps + + // With only valid references, the validator is clean. + CHECK_FALSE(bundle.check_preset_references()); + + SECTION("deleted compatible_printers is flagged") { + add_inmemory_preset(bundle.filaments, "Ghost Ref Filament").is_system = true; + compatible_list(bundle.filaments, "Ghost Ref Filament", "compatible_printers") = { "Ghost Printer" }; + CHECK(bundle.check_preset_references()); + } + + SECTION("renamed compatible_printers (old name) is flagged") { + add_inmemory_preset(bundle.filaments, "Old Ref Filament").is_system = true; + compatible_list(bundle.filaments, "Old Ref Filament", "compatible_printers") = { "Old Printer" }; + CHECK(bundle.check_preset_references()); + } + + SECTION("deleted compatible_prints is flagged") { + add_inmemory_preset(bundle.filaments, "Bad Process Ref").is_system = true; + compatible_list(bundle.filaments, "Bad Process Ref", "compatible_prints") = { "Ghost Process" }; + CHECK(bundle.check_preset_references()); + } + + SECTION("deleted inherits parent is flagged") { + add_inmemory_preset(bundle.filaments, "Orphan Filament", "Ghost Parent").is_system = true; + CHECK(bundle.check_preset_references()); + } + + SECTION("non-system preset with a dangling reference is ignored") { + add_inmemory_preset(bundle.filaments, "User Filament"); // is_system stays false + compatible_list(bundle.filaments, "User Filament", "compatible_printers") = { "Ghost Printer" }; + CHECK_FALSE(bundle.check_preset_references()); + } +} + diff --git a/tests/libslic3r/test_utils.cpp b/tests/libslic3r/test_utils.cpp new file mode 100644 index 0000000000..c039069b2a --- /dev/null +++ b/tests/libslic3r/test_utils.cpp @@ -0,0 +1,54 @@ +#include + +#include "libslic3r/Utils.hpp" + +#ifndef _WIN32 +#include // getuid +#endif + +using namespace Slic3r; + +TEST_CASE("per_user_temp_dir composes a per-user temp root", "[utils]") { + const std::string base = "/tmp"; + + SECTION("an empty id returns base unchanged") { + REQUIRE(per_user_temp_dir(base, "") == base); + } + SECTION("a non-empty id is appended at the top level") { + REQUIRE(per_user_temp_dir(base, "1000") == base + "/orcaslicer_1000"); + } + SECTION("distinct ids produce distinct roots") { + REQUIRE(per_user_temp_dir(base, "1000") != per_user_temp_dir(base, "1001")); + } +} + +TEST_CASE("per_user_temp_id follows the platform contract", "[utils]") { + const std::string id = per_user_temp_id(); + + SECTION("stable across calls") { + REQUIRE(per_user_temp_id() == id); + } +#ifdef _WIN32 + SECTION("empty on Windows (its temp dir is already per-user)") { + REQUIRE(id.empty()); + } +#else + SECTION("the current uid on Linux/macOS") { + REQUIRE_FALSE(id.empty()); + REQUIRE(id == std::to_string(static_cast(::getuid()))); + } +#endif +} + +// The end-to-end contract callers depend on: the temp root is left alone on +// Windows and isolated per user on Linux/macOS. +TEST_CASE("per-user temp root is unchanged on Windows, isolated elsewhere", "[utils]") { + const std::string base = "/tmp"; + const std::string root = per_user_temp_dir(base, per_user_temp_id()); +#ifdef _WIN32 + REQUIRE(root == base); +#else + REQUIRE(root != base); + REQUIRE_THAT(root, Catch::Matchers::StartsWith(base + "/orcaslicer_")); +#endif +}