mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-09-27 07:03:17 +08:00
Merge branch 'main' of github.com:Ultimaker/Cura into PP-251_create_annealing_intent
This commit is contained in:
commit
5c18a37f60
5
.github/workflows/conan-package.yml
vendored
5
.github/workflows/conan-package.yml
vendored
@ -44,8 +44,9 @@ on:
|
|||||||
- '[1-9].[0-9]'
|
- '[1-9].[0-9]'
|
||||||
- '[1-9].[0-9][0-9]'
|
- '[1-9].[0-9][0-9]'
|
||||||
tags:
|
tags:
|
||||||
- '[1-9].[0-9].[0-9]+'
|
- '[1-9].[0-9].[0-9]*'
|
||||||
- '[1-9].[0-9][0-9].[0-9]+'
|
- '[1-9].[0-9].[0-9]'
|
||||||
|
- '[1-9].[0-9][0-9].[0-9]*'
|
||||||
|
|
||||||
permissions: {}
|
permissions: {}
|
||||||
jobs:
|
jobs:
|
||||||
|
8
.github/workflows/conan-recipe-version.yml
vendored
8
.github/workflows/conan-recipe-version.yml
vendored
@ -169,6 +169,12 @@ jobs:
|
|||||||
# FIXME: for external PR's
|
# FIXME: for external PR's
|
||||||
actual_version = f"5.3.0-alpha+{buildmetadata}pr_{issue_number}"
|
actual_version = f"5.3.0-alpha+{buildmetadata}pr_{issue_number}"
|
||||||
|
|
||||||
|
if is_tag and "${{ github.ref_name }}" == "5.2.0-beta":
|
||||||
|
actual_version = "5.2.0-beta"
|
||||||
|
is_release_branch = True
|
||||||
|
user = "_"
|
||||||
|
channel = "_"
|
||||||
|
|
||||||
# %% print to output
|
# %% print to output
|
||||||
cmd_name = ["echo", f"::set-output name=name::{project_name}"]
|
cmd_name = ["echo", f"::set-output name=name::{project_name}"]
|
||||||
subprocess.call(cmd_name)
|
subprocess.call(cmd_name)
|
||||||
@ -190,7 +196,7 @@ jobs:
|
|||||||
print(f"version = {actual_version}")
|
print(f"version = {actual_version}")
|
||||||
print(f"user = {user}")
|
print(f"user = {user}")
|
||||||
print(f"channel = {channel}")
|
print(f"channel = {channel}")
|
||||||
print(f"recipe_id_full = {project_name}/{actual_version}@{user}/{channel}")
|
print(f"= {project_name}/{actual_version}@{user}/{channel}")
|
||||||
print(f"recipe_id_latest = {project_name}/latest@{user}/{channel}")
|
print(f"recipe_id_latest = {project_name}/latest@{user}/{channel}")
|
||||||
print(f"semver_full = {actual_version}")
|
print(f"semver_full = {actual_version}")
|
||||||
print(f"is_release_branch = {str(is_release_branch).lower()}")
|
print(f"is_release_branch = {str(is_release_branch).lower()}")
|
||||||
|
16
.github/workflows/cura-installer.yml
vendored
16
.github/workflows/cura-installer.yml
vendored
@ -1,5 +1,5 @@
|
|||||||
name: Cura Installer
|
name: Cura Installer
|
||||||
run-name: Cura binaries ${{ inputs.cura_conan_version }} by @${{ github.actor }}
|
run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@ -29,7 +29,7 @@ on:
|
|||||||
installer:
|
installer:
|
||||||
description: 'Create the installer'
|
description: 'Create the installer'
|
||||||
required: true
|
required: true
|
||||||
default: false
|
default: true
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
||||||
# Run the nightly at 3:25 UTC on working days
|
# Run the nightly at 3:25 UTC on working days
|
||||||
@ -53,6 +53,9 @@ env:
|
|||||||
MACOS_CERT_USER: ${{ secrets.MACOS_CERT_USER }}
|
MACOS_CERT_USER: ${{ secrets.MACOS_CERT_USER }}
|
||||||
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
MACOS_CERT_PASSPHRASE: ${{ secrets.MACOS_CERT_PASSPHRASE }}
|
MACOS_CERT_PASSPHRASE: ${{ secrets.MACOS_CERT_PASSPHRASE }}
|
||||||
|
CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }}
|
||||||
|
ENTERPRISE: ${{ inputs.enterprise }}
|
||||||
|
STAGING: ${{ inputs.staging }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cura-installer-create:
|
cura-installer-create:
|
||||||
@ -157,8 +160,13 @@ jobs:
|
|||||||
if: ${{ inputs.conan_config_branch == '' }}
|
if: ${{ inputs.conan_config_branch == '' }}
|
||||||
run: conan config install https://github.com/Ultimaker/conan-config.git
|
run: conan config install https://github.com/Ultimaker/conan-config.git
|
||||||
|
|
||||||
- name: Create the Packages
|
- name: Create the Packages (Bash)
|
||||||
run: conan install ${{ inputs.cura_conan_version }} ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=${{ inputs.enterprise }} -o cura:staging=${{ inputs.staging }} --json "cura_inst/conan_install_info.json"
|
if: ${{ runner.os != 'Windows' }}
|
||||||
|
run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json"
|
||||||
|
|
||||||
|
- name: Create the Packages (Powershell)
|
||||||
|
if: ${{ runner.os == 'Windows' }}
|
||||||
|
run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING --json "cura_inst/conan_install_info.json"
|
||||||
|
|
||||||
- name: Set Environment variables for Cura (bash)
|
- name: Set Environment variables for Cura (bash)
|
||||||
if: ${{ runner.os != 'Windows' }}
|
if: ${{ runner.os != 'Windows' }}
|
||||||
|
35
.github/workflows/notify_on_print_profile_change.yml
vendored
Normal file
35
.github/workflows/notify_on_print_profile_change.yml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
name: notify_on_print_profile_change
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
paths:
|
||||||
|
- 'resources/definitions/fdmprinter.def.json'
|
||||||
|
- 'resources/definitions/ultimaker**'
|
||||||
|
- 'resources/extruders/ultimaker**'
|
||||||
|
- 'resources/intent/ultimaker**'
|
||||||
|
- 'resources/quality/ultimaker**'
|
||||||
|
- 'resources/variants/ultimaker**'
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" ]
|
||||||
|
paths:
|
||||||
|
- 'resources/definitions/fdmprinter.def.json'
|
||||||
|
- 'resources/definitions/ultimaker**'
|
||||||
|
- 'resources/extruders/ultimaker**'
|
||||||
|
- 'resources/intent/ultimaker**'
|
||||||
|
- 'resources/quality/ultimaker**'
|
||||||
|
- 'resources/variants/ultimaker**'
|
||||||
|
jobs:
|
||||||
|
slackNotification:
|
||||||
|
name: Slack Notification
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Ultimaker Print Profile Changed
|
||||||
|
uses: rtCamp/action-slack-notify@v2
|
||||||
|
env:
|
||||||
|
SLACK_CHANNEL: profile-changes
|
||||||
|
SLACK_USERNAME: ${{ github.repository }}
|
||||||
|
SLACK_COLOR: '#00FF00'
|
||||||
|
SLACK_TITLE: Print profiles changed
|
||||||
|
MSG_MINIMAL: commit
|
||||||
|
SLACK_WEBHOOK: ${{ secrets.SLACK_CURA_PPM_HOOK }}
|
422
conandata.yml
422
conandata.yml
@ -10,7 +10,7 @@
|
|||||||
# requirements (use the <dep_name>/(latest)@ultimaker/testing)
|
# requirements (use the <dep_name>/(latest)@ultimaker/testing)
|
||||||
#
|
#
|
||||||
# Subject to change in the future!
|
# Subject to change in the future!
|
||||||
"5.2.0-alpha":
|
"5.3.0-alpha":
|
||||||
requirements:
|
requirements:
|
||||||
- "pyarcus/(latest)@ultimaker/testing"
|
- "pyarcus/(latest)@ultimaker/testing"
|
||||||
- "curaengine/(latest)@ultimaker/testing"
|
- "curaengine/(latest)@ultimaker/testing"
|
||||||
@ -115,6 +115,426 @@
|
|||||||
Windows: "./icons/Cura.ico"
|
Windows: "./icons/Cura.ico"
|
||||||
Macos: "./icons/cura.icns"
|
Macos: "./icons/cura.icns"
|
||||||
Linux: "./icons/cura-128.png"
|
Linux: "./icons/cura-128.png"
|
||||||
|
"5.2.0-beta.2":
|
||||||
|
requirements:
|
||||||
|
- "pyarcus/(latest)@ultimaker/stable"
|
||||||
|
- "curaengine/(latest)@ultimaker/stable"
|
||||||
|
- "pysavitar/(latest)@ultimaker/stable"
|
||||||
|
- "pynest2d/(latest)@ultimaker/stable"
|
||||||
|
- "uranium/(latest)@ultimaker/stable"
|
||||||
|
- "fdm_materials/(latest)@ultimaker/stable"
|
||||||
|
- "cura_binary_data/(latest)@ultimaker/stable"
|
||||||
|
- "cpython/3.10.4"
|
||||||
|
internal_requirements:
|
||||||
|
- "fdm_materials_private/(latest)@ultimaker/testing"
|
||||||
|
- "cura_private_data/(latest)@ultimaker/testing"
|
||||||
|
runinfo:
|
||||||
|
entrypoint: "cura_app.py"
|
||||||
|
pyinstaller:
|
||||||
|
datas:
|
||||||
|
cura_plugins:
|
||||||
|
package: "cura"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/cura/plugins"
|
||||||
|
cura_resources:
|
||||||
|
package: "cura"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
cura_private_data:
|
||||||
|
package: "cura_private_data"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
internal: true
|
||||||
|
uranium_plugins:
|
||||||
|
package: "uranium"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/uranium/plugins"
|
||||||
|
uranium_resources:
|
||||||
|
package: "uranium"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
uranium_um_qt_qml_um:
|
||||||
|
package: "uranium"
|
||||||
|
src: "site-packages/UM/Qt/qml/UM"
|
||||||
|
dst: "PyQt6/Qt6/qml/UM"
|
||||||
|
cura_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/cura/resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
uranium_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/uranium/resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
windows_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "windows"
|
||||||
|
dst: "share/windows"
|
||||||
|
fdm_materials:
|
||||||
|
package: "fdm_materials"
|
||||||
|
src: "materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
fdm_materials_private:
|
||||||
|
package: "fdm_materials_private"
|
||||||
|
src: "resources/materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
internal: true
|
||||||
|
tcl:
|
||||||
|
package: "tcl"
|
||||||
|
src: "lib/tcl8.6"
|
||||||
|
dst: "tcl"
|
||||||
|
tk:
|
||||||
|
package: "tk"
|
||||||
|
src: "lib/tk8.6"
|
||||||
|
dst: "tk"
|
||||||
|
binaries:
|
||||||
|
curaengine:
|
||||||
|
package: "curaengine"
|
||||||
|
src: "bin"
|
||||||
|
dst: "."
|
||||||
|
binary: "CuraEngine"
|
||||||
|
hiddenimports:
|
||||||
|
- "pySavitar"
|
||||||
|
- "pyArcus"
|
||||||
|
- "pynest2d"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "logging.handlers"
|
||||||
|
- "zeroconf"
|
||||||
|
- "fcntl"
|
||||||
|
- "stl"
|
||||||
|
- "serial"
|
||||||
|
collect_all:
|
||||||
|
- "cura"
|
||||||
|
- "UM"
|
||||||
|
- "serial"
|
||||||
|
- "Charon"
|
||||||
|
- "sqlite3"
|
||||||
|
- "trimesh"
|
||||||
|
- "win32ctypes"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "stl"
|
||||||
|
icon:
|
||||||
|
Windows: "./icons/Cura.ico"
|
||||||
|
Macos: "./icons/cura.icns"
|
||||||
|
Linux: "./icons/cura-128.png"
|
||||||
|
"5.2.0-beta.1":
|
||||||
|
requirements:
|
||||||
|
- "pyarcus/5.2.0-beta.1"
|
||||||
|
- "curaengine/5.2.0-beta.1"
|
||||||
|
- "pysavitar/5.2.0-beta.1"
|
||||||
|
- "pynest2d/5.2.0-beta.1"
|
||||||
|
- "uranium/5.2.0-beta.1"
|
||||||
|
- "fdm_materials/5.2.0-beta.1"
|
||||||
|
- "cura_binary_data/5.2.0-beta.1"
|
||||||
|
- "cpython/3.10.4"
|
||||||
|
internal_requirements:
|
||||||
|
- "fdm_materials_private/(latest)@ultimaker/testing"
|
||||||
|
- "cura_private_data/(latest)@ultimaker/testing"
|
||||||
|
runinfo:
|
||||||
|
entrypoint: "cura_app.py"
|
||||||
|
pyinstaller:
|
||||||
|
datas:
|
||||||
|
cura_plugins:
|
||||||
|
package: "cura"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/cura/plugins"
|
||||||
|
cura_resources:
|
||||||
|
package: "cura"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
cura_private_data:
|
||||||
|
package: "cura_private_data"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
internal: true
|
||||||
|
uranium_plugins:
|
||||||
|
package: "uranium"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/uranium/plugins"
|
||||||
|
uranium_resources:
|
||||||
|
package: "uranium"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
uranium_um_qt_qml_um:
|
||||||
|
package: "uranium"
|
||||||
|
src: "site-packages/UM/Qt/qml/UM"
|
||||||
|
dst: "PyQt6/Qt6/qml/UM"
|
||||||
|
cura_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/cura/resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
uranium_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/uranium/resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
windows_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "windows"
|
||||||
|
dst: "share/windows"
|
||||||
|
fdm_materials:
|
||||||
|
package: "fdm_materials"
|
||||||
|
src: "materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
fdm_materials_private:
|
||||||
|
package: "fdm_materials_private"
|
||||||
|
src: "resources/materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
internal: true
|
||||||
|
tcl:
|
||||||
|
package: "tcl"
|
||||||
|
src: "lib/tcl8.6"
|
||||||
|
dst: "tcl"
|
||||||
|
tk:
|
||||||
|
package: "tk"
|
||||||
|
src: "lib/tk8.6"
|
||||||
|
dst: "tk"
|
||||||
|
binaries:
|
||||||
|
curaengine:
|
||||||
|
package: "curaengine"
|
||||||
|
src: "bin"
|
||||||
|
dst: "."
|
||||||
|
binary: "CuraEngine"
|
||||||
|
hiddenimports:
|
||||||
|
- "pySavitar"
|
||||||
|
- "pyArcus"
|
||||||
|
- "pynest2d"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "logging.handlers"
|
||||||
|
- "zeroconf"
|
||||||
|
- "fcntl"
|
||||||
|
- "stl"
|
||||||
|
- "serial"
|
||||||
|
collect_all:
|
||||||
|
- "cura"
|
||||||
|
- "UM"
|
||||||
|
- "serial"
|
||||||
|
- "Charon"
|
||||||
|
- "sqlite3"
|
||||||
|
- "trimesh"
|
||||||
|
- "win32ctypes"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "stl"
|
||||||
|
icon:
|
||||||
|
Windows: "./icons/Cura.ico"
|
||||||
|
Macos: "./icons/cura.icns"
|
||||||
|
Linux: "./icons/cura-128.png"
|
||||||
|
"5.2.0":
|
||||||
|
requirements:
|
||||||
|
- "pyarcus/5.2.0"
|
||||||
|
- "curaengine/5.2.0"
|
||||||
|
- "pysavitar/5.2.0"
|
||||||
|
- "pynest2d/5.2.0"
|
||||||
|
- "uranium/5.2.0"
|
||||||
|
- "fdm_materials/5.2.0"
|
||||||
|
- "cura_binary_data/5.2.0"
|
||||||
|
- "cpython/3.10.4"
|
||||||
|
internal_requirements:
|
||||||
|
- "fdm_materials_private/(latest)@ultimaker/testing"
|
||||||
|
- "cura_private_data/(latest)@ultimaker/testing"
|
||||||
|
runinfo:
|
||||||
|
entrypoint: "cura_app.py"
|
||||||
|
pyinstaller:
|
||||||
|
datas:
|
||||||
|
cura_plugins:
|
||||||
|
package: "cura"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/cura/plugins"
|
||||||
|
cura_resources:
|
||||||
|
package: "cura"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
cura_private_data:
|
||||||
|
package: "cura_private_data"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
internal: true
|
||||||
|
uranium_plugins:
|
||||||
|
package: "uranium"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/uranium/plugins"
|
||||||
|
uranium_resources:
|
||||||
|
package: "uranium"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
uranium_um_qt_qml_um:
|
||||||
|
package: "uranium"
|
||||||
|
src: "site-packages/UM/Qt/qml/UM"
|
||||||
|
dst: "PyQt6/Qt6/qml/UM"
|
||||||
|
cura_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/cura/resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
uranium_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/uranium/resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
windows_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "windows"
|
||||||
|
dst: "share/windows"
|
||||||
|
fdm_materials:
|
||||||
|
package: "fdm_materials"
|
||||||
|
src: "materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
fdm_materials_private:
|
||||||
|
package: "fdm_materials_private"
|
||||||
|
src: "resources/materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
internal: true
|
||||||
|
tcl:
|
||||||
|
package: "tcl"
|
||||||
|
src: "lib/tcl8.6"
|
||||||
|
dst: "tcl"
|
||||||
|
tk:
|
||||||
|
package: "tk"
|
||||||
|
src: "lib/tk8.6"
|
||||||
|
dst: "tk"
|
||||||
|
binaries:
|
||||||
|
curaengine:
|
||||||
|
package: "curaengine"
|
||||||
|
src: "bin"
|
||||||
|
dst: "."
|
||||||
|
binary: "CuraEngine"
|
||||||
|
hiddenimports:
|
||||||
|
- "pySavitar"
|
||||||
|
- "pyArcus"
|
||||||
|
- "pynest2d"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "logging.handlers"
|
||||||
|
- "zeroconf"
|
||||||
|
- "fcntl"
|
||||||
|
- "stl"
|
||||||
|
- "serial"
|
||||||
|
collect_all:
|
||||||
|
- "cura"
|
||||||
|
- "UM"
|
||||||
|
- "serial"
|
||||||
|
- "Charon"
|
||||||
|
- "sqlite3"
|
||||||
|
- "trimesh"
|
||||||
|
- "win32ctypes"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "stl"
|
||||||
|
icon:
|
||||||
|
Windows: "./icons/Cura.ico"
|
||||||
|
Macos: "./icons/cura.icns"
|
||||||
|
Linux: "./icons/cura-128.png"
|
||||||
|
"5.2.0-alpha":
|
||||||
|
requirements:
|
||||||
|
- "pyarcus/5.2@ultimaker/testing"
|
||||||
|
- "curaengine/(latest)@ultimaker/testing"
|
||||||
|
- "pysavitar/(latest)@ultimaker/testing"
|
||||||
|
- "pynest2d/(latest)@ultimaker/testing"
|
||||||
|
- "uranium/(latest)@ultimaker/testing"
|
||||||
|
- "fdm_materials/(latest)@ultimaker/testing"
|
||||||
|
- "cura_binary_data/(latest)@ultimaker/testing"
|
||||||
|
- "cpython/3.10.4"
|
||||||
|
internal_requirements:
|
||||||
|
- "fdm_materials_private/(latest)@ultimaker/testing"
|
||||||
|
- "cura_private_data/(latest)@ultimaker/testing"
|
||||||
|
runinfo:
|
||||||
|
entrypoint: "cura_app.py"
|
||||||
|
pyinstaller:
|
||||||
|
datas:
|
||||||
|
cura_plugins:
|
||||||
|
package: "cura"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/cura/plugins"
|
||||||
|
cura_resources:
|
||||||
|
package: "cura"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
cura_private_data:
|
||||||
|
package: "cura_private_data"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
internal: true
|
||||||
|
uranium_plugins:
|
||||||
|
package: "uranium"
|
||||||
|
src: "plugins"
|
||||||
|
dst: "share/uranium/plugins"
|
||||||
|
uranium_resources:
|
||||||
|
package: "uranium"
|
||||||
|
src: "resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
uranium_um_qt_qml_um:
|
||||||
|
package: "uranium"
|
||||||
|
src: "site-packages/UM/Qt/qml/UM"
|
||||||
|
dst: "PyQt6/Qt6/qml/UM"
|
||||||
|
cura_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/cura/resources"
|
||||||
|
dst: "share/cura/resources"
|
||||||
|
uranium_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "resources/uranium/resources"
|
||||||
|
dst: "share/uranium/resources"
|
||||||
|
windows_binary_data:
|
||||||
|
package: "cura_binary_data"
|
||||||
|
src: "windows"
|
||||||
|
dst: "share/windows"
|
||||||
|
fdm_materials:
|
||||||
|
package: "fdm_materials"
|
||||||
|
src: "materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
fdm_materials_private:
|
||||||
|
package: "fdm_materials_private"
|
||||||
|
src: "resources/materials"
|
||||||
|
dst: "share/cura/resources/materials"
|
||||||
|
internal: true
|
||||||
|
tcl:
|
||||||
|
package: "tcl"
|
||||||
|
src: "lib/tcl8.6"
|
||||||
|
dst: "tcl"
|
||||||
|
tk:
|
||||||
|
package: "tk"
|
||||||
|
src: "lib/tk8.6"
|
||||||
|
dst: "tk"
|
||||||
|
binaries:
|
||||||
|
curaengine:
|
||||||
|
package: "curaengine"
|
||||||
|
src: "bin"
|
||||||
|
dst: "."
|
||||||
|
binary: "CuraEngine"
|
||||||
|
hiddenimports:
|
||||||
|
- "pySavitar"
|
||||||
|
- "pyArcus"
|
||||||
|
- "pynest2d"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "logging.handlers"
|
||||||
|
- "zeroconf"
|
||||||
|
- "fcntl"
|
||||||
|
- "stl"
|
||||||
|
- "serial"
|
||||||
|
collect_all:
|
||||||
|
- "cura"
|
||||||
|
- "UM"
|
||||||
|
- "serial"
|
||||||
|
- "Charon"
|
||||||
|
- "sqlite3"
|
||||||
|
- "trimesh"
|
||||||
|
- "win32ctypes"
|
||||||
|
- "PyQt6"
|
||||||
|
- "PyQt6.QtNetwork"
|
||||||
|
- "PyQt6.sip"
|
||||||
|
- "stl"
|
||||||
|
icon:
|
||||||
|
Windows: "./icons/Cura.ico"
|
||||||
|
Macos: "./icons/cura.icns"
|
||||||
|
Linux: "./icons/cura-128.png"
|
||||||
"5.1.0":
|
"5.1.0":
|
||||||
requirements:
|
requirements:
|
||||||
- "arcus/5.1.0"
|
- "arcus/5.1.0"
|
||||||
|
31
conanfile.py
31
conanfile.py
@ -7,7 +7,7 @@ from conan import ConanFile
|
|||||||
from conan.tools.files import copy, rmdir, save
|
from conan.tools.files import copy, rmdir, save
|
||||||
from conan.tools.env import VirtualRunEnv, Environment
|
from conan.tools.env import VirtualRunEnv, Environment
|
||||||
from conan.tools.scm import Version
|
from conan.tools.scm import Version
|
||||||
from conan.errors import ConanInvalidConfiguration
|
from conan.errors import ConanInvalidConfiguration, ConanException
|
||||||
|
|
||||||
required_conan_version = ">=1.50.0"
|
required_conan_version = ">=1.50.0"
|
||||||
|
|
||||||
@ -149,13 +149,13 @@ class CuraConan(ConanFile):
|
|||||||
with open(Path(__file__).parent.joinpath("CuraVersion.py.jinja"), "r") as f:
|
with open(Path(__file__).parent.joinpath("CuraVersion.py.jinja"), "r") as f:
|
||||||
cura_version_py = Template(f.read())
|
cura_version_py = Template(f.read())
|
||||||
|
|
||||||
cura_version = self.conf_info.get("user.cura:version", default = self.version, check_type = str)
|
# If you want a specific Cura version to show up on the splash screen add the user configuration `user.cura:version=VERSION`
|
||||||
if self.options.internal:
|
# the global.conf, profile, package_info (of dependency) or via the cmd line `-c user.cura:version=VERSION`
|
||||||
version = Version(cura_version)
|
cura_version = Version(self.conf.get("user.cura:version", default = self.version, check_type = str))
|
||||||
if version.pre:
|
pre_tag = f"-{cura_version.pre}" if cura_version.pre else ""
|
||||||
cura_version = f"{version.major}.{version.minor}.{version.patch}-{version.pre}+internal_{version.build}"
|
build_tag = f"+{cura_version.build}" if cura_version.build else ""
|
||||||
else:
|
internal_tag = f"+internal" if self.options.internal else ""
|
||||||
cura_version = f"{version.major}.{version.minor}.{version.patch}+internal_{version.build}"
|
cura_version = f"{cura_version.major}.{cura_version.minor}.{cura_version.patch}{pre_tag}{build_tag}{internal_tag}"
|
||||||
|
|
||||||
with open(Path(location, "CuraVersion.py"), "w") as f:
|
with open(Path(location, "CuraVersion.py"), "w") as f:
|
||||||
f.write(cura_version_py.render(
|
f.write(cura_version_py.render(
|
||||||
@ -202,20 +202,25 @@ class CuraConan(ConanFile):
|
|||||||
else:
|
else:
|
||||||
continue
|
continue
|
||||||
if not src_path.exists():
|
if not src_path.exists():
|
||||||
|
self.output.warning(f"Source path for binary {binary['binary']} does not exist")
|
||||||
continue
|
continue
|
||||||
for bin in src_path.glob(binary["binary"] + ".*[exe|dll|so|dylib]"):
|
|
||||||
|
for bin in src_path.glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"):
|
||||||
binaries.append((str(bin), binary["dst"]))
|
binaries.append((str(bin), binary["dst"]))
|
||||||
for bin in src_path.glob(binary["binary"]):
|
for bin in src_path.glob(binary["binary"]):
|
||||||
binaries.append((str(bin), binary["dst"]))
|
binaries.append((str(bin), binary["dst"]))
|
||||||
|
|
||||||
for _, dependency in self.dependencies.items():
|
# Make sure all Conan dependencies which are shared are added to the binary list for pyinstaller
|
||||||
|
for _, dependency in self.dependencies.host.items():
|
||||||
for bin_paths in dependency.cpp_info.bindirs:
|
for bin_paths in dependency.cpp_info.bindirs:
|
||||||
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")])
|
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")])
|
||||||
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dylib")])
|
for lib_paths in dependency.cpp_info.libdirs:
|
||||||
binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.so")])
|
binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.so*")])
|
||||||
|
binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.dylib*")])
|
||||||
|
|
||||||
# Copy dynamic libs from lib path
|
# Copy dynamic libs from lib path
|
||||||
binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.dylib")])
|
binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.dylib*")])
|
||||||
|
binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.so*")])
|
||||||
|
|
||||||
# Collect all dll's from PyQt6 and place them in the root
|
# Collect all dll's from PyQt6 and place them in the root
|
||||||
binaries.extend([(f"{p}", ".") for p in Path(self._site_packages, "PyQt6", "Qt6").glob("**/*.dll")])
|
binaries.extend([(f"{p}", ".") for p in Path(self._site_packages, "PyQt6", "Qt6").glob("**/*.dll")])
|
||||||
|
@ -14,7 +14,7 @@ DEFAULT_CURA_LATEST_URL = "https://software.ultimaker.com/latest.json"
|
|||||||
# Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
|
# Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
|
||||||
# example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the
|
# example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the
|
||||||
# CuraVersion.py.in template.
|
# CuraVersion.py.in template.
|
||||||
CuraSDKVersion = "8.1.0"
|
CuraSDKVersion = "8.2.0"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from cura.CuraVersion import CuraLatestURL
|
from cura.CuraVersion import CuraLatestURL
|
||||||
|
@ -38,6 +38,12 @@ class CompatibleMachineModel(ListModel):
|
|||||||
def _update(self) -> None:
|
def _update(self) -> None:
|
||||||
self.clear()
|
self.clear()
|
||||||
|
|
||||||
|
def _makeMaterial(brand, name, color):
|
||||||
|
if name.lower() in ["", "empty"]:
|
||||||
|
return {"brand": "", "name": "(empty)", "hexcolor": "#ffffff"}
|
||||||
|
else:
|
||||||
|
return {"brand": brand, "name": name, "hexcolor": color}
|
||||||
|
|
||||||
from cura.CuraApplication import CuraApplication
|
from cura.CuraApplication import CuraApplication
|
||||||
machine_manager = CuraApplication.getInstance().getMachineManager()
|
machine_manager = CuraApplication.getInstance().getMachineManager()
|
||||||
|
|
||||||
@ -48,11 +54,8 @@ class CompatibleMachineModel(ListModel):
|
|||||||
|
|
||||||
# initialize & add current active material:
|
# initialize & add current active material:
|
||||||
for extruder in printer.extruders:
|
for extruder in printer.extruders:
|
||||||
materials = [{
|
materials = [_makeMaterial(
|
||||||
"brand": extruder.activeMaterial.brand,
|
extruder.activeMaterial.brand, extruder.activeMaterial.name, extruder.activeMaterial.color)]
|
||||||
"name": extruder.activeMaterial.name,
|
|
||||||
"hexcolor": extruder.activeMaterial.color,
|
|
||||||
}]
|
|
||||||
extruder_configs[extruder.getPosition()] = {
|
extruder_configs[extruder.getPosition()] = {
|
||||||
"position": extruder.getPosition(),
|
"position": extruder.getPosition(),
|
||||||
"core": extruder.hotendID,
|
"core": extruder.hotendID,
|
||||||
@ -66,11 +69,9 @@ class CompatibleMachineModel(ListModel):
|
|||||||
Logger.log("w", f"No active extruder for position {extruder.position}.")
|
Logger.log("w", f"No active extruder for position {extruder.position}.")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
extruder_configs[extruder.position]["materials"].append({
|
entry = _makeMaterial(extruder.material.brand, extruder.material.name, extruder.material.color)
|
||||||
"brand": extruder.material.brand,
|
if entry not in extruder_configs[extruder.position]["materials"]:
|
||||||
"name": extruder.material.name,
|
extruder_configs[extruder.position]["materials"].append(entry)
|
||||||
"hexcolor": extruder.material.color
|
|
||||||
})
|
|
||||||
|
|
||||||
if any([len(extruder["materials"]) > 0 for extruder in extruder_configs.values()]):
|
if any([len(extruder["materials"]) > 0 for extruder in extruder_configs.values()]):
|
||||||
self.appendItem({
|
self.appendItem({
|
||||||
|
@ -86,14 +86,16 @@ class MachineListModel(ListModel):
|
|||||||
machines_manager = CuraApplication.getInstance().getMachineManager()
|
machines_manager = CuraApplication.getInstance().getMachineManager()
|
||||||
|
|
||||||
other_machine_stacks = CuraContainerRegistry.getInstance().findContainerStacks(type="machine")
|
other_machine_stacks = CuraContainerRegistry.getInstance().findContainerStacks(type="machine")
|
||||||
|
other_machine_stacks.sort(key = lambda machine: machine.getName().upper())
|
||||||
|
|
||||||
abstract_machine_stacks = CuraContainerRegistry.getInstance().findContainerStacks(is_abstract_machine = "True")
|
abstract_machine_stacks = CuraContainerRegistry.getInstance().findContainerStacks(is_abstract_machine = "True")
|
||||||
abstract_machine_stacks.sort(key = lambda machine: machine.getName(), reverse = True)
|
abstract_machine_stacks.sort(key = lambda machine: machine.getName().upper(), reverse = True)
|
||||||
for abstract_machine in abstract_machine_stacks:
|
for abstract_machine in abstract_machine_stacks:
|
||||||
definition_id = abstract_machine.definition.getId()
|
definition_id = abstract_machine.definition.getId()
|
||||||
online_machine_stacks = machines_manager.getMachinesWithDefinition(definition_id, online_only = True)
|
online_machine_stacks = machines_manager.getMachinesWithDefinition(definition_id, online_only = True)
|
||||||
|
|
||||||
online_machine_stacks = list(filter(lambda machine: machine.hasNetworkedConnection(), online_machine_stacks))
|
online_machine_stacks = list(filter(lambda machine: machine.hasNetworkedConnection(), online_machine_stacks))
|
||||||
|
online_machine_stacks.sort(key=lambda machine: machine.getName().upper())
|
||||||
|
|
||||||
other_machine_stacks.remove(abstract_machine)
|
other_machine_stacks.remove(abstract_machine)
|
||||||
if abstract_machine in online_machine_stacks:
|
if abstract_machine in online_machine_stacks:
|
||||||
|
@ -252,7 +252,7 @@ class PrinterOutputDevice(QObject, OutputDevice):
|
|||||||
# List could end up empty!
|
# List could end up empty!
|
||||||
Logger.log("e", "Found a broken configuration in the synced list!")
|
Logger.log("e", "Found a broken configuration in the synced list!")
|
||||||
all_configurations.remove(None)
|
all_configurations.remove(None)
|
||||||
new_configurations = sorted(all_configurations, key = lambda config: config.printerType or "")
|
new_configurations = sorted(all_configurations, key = lambda config: config.printerType or "", reverse = True)
|
||||||
if new_configurations != self._unique_configurations:
|
if new_configurations != self._unique_configurations:
|
||||||
self._unique_configurations = new_configurations
|
self._unique_configurations = new_configurations
|
||||||
self.uniqueConfigurationsChanged.emit()
|
self.uniqueConfigurationsChanged.emit()
|
||||||
|
@ -904,6 +904,7 @@ class MachineManager(QObject):
|
|||||||
|
|
||||||
if self._global_container_stack is None \
|
if self._global_container_stack is None \
|
||||||
or self._global_container_stack.getProperty(setting_key, "value") == new_value \
|
or self._global_container_stack.getProperty(setting_key, "value") == new_value \
|
||||||
|
or self._global_container_stack.definitionChanges.getProperty("extruders_enabled_count", "value") is None \
|
||||||
or self._global_container_stack.definitionChanges.getProperty("extruders_enabled_count", "value") < 2:
|
or self._global_container_stack.definitionChanges.getProperty("extruders_enabled_count", "value") < 2:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@ export QT_XKB_CONFIG_ROOT=/usr/share/X11/xkb
|
|||||||
# Use the openssl.cnf packaged in the AppImage
|
# Use the openssl.cnf packaged in the AppImage
|
||||||
export OPENSSL_CONF="$scriptdir/openssl.cnf"
|
export OPENSSL_CONF="$scriptdir/openssl.cnf"
|
||||||
|
|
||||||
$scriptdir/Ultimaker-Cura "$@"
|
|
||||||
|
|
||||||
# If this variable is set on Zorin OS 16 Cura would crash
|
# If this variable is set on Zorin OS 16 Cura would crash
|
||||||
# unset `QT_STYLE_OVERRIDE` as a precaution
|
# unset `QT_STYLE_OVERRIDE` as a precaution
|
||||||
unset QT_STYLE_OVERRIDE
|
unset QT_STYLE_OVERRIDE
|
||||||
|
|
||||||
|
$scriptdir/Ultimaker-Cura "$@"
|
||||||
|
@ -12,9 +12,9 @@
|
|||||||
!define INSTALLER_NAME "{{ destination }}"
|
!define INSTALLER_NAME "{{ destination }}"
|
||||||
!define MAIN_APP_EXE "{{ main_app }}"
|
!define MAIN_APP_EXE "{{ main_app }}"
|
||||||
!define INSTALL_TYPE "SetShellVarContext all"
|
!define INSTALL_TYPE "SetShellVarContext all"
|
||||||
!define REG_ROOT "HKCR"
|
!define REG_ROOT "HKLM"
|
||||||
!define REG_APP_PATH "Software\Microsoft\Windows\CurrentVersion\App Paths\${APP_NAME}"
|
!define REG_APP_PATH "Software\Microsoft\Windows\CurrentVersion\App Paths\${APP_NAME}-${VERSION}"
|
||||||
!define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}"
|
!define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}-${VERSION}"
|
||||||
|
|
||||||
!define REG_START_MENU "Start Menu Folder"
|
!define REG_START_MENU "Start Menu Folder"
|
||||||
|
|
||||||
@ -163,7 +163,7 @@ Delete "$INSTDIR\uninstall.exe"
|
|||||||
Delete "$INSTDIR\${APP_NAME} website.url"
|
Delete "$INSTDIR\${APP_NAME} website.url"
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
RmDir "$INSTDIR"
|
RmDir /r /REBOOTOK "$INSTDIR"
|
||||||
|
|
||||||
!ifdef REG_START_MENU
|
!ifdef REG_START_MENU
|
||||||
!insertmacro MUI_STARTMENU_GETFOLDER "Application" $SM_Folder
|
!insertmacro MUI_STARTMENU_GETFOLDER "Application" $SM_Folder
|
||||||
|
@ -53,6 +53,7 @@ _ignored_machine_network_metadata = {
|
|||||||
"connection_type",
|
"connection_type",
|
||||||
"capabilities",
|
"capabilities",
|
||||||
"octoprint_api_key",
|
"octoprint_api_key",
|
||||||
|
"is_abstract_machine"
|
||||||
} # type: Set[str]
|
} # type: Set[str]
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@ from PyQt6.QtCore import QBuffer
|
|||||||
|
|
||||||
from UM.Application import Application
|
from UM.Application import Application
|
||||||
from UM.Logger import Logger
|
from UM.Logger import Logger
|
||||||
|
from UM.Settings.SettingFunction import SettingFunction
|
||||||
from UM.Mesh.MeshWriter import MeshWriter # The writer we need to implement.
|
from UM.Mesh.MeshWriter import MeshWriter # The writer we need to implement.
|
||||||
from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType
|
from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType
|
||||||
from UM.PluginRegistry import PluginRegistry # To get the g-code writer.
|
from UM.PluginRegistry import PluginRegistry # To get the g-code writer.
|
||||||
@ -213,6 +214,7 @@ class UFPWriter(MeshWriter):
|
|||||||
def _getSliceMetadata(self) -> Dict[str, Dict[str, Dict[str, str]]]:
|
def _getSliceMetadata(self) -> Dict[str, Dict[str, Dict[str, str]]]:
|
||||||
"""Get all changed settings and all settings. For each extruder and the global stack"""
|
"""Get all changed settings and all settings. For each extruder and the global stack"""
|
||||||
print_information = CuraApplication.getInstance().getPrintInformation()
|
print_information = CuraApplication.getInstance().getPrintInformation()
|
||||||
|
machine_manager = CuraApplication.getInstance().getMachineManager()
|
||||||
settings = {
|
settings = {
|
||||||
"material": {
|
"material": {
|
||||||
"length": print_information.materialLengths,
|
"length": print_information.materialLengths,
|
||||||
@ -222,7 +224,9 @@ class UFPWriter(MeshWriter):
|
|||||||
"global": {
|
"global": {
|
||||||
"changes": {},
|
"changes": {},
|
||||||
"all_settings": {},
|
"all_settings": {},
|
||||||
}
|
},
|
||||||
|
"intent": machine_manager.activeIntentCategory,
|
||||||
|
"quality": machine_manager.activeQualityOrQualityChangesName,
|
||||||
}
|
}
|
||||||
|
|
||||||
global_stack = cast(GlobalStack, Application.getInstance().getGlobalContainerStack())
|
global_stack = cast(GlobalStack, Application.getInstance().getGlobalContainerStack())
|
||||||
@ -230,11 +234,17 @@ class UFPWriter(MeshWriter):
|
|||||||
# Add global user or quality changes
|
# Add global user or quality changes
|
||||||
global_flattened_changes = InstanceContainer.createMergedInstanceContainer(global_stack.userChanges, global_stack.qualityChanges)
|
global_flattened_changes = InstanceContainer.createMergedInstanceContainer(global_stack.userChanges, global_stack.qualityChanges)
|
||||||
for setting in global_flattened_changes.getAllKeys():
|
for setting in global_flattened_changes.getAllKeys():
|
||||||
settings["global"]["changes"][setting] = global_flattened_changes.getProperty(setting, "value")
|
value = global_flattened_changes.getProperty(setting, "value")
|
||||||
|
if isinstance(value, SettingFunction):
|
||||||
|
value = value(global_flattened_changes)
|
||||||
|
settings["global"]["changes"][setting] = value
|
||||||
|
|
||||||
# Get global all settings values without user or quality changes
|
# Get global all settings values without user or quality changes
|
||||||
for setting in global_stack.getAllKeys():
|
for setting in global_stack.getAllKeys():
|
||||||
settings["global"]["all_settings"][setting] = global_stack.getProperty(setting, "value")
|
value = global_stack.getProperty(setting, "value")
|
||||||
|
if isinstance(value, SettingFunction):
|
||||||
|
value = value(global_stack)
|
||||||
|
settings["global"]["all_settings"][setting] = value
|
||||||
|
|
||||||
for i, extruder in enumerate(global_stack.extruderList):
|
for i, extruder in enumerate(global_stack.extruderList):
|
||||||
# Add extruder fields to settings dictionary
|
# Add extruder fields to settings dictionary
|
||||||
@ -246,10 +256,16 @@ class UFPWriter(MeshWriter):
|
|||||||
# Add extruder user or quality changes
|
# Add extruder user or quality changes
|
||||||
extruder_flattened_changes = InstanceContainer.createMergedInstanceContainer(extruder.userChanges, extruder.qualityChanges)
|
extruder_flattened_changes = InstanceContainer.createMergedInstanceContainer(extruder.userChanges, extruder.qualityChanges)
|
||||||
for setting in extruder_flattened_changes.getAllKeys():
|
for setting in extruder_flattened_changes.getAllKeys():
|
||||||
settings[f"extruder_{i}"]["changes"][setting] = extruder_flattened_changes.getProperty(setting, "value")
|
value = extruder_flattened_changes.getProperty(setting, "value")
|
||||||
|
if isinstance(value, SettingFunction):
|
||||||
|
value = value(extruder_flattened_changes)
|
||||||
|
settings[f"extruder_{i}"]["changes"][setting] = value
|
||||||
|
|
||||||
# Get extruder all settings values without user or quality changes
|
# Get extruder all settings values without user or quality changes
|
||||||
for setting in extruder.getAllKeys():
|
for setting in extruder.getAllKeys():
|
||||||
settings[f"extruder_{i}"]["all_settings"][setting] = extruder.getProperty(setting, "value")
|
value = extruder.getProperty(setting, "value")
|
||||||
|
if isinstance(value, SettingFunction):
|
||||||
|
value = value(extruder)
|
||||||
|
settings[f"extruder_{i}"]["all_settings"][setting] = value
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
|
@ -127,7 +127,7 @@ Component
|
|||||||
id: sendToFactoryButton
|
id: sendToFactoryButton
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
text: catalog.i18nc("@button", "View printers in Digital Factory")
|
text: catalog.i18nc("@button", "View printers in Digital Factory")
|
||||||
onClicked: Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/print-jobs?utm_source=cura&utm_medium=software&utm_campaign=monitor-view-cloud-printer-type")
|
onClicked: Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/welcome?utm_source=cura&utm_medium=software&utm_campaign=monitor-view-cloud-printer-type")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
git+https://github.com/ultimaker/libcharon@master#egg=charon
|
git+https://github.com/ultimaker/libcharon@master/s-line#egg=charon
|
||||||
|
@ -66,16 +66,30 @@ pyclipper==1.3.0.post2; \
|
|||||||
--hash=sha256:5175ee50772a7dcc0feaab19ccf5b979b6066f4753edb330700231cf70d0c918 \
|
--hash=sha256:5175ee50772a7dcc0feaab19ccf5b979b6066f4753edb330700231cf70d0c918 \
|
||||||
--hash=sha256:19a6809d9cbd535d0fe922e9315babb8d70b5c7dcd43e0f89740d09c406b40f8 \
|
--hash=sha256:19a6809d9cbd535d0fe922e9315babb8d70b5c7dcd43e0f89740d09c406b40f8 \
|
||||||
--hash=sha256:5c5d50498e335d7f969ca5ad5886e77c40088521dcabab4feb2f93727140251e
|
--hash=sha256:5c5d50498e335d7f969ca5ad5886e77c40088521dcabab4feb2f93727140251e
|
||||||
scipy==1.8.1; \
|
scipy==1.9.1 \
|
||||||
--hash=sha256:9e3fb1b0e896f14a85aa9a28d5f755daaeeb54c897b746df7a55ccb02b340f33 \
|
--hash=sha256:c61b4a91a702e8e04aeb0bfc40460e1f17a640977c04dda8757efb0199c75332 \
|
||||||
--hash=sha256:4e53a55f6a4f22de01ffe1d2f016e30adedb67a699a310cdcac312806807ca81 \
|
--hash=sha256:d79da472015d0120ba9b357b28a99146cd6c17b9609403164b1a8ed149b4dfc8 \
|
||||||
--hash=sha256:a0aa8220b89b2e3748a2836fbfa116194378910f1a6e78e4675a095bcd2c762d \
|
--hash=sha256:825951b88f56765aeb6e5e38ac9d7d47407cfaaeb008d40aa1b45a2d7ea2731e \
|
||||||
--hash=sha256:02b567e722d62bddd4ac253dafb01ce7ed8742cf8031aea030a41414b86c1125 \
|
--hash=sha256:f950a04b33e17b38ff561d5a0951caf3f5b47caa841edd772ffb7959f20a6af0 \
|
||||||
--hash=sha256:65b77f20202599c51eb2771d11a6b899b97989159b7975e9b5259594f1d35ef4 \
|
--hash=sha256:8cc81ac25659fec73599ccc52c989670e5ccd8974cf34bacd7b54a8d809aff1a \
|
||||||
--hash=sha256:9dd4012ac599a1e7eb63c114d1eee1bcfc6dc75a29b589ff0ad0bb3d9412034f \
|
--hash=sha256:8d3faa40ac16c6357aaf7ea50394ea6f1e8e99d75e927a51102b1943b311b4d9 \
|
||||||
--hash=sha256:70de2f11bf64ca9921fda018864c78af7147025e467ce9f4a11bc877266900a6 \
|
--hash=sha256:7a412c476a91b080e456229e413792bbb5d6202865dae963d1e6e28c2bb58691 \
|
||||||
--hash=sha256:83606129247e7610b58d0e1e93d2c5133959e9cf93555d3c27e536892f1ba1f2 \
|
--hash=sha256:eb954f5aca4d26f468bbebcdc5448348eb287f7bea536c6306f62ea062f63d9a \
|
||||||
--hash=sha256:f3e7a8867f307e3359cc0ed2c63b61a1e33a19080f92fe377bc7d49f646f2ec1
|
--hash=sha256:3c6f5d1d4b9a5e4fe5e14f26ffc9444fc59473bbf8d45dc4a9a15283b7063a72 \
|
||||||
|
--hash=sha256:bc4e2c77d4cd015d739e75e74ebbafed59ba8497a7ed0fd400231ed7683497c4 \
|
||||||
|
--hash=sha256:0419485dbcd0ed78c0d5bf234c5dd63e86065b39b4d669e45810d42199d49521 \
|
||||||
|
--hash=sha256:34441dfbee5b002f9e15285014fd56e5e3372493c3e64ae297bae2c4b9659f5a \
|
||||||
|
--hash=sha256:b97b479f39c7e4aaf807efd0424dec74bbb379108f7d22cf09323086afcd312c \
|
||||||
|
--hash=sha256:e8fe305d9d67a81255e06203454729405706907dccbdfcc330b7b3482a6c371d \
|
||||||
|
--hash=sha256:39ab9240cd215a9349c85ab908dda6d732f7d3b4b192fa05780812495536acc4 \
|
||||||
|
--hash=sha256:71487c503e036740635f18324f62a11f283a632ace9d35933b2b0a04fd898c98 \
|
||||||
|
--hash=sha256:3bc1ab68b9a096f368ba06c3a5e1d1d50957a86665fc929c4332d21355e7e8f4 \
|
||||||
|
--hash=sha256:f7c39f7dbb57cce00c108d06d731f3b0e2a4d3a95c66d96bce697684876ce4d4 \
|
||||||
|
--hash=sha256:47d1a95bd9d37302afcfe1b84c8011377c4f81e33649c5a5785db9ab827a6ade \
|
||||||
|
--hash=sha256:96d7cf7b25c9f23c59a766385f6370dab0659741699ecc7a451f9b94604938ce \
|
||||||
|
--hash=sha256:09412eb7fb60b8f00b328037fd814d25d261066ebc43a1e339cdce4f7502877e \
|
||||||
|
--hash=sha256:90c805f30c46cf60f1e76e947574f02954d25e3bb1e97aa8a07bc53aa31cf7d1 \
|
||||||
|
--hash=sha256:26d28c468900e6d5fdb37d2812ab46db0ccd22c63baa095057871faa3a498bc9
|
||||||
trimesh==3.9.36 \
|
trimesh==3.9.36 \
|
||||||
--hash=sha256:f01e8edab14d1999700c980c21a1546f37417216ad915a53be649d263130181e \
|
--hash=sha256:f01e8edab14d1999700c980c21a1546f37417216ad915a53be649d263130181e \
|
||||||
--hash=sha256:8ac8bea693b3ee119f11b022fc9b9481c9f1af06cb38bc859bf5d16bbbe49b23
|
--hash=sha256:8ac8bea693b3ee119f11b022fc9b9481c9f1af06cb38bc859bf5d16bbbe49b23
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"display_name": "3MF Reader",
|
"display_name": "3MF Reader",
|
||||||
"description": "Provides support for reading 3MF files.",
|
"description": "Provides support for reading 3MF files.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -23,7 +23,7 @@
|
|||||||
"display_name": "3MF Writer",
|
"display_name": "3MF Writer",
|
||||||
"description": "Provides support for writing 3MF files.",
|
"description": "Provides support for writing 3MF files.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -40,7 +40,7 @@
|
|||||||
"display_name": "AMF Reader",
|
"display_name": "AMF Reader",
|
||||||
"description": "Provides support for reading AMF files.",
|
"description": "Provides support for reading AMF files.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "fieldOfView",
|
"author_id": "fieldOfView",
|
||||||
@ -57,7 +57,7 @@
|
|||||||
"display_name": "Cura Backups",
|
"display_name": "Cura Backups",
|
||||||
"description": "Backup and restore your configuration.",
|
"description": "Backup and restore your configuration.",
|
||||||
"package_version": "1.2.0",
|
"package_version": "1.2.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -74,7 +74,7 @@
|
|||||||
"display_name": "CuraEngine Backend",
|
"display_name": "CuraEngine Backend",
|
||||||
"description": "Provides the link to the CuraEngine slicing backend.",
|
"description": "Provides the link to the CuraEngine slicing backend.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -91,7 +91,7 @@
|
|||||||
"display_name": "Cura Profile Reader",
|
"display_name": "Cura Profile Reader",
|
||||||
"description": "Provides support for importing Cura profiles.",
|
"description": "Provides support for importing Cura profiles.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -108,7 +108,7 @@
|
|||||||
"display_name": "Cura Profile Writer",
|
"display_name": "Cura Profile Writer",
|
||||||
"description": "Provides support for exporting Cura profiles.",
|
"description": "Provides support for exporting Cura profiles.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -125,7 +125,7 @@
|
|||||||
"display_name": "Ultimaker Digital Library",
|
"display_name": "Ultimaker Digital Library",
|
||||||
"description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.",
|
"description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.",
|
||||||
"package_version": "1.1.0",
|
"package_version": "1.1.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -142,7 +142,7 @@
|
|||||||
"display_name": "Firmware Update Checker",
|
"display_name": "Firmware Update Checker",
|
||||||
"description": "Checks for firmware updates.",
|
"description": "Checks for firmware updates.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -159,7 +159,7 @@
|
|||||||
"display_name": "Firmware Updater",
|
"display_name": "Firmware Updater",
|
||||||
"description": "Provides a machine actions for updating firmware.",
|
"description": "Provides a machine actions for updating firmware.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -176,7 +176,7 @@
|
|||||||
"display_name": "Compressed G-code Reader",
|
"display_name": "Compressed G-code Reader",
|
||||||
"description": "Reads g-code from a compressed archive.",
|
"description": "Reads g-code from a compressed archive.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -193,7 +193,7 @@
|
|||||||
"display_name": "Compressed G-code Writer",
|
"display_name": "Compressed G-code Writer",
|
||||||
"description": "Writes g-code to a compressed archive.",
|
"description": "Writes g-code to a compressed archive.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -210,7 +210,7 @@
|
|||||||
"display_name": "G-Code Profile Reader",
|
"display_name": "G-Code Profile Reader",
|
||||||
"description": "Provides support for importing profiles from g-code files.",
|
"description": "Provides support for importing profiles from g-code files.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -227,7 +227,7 @@
|
|||||||
"display_name": "G-Code Reader",
|
"display_name": "G-Code Reader",
|
||||||
"description": "Allows loading and displaying G-code files.",
|
"description": "Allows loading and displaying G-code files.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "VictorLarchenko",
|
"author_id": "VictorLarchenko",
|
||||||
@ -244,7 +244,7 @@
|
|||||||
"display_name": "G-Code Writer",
|
"display_name": "G-Code Writer",
|
||||||
"description": "Writes g-code to a file.",
|
"description": "Writes g-code to a file.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -261,7 +261,7 @@
|
|||||||
"display_name": "Image Reader",
|
"display_name": "Image Reader",
|
||||||
"description": "Enables ability to generate printable geometry from 2D image files.",
|
"description": "Enables ability to generate printable geometry from 2D image files.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -278,7 +278,7 @@
|
|||||||
"display_name": "Legacy Cura Profile Reader",
|
"display_name": "Legacy Cura Profile Reader",
|
||||||
"description": "Provides support for importing profiles from legacy Cura versions.",
|
"description": "Provides support for importing profiles from legacy Cura versions.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -295,7 +295,7 @@
|
|||||||
"display_name": "Machine Settings Action",
|
"display_name": "Machine Settings Action",
|
||||||
"description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).",
|
"description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "fieldOfView",
|
"author_id": "fieldOfView",
|
||||||
@ -312,7 +312,7 @@
|
|||||||
"display_name": "Model Checker",
|
"display_name": "Model Checker",
|
||||||
"description": "Checks models and print configuration for possible printing issues and give suggestions.",
|
"description": "Checks models and print configuration for possible printing issues and give suggestions.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -329,7 +329,7 @@
|
|||||||
"display_name": "Monitor Stage",
|
"display_name": "Monitor Stage",
|
||||||
"description": "Provides a monitor stage in Cura.",
|
"description": "Provides a monitor stage in Cura.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -346,7 +346,7 @@
|
|||||||
"display_name": "Per-Object Settings Tool",
|
"display_name": "Per-Object Settings Tool",
|
||||||
"description": "Provides the per-model settings.",
|
"description": "Provides the per-model settings.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -363,7 +363,7 @@
|
|||||||
"display_name": "Post Processing",
|
"display_name": "Post Processing",
|
||||||
"description": "Extension that allows for user created scripts for post processing.",
|
"description": "Extension that allows for user created scripts for post processing.",
|
||||||
"package_version": "2.2.1",
|
"package_version": "2.2.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -380,7 +380,7 @@
|
|||||||
"display_name": "Prepare Stage",
|
"display_name": "Prepare Stage",
|
||||||
"description": "Provides a prepare stage in Cura.",
|
"description": "Provides a prepare stage in Cura.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -397,7 +397,7 @@
|
|||||||
"display_name": "Preview Stage",
|
"display_name": "Preview Stage",
|
||||||
"description": "Provides a preview stage in Cura.",
|
"description": "Provides a preview stage in Cura.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -414,7 +414,7 @@
|
|||||||
"display_name": "Removable Drive Output Device",
|
"display_name": "Removable Drive Output Device",
|
||||||
"description": "Provides removable drive hotplugging and writing support.",
|
"description": "Provides removable drive hotplugging and writing support.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -431,7 +431,7 @@
|
|||||||
"display_name": "Sentry Logger",
|
"display_name": "Sentry Logger",
|
||||||
"description": "Logs certain events so that they can be used by the crash reporter",
|
"description": "Logs certain events so that they can be used by the crash reporter",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -448,7 +448,7 @@
|
|||||||
"display_name": "Simulation View",
|
"display_name": "Simulation View",
|
||||||
"description": "Provides the Simulation view.",
|
"description": "Provides the Simulation view.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -465,7 +465,7 @@
|
|||||||
"display_name": "Slice Info",
|
"display_name": "Slice Info",
|
||||||
"description": "Submits anonymous slice info. Can be disabled through preferences.",
|
"description": "Submits anonymous slice info. Can be disabled through preferences.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -482,7 +482,7 @@
|
|||||||
"display_name": "Solid View",
|
"display_name": "Solid View",
|
||||||
"description": "Provides a normal solid mesh view.",
|
"description": "Provides a normal solid mesh view.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -499,7 +499,7 @@
|
|||||||
"display_name": "Support Eraser Tool",
|
"display_name": "Support Eraser Tool",
|
||||||
"description": "Creates an eraser mesh to block the printing of support in certain places.",
|
"description": "Creates an eraser mesh to block the printing of support in certain places.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -516,7 +516,7 @@
|
|||||||
"display_name": "Trimesh Reader",
|
"display_name": "Trimesh Reader",
|
||||||
"description": "Provides support for reading model files.",
|
"description": "Provides support for reading model files.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -533,7 +533,7 @@
|
|||||||
"display_name": "Marketplace",
|
"display_name": "Marketplace",
|
||||||
"description": "Find, manage and install new Cura packages.",
|
"description": "Find, manage and install new Cura packages.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -550,7 +550,7 @@
|
|||||||
"display_name": "UFP Reader",
|
"display_name": "UFP Reader",
|
||||||
"description": "Provides support for reading Ultimaker Format Packages.",
|
"description": "Provides support for reading Ultimaker Format Packages.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -567,7 +567,7 @@
|
|||||||
"display_name": "UFP Writer",
|
"display_name": "UFP Writer",
|
||||||
"description": "Provides support for writing Ultimaker Format Packages.",
|
"description": "Provides support for writing Ultimaker Format Packages.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -584,7 +584,7 @@
|
|||||||
"display_name": "Ultimaker Machine Actions",
|
"display_name": "Ultimaker Machine Actions",
|
||||||
"description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).",
|
"description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -601,7 +601,7 @@
|
|||||||
"display_name": "UM3 Network Printing",
|
"display_name": "UM3 Network Printing",
|
||||||
"description": "Manages network connections to Ultimaker 3 printers.",
|
"description": "Manages network connections to Ultimaker 3 printers.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -618,7 +618,7 @@
|
|||||||
"display_name": "USB Printing",
|
"display_name": "USB Printing",
|
||||||
"description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.",
|
"description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.",
|
||||||
"package_version": "1.0.2",
|
"package_version": "1.0.2",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -635,7 +635,7 @@
|
|||||||
"display_name": "Version Upgrade 2.1 to 2.2",
|
"display_name": "Version Upgrade 2.1 to 2.2",
|
||||||
"description": "Upgrades configurations from Cura 2.1 to Cura 2.2.",
|
"description": "Upgrades configurations from Cura 2.1 to Cura 2.2.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -652,7 +652,7 @@
|
|||||||
"display_name": "Version Upgrade 2.2 to 2.4",
|
"display_name": "Version Upgrade 2.2 to 2.4",
|
||||||
"description": "Upgrades configurations from Cura 2.2 to Cura 2.4.",
|
"description": "Upgrades configurations from Cura 2.2 to Cura 2.4.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -669,7 +669,7 @@
|
|||||||
"display_name": "Version Upgrade 2.5 to 2.6",
|
"display_name": "Version Upgrade 2.5 to 2.6",
|
||||||
"description": "Upgrades configurations from Cura 2.5 to Cura 2.6.",
|
"description": "Upgrades configurations from Cura 2.5 to Cura 2.6.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -686,7 +686,7 @@
|
|||||||
"display_name": "Version Upgrade 2.6 to 2.7",
|
"display_name": "Version Upgrade 2.6 to 2.7",
|
||||||
"description": "Upgrades configurations from Cura 2.6 to Cura 2.7.",
|
"description": "Upgrades configurations from Cura 2.6 to Cura 2.7.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -703,7 +703,7 @@
|
|||||||
"display_name": "Version Upgrade 2.7 to 3.0",
|
"display_name": "Version Upgrade 2.7 to 3.0",
|
||||||
"description": "Upgrades configurations from Cura 2.7 to Cura 3.0.",
|
"description": "Upgrades configurations from Cura 2.7 to Cura 3.0.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -720,7 +720,7 @@
|
|||||||
"display_name": "Version Upgrade 3.0 to 3.1",
|
"display_name": "Version Upgrade 3.0 to 3.1",
|
||||||
"description": "Upgrades configurations from Cura 3.0 to Cura 3.1.",
|
"description": "Upgrades configurations from Cura 3.0 to Cura 3.1.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -737,7 +737,7 @@
|
|||||||
"display_name": "Version Upgrade 3.2 to 3.3",
|
"display_name": "Version Upgrade 3.2 to 3.3",
|
||||||
"description": "Upgrades configurations from Cura 3.2 to Cura 3.3.",
|
"description": "Upgrades configurations from Cura 3.2 to Cura 3.3.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -754,7 +754,7 @@
|
|||||||
"display_name": "Version Upgrade 3.3 to 3.4",
|
"display_name": "Version Upgrade 3.3 to 3.4",
|
||||||
"description": "Upgrades configurations from Cura 3.3 to Cura 3.4.",
|
"description": "Upgrades configurations from Cura 3.3 to Cura 3.4.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -771,7 +771,7 @@
|
|||||||
"display_name": "Version Upgrade 3.4 to 3.5",
|
"display_name": "Version Upgrade 3.4 to 3.5",
|
||||||
"description": "Upgrades configurations from Cura 3.4 to Cura 3.5.",
|
"description": "Upgrades configurations from Cura 3.4 to Cura 3.5.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -788,7 +788,7 @@
|
|||||||
"display_name": "Version Upgrade 3.5 to 4.0",
|
"display_name": "Version Upgrade 3.5 to 4.0",
|
||||||
"description": "Upgrades configurations from Cura 3.5 to Cura 4.0.",
|
"description": "Upgrades configurations from Cura 3.5 to Cura 4.0.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -805,7 +805,7 @@
|
|||||||
"display_name": "Version Upgrade 4.0 to 4.1",
|
"display_name": "Version Upgrade 4.0 to 4.1",
|
||||||
"description": "Upgrades configurations from Cura 4.0 to Cura 4.1.",
|
"description": "Upgrades configurations from Cura 4.0 to Cura 4.1.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -822,7 +822,7 @@
|
|||||||
"display_name": "Version Upgrade 4.1 to 4.2",
|
"display_name": "Version Upgrade 4.1 to 4.2",
|
||||||
"description": "Upgrades configurations from Cura 4.1 to Cura 4.2.",
|
"description": "Upgrades configurations from Cura 4.1 to Cura 4.2.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -839,7 +839,7 @@
|
|||||||
"display_name": "Version Upgrade 4.2 to 4.3",
|
"display_name": "Version Upgrade 4.2 to 4.3",
|
||||||
"description": "Upgrades configurations from Cura 4.2 to Cura 4.3.",
|
"description": "Upgrades configurations from Cura 4.2 to Cura 4.3.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -856,7 +856,7 @@
|
|||||||
"display_name": "Version Upgrade 4.3 to 4.4",
|
"display_name": "Version Upgrade 4.3 to 4.4",
|
||||||
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
|
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -873,7 +873,7 @@
|
|||||||
"display_name": "Version Upgrade 4.4 to 4.5",
|
"display_name": "Version Upgrade 4.4 to 4.5",
|
||||||
"description": "Upgrades configurations from Cura 4.4 to Cura 4.5.",
|
"description": "Upgrades configurations from Cura 4.4 to Cura 4.5.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -890,7 +890,7 @@
|
|||||||
"display_name": "Version Upgrade 4.5 to 4.6",
|
"display_name": "Version Upgrade 4.5 to 4.6",
|
||||||
"description": "Upgrades configurations from Cura 4.5 to Cura 4.6.",
|
"description": "Upgrades configurations from Cura 4.5 to Cura 4.6.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -907,7 +907,7 @@
|
|||||||
"display_name": "Version Upgrade 4.6.0 to 4.6.2",
|
"display_name": "Version Upgrade 4.6.0 to 4.6.2",
|
||||||
"description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.",
|
"description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -924,7 +924,7 @@
|
|||||||
"display_name": "Version Upgrade 4.6.2 to 4.7",
|
"display_name": "Version Upgrade 4.6.2 to 4.7",
|
||||||
"description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.",
|
"description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -941,7 +941,7 @@
|
|||||||
"display_name": "Version Upgrade 4.7.0 to 4.8.0",
|
"display_name": "Version Upgrade 4.7.0 to 4.8.0",
|
||||||
"description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0",
|
"description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -958,7 +958,7 @@
|
|||||||
"display_name": "Version Upgrade 4.8.0 to 4.9.0",
|
"display_name": "Version Upgrade 4.8.0 to 4.9.0",
|
||||||
"description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0",
|
"description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -975,7 +975,7 @@
|
|||||||
"display_name": "Version Upgrade 4.9 to 4.10",
|
"display_name": "Version Upgrade 4.9 to 4.10",
|
||||||
"description": "Upgrades configurations from Cura 4.9 to Cura 4.10",
|
"description": "Upgrades configurations from Cura 4.9 to Cura 4.10",
|
||||||
"package_version": "1.0.0",
|
"package_version": "1.0.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1010,7 +1010,7 @@
|
|||||||
"display_name": "X3D Reader",
|
"display_name": "X3D Reader",
|
||||||
"description": "Provides support for reading X3D files.",
|
"description": "Provides support for reading X3D files.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "SevaAlekseyev",
|
"author_id": "SevaAlekseyev",
|
||||||
@ -1027,7 +1027,7 @@
|
|||||||
"display_name": "XML Material Profiles",
|
"display_name": "XML Material Profiles",
|
||||||
"description": "Provides capabilities to read and write XML-based material profiles.",
|
"description": "Provides capabilities to read and write XML-based material profiles.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1044,7 +1044,7 @@
|
|||||||
"display_name": "X-Ray View",
|
"display_name": "X-Ray View",
|
||||||
"description": "Provides the X-Ray view.",
|
"description": "Provides the X-Ray view.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com",
|
"website": "https://ultimaker.com",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1061,7 +1061,7 @@
|
|||||||
"display_name": "Generic ABS",
|
"display_name": "Generic ABS",
|
||||||
"description": "The generic ABS profile which other profiles can be based upon.",
|
"description": "The generic ABS profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1079,7 +1079,7 @@
|
|||||||
"display_name": "Generic BAM",
|
"display_name": "Generic BAM",
|
||||||
"description": "The generic BAM profile which other profiles can be based upon.",
|
"description": "The generic BAM profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1097,7 +1097,7 @@
|
|||||||
"display_name": "Generic CFF CPE",
|
"display_name": "Generic CFF CPE",
|
||||||
"description": "The generic CFF CPE profile which other profiles can be based upon.",
|
"description": "The generic CFF CPE profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1115,7 +1115,7 @@
|
|||||||
"display_name": "Generic CFF PA",
|
"display_name": "Generic CFF PA",
|
||||||
"description": "The generic CFF PA profile which other profiles can be based upon.",
|
"description": "The generic CFF PA profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1133,7 +1133,7 @@
|
|||||||
"display_name": "Generic CPE",
|
"display_name": "Generic CPE",
|
||||||
"description": "The generic CPE profile which other profiles can be based upon.",
|
"description": "The generic CPE profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1151,7 +1151,7 @@
|
|||||||
"display_name": "Generic CPE+",
|
"display_name": "Generic CPE+",
|
||||||
"description": "The generic CPE+ profile which other profiles can be based upon.",
|
"description": "The generic CPE+ profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1169,7 +1169,7 @@
|
|||||||
"display_name": "Generic GFF CPE",
|
"display_name": "Generic GFF CPE",
|
||||||
"description": "The generic GFF CPE profile which other profiles can be based upon.",
|
"description": "The generic GFF CPE profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1187,7 +1187,7 @@
|
|||||||
"display_name": "Generic GFF PA",
|
"display_name": "Generic GFF PA",
|
||||||
"description": "The generic GFF PA profile which other profiles can be based upon.",
|
"description": "The generic GFF PA profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1205,7 +1205,7 @@
|
|||||||
"display_name": "Generic HIPS",
|
"display_name": "Generic HIPS",
|
||||||
"description": "The generic HIPS profile which other profiles can be based upon.",
|
"description": "The generic HIPS profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1223,7 +1223,7 @@
|
|||||||
"display_name": "Generic Nylon",
|
"display_name": "Generic Nylon",
|
||||||
"description": "The generic Nylon profile which other profiles can be based upon.",
|
"description": "The generic Nylon profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1241,7 +1241,7 @@
|
|||||||
"display_name": "Generic PC",
|
"display_name": "Generic PC",
|
||||||
"description": "The generic PC profile which other profiles can be based upon.",
|
"description": "The generic PC profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1259,7 +1259,7 @@
|
|||||||
"display_name": "Generic PETG",
|
"display_name": "Generic PETG",
|
||||||
"description": "The generic PETG profile which other profiles can be based upon.",
|
"description": "The generic PETG profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1277,7 +1277,7 @@
|
|||||||
"display_name": "Generic PLA",
|
"display_name": "Generic PLA",
|
||||||
"description": "The generic PLA profile which other profiles can be based upon.",
|
"description": "The generic PLA profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1295,7 +1295,7 @@
|
|||||||
"display_name": "Generic PP",
|
"display_name": "Generic PP",
|
||||||
"description": "The generic PP profile which other profiles can be based upon.",
|
"description": "The generic PP profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1313,7 +1313,7 @@
|
|||||||
"display_name": "Generic PVA",
|
"display_name": "Generic PVA",
|
||||||
"description": "The generic PVA profile which other profiles can be based upon.",
|
"description": "The generic PVA profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1331,7 +1331,7 @@
|
|||||||
"display_name": "Generic Tough PLA",
|
"display_name": "Generic Tough PLA",
|
||||||
"description": "The generic Tough PLA profile which other profiles can be based upon.",
|
"description": "The generic Tough PLA profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1349,7 +1349,7 @@
|
|||||||
"display_name": "Generic TPU",
|
"display_name": "Generic TPU",
|
||||||
"description": "The generic TPU profile which other profiles can be based upon.",
|
"description": "The generic TPU profile which other profiles can be based upon.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://github.com/Ultimaker/fdm_materials",
|
"website": "https://github.com/Ultimaker/fdm_materials",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Generic",
|
"author_id": "Generic",
|
||||||
@ -1367,7 +1367,7 @@
|
|||||||
"display_name": "Dagoma Chromatik PLA",
|
"display_name": "Dagoma Chromatik PLA",
|
||||||
"description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.",
|
"description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://dagoma.fr/boutique/filaments.html",
|
"website": "https://dagoma.fr/boutique/filaments.html",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Dagoma",
|
"author_id": "Dagoma",
|
||||||
@ -1384,7 +1384,7 @@
|
|||||||
"display_name": "FABtotum ABS",
|
"display_name": "FABtotum ABS",
|
||||||
"description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.",
|
"description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40",
|
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "FABtotum",
|
"author_id": "FABtotum",
|
||||||
@ -1401,7 +1401,7 @@
|
|||||||
"display_name": "FABtotum Nylon",
|
"display_name": "FABtotum Nylon",
|
||||||
"description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.",
|
"description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53",
|
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "FABtotum",
|
"author_id": "FABtotum",
|
||||||
@ -1418,7 +1418,7 @@
|
|||||||
"display_name": "FABtotum PLA",
|
"display_name": "FABtotum PLA",
|
||||||
"description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.",
|
"description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39",
|
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "FABtotum",
|
"author_id": "FABtotum",
|
||||||
@ -1435,7 +1435,7 @@
|
|||||||
"display_name": "FABtotum TPU Shore 98A",
|
"display_name": "FABtotum TPU Shore 98A",
|
||||||
"description": "",
|
"description": "",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66",
|
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "FABtotum",
|
"author_id": "FABtotum",
|
||||||
@ -1452,7 +1452,7 @@
|
|||||||
"display_name": "Fiberlogy HD PLA",
|
"display_name": "Fiberlogy HD PLA",
|
||||||
"description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.",
|
"description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/",
|
"website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Fiberlogy",
|
"author_id": "Fiberlogy",
|
||||||
@ -1469,7 +1469,7 @@
|
|||||||
"display_name": "Filo3D PLA",
|
"display_name": "Filo3D PLA",
|
||||||
"description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.",
|
"description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://dagoma.fr",
|
"website": "https://dagoma.fr",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Dagoma",
|
"author_id": "Dagoma",
|
||||||
@ -1486,7 +1486,7 @@
|
|||||||
"display_name": "IMADE3D JellyBOX PETG",
|
"display_name": "IMADE3D JellyBOX PETG",
|
||||||
"description": "",
|
"description": "",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "http://shop.imade3d.com/filament.html",
|
"website": "http://shop.imade3d.com/filament.html",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "IMADE3D",
|
"author_id": "IMADE3D",
|
||||||
@ -1503,7 +1503,7 @@
|
|||||||
"display_name": "IMADE3D JellyBOX PLA",
|
"display_name": "IMADE3D JellyBOX PLA",
|
||||||
"description": "",
|
"description": "",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "http://shop.imade3d.com/filament.html",
|
"website": "http://shop.imade3d.com/filament.html",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "IMADE3D",
|
"author_id": "IMADE3D",
|
||||||
@ -1520,7 +1520,7 @@
|
|||||||
"display_name": "Octofiber PLA",
|
"display_name": "Octofiber PLA",
|
||||||
"description": "PLA material from Octofiber.",
|
"description": "PLA material from Octofiber.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://nl.octofiber.com/3d-printing-filament/pla.html",
|
"website": "https://nl.octofiber.com/3d-printing-filament/pla.html",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Octofiber",
|
"author_id": "Octofiber",
|
||||||
@ -1537,7 +1537,7 @@
|
|||||||
"display_name": "PolyFlex™ PLA",
|
"display_name": "PolyFlex™ PLA",
|
||||||
"description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.",
|
"description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "http://www.polymaker.com/shop/polyflex/",
|
"website": "http://www.polymaker.com/shop/polyflex/",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Polymaker",
|
"author_id": "Polymaker",
|
||||||
@ -1554,7 +1554,7 @@
|
|||||||
"display_name": "PolyMax™ PLA",
|
"display_name": "PolyMax™ PLA",
|
||||||
"description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.",
|
"description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "http://www.polymaker.com/shop/polymax/",
|
"website": "http://www.polymaker.com/shop/polymax/",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Polymaker",
|
"author_id": "Polymaker",
|
||||||
@ -1571,7 +1571,7 @@
|
|||||||
"display_name": "PolyPlus™ PLA True Colour",
|
"display_name": "PolyPlus™ PLA True Colour",
|
||||||
"description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.",
|
"description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "http://www.polymaker.com/shop/polyplus-true-colour/",
|
"website": "http://www.polymaker.com/shop/polyplus-true-colour/",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Polymaker",
|
"author_id": "Polymaker",
|
||||||
@ -1588,7 +1588,7 @@
|
|||||||
"display_name": "PolyWood™ PLA",
|
"display_name": "PolyWood™ PLA",
|
||||||
"description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.",
|
"description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.",
|
||||||
"package_version": "1.0.1",
|
"package_version": "1.0.1",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "http://www.polymaker.com/shop/polywood/",
|
"website": "http://www.polymaker.com/shop/polywood/",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Polymaker",
|
"author_id": "Polymaker",
|
||||||
@ -1605,7 +1605,7 @@
|
|||||||
"display_name": "Ultimaker ABS",
|
"display_name": "Ultimaker ABS",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/abs",
|
"website": "https://ultimaker.com/products/materials/abs",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1624,7 +1624,7 @@
|
|||||||
"display_name": "Ultimaker Breakaway",
|
"display_name": "Ultimaker Breakaway",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/breakaway",
|
"website": "https://ultimaker.com/products/materials/breakaway",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1643,7 +1643,7 @@
|
|||||||
"display_name": "Ultimaker CPE",
|
"display_name": "Ultimaker CPE",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/abs",
|
"website": "https://ultimaker.com/products/materials/abs",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1662,7 +1662,7 @@
|
|||||||
"display_name": "Ultimaker CPE+",
|
"display_name": "Ultimaker CPE+",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/cpe",
|
"website": "https://ultimaker.com/products/materials/cpe",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1681,7 +1681,7 @@
|
|||||||
"display_name": "Ultimaker Nylon",
|
"display_name": "Ultimaker Nylon",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/abs",
|
"website": "https://ultimaker.com/products/materials/abs",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1700,7 +1700,7 @@
|
|||||||
"display_name": "Ultimaker PC",
|
"display_name": "Ultimaker PC",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/pc",
|
"website": "https://ultimaker.com/products/materials/pc",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1719,7 +1719,7 @@
|
|||||||
"display_name": "Ultimaker PLA",
|
"display_name": "Ultimaker PLA",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/abs",
|
"website": "https://ultimaker.com/products/materials/abs",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1738,7 +1738,7 @@
|
|||||||
"display_name": "Ultimaker PP",
|
"display_name": "Ultimaker PP",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/pp",
|
"website": "https://ultimaker.com/products/materials/pp",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1757,7 +1757,7 @@
|
|||||||
"display_name": "Ultimaker PVA",
|
"display_name": "Ultimaker PVA",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/abs",
|
"website": "https://ultimaker.com/products/materials/abs",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1776,7 +1776,7 @@
|
|||||||
"display_name": "Ultimaker TPU 95A",
|
"display_name": "Ultimaker TPU 95A",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/tpu-95a",
|
"website": "https://ultimaker.com/products/materials/tpu-95a",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1795,7 +1795,7 @@
|
|||||||
"display_name": "Ultimaker Tough PLA",
|
"display_name": "Ultimaker Tough PLA",
|
||||||
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
"description": "Example package for material and quality profiles for Ultimaker materials.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://ultimaker.com/products/materials/tough-pla",
|
"website": "https://ultimaker.com/products/materials/tough-pla",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "UltimakerPackages",
|
"author_id": "UltimakerPackages",
|
||||||
@ -1814,7 +1814,7 @@
|
|||||||
"display_name": "Vertex Delta ABS",
|
"display_name": "Vertex Delta ABS",
|
||||||
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://vertex3dprinter.eu",
|
"website": "https://vertex3dprinter.eu",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Velleman",
|
"author_id": "Velleman",
|
||||||
@ -1831,7 +1831,7 @@
|
|||||||
"display_name": "Vertex Delta PET",
|
"display_name": "Vertex Delta PET",
|
||||||
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://vertex3dprinter.eu",
|
"website": "https://vertex3dprinter.eu",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Velleman",
|
"author_id": "Velleman",
|
||||||
@ -1848,7 +1848,7 @@
|
|||||||
"display_name": "Vertex Delta PLA",
|
"display_name": "Vertex Delta PLA",
|
||||||
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://vertex3dprinter.eu",
|
"website": "https://vertex3dprinter.eu",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Velleman",
|
"author_id": "Velleman",
|
||||||
@ -1865,7 +1865,7 @@
|
|||||||
"display_name": "Vertex Delta TPU",
|
"display_name": "Vertex Delta TPU",
|
||||||
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
"description": "ABS material and quality files for the Delta Vertex K8800.",
|
||||||
"package_version": "1.4.0",
|
"package_version": "1.4.0",
|
||||||
"sdk_version": "8.1.0",
|
"sdk_version": "8.2.0",
|
||||||
"website": "https://vertex3dprinter.eu",
|
"website": "https://vertex3dprinter.eu",
|
||||||
"author": {
|
"author": {
|
||||||
"author_id": "Velleman",
|
"author_id": "Velleman",
|
||||||
|
@ -8073,7 +8073,7 @@
|
|||||||
"label": "Remove Raft Inside Corners",
|
"label": "Remove Raft Inside Corners",
|
||||||
"description": "Remove inside corners from the raft, causing the raft to become convex.",
|
"description": "Remove inside corners from the raft, causing the raft to become convex.",
|
||||||
"type": "bool",
|
"type": "bool",
|
||||||
"default_value": true,
|
"default_value": false,
|
||||||
"resolve": "any(extruderValues('raft_remove_inside_corners'))",
|
"resolve": "any(extruderValues('raft_remove_inside_corners'))",
|
||||||
"enabled": "resolveOrValue('adhesion_type') == 'raft'",
|
"enabled": "resolveOrValue('adhesion_type') == 'raft'",
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
|
@ -106,7 +106,7 @@
|
|||||||
"support_type": {"value": "'everywhere'" },
|
"support_type": {"value": "'everywhere'" },
|
||||||
"support_angle": {"value": "50"},
|
"support_angle": {"value": "50"},
|
||||||
"support_pattern": {"value": "'grid'"},
|
"support_pattern": {"value": "'grid'"},
|
||||||
"support_wall_count": {"value": 0},
|
"support_wall_count": {"value": "1 if (support_structure == 'tree') else 0" },
|
||||||
"zig_zaggify_support": {"value": false },
|
"zig_zaggify_support": {"value": false },
|
||||||
"support_infill_rate": {"value": "15 if support_enable else 0"},
|
"support_infill_rate": {"value": "15 if support_enable else 0"},
|
||||||
"support_brim_enable": {"value": true },
|
"support_brim_enable": {"value": true },
|
||||||
|
@ -130,7 +130,7 @@
|
|||||||
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
|
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
|
||||||
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
|
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
|
||||||
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
|
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
|
||||||
"support_wall_count": { "value": 0 },
|
"support_wall_count": {"value": "1 if (support_structure == 'tree') else 0" },
|
||||||
"support_brim_enable": { "value": true },
|
"support_brim_enable": { "value": true },
|
||||||
"support_brim_width": { "value": 4 },
|
"support_brim_width": { "value": 4 },
|
||||||
"support_interface_height": { "value": "layer_height * 4" },
|
"support_interface_height": { "value": "layer_height * 4" },
|
||||||
|
@ -93,7 +93,7 @@
|
|||||||
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
|
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
|
||||||
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
|
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
|
||||||
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
|
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
|
||||||
"support_wall_count": { "value": 0 },
|
"support_wall_count": {"value": "1 if (support_structure == 'tree') else 0" },
|
||||||
"support_brim_enable": { "value": true },
|
"support_brim_enable": { "value": true },
|
||||||
"support_brim_width": { "value": 5 },
|
"support_brim_width": { "value": 5 },
|
||||||
|
|
||||||
|
@ -9,292 +9,116 @@
|
|||||||
"exclude_materials": [ "generic_hips", "structur3d_dap100silicone" ]
|
"exclude_materials": [ "generic_hips", "structur3d_dap100silicone" ]
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"machine_max_feedrate_e": {
|
"acceleration_layer_0": { "value": "acceleration_topbottom" },
|
||||||
"default_value": 45
|
"acceleration_travel_enabled": { "value": false },
|
||||||
|
"bottom_layers": { "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" },
|
||||||
|
"bridge_enable_more_layers": { "value": false },
|
||||||
|
"bridge_fan_speed": { "value": "cool_fan_speed_max" },
|
||||||
|
"bridge_fan_speed_2": { "value": "cool_fan_speed_min" },
|
||||||
|
"bridge_fan_speed_3": { "value": "cool_fan_speed_min" },
|
||||||
|
"bridge_settings_enabled": { "value": true },
|
||||||
|
"bridge_skin_density": { "value": "80" },
|
||||||
|
"bridge_skin_density_2": { "value": 100 },
|
||||||
|
"bridge_skin_density_3": { "value": 100 },
|
||||||
|
"bridge_skin_material_flow": { "value": "skin_material_flow" },
|
||||||
|
"bridge_skin_material_flow_2": { "value": "skin_material_flow" },
|
||||||
|
"bridge_skin_material_flow_3": { "value": "skin_material_flow" },
|
||||||
|
"bridge_skin_speed": { "value": "speed_topbottom" },
|
||||||
|
"bridge_skin_speed_2": { "value": "speed_topbottom" },
|
||||||
|
"bridge_skin_speed_3": { "value": "speed_topbottom" },
|
||||||
|
"bridge_skin_support_threshold": { "value": 50 },
|
||||||
|
"bridge_sparse_infill_max_density": { "value": 0 },
|
||||||
|
"bridge_wall_coast": { "value": 0 },
|
||||||
|
"bridge_wall_material_flow": { "value": "wall_material_flow" },
|
||||||
|
"bridge_wall_speed": { "value": "bridge_skin_speed" },
|
||||||
|
"cool_fan_speed_0": { "value": "cool_fan_speed_min" },
|
||||||
|
"gradual_support_infill_steps": { "value": "2 if support_interface_enable else 0" },
|
||||||
|
"gradual_support_infill_step_height": { "value": "4 * layer_height" },
|
||||||
|
"infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" },
|
||||||
|
"inset_direction": { "value": "'outside_in'" },
|
||||||
|
"jerk_infill": { "minimum_value_warning": 20 },
|
||||||
|
"jerk_wall": { "minimum_value_warning": 20 },
|
||||||
|
"jerk_wall_0": { "minimum_value_warning": 20 },
|
||||||
|
"jerk_prime_tower": { "minimum_value_warning": 20 },
|
||||||
|
"jerk_print":
|
||||||
|
{
|
||||||
|
"value": "20",
|
||||||
|
"minimum_value_warning": 20
|
||||||
},
|
},
|
||||||
"material_print_temperature": {
|
"jerk_print_layer_0": { "value": "max(20, jerk_wall_0)" },
|
||||||
"minimum_value": "0"
|
"jerk_roofing": { "minimum_value_warning": 20 },
|
||||||
},
|
"jerk_support": { "minimum_value_warning": 20 },
|
||||||
"material_bed_temperature": {
|
"jerk_support_infill": { "minimum_value_warning": 20 },
|
||||||
|
"jerk_support_interface": { "minimum_value_warning": 20 },
|
||||||
|
"jerk_topbottom": { "minimum_value_warning": 20 },
|
||||||
|
"jerk_travel": { "value": "jerk_print" },
|
||||||
|
"jerk_travel_enabled": { "value": false },
|
||||||
|
"layer_height_0": { "value": "max(0.2, layer_height)" },
|
||||||
|
"line_width": { "value": "machine_nozzle_size" },
|
||||||
|
"machine_max_feedrate_e": { "default_value": 45 },
|
||||||
|
"material_bed_temperature":
|
||||||
|
{
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
"maximum_value_warning": "125"
|
"maximum_value_warning": "125"
|
||||||
},
|
},
|
||||||
"material_bed_temperature_layer_0":
|
"material_bed_temperature_layer_0": { "maximum_value_warning": "125" },
|
||||||
|
"material_print_temperature": { "minimum_value": "0" },
|
||||||
|
"material_standby_temperature":
|
||||||
{
|
{
|
||||||
"maximum_value_warning": "125"
|
|
||||||
},
|
|
||||||
"material_standby_temperature": {
|
|
||||||
"value": "material_print_temperature - 100",
|
"value": "material_print_temperature - 100",
|
||||||
"minimum_value": "0"
|
"minimum_value": "0"
|
||||||
},
|
},
|
||||||
"extruder_prime_pos_y":
|
"meshfix_maximum_deviation": { "value": "machine_nozzle_size / 10" },
|
||||||
{
|
"meshfix_maximum_resolution": { "value": "max(speed_wall_0 / 75, 0.5)" },
|
||||||
"minimum_value": "0",
|
"minimum_support_area": { "value": "(2 + support_offset)**2" },
|
||||||
"maximum_value": "machine_depth"
|
"raft_base_speed": { "value": "raft_speed" },
|
||||||
},
|
"raft_base_thickness": { "value": "min(machine_nozzle_size * 0.75, 0.3)" },
|
||||||
"extruder_prime_pos_x":
|
"raft_interface_fan_speed": { "value": "(raft_base_fan_speed + raft_surface_fan_speed) / 2" },
|
||||||
{
|
"raft_interface_line_width": { "value": "(raft_base_line_width + raft_surface_line_width) / 2" },
|
||||||
"minimum_value": "0",
|
"raft_interface_speed": { "value": "(raft_surface_speed + raft_base_speed) / 2" },
|
||||||
"maximum_value": "machine_width"
|
"raft_interface_thickness": { "value": "(raft_base_thickness + raft_surface_thickness) / 2" },
|
||||||
},
|
"raft_speed": { "value": 15 },
|
||||||
|
"raft_surface_fan_speed": { "value": "cool_fan_speed_min" },
|
||||||
|
"raft_surface_speed": { "value": "speed_topbottom" },
|
||||||
"relative_extrusion":
|
"relative_extrusion":
|
||||||
{
|
{
|
||||||
"value": false,
|
"value": false,
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"skin_angles": {
|
"retraction_combing": { "value": "'no_outer_surfaces'" },
|
||||||
"value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]"
|
"retraction_count_max": { "value": 25 },
|
||||||
},
|
"retraction_extrusion_window": { "value": 1 },
|
||||||
"line_width": {
|
"roofing_layer_count": { "value": "1" },
|
||||||
"value": "machine_nozzle_size"
|
"roofing_material_flow": { "value": "material_flow" },
|
||||||
},
|
"skin_angles": { "value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]" },
|
||||||
"wall_thickness": {
|
"skin_edge_support_thickness": { "value": "4 * layer_height if infill_sparse_density < 30 else 0" },
|
||||||
"value": "wall_line_width_0 + wall_line_width_x"
|
"skin_material_flow": { "value": "0.95 * material_flow" },
|
||||||
},
|
"skin_material_flow_layer_0": { "value": "0.80 * material_flow_layer_0" },
|
||||||
"infill_material_flow": {
|
"skin_monotonic" : { "value": "roofing_layer_count == 0" },
|
||||||
"value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow"
|
"speed_equalize_flow_width_factor": { "value": "110.0" },
|
||||||
},
|
"speed_layer_0": { "value": "min(30, layer_height / layer_height_0 * speed_wall_0)" },
|
||||||
"inset_direction": {
|
"speed_slowdown_layers": { "value": 1 },
|
||||||
"value": "'outside_in'"
|
"speed_travel_layer_0": { "value": "speed_travel" },
|
||||||
},
|
"support_infill_rate": { "value": "0 if support_structure == 'tree' else 80 if gradual_support_infill_steps != 0 else 15" },
|
||||||
"retraction_combing": {
|
"support_initial_layer_line_distance": { "minimum_value_warning": "0 if support_structure == 'tree' else support_line_width" },
|
||||||
"value": "'no_outer_surfaces'"
|
"support_interface_height": { "value": "2 * layer_height" },
|
||||||
},
|
"support_interface_material_flow": { "value": "skin_material_flow" },
|
||||||
"retraction_count_max": {
|
"support_interface_offset": { "value": "support_offset" },
|
||||||
"value": 25
|
"support_interface_pattern": { "value": "'concentric'" },
|
||||||
},
|
"support_interface_skip_height": { "value": "layer_height" },
|
||||||
"retraction_extrusion_window": {
|
"support_line_distance": { "minimum_value_warning": "0 if support_structure == 'tree' else support_line_width" },
|
||||||
"value": 1
|
"support_offset": { "value": "support_xy_distance if support_interface_enable else 0" },
|
||||||
},
|
"support_use_towers": { "value": false },
|
||||||
"roofing_layer_count": {
|
"support_wall_count": { "value": "1 if support_structure == 'tree' else 0" },
|
||||||
"value": "1"
|
"support_xy_distance": { "value": "1" },
|
||||||
},
|
"support_xy_distance_overhang": { "value": "0.2" },
|
||||||
"roofing_material_flow": {
|
"support_z_distance": { "value": "0" },
|
||||||
"value": "material_flow"
|
"top_layers": { "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" },
|
||||||
},
|
"wall_0_material_flow_layer_0": { "value": "1.10 * material_flow_layer_0" },
|
||||||
"skin_material_flow": {
|
"wall_thickness": { "value": "wall_line_width_0 + wall_line_width_x" },
|
||||||
"value": "0.95 * material_flow"
|
"wall_x_material_flow_layer_0": { "value": "0.95 * material_flow_layer_0" },
|
||||||
},
|
"xy_offset": { "value": "-layer_height * 0.1" },
|
||||||
"support_interface_material_flow": {
|
"xy_offset_layer_0": { "value": "-wall_line_width_0 / 5 + xy_offset" },
|
||||||
"value": "skin_material_flow"
|
"zig_zaggify_support": { "value": true }
|
||||||
},
|
|
||||||
"skin_monotonic" : {
|
|
||||||
"value": "roofing_layer_count == 0"
|
|
||||||
},
|
|
||||||
"speed_equalize_flow_width_factor": {
|
|
||||||
"value": "110.0"
|
|
||||||
},
|
|
||||||
"top_layers": {
|
|
||||||
"value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))"
|
|
||||||
},
|
|
||||||
"bottom_layers": {
|
|
||||||
"value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))"
|
|
||||||
},
|
|
||||||
"xy_offset": {
|
|
||||||
"value": "-layer_height * 0.1"
|
|
||||||
},
|
|
||||||
"meshfix_maximum_resolution": {
|
|
||||||
"value": "max(speed_wall_0 / 75, 0.5)"
|
|
||||||
},
|
|
||||||
"meshfix_maximum_deviation": {
|
|
||||||
"value": "machine_nozzle_size / 10"
|
|
||||||
},
|
|
||||||
"jerk_travel_enabled": {
|
|
||||||
"value": false
|
|
||||||
},
|
|
||||||
"acceleration_travel_enabled": {
|
|
||||||
"value": false
|
|
||||||
},
|
|
||||||
"acceleration_travel": {
|
|
||||||
"value": "acceleration_wall"
|
|
||||||
},
|
|
||||||
"skin_edge_support_thickness": {
|
|
||||||
"value": "4 * layer_height if infill_sparse_density < 30 else 0"
|
|
||||||
},
|
|
||||||
"bridge_settings_enabled": {
|
|
||||||
"value": true
|
|
||||||
},
|
|
||||||
"bridge_skin_support_threshold": {
|
|
||||||
"value": 50
|
|
||||||
},
|
|
||||||
"bridge_sparse_infill_max_density": {
|
|
||||||
"value": 0
|
|
||||||
},
|
|
||||||
"bridge_wall_coast": {
|
|
||||||
"value": 0
|
|
||||||
},
|
|
||||||
"bridge_wall_speed": {
|
|
||||||
"value": "bridge_skin_speed"
|
|
||||||
},
|
|
||||||
"bridge_wall_material_flow": {
|
|
||||||
"value": "wall_material_flow"
|
|
||||||
},
|
|
||||||
"bridge_skin_speed": {
|
|
||||||
"value": "speed_topbottom"
|
|
||||||
},
|
|
||||||
"bridge_skin_material_flow": {
|
|
||||||
"value": "skin_material_flow"
|
|
||||||
},
|
|
||||||
"bridge_skin_density": {
|
|
||||||
"value": "80"
|
|
||||||
},
|
|
||||||
"bridge_fan_speed": {
|
|
||||||
"value": "cool_fan_speed_max"
|
|
||||||
},
|
|
||||||
"bridge_enable_more_layers": {
|
|
||||||
"value": false
|
|
||||||
},
|
|
||||||
"bridge_skin_speed_2": {
|
|
||||||
"value": "speed_topbottom"
|
|
||||||
},
|
|
||||||
"bridge_skin_material_flow_2": {
|
|
||||||
"value": "skin_material_flow"
|
|
||||||
},
|
|
||||||
"bridge_skin_density_2": {
|
|
||||||
"value": 100
|
|
||||||
},
|
|
||||||
"bridge_fan_speed_2": {
|
|
||||||
"value": "cool_fan_speed_min"
|
|
||||||
},
|
|
||||||
"bridge_skin_speed_3": {
|
|
||||||
"value": "speed_topbottom"
|
|
||||||
},
|
|
||||||
"bridge_skin_material_flow_3": {
|
|
||||||
"value": "skin_material_flow"
|
|
||||||
},
|
|
||||||
"bridge_skin_density_3": {
|
|
||||||
"value": 100
|
|
||||||
},
|
|
||||||
"bridge_fan_speed_3": {
|
|
||||||
"value": "cool_fan_speed_min"
|
|
||||||
},
|
|
||||||
"jerk_print": {
|
|
||||||
"value": "20",
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_infill": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_wall": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_wall_0": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_roofing": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_topbottom": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_support": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_support_infill": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_support_interface": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_prime_tower": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_layer_0": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_print_layer_0": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_travel": {
|
|
||||||
"value": "jerk_print",
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_travel_layer_0": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"jerk_skirt_brim": {
|
|
||||||
"minimum_value_warning": 20
|
|
||||||
},
|
|
||||||
"support_wall_count": {
|
|
||||||
"value": "1 if support_structure == 'tree' else 0"
|
|
||||||
},
|
|
||||||
"zig_zaggify_support": {
|
|
||||||
"value": true
|
|
||||||
},
|
|
||||||
"support_infill_rate": {
|
|
||||||
"value": "0 if support_structure == 'tree' else 80 if gradual_support_infill_steps != 0 else 15"
|
|
||||||
},
|
|
||||||
"support_line_distance": {
|
|
||||||
"minimum_value_warning": "0 if support_structure == 'tree' else support_line_width"
|
|
||||||
},
|
|
||||||
"support_initial_layer_line_distance": {
|
|
||||||
"minimum_value_warning": "0 if support_structure == 'tree' else support_line_width"
|
|
||||||
},
|
|
||||||
"gradual_support_infill_steps": {
|
|
||||||
"value": "2 if support_interface_enable else 0"
|
|
||||||
},
|
|
||||||
"gradual_support_infill_step_height": {
|
|
||||||
"value": "4 * layer_height"
|
|
||||||
},
|
|
||||||
"raft_base_speed": {
|
|
||||||
"value": "raft_speed"
|
|
||||||
},
|
|
||||||
"raft_base_thickness": {
|
|
||||||
"value": "min(machine_nozzle_size * 0.75, 0.3)"
|
|
||||||
},
|
|
||||||
"raft_interface_fan_speed": {
|
|
||||||
"value": "(raft_base_fan_speed + raft_surface_fan_speed) / 2"
|
|
||||||
},
|
|
||||||
"raft_interface_line_width": {
|
|
||||||
"value": "(raft_base_line_width + raft_surface_line_width) / 2"
|
|
||||||
},
|
|
||||||
"raft_interface_speed": {
|
|
||||||
"value": "(raft_surface_speed + raft_base_speed) / 2"
|
|
||||||
},
|
|
||||||
"raft_interface_thickness": {
|
|
||||||
"value": "(raft_base_thickness + raft_surface_thickness) / 2"
|
|
||||||
},
|
|
||||||
"raft_speed": {
|
|
||||||
"value": 15
|
|
||||||
},
|
|
||||||
"raft_surface_fan_speed": {
|
|
||||||
"value": "cool_fan_speed"
|
|
||||||
},
|
|
||||||
"raft_surface_speed": {
|
|
||||||
"value": "speed_topbottom"
|
|
||||||
},
|
|
||||||
"support_interface_height": {
|
|
||||||
"value": "2 * layer_height"
|
|
||||||
},
|
|
||||||
"support_offset": {
|
|
||||||
"value": "support_xy_distance if support_interface_enable else 0"
|
|
||||||
},
|
|
||||||
"support_xy_distance": {
|
|
||||||
"value": "1"
|
|
||||||
},
|
|
||||||
"support_xy_distance_overhang": {
|
|
||||||
"value": "0.2"
|
|
||||||
},
|
|
||||||
"minimum_support_area": {
|
|
||||||
"value": "(2 + support_offset)**2"
|
|
||||||
},
|
|
||||||
"support_interface_skip_height": {
|
|
||||||
"value": "layer_height"
|
|
||||||
},
|
|
||||||
"support_interface_pattern": {
|
|
||||||
"value": "'concentric'"
|
|
||||||
},
|
|
||||||
"support_interface_offset": {
|
|
||||||
"value": "support_offset"
|
|
||||||
},
|
|
||||||
"support_use_towers": {
|
|
||||||
"value": false
|
|
||||||
},
|
|
||||||
"support_z_distance": {
|
|
||||||
"value": "0"
|
|
||||||
},
|
|
||||||
"top_bottom_pattern": {
|
|
||||||
"value": "'zigzag'"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -89,6 +89,15 @@
|
|||||||
},
|
},
|
||||||
"support_z_distance": {
|
"support_z_distance": {
|
||||||
"value": "0.1"
|
"value": "0.1"
|
||||||
|
},
|
||||||
|
"cool_fan_speed_0": {
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
"layer_height_0": {
|
||||||
|
"value": 0.3
|
||||||
|
},
|
||||||
|
"speed_slowdown_layers": {
|
||||||
|
"value": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -70,7 +70,6 @@
|
|||||||
"maximum_value": 260
|
"maximum_value": 260
|
||||||
},
|
},
|
||||||
"material_print_temperature_layer_0": {
|
"material_print_temperature_layer_0": {
|
||||||
"value": "material_print_temperature",
|
|
||||||
"maximum_value": 260
|
"maximum_value": 260
|
||||||
},
|
},
|
||||||
"machine_start_gcode": { "value": "''" },
|
"machine_start_gcode": { "value": "''" },
|
||||||
|
@ -82,7 +82,6 @@
|
|||||||
|
|
||||||
"prime_blob_enable": { "enabled": true, "default_value": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" },
|
"prime_blob_enable": { "enabled": true, "default_value": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" },
|
||||||
"acceleration_enabled": { "value": true },
|
"acceleration_enabled": { "value": true },
|
||||||
"acceleration_layer_0": { "value": "acceleration_topbottom" },
|
|
||||||
"acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
"acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
||||||
"acceleration_print": { "value": "3500" },
|
"acceleration_print": { "value": "3500" },
|
||||||
"acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
"acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
||||||
@ -91,21 +90,17 @@
|
|||||||
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
|
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
|
||||||
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 3500)" },
|
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 3500)" },
|
||||||
"brim_width": { "value": "3" },
|
"brim_width": { "value": "3" },
|
||||||
"cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" },
|
|
||||||
"cool_fan_speed": { "value": "50" },
|
"cool_fan_speed": { "value": "50" },
|
||||||
"cool_fan_speed_max": { "value": "100" },
|
"cool_fan_speed_max": { "value": "100" },
|
||||||
"cool_min_speed": { "value": "5" },
|
"cool_min_speed": { "value": "5" },
|
||||||
"infill_overlap": { "value": "0" },
|
"infill_overlap": { "value": "0" },
|
||||||
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
|
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
|
||||||
"infill_wipe_dist": { "value": "0" },
|
"infill_wipe_dist": { "value": "0" },
|
||||||
"initial_layer_line_width_factor": { "value": "120" },
|
|
||||||
"jerk_enabled": { "value": "True" },
|
"jerk_enabled": { "value": "True" },
|
||||||
"layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" },
|
|
||||||
"layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" },
|
"layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" },
|
||||||
"layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" },
|
"layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" },
|
||||||
"machine_min_cool_heat_time_window": { "value": "15" },
|
"machine_min_cool_heat_time_window": { "value": "15" },
|
||||||
"default_material_print_temperature": { "value": "200" },
|
"default_material_print_temperature": { "value": "200" },
|
||||||
"material_print_temperature_layer_0": { "value": "material_print_temperature + 5" },
|
|
||||||
"material_bed_temperature": { "maximum_value": "115" },
|
"material_bed_temperature": { "maximum_value": "115" },
|
||||||
"material_bed_temperature_layer_0": { "maximum_value": "115" },
|
"material_bed_temperature_layer_0": { "maximum_value": "115" },
|
||||||
"multiple_mesh_overlap": { "value": "0" },
|
"multiple_mesh_overlap": { "value": "0" },
|
||||||
@ -118,7 +113,6 @@
|
|||||||
"retraction_min_travel": { "value": "5" },
|
"retraction_min_travel": { "value": "5" },
|
||||||
"retraction_prime_speed": { "value": "15" },
|
"retraction_prime_speed": { "value": "15" },
|
||||||
"skin_overlap": { "value": "10" },
|
"skin_overlap": { "value": "10" },
|
||||||
"speed_layer_0": { "value": "20" },
|
|
||||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
"speed_prime_tower": { "value": "speed_topbottom" },
|
||||||
"speed_print": { "value": "35" },
|
"speed_print": { "value": "35" },
|
||||||
"speed_support": { "value": "speed_wall_0" },
|
"speed_support": { "value": "speed_wall_0" },
|
||||||
|
@ -62,6 +62,15 @@
|
|||||||
},
|
},
|
||||||
"infill_before_walls": {
|
"infill_before_walls": {
|
||||||
"value": "False"
|
"value": "False"
|
||||||
|
},
|
||||||
|
"cool_fan_speed_0": {
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
"layer_height_0": {
|
||||||
|
"value": 0.3
|
||||||
|
},
|
||||||
|
"speed_slowdown_layers": {
|
||||||
|
"value": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -74,8 +74,6 @@
|
|||||||
"maximum_value": "150",
|
"maximum_value": "150",
|
||||||
"value": "150"
|
"value": "150"
|
||||||
},
|
},
|
||||||
|
|
||||||
"acceleration_layer_0": { "value": "acceleration_topbottom" },
|
|
||||||
"acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
"acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
||||||
"acceleration_print": { "value": "3500" },
|
"acceleration_print": { "value": "3500" },
|
||||||
"acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
"acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
||||||
@ -84,7 +82,6 @@
|
|||||||
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
|
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
|
||||||
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" },
|
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" },
|
||||||
"brim_width": { "value": "3" },
|
"brim_width": { "value": "3" },
|
||||||
"cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" },
|
|
||||||
"cool_fan_speed": { "value": "50" },
|
"cool_fan_speed": { "value": "50" },
|
||||||
"cool_fan_speed_max": { "value": "100" },
|
"cool_fan_speed_max": { "value": "100" },
|
||||||
"cool_min_speed": { "value": "5" },
|
"cool_min_speed": { "value": "5" },
|
||||||
@ -92,7 +89,6 @@
|
|||||||
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
|
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
|
||||||
"infill_wipe_dist": { "value": "0" },
|
"infill_wipe_dist": { "value": "0" },
|
||||||
"jerk_enabled": { "value": "True" },
|
"jerk_enabled": { "value": "True" },
|
||||||
"layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" },
|
|
||||||
"layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" },
|
"layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" },
|
||||||
"layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" },
|
"layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" },
|
||||||
"machine_min_cool_heat_time_window": { "value": "15" },
|
"machine_min_cool_heat_time_window": { "value": "15" },
|
||||||
@ -108,7 +104,6 @@
|
|||||||
"retraction_prime_speed": { "value": "15" },
|
"retraction_prime_speed": { "value": "15" },
|
||||||
"retraction_speed": {"value": "45" },
|
"retraction_speed": {"value": "45" },
|
||||||
"skin_overlap": { "value": "10" },
|
"skin_overlap": { "value": "10" },
|
||||||
"speed_layer_0": { "value": "20" },
|
|
||||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
"speed_prime_tower": { "value": "speed_topbottom" },
|
||||||
"speed_print": { "value": "35" },
|
"speed_print": { "value": "35" },
|
||||||
"speed_support": { "value": "speed_wall_0" },
|
"speed_support": { "value": "speed_wall_0" },
|
||||||
@ -123,7 +118,6 @@
|
|||||||
"top_bottom_thickness": { "value": "1" },
|
"top_bottom_thickness": { "value": "1" },
|
||||||
"travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" },
|
"travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" },
|
||||||
"wall_0_inset": { "value": "0" },
|
"wall_0_inset": { "value": "0" },
|
||||||
"initial_layer_line_width_factor": { "value": "120" },
|
|
||||||
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }
|
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,7 +77,6 @@
|
|||||||
"value": "150"
|
"value": "150"
|
||||||
},
|
},
|
||||||
"acceleration_enabled": { "value": true },
|
"acceleration_enabled": { "value": true },
|
||||||
"acceleration_layer_0": { "value": "acceleration_topbottom" },
|
|
||||||
"acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
"acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
||||||
"acceleration_print": { "value": "3500" },
|
"acceleration_print": { "value": "3500" },
|
||||||
"acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
"acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" },
|
||||||
@ -86,7 +85,6 @@
|
|||||||
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
|
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
|
||||||
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" },
|
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" },
|
||||||
"brim_width": { "value": "3" },
|
"brim_width": { "value": "3" },
|
||||||
"cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" },
|
|
||||||
"cool_fan_speed": { "value": "50" },
|
"cool_fan_speed": { "value": "50" },
|
||||||
"cool_fan_speed_max": { "value": "100" },
|
"cool_fan_speed_max": { "value": "100" },
|
||||||
"cool_min_speed": { "value": "5" },
|
"cool_min_speed": { "value": "5" },
|
||||||
@ -94,7 +92,6 @@
|
|||||||
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
|
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
|
||||||
"infill_wipe_dist": { "value": "0" },
|
"infill_wipe_dist": { "value": "0" },
|
||||||
"jerk_enabled": { "value": "True" },
|
"jerk_enabled": { "value": "True" },
|
||||||
"layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" },
|
|
||||||
"layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" },
|
"layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" },
|
||||||
"layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" },
|
"layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" },
|
||||||
"machine_min_cool_heat_time_window": { "value": "15" },
|
"machine_min_cool_heat_time_window": { "value": "15" },
|
||||||
@ -110,7 +107,6 @@
|
|||||||
"retraction_prime_speed": { "value": "15" },
|
"retraction_prime_speed": { "value": "15" },
|
||||||
"retraction_speed": {"value": "45" },
|
"retraction_speed": {"value": "45" },
|
||||||
"skin_overlap": { "value": "10" },
|
"skin_overlap": { "value": "10" },
|
||||||
"speed_layer_0": { "value": "20" },
|
|
||||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
"speed_prime_tower": { "value": "speed_topbottom" },
|
||||||
"speed_print": { "value": "35" },
|
"speed_print": { "value": "35" },
|
||||||
"speed_support": { "value": "speed_wall_0" },
|
"speed_support": { "value": "speed_wall_0" },
|
||||||
@ -126,7 +122,6 @@
|
|||||||
"travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" },
|
"travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" },
|
||||||
"wall_0_inset": { "value": "0" },
|
"wall_0_inset": { "value": "0" },
|
||||||
"optimize_wall_printing_order": { "value": "True" },
|
"optimize_wall_printing_order": { "value": "True" },
|
||||||
"initial_layer_line_width_factor": { "value": "120" },
|
|
||||||
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" },
|
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" },
|
||||||
"build_volume_temperature": { "maximum_value": 50 }
|
"build_volume_temperature": { "maximum_value": 50 }
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2020-02-20 17:30+0100\n"
|
"PO-Revision-Date: 2020-02-20 17:30+0100\n"
|
||||||
"Last-Translator: DenyCZ <www.github.com/DenyCZ>\n"
|
"Last-Translator: DenyCZ <www.github.com/DenyCZ>\n"
|
||||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||||
@ -17,212 +17,212 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.3\n"
|
"X-Generator: Poedit 2.3\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Zařízení"
|
msgstr "Zařízení"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Specifické nastavení pro zařízení"
|
msgstr "Specifické nastavení pro zařízení"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extruder"
|
msgstr "Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "Vytlačovací stroj byl použit pro tisknutí. Toto je používáno při vícenásobné extruzi."
|
msgstr "Vytlačovací stroj byl použit pro tisknutí. Toto je používáno při vícenásobné extruzi."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "ID trysky"
|
msgstr "ID trysky"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "ID trysky pro vytlačovací stroj, např. \"AA 0.4\" nebo \"BB 0.8\"."
|
msgstr "ID trysky pro vytlačovací stroj, např. \"AA 0.4\" nebo \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Průměr trysky"
|
msgstr "Průměr trysky"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
||||||
msgstr "Vnitřní průměr trysky. Změňte toto nastavení pokud používáte nestandardní velikost trysky."
|
msgstr "Vnitřní průměr trysky. Změňte toto nastavení pokud používáte nestandardní velikost trysky."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "X offset trysky"
|
msgstr "X offset trysky"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "X-ová souřadnice offsetu trysky."
|
msgstr "X-ová souřadnice offsetu trysky."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Y offset trysky"
|
msgstr "Y offset trysky"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "Y-ová souřadnice offsetu trysky."
|
msgstr "Y-ová souřadnice offsetu trysky."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Počáteční G kód extruderu"
|
msgstr "Počáteční G kód extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Spusťte g-kód, který se má provést při přepnutí na tento extrudér."
|
msgstr "Spusťte g-kód, který se má provést při přepnutí na tento extrudér."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Absolutní počáteční pozice extruderu"
|
msgstr "Absolutní počáteční pozice extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Udělejte počáteční pozici extrudéru absolutně, nikoli relativně k poslednímu známému umístění hlavy."
|
msgstr "Udělejte počáteční pozici extrudéru absolutně, nikoli relativně k poslednímu známému umístění hlavy."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Počáteční pozice extruderu X"
|
msgstr "Počáteční pozice extruderu X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Souřadnice x počáteční pozice při zapnutí extrudéru."
|
msgstr "Souřadnice x počáteční pozice při zapnutí extrudéru."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Počáteční pozice extruderu Y"
|
msgstr "Počáteční pozice extruderu Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Souřadnice y počáteční pozice při zapnutí extrudéru."
|
msgstr "Souřadnice y počáteční pozice při zapnutí extrudéru."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Ukončující G kód extruderu"
|
msgstr "Ukončující G kód extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Ukončete g-kód, který se má provést při odpojení od tohoto extrudéru."
|
msgstr "Ukončete g-kód, který se má provést při odpojení od tohoto extrudéru."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Absolutní finální pozice extruderu"
|
msgstr "Absolutní finální pozice extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Koncovou polohu extruderu udělejte absolutně, nikoliv relativně k poslednímu známému umístění hlavy."
|
msgstr "Koncovou polohu extruderu udělejte absolutně, nikoliv relativně k poslednímu známému umístění hlavy."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Konečná pozice X extruderu"
|
msgstr "Konečná pozice X extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Souřadnice x koncové polohy při vypnutí extrudéru."
|
msgstr "Souřadnice x koncové polohy při vypnutí extrudéru."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Konečná pozice Y extruderu"
|
msgstr "Konečná pozice Y extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Souřadnice y koncové polohy při vypnutí extrudéru."
|
msgstr "Souřadnice y koncové polohy při vypnutí extrudéru."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "První Z pozice extruderu"
|
msgstr "První Z pozice extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Souřadnice Z pozice, ve které tryska naplní tlak na začátku tisku."
|
msgstr "Souřadnice Z pozice, ve které tryska naplní tlak na začátku tisku."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Chladič extruderu"
|
msgstr "Chladič extruderu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
||||||
msgstr "Číslo ventilátoru chlazení tisku přidruženého k tomuto extrudéru. Tuto změnu změňte pouze z výchozí hodnoty 0, pokud máte pro každý extrudér jiný ventilátor chlazení tisku."
|
msgstr "Číslo ventilátoru chlazení tisku přidruženého k tomuto extrudéru. Tuto změnu změňte pouze z výchozí hodnoty 0, pokud máte pro každý extrudér jiný ventilátor chlazení tisku."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Adheze topné podložky"
|
msgstr "Adheze topné podložky"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Adheze"
|
msgstr "Adheze"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Primární pozice extruderu X"
|
msgstr "Primární pozice extruderu X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Souřadnice X polohy, ve které tryska naplní tlak na začátku tisku."
|
msgstr "Souřadnice X polohy, ve které tryska naplní tlak na začátku tisku."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Primární pozice extruderu Y"
|
msgstr "Primární pozice extruderu Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Souřadnice Y polohy, ve které tryska naplní tlak na začátku tisku."
|
msgstr "Souřadnice Y polohy, ve které tryska naplní tlak na začátku tisku."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiál"
|
msgstr "Materiál"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiál"
|
msgstr "Materiál"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Průměr"
|
msgstr "Průměr"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
||||||
msgstr "Nastavuje průměr použitého vlákna filamentu. Srovnejte tuto hodnotu s průměrem použitého vlákna."
|
msgstr "Nastavuje průměr použitého vlákna filamentu. Srovnejte tuto hodnotu s průměrem použitého vlákna."
|
||||||
|
File diff suppressed because it is too large
Load Diff
11012
resources/i18n/cura.pot
11012
resources/i18n/cura.pot
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,232 +4,239 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: de_DE\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 3.1.1\n"
|
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Gerät"
|
msgstr "Gerät"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Gerätespezifische Einstellungen"
|
msgstr "Gerätespezifische Einstellungen"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extruder"
|
msgstr "Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
|
msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "Düsen-ID"
|
msgstr "Düsen-ID"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“."
|
msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Düsendurchmesser"
|
msgstr "Düsendurchmesser"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden."
|
msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "X-Versatz Düse"
|
msgstr "X-Versatz Düse"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "Die X-Koordinate des Düsenversatzes."
|
msgstr "Die X-Koordinate des Düsenversatzes."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Y-Versatz Düse"
|
msgstr "Y-Versatz Düse"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "Die Y-Koordinate des Düsenversatzes."
|
msgstr "Die Y-Koordinate des Düsenversatzes."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "G-Code Extruder-Start"
|
msgstr "G-Code Extruder-Start"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten."
|
msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Absolute Startposition des Extruders"
|
msgstr "Absolute Startposition des Extruders"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition."
|
msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "X-Position Extruder-Start"
|
msgstr "X-Position Extruder-Start"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders."
|
msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Y-Position Extruder-Start"
|
msgstr "Y-Position Extruder-Start"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders."
|
msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "G-Code Extruder-Ende"
|
msgstr "G-Code Extruder-Ende"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden."
|
msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Absolute Extruder-Endposition"
|
msgstr "Absolute Extruder-Endposition"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition."
|
msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Extruder-Endposition X"
|
msgstr "Extruder-Endposition X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders."
|
msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Extruder-Endposition Y"
|
msgstr "Extruder-Endposition Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders."
|
msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Z-Position Extruder-Einzug"
|
msgstr "Z-Position Extruder-Einzug"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
|
msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Drucklüfter Extruder"
|
msgstr "Drucklüfter Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden."
|
msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Druckplattenhaftung"
|
msgstr "Druckplattenhaftung"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Haftung"
|
msgstr "Haftung"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "X-Position Extruder-Einzug"
|
msgstr "X-Position Extruder-Einzug"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
|
msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Y-Position Extruder-Einzug"
|
msgstr "Y-Position Extruder-Einzug"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
|
msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Durchmesser"
|
msgstr "Durchmesser"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein."
|
msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "Starten Sie den G-Code jedes Mal, wenn Sie den Extruder einschalten."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "Beenden Sie den G-Code jedes Mal, wenn Sie den Extruder ausschalten."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,232 +4,240 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: es_ES\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 3.1.1\n"
|
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Máquina"
|
msgstr "Máquina"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Ajustes específicos de la máquina"
|
msgstr "Ajustes específicos de la máquina"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extrusor"
|
msgstr "Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple."
|
msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "Id. de la tobera"
|
msgstr "Id. de la tobera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"."
|
msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Diámetro de la tobera"
|
msgstr "Diámetro de la tobera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar."
|
msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Desplazamiento de la tobera sobre el eje X"
|
msgstr "Desplazamiento de la tobera sobre el eje X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "Coordenada X del desplazamiento de la tobera."
|
msgstr "Coordenada X del desplazamiento de la tobera."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Desplazamiento de la tobera sobre el eje Y"
|
msgstr "Desplazamiento de la tobera sobre el eje Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "Coordenada Y del desplazamiento de la tobera."
|
msgstr "Coordenada Y del desplazamiento de la tobera."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "GCode inicial del extrusor"
|
msgstr "GCode inicial del extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor."
|
msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Posición de inicio absoluta del extrusor"
|
msgstr "Posición de inicio absoluta del extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal."
|
msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Posición de inicio del extrusor sobre el eje X"
|
msgstr "Posición de inicio del extrusor sobre el eje X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor."
|
msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Posición de inicio del extrusor sobre el eje Y"
|
msgstr "Posición de inicio del extrusor sobre el eje Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor."
|
msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "GCode final del extrusor"
|
msgstr "GCode final del extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor."
|
msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Posición final absoluta del extrusor"
|
msgstr "Posición final absoluta del extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal."
|
msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Posición de fin del extrusor sobre el eje X"
|
msgstr "Posición de fin del extrusor sobre el eje X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor."
|
msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Posición de fin del extrusor sobre el eje Y"
|
msgstr "Posición de fin del extrusor sobre el eje Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor."
|
msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Posición de preparación del extrusor sobre el eje Z"
|
msgstr "Posición de preparación del extrusor sobre el eje Z"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión."
|
msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Ventilador de refrigeración de impresión del extrusor"
|
msgstr "Ventilador de refrigeración de impresión del extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor."
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
|
msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de"
|
||||||
|
" refrigeración de impresión diferente para cada extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Adherencia de la placa de impresión"
|
msgstr "Adherencia de la placa de impresión"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Adherencia"
|
msgstr "Adherencia"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Posición de preparación del extrusor sobre el eje X"
|
msgstr "Posición de preparación del extrusor sobre el eje X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión."
|
msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Posición de preparación del extrusor sobre el eje Y"
|
msgstr "Posición de preparación del extrusor sobre el eje Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión."
|
msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Diámetro"
|
msgstr "Diámetro"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado."
|
msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "Gcode inicial que se ejecuta cada vez que se enciende el extrusor."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "Gcode final que se ejecuta cada vez que se apaga el extrusor."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -11,170 +11,170 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"The inner diameter of the nozzle. Change this setting when using a non-"
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
"standard nozzle size."
|
"standard nozzle size."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Make the extruder starting position absolute rather than relative to the "
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
"last-known location of the head."
|
"last-known location of the head."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Make the extruder ending position absolute rather than relative to the last-"
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
"known location of the head."
|
"known location of the head."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Z coordinate of the position where the nozzle primes at the start of "
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
"printing."
|
"printing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"The number of the print cooling fan associated with this extruder. Only "
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
@ -182,56 +182,56 @@ msgid ""
|
|||||||
"cooling fan for each extruder."
|
"cooling fan for each extruder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"The X coordinate of the position where the nozzle primes at the start of "
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
"printing."
|
"printing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Y coordinate of the position where the nozzle primes at the start of "
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
"printing."
|
"printing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Adjusts the diameter of the filament used. Match this value with the "
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
||||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
@ -16,212 +16,212 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 3.1.1\n"
|
"X-Generator: Poedit 3.1.1\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Laite"
|
msgstr "Laite"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Laitekohtaiset asetukset"
|
msgstr "Laitekohtaiset asetukset"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Suulake"
|
msgstr "Suulake"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "Tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
|
msgstr "Tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "Suuttimen tunnus"
|
msgstr "Suuttimen tunnus"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"."
|
msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Suuttimen halkaisija"
|
msgstr "Suuttimen halkaisija"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
||||||
msgstr "Suuttimen sisähalkaisija. Muuta tätä asetusta, kun käytössä on muu kuin vakiokokoinen suutin."
|
msgstr "Suuttimen sisähalkaisija. Muuta tätä asetusta, kun käytössä on muu kuin vakiokokoinen suutin."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Suuttimen X-siirtymä"
|
msgstr "Suuttimen X-siirtymä"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "Suuttimen siirtymän X-koordinaatti."
|
msgstr "Suuttimen siirtymän X-koordinaatti."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Suuttimen Y-siirtymä"
|
msgstr "Suuttimen Y-siirtymä"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "Suuttimen siirtymän Y-koordinaatti."
|
msgstr "Suuttimen siirtymän Y-koordinaatti."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Suulakkeen aloitus-GCode"
|
msgstr "Suulakkeen aloitus-GCode"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Suulakkeen aloitussijainti absoluuttinen"
|
msgstr "Suulakkeen aloitussijainti absoluuttinen"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Tekee suulakkeen aloitussijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden."
|
msgstr "Tekee suulakkeen aloitussijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Suulakkeen aloitussijainti X"
|
msgstr "Suulakkeen aloitussijainti X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Aloitussijainnin X-koordinaatti suulaketta käynnistettäessä."
|
msgstr "Aloitussijainnin X-koordinaatti suulaketta käynnistettäessä."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Suulakkeen aloitussijainti Y"
|
msgstr "Suulakkeen aloitussijainti Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Aloitussijainnin Y-koordinaatti suulaketta käynnistettäessä."
|
msgstr "Aloitussijainnin Y-koordinaatti suulaketta käynnistettäessä."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Suulakkeen lopetus-GCode"
|
msgstr "Suulakkeen lopetus-GCode"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Suulakkeen lopetussijainti absoluuttinen"
|
msgstr "Suulakkeen lopetussijainti absoluuttinen"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Tekee suulakkeen lopetussijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden."
|
msgstr "Tekee suulakkeen lopetussijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Suulakkeen lopetussijainti X"
|
msgstr "Suulakkeen lopetussijainti X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Lopetussijainnin X-koordinaatti, kun suulake poistetaan käytöstä."
|
msgstr "Lopetussijainnin X-koordinaatti, kun suulake poistetaan käytöstä."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Suulakkeen lopetussijainti Y"
|
msgstr "Suulakkeen lopetussijainti Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Lopetussijainnin Y-koordinaatti, kun suulake poistetaan käytöstä."
|
msgstr "Lopetussijainnin Y-koordinaatti, kun suulake poistetaan käytöstä."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Suulakkeen esitäytön Z-sijainti"
|
msgstr "Suulakkeen esitäytön Z-sijainti"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
|
msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Alustan tarttuvuus"
|
msgstr "Alustan tarttuvuus"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Tarttuvuus"
|
msgstr "Tarttuvuus"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Suulakkeen esitäytön X-sijainti"
|
msgstr "Suulakkeen esitäytön X-sijainti"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
|
msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Suulakkeen esitäytön Y-sijainti"
|
msgstr "Suulakkeen esitäytön Y-sijainti"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
|
msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,231 +4,240 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Machine"
|
msgstr "Machine"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Paramètres spécifiques de la machine"
|
msgstr "Paramètres spécifiques de la machine"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extrudeuse"
|
msgstr "Extrudeuse"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion."
|
msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "ID buse"
|
msgstr "ID buse"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »."
|
msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Diamètre de la buse"
|
msgstr "Diamètre de la buse"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard."
|
msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Buse Décalage X"
|
msgstr "Buse Décalage X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "Les coordonnées X du décalage de la buse."
|
msgstr "Les coordonnées X du décalage de la buse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Buse Décalage Y"
|
msgstr "Buse Décalage Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "Les coordonnées Y du décalage de la buse."
|
msgstr "Les coordonnées Y du décalage de la buse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Extrudeuse G-Code de démarrage"
|
msgstr "Extrudeuse G-Code de démarrage"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse."
|
msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Extrudeuse Position de départ absolue"
|
msgstr "Extrudeuse Position de départ absolue"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête."
|
msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Extrudeuse Position de départ X"
|
msgstr "Extrudeuse Position de départ X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse."
|
msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Extrudeuse Position de départ Y"
|
msgstr "Extrudeuse Position de départ Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse."
|
msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Extrudeuse G-Code de fin"
|
msgstr "Extrudeuse G-Code de fin"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse."
|
msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Extrudeuse Position de fin absolue"
|
msgstr "Extrudeuse Position de fin absolue"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête."
|
msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Extrudeuse Position de fin X"
|
msgstr "Extrudeuse Position de fin X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse."
|
msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Extrudeuse Position de fin Y"
|
msgstr "Extrudeuse Position de fin Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse."
|
msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Extrudeuse Position d'amorçage Z"
|
msgstr "Extrudeuse Position d'amorçage Z"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression."
|
msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse"
|
msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse."
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
|
msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si"
|
||||||
|
" vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Adhérence du plateau"
|
msgstr "Adhérence du plateau"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Adhérence"
|
msgstr "Adhérence"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Extrudeuse Position d'amorçage X"
|
msgstr "Extrudeuse Position d'amorçage X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression."
|
msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Extrudeuse Position d'amorçage Y"
|
msgstr "Extrudeuse Position d'amorçage Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression."
|
msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Matériau"
|
msgstr "Matériau"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Matériau"
|
msgstr "Matériau"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Diamètre"
|
msgstr "Diamètre"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé."
|
msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "G-Code de démarrage à exécuter à chaque mise en marche de l'extrudeuse."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "G-Code de fin à exécuter à chaque arrêt de l'extrudeuse."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2020-03-24 09:27+0100\n"
|
"PO-Revision-Date: 2020-03-24 09:27+0100\n"
|
||||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||||
"Language-Team: AT-VLOG\n"
|
"Language-Team: AT-VLOG\n"
|
||||||
@ -17,212 +17,212 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 2.2.4\n"
|
"X-Generator: Poedit 2.2.4\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Gép"
|
msgstr "Gép"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Gép specifikus beállítások"
|
msgstr "Gép specifikus beállítások"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extruder"
|
msgstr "Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "A nyomtatáshoz extruder szerelvényt használ. Több extrudernél használatos."
|
msgstr "A nyomtatáshoz extruder szerelvényt használ. Több extrudernél használatos."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "Fúvóka ID"
|
msgstr "Fúvóka ID"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "A fúvóka ID az extruder szerelvényben, mint a \"AA 0.4\" and \"BB 0.8\"."
|
msgstr "A fúvóka ID az extruder szerelvényben, mint a \"AA 0.4\" and \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Fúvóka átmérő"
|
msgstr "Fúvóka átmérő"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
||||||
msgstr "A fúvóka belső átmérője. Akkor változtasd meg ezt az értéket, ha nem szabványos méretű fúvókát használsz."
|
msgstr "A fúvóka belső átmérője. Akkor változtasd meg ezt az értéket, ha nem szabványos méretű fúvókát használsz."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Fúvóka X eltolás"
|
msgstr "Fúvóka X eltolás"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "A fúvóka eltolásának mértéke az X koordináta irányában."
|
msgstr "A fúvóka eltolásának mértéke az X koordináta irányában."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Fúvóka Y eltolás"
|
msgstr "Fúvóka Y eltolás"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "A fúvóka eltolásának mértéke az Y koordináta irányában."
|
msgstr "A fúvóka eltolásának mértéke az Y koordináta irányában."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Kezdő G-Code az extruderhez"
|
msgstr "Kezdő G-Code az extruderhez"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Ez a kezdeti g-code akkor kerül végrehajtásra, ha az extruder bekapcsol."
|
msgstr "Ez a kezdeti g-code akkor kerül végrehajtásra, ha az extruder bekapcsol."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Extruder Abszolút Indulási Helyzet"
|
msgstr "Extruder Abszolút Indulási Helyzet"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Az extruder abszolút kezdeti helyzete helyett a fej utolsó ismert helyzetét használja."
|
msgstr "Az extruder abszolút kezdeti helyzete helyett a fej utolsó ismert helyzetét használja."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Extruder kezdő X helyzet"
|
msgstr "Extruder kezdő X helyzet"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "A kezdeti X koordináta, mikor az extrudert bekapcsoljuk."
|
msgstr "A kezdeti X koordináta, mikor az extrudert bekapcsoljuk."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Extruder kezdő Y helyzete"
|
msgstr "Extruder kezdő Y helyzete"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "A kezdeti Y koordináta, mikor az extrudert bekapcsoljuk."
|
msgstr "A kezdeti Y koordináta, mikor az extrudert bekapcsoljuk."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Záró G-Code az extruderhez"
|
msgstr "Záró G-Code az extruderhez"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Ez a G-Code akkor kerül végrehajtásra, mikor az extruder kikapcsol."
|
msgstr "Ez a G-Code akkor kerül végrehajtásra, mikor az extruder kikapcsol."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Extruder abszolút vég pozíció"
|
msgstr "Extruder abszolút vég pozíció"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Legyen az extruder végállása az abszolút helyzet helyett, az utolsó ismert fej pozíció."
|
msgstr "Legyen az extruder végállása az abszolút helyzet helyett, az utolsó ismert fej pozíció."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Extruder X végállása"
|
msgstr "Extruder X végállása"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "A befejező X koordináta, mikor az extruder kikapcsol."
|
msgstr "A befejező X koordináta, mikor az extruder kikapcsol."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Extruder Y végállása"
|
msgstr "Extruder Y végállása"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "A befejező Y koordináta, mikor az extruder kikapcsol."
|
msgstr "A befejező Y koordináta, mikor az extruder kikapcsol."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Az extruder Elsődleges Z Pozíciója"
|
msgstr "Az extruder Elsődleges Z Pozíciója"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Az az elsődleges Z helyzet, ahol a fúvóka a nyomtatást kezdi."
|
msgstr "Az az elsődleges Z helyzet, ahol a fúvóka a nyomtatást kezdi."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Extruder hűtőventilátor"
|
msgstr "Extruder hűtőventilátor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
||||||
msgstr "Az extruderekhez társított nyomtatási hűtőventilátor száma.Csak akkor változtassa meg ezt az alapértelmezett 0-tól, ha minden extruder számára külön nyomtatási hűtőventilátor van."
|
msgstr "Az extruderekhez társított nyomtatási hűtőventilátor száma.Csak akkor változtassa meg ezt az alapértelmezett 0-tól, ha minden extruder számára külön nyomtatási hűtőventilátor van."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Tárgyasztal tapadása"
|
msgstr "Tárgyasztal tapadása"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Tapadás"
|
msgstr "Tapadás"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Az Extruder Elsődleges X Pozíciója"
|
msgstr "Az Extruder Elsődleges X Pozíciója"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Az az X koordináta, ahol a fúvóka a nyomtatást kezdi."
|
msgstr "Az az X koordináta, ahol a fúvóka a nyomtatást kezdi."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Az Extruder Elsődleges Y Pozíciója"
|
msgstr "Az Extruder Elsődleges Y Pozíciója"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Az az Y koordináta, ahol a fúvóka a nyomtatást kezdi."
|
msgstr "Az az Y koordináta, ahol a fúvóka a nyomtatást kezdi."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Anyag"
|
msgstr "Anyag"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Anyag"
|
msgstr "Anyag"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Átmérő"
|
msgstr "Átmérő"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
||||||
msgstr "Szálátmérő beállítása. Egyeztesd a használt nyomtatószál átmérőjével."
|
msgstr "Szálátmérő beállítása. Egyeztesd a használt nyomtatószál átmérőjével."
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,231 +4,240 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Macchina"
|
msgstr "Macchina"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Impostazioni macchina specifiche"
|
msgstr "Impostazioni macchina specifiche"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Estrusore"
|
msgstr "Estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla."
|
msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "ID ugello"
|
msgstr "ID ugello"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"."
|
msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Diametro ugello"
|
msgstr "Diametro ugello"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard."
|
msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Offset X ugello"
|
msgstr "Offset X ugello"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "La coordinata y dell’offset dell’ugello."
|
msgstr "La coordinata y dell’offset dell’ugello."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Offset Y ugello"
|
msgstr "Offset Y ugello"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "La coordinata y dell’offset dell’ugello."
|
msgstr "La coordinata y dell’offset dell’ugello."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Codice G avvio estrusore"
|
msgstr "Codice G avvio estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Inizio codice G da eseguire quando si passa a questo estrusore."
|
msgstr "Inizio codice G da eseguire quando si passa a questo estrusore."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Assoluto posizione avvio estrusore"
|
msgstr "Assoluto posizione avvio estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina."
|
msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "X posizione avvio estrusore"
|
msgstr "X posizione avvio estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore."
|
msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Y posizione avvio estrusore"
|
msgstr "Y posizione avvio estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore."
|
msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Codice G fine estrusore"
|
msgstr "Codice G fine estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Fine codice G da eseguire quando si passa a questo estrusore."
|
msgstr "Fine codice G da eseguire quando si passa a questo estrusore."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Assoluto posizione fine estrusore"
|
msgstr "Assoluto posizione fine estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina."
|
msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Posizione X fine estrusore"
|
msgstr "Posizione X fine estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore."
|
msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Posizione Y fine estrusore"
|
msgstr "Posizione Y fine estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore."
|
msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Posizione Z innesco estrusore"
|
msgstr "Posizione Z innesco estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa."
|
msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Ventola di raffreddamento stampa estrusore"
|
msgstr "Ventola di raffreddamento stampa estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore."
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
|
msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento"
|
||||||
|
" diversa per ciascun estrusore."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Adesione piano di stampa"
|
msgstr "Adesione piano di stampa"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Adesione"
|
msgstr "Adesione"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Posizione X innesco estrusore"
|
msgstr "Posizione X innesco estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa."
|
msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Posizione Y innesco estrusore"
|
msgstr "Posizione Y innesco estrusore"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa."
|
msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiale"
|
msgstr "Materiale"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiale"
|
msgstr "Materiale"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Diametro"
|
msgstr "Diametro"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato."
|
msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "Codice G di avvio da eseguire ogniqualvolta si accende l’estrusore."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "Codice G di fine da eseguire ogniqualvolta si spegne l’estrusore."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,232 +4,239 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-15 11:12+0200\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: ja_JP\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 3.1.1\n"
|
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "プリンター"
|
msgstr "プリンター"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "プリンター詳細設定"
|
msgstr "プリンター詳細設定"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "エクストルーダー"
|
msgstr "エクストルーダー"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。"
|
msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "ノズルID"
|
msgstr "ノズルID"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。"
|
msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "ノズル内径"
|
msgstr "ノズル内径"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。"
|
msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Xノズルオフセット"
|
msgstr "Xノズルオフセット"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "ノズルのX軸のオフセット。"
|
msgstr "ノズルのX軸のオフセット。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Yノズルオフセット"
|
msgstr "Yノズルオフセット"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "ノズルのY軸のオフセット。"
|
msgstr "ノズルのY軸のオフセット。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "エクストルーダーがG-Codeを開始する"
|
msgstr "エクストルーダーがG-Codeを開始する"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。"
|
msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "エクストルーダーのスタート位置の絶対値"
|
msgstr "エクストルーダーのスタート位置の絶対値"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。"
|
msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "エクストルーダー スタート位置X"
|
msgstr "エクストルーダー スタート位置X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "エクストルーダーのX座標のスタート位置。"
|
msgstr "エクストルーダーのX座標のスタート位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "エクストルーダースタート位置Y"
|
msgstr "エクストルーダースタート位置Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "エクストルーダーのY座標のスタート位置。"
|
msgstr "エクストルーダーのY座標のスタート位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "エクストルーダーがG-Codeを終了する"
|
msgstr "エクストルーダーがG-Codeを終了する"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。"
|
msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "エクストルーダーのエンドポジションの絶対値"
|
msgstr "エクストルーダーのエンドポジションの絶対値"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。"
|
msgstr "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "エクストルーダーエンド位置X"
|
msgstr "エクストルーダーエンド位置X"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "エクストルーダーを切った際のX座標の最終位置。"
|
msgstr "エクストルーダーを切った際のX座標の最終位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "エクストルーダーエンド位置Y"
|
msgstr "エクストルーダーエンド位置Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "エクストルーダーを切った際のY座標の最終位置。"
|
msgstr "エクストルーダーを切った際のY座標の最終位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "エクストルーダーのZ座標"
|
msgstr "エクストルーダーのZ座標"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "印刷開始時にノズルがポジションを確認するZ座標。"
|
msgstr "印刷開始時にノズルがポジションを確認するZ座標。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "エクストルーダープリント冷却ファン"
|
msgstr "エクストルーダープリント冷却ファン"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。"
|
msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "ビルドプレート密着性"
|
msgstr "ビルドプレート密着性"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "密着性"
|
msgstr "密着性"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "エクストルーダープライムX位置"
|
msgstr "エクストルーダープライムX位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "プリント開始時のノズルの位置を表すX座標。"
|
msgstr "プリント開始時のノズルの位置を表すX座標。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "エクストルーダープライムY位置"
|
msgstr "エクストルーダープライムY位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "プリント開始時にノズル位置を表すY座標。"
|
msgstr "プリント開始時にノズル位置を表すY座標。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "マテリアル"
|
msgstr "マテリアル"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "マテリアル"
|
msgstr "マテリアル"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "直径"
|
msgstr "直径"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。"
|
msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。"
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "エクストルーダーを使う度にGコードを展開します。"
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "エクストルーダーを使用しないときにGコードを終了します。"
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,231 +4,239 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "기기"
|
msgstr "기기"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "기기 세부 설정"
|
msgstr "기기 세부 설정"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "익스트루더"
|
msgstr "익스트루더"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다."
|
msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "노즐 ID"
|
msgstr "노즐 ID"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID."
|
msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "노즐 직경"
|
msgstr "노즐 직경"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오."
|
msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "노즐 X 오프셋"
|
msgstr "노즐 X 오프셋"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "노즐 오프셋의 x 좌표."
|
msgstr "노즐 오프셋의 x 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "노즐 Y 오프셋"
|
msgstr "노즐 Y 오프셋"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "노즐 오프셋의 y 좌표."
|
msgstr "노즐 오프셋의 y 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "익스트루더 스타트 G 코드"
|
msgstr "익스트루더 스타트 G 코드"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오."
|
msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "익스트루더 시작 위치의 절대 값"
|
msgstr "익스트루더 시작 위치의 절대 값"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다."
|
msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "익스트루더 시작 X의 위치"
|
msgstr "익스트루더 시작 X의 위치"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "익스트루더를 켤 때 시작 위치의 x 좌표."
|
msgstr "익스트루더를 켤 때 시작 위치의 x 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "익스트루더 시작 위치 Y"
|
msgstr "익스트루더 시작 위치 Y"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "익스트루더를 켤 때 시작 위치의 y 좌표."
|
msgstr "익스트루더를 켤 때 시작 위치의 y 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "익스트루더 엔드 G 코드"
|
msgstr "익스트루더 엔드 G 코드"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오."
|
msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "익스트루더 끝 절대 위치"
|
msgstr "익스트루더 끝 절대 위치"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오."
|
msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "익스트루더 끝 X 위치"
|
msgstr "익스트루더 끝 X 위치"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "익스트루더를 끌 때 끝 위치의 x 좌표."
|
msgstr "익스트루더를 끌 때 끝 위치의 x 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "익스트루더 끝 Y 위치"
|
msgstr "익스트루더 끝 Y 위치"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "익스트루더를 끌 때 종료 위치의 y 좌표."
|
msgstr "익스트루더를 끌 때 종료 위치의 y 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "익스트루더 프라임 Z 위치"
|
msgstr "익스트루더 프라임 Z 위치"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다."
|
msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "익스트루더 프린팅 냉각 팬"
|
msgstr "익스트루더 프린팅 냉각 팬"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오."
|
msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "빌드 플레이트 고정"
|
msgstr "빌드 플레이트 고정"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "고정"
|
msgstr "고정"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "익스트루더 프라임 X 위치"
|
msgstr "익스트루더 프라임 X 위치"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표."
|
msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "익스트루더 프라임 Y 위치"
|
msgstr "익스트루더 프라임 Y 위치"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표."
|
msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "재료"
|
msgstr "재료"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "재료"
|
msgstr "재료"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "직경"
|
msgstr "직경"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다."
|
msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "익스트루더를 켤 때마다 실행할 스타드 g 코드."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "익스트루더를 끌 때마다 실행할 엔드 g 코드."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,231 +4,242 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Machine"
|
msgstr "Machine"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Instellingen van de machine"
|
msgstr "Instellingen van de machine"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extruder"
|
msgstr "Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer."
|
msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "Nozzle-ID"
|
msgstr "Nozzle-ID"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"."
|
msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Nozzlediameter"
|
msgstr "Nozzlediameter"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft."
|
msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "X-Offset Nozzle"
|
msgstr "X-Offset Nozzle"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "De X-coördinaat van de offset van de nozzle."
|
msgstr "De X-coördinaat van de offset van de nozzle."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Y-Offset Nozzle"
|
msgstr "Y-Offset Nozzle"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "De Y-coördinaat van de offset van de nozzle."
|
msgstr "De Y-coördinaat van de offset van de nozzle."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Start-G-code van Extruder"
|
msgstr "Start-G-code van Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld."
|
msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Absolute Startpositie Extruder"
|
msgstr "Absolute Startpositie Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop."
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
|
msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van"
|
||||||
|
" de printkop."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "X-startpositie Extruder"
|
msgstr "X-startpositie Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld."
|
msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Y-startpositie Extruder"
|
msgstr "Y-startpositie Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld."
|
msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Eind-G-code van Extruder"
|
msgstr "Eind-G-code van Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld."
|
msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Absolute Eindpositie Extruder"
|
msgstr "Absolute Eindpositie Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van de printkop."
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
|
msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van"
|
||||||
|
" de printkop."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "X-eindpositie Extruder"
|
msgstr "X-eindpositie Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld."
|
msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Y-eindpositie Extruder"
|
msgstr "Y-eindpositie Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld."
|
msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Z-positie voor Primen Extruder"
|
msgstr "Z-positie voor Primen Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen."
|
msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Printkoelventilator van extruder"
|
msgstr "Printkoelventilator van extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt."
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
|
msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator"
|
||||||
|
" hebt."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Hechting aan Platform"
|
msgstr "Hechting aan Platform"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Hechting"
|
msgstr "Hechting"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "X-positie voor Primen Extruder"
|
msgstr "X-positie voor Primen Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen."
|
msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Y-positie voor Primen Extruder"
|
msgstr "Y-positie voor Primen Extruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen."
|
msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiaal"
|
msgstr "Materiaal"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiaal"
|
msgstr "Materiaal"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Diameter"
|
msgstr "Diameter"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan."
|
msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "Start-g-code die wordt uitgevoerd wanneer de extruder wordt ingeschakeld."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "Eind-g-code die wordt uitgevoerd wanneer de extruder wordt uitgeschakeld."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||||
"Last-Translator: Mariusz 'Virgin71' Matłosz <matliks@gmail.com>\n"
|
"Last-Translator: Mariusz 'Virgin71' Matłosz <matliks@gmail.com>\n"
|
||||||
"Language-Team: reprapy.pl\n"
|
"Language-Team: reprapy.pl\n"
|
||||||
@ -17,212 +17,212 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 2.1.1\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Maszyna"
|
msgstr "Maszyna"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Specyficzne ustawienia maszyny"
|
msgstr "Specyficzne ustawienia maszyny"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Ekstruder"
|
msgstr "Ekstruder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "Ekstruder używany do drukowania. Ta opcja używana jest podczas multi-ekstruzji."
|
msgstr "Ekstruder używany do drukowania. Ta opcja używana jest podczas multi-ekstruzji."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "ID Dyszy"
|
msgstr "ID Dyszy"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"."
|
msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Średnica Dyszy"
|
msgstr "Średnica Dyszy"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
||||||
msgstr "Wewnętrzna średnica dyszy. Zmień to ustawienie kiedy używasz niestandardowego rozmiaru dyszy."
|
msgstr "Wewnętrzna średnica dyszy. Zmień to ustawienie kiedy używasz niestandardowego rozmiaru dyszy."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Przesunięcie X Dyszy"
|
msgstr "Przesunięcie X Dyszy"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "Współrzędna X przesunięcia dyszy."
|
msgstr "Współrzędna X przesunięcia dyszy."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Przesunięcie Y Dyszy"
|
msgstr "Przesunięcie Y Dyszy"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "Współrzędna Y przesunięcia dyszy."
|
msgstr "Współrzędna Y przesunięcia dyszy."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Początkowy G-code Ekstrudera"
|
msgstr "Początkowy G-code Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Początkowy G-code do wykonania przy przełączeniu na ten ekstruder."
|
msgstr "Początkowy G-code do wykonania przy przełączeniu na ten ekstruder."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Bezwzględna Pozycja Początkowa Ekstrudera"
|
msgstr "Bezwzględna Pozycja Początkowa Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Zmień pozycję początkową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy."
|
msgstr "Zmień pozycję początkową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Początkowa Pozycja X Ekstrudera"
|
msgstr "Początkowa Pozycja X Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Współrzędna X początkowej pozycji ekstrudera podczas jego włączania."
|
msgstr "Współrzędna X początkowej pozycji ekstrudera podczas jego włączania."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Początkowa Pozycja Y Ekstrudera"
|
msgstr "Początkowa Pozycja Y Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Współrzędna Y początkowej pozycji ekstrudera podczas jego włączania."
|
msgstr "Współrzędna Y początkowej pozycji ekstrudera podczas jego włączania."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Końcowy G-code Ekstrudera"
|
msgstr "Końcowy G-code Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Końcowy G-code do wykonania przy przełączeniu na ten ekstruder."
|
msgstr "Końcowy G-code do wykonania przy przełączeniu na ten ekstruder."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera"
|
msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy."
|
msgstr "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Końcowa Pozycja X Ekstrudera"
|
msgstr "Końcowa Pozycja X Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Współrzędna X końcowej pozycji ekstrudera podczas jego wyłączania."
|
msgstr "Współrzędna X końcowej pozycji ekstrudera podczas jego wyłączania."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Końcowa Pozycja Y Ekstrudera"
|
msgstr "Końcowa Pozycja Y Ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Współrzędna Y końcowej pozycji ekstrudera podczas jego wyłączania."
|
msgstr "Współrzędna Y końcowej pozycji ekstrudera podczas jego wyłączania."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Pozycja Z Czyszczenia Dyszy"
|
msgstr "Pozycja Z Czyszczenia Dyszy"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku."
|
msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Wentylator ekstrudera"
|
msgstr "Wentylator ekstrudera"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
||||||
msgstr "Numer wentylatora przypisanego do ekstrudera. Zmień z domyślnej wartości 0, tylko w przypadku, kiedy posiadasz oddzielny wentylator dla każdego ekstrudera."
|
msgstr "Numer wentylatora przypisanego do ekstrudera. Zmień z domyślnej wartości 0, tylko w przypadku, kiedy posiadasz oddzielny wentylator dla każdego ekstrudera."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Przyczepność do stołu"
|
msgstr "Przyczepność do stołu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Przyczepność"
|
msgstr "Przyczepność"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Pozycja X Czyszczenia Dyszy"
|
msgstr "Pozycja X Czyszczenia Dyszy"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku."
|
msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Pozycja Y Czyszczenia Dyszy"
|
msgstr "Pozycja Y Czyszczenia Dyszy"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku."
|
msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiał"
|
msgstr "Materiał"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Materiał"
|
msgstr "Materiał"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Średnica"
|
msgstr "Średnica"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
||||||
msgstr "Dostosuj średnicę użytego filamentu. Dopasuj tę wartość do średnicy używanego filamentu."
|
msgstr "Dostosuj średnicę użytego filamentu. Dopasuj tę wartość do średnicy używanego filamentu."
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2021-04-11 17:09+0200\n"
|
"PO-Revision-Date: 2021-04-11 17:09+0200\n"
|
||||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||||
@ -17,212 +17,212 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
"X-Generator: Poedit 2.4.1\n"
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Máquina"
|
msgstr "Máquina"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Ajustes específicos de máquina"
|
msgstr "Ajustes específicos de máquina"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extrusor"
|
msgstr "Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "O extrusor usado para impressão. Isto é usado em multi-extrusão."
|
msgstr "O extrusor usado para impressão. Isto é usado em multi-extrusão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "ID do Bico"
|
msgstr "ID do Bico"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "O identificador de bico para o carro extrusor, tal como \"AA 0.4\" e \"BB 0.8\"."
|
msgstr "O identificador de bico para o carro extrusor, tal como \"AA 0.4\" e \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Diâmetro do Bico"
|
msgstr "Diâmetro do Bico"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
||||||
msgstr "O diâmetro interno do bico. Altere este ajuste se usar um tamanho de bico fora do padrão."
|
msgstr "O diâmetro interno do bico. Altere este ajuste se usar um tamanho de bico fora do padrão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Deslocamento X do Bico"
|
msgstr "Deslocamento X do Bico"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "A coordenada X do deslocamento aplicado ao bico."
|
msgstr "A coordenada X do deslocamento aplicado ao bico."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Deslocamento Y do Bico"
|
msgstr "Deslocamento Y do Bico"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "A coordenada Y do deslocamento aplicado ao bico."
|
msgstr "A coordenada Y do deslocamento aplicado ao bico."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "G-Code Inicial do Extrusor"
|
msgstr "G-Code Inicial do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "G-Code inicial a executar quando mudar para este extrusor."
|
msgstr "G-Code inicial a executar quando mudar para este extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Posição Absoluta de Início do Extrusor"
|
msgstr "Posição Absoluta de Início do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Faz a posição de início do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão."
|
msgstr "Faz a posição de início do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Posição X de Início do Extrusor"
|
msgstr "Posição X de Início do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "A coordenada X da posição de início quando se liga o extrusor."
|
msgstr "A coordenada X da posição de início quando se liga o extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Posição Y de Início do Extrusor"
|
msgstr "Posição Y de Início do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "A coordenada Y da posição de início quando se liga o extrusor."
|
msgstr "A coordenada Y da posição de início quando se liga o extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "G-Code Final do Extrusor"
|
msgstr "G-Code Final do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "G-Code final a executar quando mudar deste extrusor para outro."
|
msgstr "G-Code final a executar quando mudar deste extrusor para outro."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Posição Absoluta Final do Extrusor"
|
msgstr "Posição Absoluta Final do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "Faz a posição final do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão."
|
msgstr "Faz a posição final do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Posição X Final do Extrusor"
|
msgstr "Posição X Final do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "A coordenada X da posição final do extrusor quando se o desliga."
|
msgstr "A coordenada X da posição final do extrusor quando se o desliga."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Posição Y Final do Extrusor"
|
msgstr "Posição Y Final do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "A coordenada Y da posição final do extrusor quando se o desliga."
|
msgstr "A coordenada Y da posição final do extrusor quando se o desliga."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Posição Z de Purga do Extrusor"
|
msgstr "Posição Z de Purga do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "A coordenada Z da posição onde o bico faz a purga no início da impressão."
|
msgstr "A coordenada Z da posição onde o bico faz a purga no início da impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Ventoinha de Refrigeração da Impressão"
|
msgstr "Ventoinha de Refrigeração da Impressão"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
||||||
msgstr "O número da ventoinha de refrigeração da impressão associada a este extrusor. Somente altere o valor default 0 quando você tiver uma ventoinha diferente para cada extrusor."
|
msgstr "O número da ventoinha de refrigeração da impressão associada a este extrusor. Somente altere o valor default 0 quando você tiver uma ventoinha diferente para cada extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Aderência da Mesa de Impressão"
|
msgstr "Aderência da Mesa de Impressão"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Aderência"
|
msgstr "Aderência"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Posição X de Purga do Extrusor"
|
msgstr "Posição X de Purga do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão."
|
msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Posição Y de Purga do Extrusor"
|
msgstr "Posição Y de Purga do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão."
|
msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Diâmetro"
|
msgstr "Diâmetro"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
||||||
msgstr "Ajusta o diâmetro do filamento usado. Use o valor medido do diâmetro do filamento atual."
|
msgstr "Ajusta o diâmetro do filamento usado. Use o valor medido do diâmetro do filamento atual."
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,231 +4,240 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Máquina"
|
msgstr "Máquina"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Definições específicas da máquina"
|
msgstr "Definições específicas da máquina"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Extrusor"
|
msgstr "Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores."
|
msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "ID do Nozzle"
|
msgstr "ID do Nozzle"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"."
|
msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Diâmetro do Nozzle"
|
msgstr "Diâmetro do Nozzle"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional."
|
msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Desvio X do Nozzle"
|
msgstr "Desvio X do Nozzle"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "A coordenada X do desvio do nozzle."
|
msgstr "A coordenada X do desvio do nozzle."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Desvio Y do Nozzle"
|
msgstr "Desvio Y do Nozzle"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "A coordenada Y do desvio do nozzle."
|
msgstr "A coordenada Y do desvio do nozzle."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "G-Code Inicial do Extrusor"
|
msgstr "G-Code Inicial do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "G-code inicial para executar ao mudar para este extrusor."
|
msgstr "G-code inicial para executar ao mudar para este extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Posição Inicial Absoluta do Extrusor"
|
msgstr "Posição Inicial Absoluta do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão."
|
msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Posição X Inicial do Extrusor"
|
msgstr "Posição X Inicial do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "A coordenada X da posição inicial ao ligar o extrusor."
|
msgstr "A coordenada X da posição inicial ao ligar o extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Posição Y Inicial do Extrusor"
|
msgstr "Posição Y Inicial do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "A coordenada Y da posição inicial ao ligar o extrusor."
|
msgstr "A coordenada Y da posição inicial ao ligar o extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "G-Code Final do Extrusor"
|
msgstr "G-Code Final do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "G-code final para executar ao mudar deste extrusor."
|
msgstr "G-code final para executar ao mudar deste extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Posição Final Absoluta do Extrusor"
|
msgstr "Posição Final Absoluta do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão."
|
msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Posição X Final do Extrusor"
|
msgstr "Posição X Final do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "A coordenada X da posição final ao desligar o extrusor."
|
msgstr "A coordenada X da posição final ao desligar o extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Posição Y Final do Extrusor"
|
msgstr "Posição Y Final do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "A coordenada Y da posição final ao desligar o extrusor."
|
msgstr "A coordenada Y da posição final ao desligar o extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Posição Z para Preparação do Extrusor"
|
msgstr "Posição Z para Preparação do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão."
|
msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Ventoinha de arrefecimento de impressão do Extrusor"
|
msgstr "Ventoinha de arrefecimento de impressão do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor."
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
|
msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de"
|
||||||
|
" arrefecimento de impressão diferente para cada extrusor."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Aderência à Base Construção"
|
msgstr "Aderência à Base Construção"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Aderência"
|
msgstr "Aderência"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Posição X Preparação do Extrusor"
|
msgstr "Posição X Preparação do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão."
|
msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Posição Y Preparação do Extrusor"
|
msgstr "Posição Y Preparação do Extrusor"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão."
|
msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Material"
|
msgstr "Material"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Diâmetro"
|
msgstr "Diâmetro"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado."
|
msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "G-Code inicial a ser executado sempre que o extrusor for ligado."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "G-Code final a ser executado sempre que o extrusor for desligado."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,231 +4,239 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.2\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "Makine"
|
msgstr "Makine"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "Makine özel ayarları"
|
msgstr "Makine özel ayarları"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "Ekstrüder"
|
msgstr "Ekstrüder"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır."
|
msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "Nozül Kimliği"
|
msgstr "Nozül Kimliği"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi."
|
msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "Nozül Çapı"
|
msgstr "Nozül Çapı"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin."
|
msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "Nozül NX Ofseti"
|
msgstr "Nozül NX Ofseti"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "Nozül ofsetinin x koordinatı."
|
msgstr "Nozül ofsetinin x koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "Nozül Y Ofseti"
|
msgstr "Nozül Y Ofseti"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "Nozül ofsetinin y koordinatı."
|
msgstr "Nozül ofsetinin y koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "Ekstruder G-Code'u Başlatma"
|
msgstr "Ekstruder G-Code'u Başlatma"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın."
|
msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "Ekstruderin Mutlak Başlangıç Konumu"
|
msgstr "Ekstruderin Mutlak Başlangıç Konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın."
|
msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "Ekstruder X Başlangıç Konumu"
|
msgstr "Ekstruder X Başlangıç Konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı."
|
msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "Ekstruder Y Başlangıç Konumu"
|
msgstr "Ekstruder Y Başlangıç Konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı."
|
msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "Ekstruder G-Code'u Sonlandırma"
|
msgstr "Ekstruder G-Code'u Sonlandırma"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın."
|
msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "Ekstruderin Mutlak Bitiş Konumu"
|
msgstr "Ekstruderin Mutlak Bitiş Konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın."
|
msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "Ekstruderin X Bitiş Konumu"
|
msgstr "Ekstruderin X Bitiş Konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı."
|
msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "Ekstruderin Y Bitiş Konumu"
|
msgstr "Ekstruderin Y Bitiş Konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı."
|
msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "Ekstruder İlk Z konumu"
|
msgstr "Ekstruder İlk Z konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı."
|
msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "Ekstrüder Yazıcı Soğutma Fanı"
|
msgstr "Ekstrüder Yazıcı Soğutma Fanı"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin."
|
msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "Yapı Levhası Yapıştırması"
|
msgstr "Yapı Levhası Yapıştırması"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "Yapıştırma"
|
msgstr "Yapıştırma"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "Extruder İlk X konumu"
|
msgstr "Extruder İlk X konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı."
|
msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "Extruder İlk Y konumu"
|
msgstr "Extruder İlk Y konumu"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı."
|
msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Malzeme"
|
msgstr "Malzeme"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "Malzeme"
|
msgstr "Malzeme"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "Çap"
|
msgstr "Çap"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin."
|
msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin."
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "Ekstruderi her açtığınızda g-code'u başlatın."
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "Ekstruderi her kapattığınızda g-code'u sonlandırın."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,229 +6,237 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "机器"
|
msgstr "机器"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "机器详细设置"
|
msgstr "机器详细设置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "挤出机"
|
msgstr "挤出机"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "用于打印的挤出机,在多挤出机情况下适用。"
|
msgstr "用于打印的挤出机,在多挤出机情况下适用。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "喷嘴 ID"
|
msgstr "喷嘴 ID"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。"
|
msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "喷嘴直径"
|
msgstr "喷嘴直径"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid ""
|
||||||
|
"The inner diameter of the nozzle. Change this setting when using a non-"
|
||||||
|
"standard nozzle size."
|
||||||
msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。"
|
msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "喷嘴 X 轴偏移量"
|
msgstr "喷嘴 X 轴偏移量"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "喷嘴 X 轴坐标偏移。"
|
msgstr "喷嘴 X 轴坐标偏移。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "喷嘴 Y 轴偏移量"
|
msgstr "喷嘴 Y 轴偏移量"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "喷嘴 Y 轴坐标偏移。"
|
msgstr "喷嘴 Y 轴坐标偏移。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "挤出机的开始 G-code"
|
msgstr "挤出机的开始 G-code"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "在切换到此挤出机时执行的开始 G-code。"
|
msgstr "在切换到此挤出机时执行的开始 G-code。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "挤出机起点绝对位置"
|
msgstr "挤出机起点绝对位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder starting position absolute rather than relative to the "
|
||||||
|
"last-known location of the head."
|
||||||
msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。"
|
msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "挤出机起始位置 X 坐标"
|
msgstr "挤出机起始位置 X 坐标"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "打开挤出机时起始位置的 X 坐标。"
|
msgstr "打开挤出机时起始位置的 X 坐标。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "挤出机起始位置 Y 坐标"
|
msgstr "挤出机起始位置 Y 坐标"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "打开挤压机时的起始位置 Y 坐标。"
|
msgstr "打开挤压机时的起始位置 Y 坐标。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "挤出机的结束 G-code"
|
msgstr "挤出机的结束 G-code"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "在切离此挤出机时执行的结束 G-code。"
|
msgstr "在切离此挤出机时执行的结束 G-code。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "挤出机终点绝对位置"
|
msgstr "挤出机终点绝对位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid ""
|
||||||
|
"Make the extruder ending position absolute rather than relative to the last-"
|
||||||
|
"known location of the head."
|
||||||
msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。"
|
msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "挤出机结束位置 X 坐标"
|
msgstr "挤出机结束位置 X 坐标"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "关闭挤出机时的终止位置的 X 坐标。"
|
msgstr "关闭挤出机时的终止位置的 X 坐标。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "挤出机终点位置 Y 坐标"
|
msgstr "挤出机终点位置 Y 坐标"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "关闭挤出机时的终止位置的 Y 坐标。"
|
msgstr "关闭挤出机时的终止位置的 Y 坐标。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "挤出机初始 Z 轴位置"
|
msgstr "挤出机初始 Z 轴位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Z coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置."
|
msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "挤出机打印冷却风扇"
|
msgstr "挤出机打印冷却风扇"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid ""
|
||||||
|
"The number of the print cooling fan associated with this extruder. Only "
|
||||||
|
"change this from the default value of 0 when you have a different print "
|
||||||
|
"cooling fan for each extruder."
|
||||||
msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。"
|
msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "打印平台附着"
|
msgstr "打印平台附着"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "附着"
|
msgstr "附着"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "挤出机 X 轴坐标"
|
msgstr "挤出机 X 轴坐标"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The X coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "打印开始时,喷头在 X 轴上初始位置。"
|
msgstr "打印开始时,喷头在 X 轴上初始位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "挤出机 Y 轴起始位置"
|
msgstr "挤出机 Y 轴起始位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid ""
|
||||||
|
"The Y coordinate of the position where the nozzle primes at the start of "
|
||||||
|
"printing."
|
||||||
msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。"
|
msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "材料"
|
msgstr "材料"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "材料"
|
msgstr "材料"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "直径"
|
msgstr "直径"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid ""
|
||||||
|
"Adjusts the diameter of the filament used. Match this value with the "
|
||||||
|
"diameter of the used filament."
|
||||||
msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。"
|
msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。"
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_start_code description"
|
|
||||||
#~ msgid "Start g-code to execute whenever turning the extruder on."
|
|
||||||
#~ msgstr "打开挤出机将执行此段 G-code。"
|
|
||||||
|
|
||||||
#~ msgctxt "machine_extruder_end_code description"
|
|
||||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
|
||||||
#~ msgstr "在关闭挤出机时,执行结束 G-code。"
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2022-06-21 12:50+0000\n"
|
"POT-Creation-Date: 2022-09-27 14:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
|
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
|
||||||
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
||||||
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
||||||
@ -17,212 +17,212 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 3.0\n"
|
"X-Generator: Poedit 3.0\n"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings label"
|
msgctxt "machine_settings label"
|
||||||
msgid "Machine"
|
msgid "Machine"
|
||||||
msgstr "機型"
|
msgstr "機型"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_settings description"
|
msgctxt "machine_settings description"
|
||||||
msgid "Machine specific settings"
|
msgid "Machine specific settings"
|
||||||
msgstr "機器詳細設定"
|
msgstr "機器詳細設定"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr label"
|
msgctxt "extruder_nr label"
|
||||||
msgid "Extruder"
|
msgid "Extruder"
|
||||||
msgstr "擠出機"
|
msgstr "擠出機"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_nr description"
|
msgctxt "extruder_nr description"
|
||||||
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
msgid "The extruder train used for printing. This is used in multi-extrusion."
|
||||||
msgstr "用於列印的擠出機,在多擠出機情況下適用。"
|
msgstr "用於列印的擠出機,在多擠出機情況下適用。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id label"
|
msgctxt "machine_nozzle_id label"
|
||||||
msgid "Nozzle ID"
|
msgid "Nozzle ID"
|
||||||
msgstr "噴頭 ID"
|
msgstr "噴頭 ID"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_id description"
|
msgctxt "machine_nozzle_id description"
|
||||||
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
|
||||||
msgstr "擠出機組的噴頭 ID,比如 \"AA 0.4\" 和 \"BB 0.8\"。"
|
msgstr "擠出機組的噴頭 ID,比如 \"AA 0.4\" 和 \"BB 0.8\"。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size label"
|
msgctxt "machine_nozzle_size label"
|
||||||
msgid "Nozzle Diameter"
|
msgid "Nozzle Diameter"
|
||||||
msgstr "噴頭直徑"
|
msgstr "噴頭直徑"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_size description"
|
msgctxt "machine_nozzle_size description"
|
||||||
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
|
||||||
msgstr "噴頭內徑,在使用非標準噴頭尺寸時需更改此設定。"
|
msgstr "噴頭內徑,在使用非標準噴頭尺寸時需更改此設定。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x label"
|
msgctxt "machine_nozzle_offset_x label"
|
||||||
msgid "Nozzle X Offset"
|
msgid "Nozzle X Offset"
|
||||||
msgstr "噴頭 X 軸偏移量"
|
msgstr "噴頭 X 軸偏移量"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_x description"
|
msgctxt "machine_nozzle_offset_x description"
|
||||||
msgid "The x-coordinate of the offset of the nozzle."
|
msgid "The x-coordinate of the offset of the nozzle."
|
||||||
msgstr "噴頭 X 軸座標偏移。"
|
msgstr "噴頭 X 軸座標偏移。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y label"
|
msgctxt "machine_nozzle_offset_y label"
|
||||||
msgid "Nozzle Y Offset"
|
msgid "Nozzle Y Offset"
|
||||||
msgstr "噴頭 Y 軸偏移量"
|
msgstr "噴頭 Y 軸偏移量"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_nozzle_offset_y description"
|
msgctxt "machine_nozzle_offset_y description"
|
||||||
msgid "The y-coordinate of the offset of the nozzle."
|
msgid "The y-coordinate of the offset of the nozzle."
|
||||||
msgstr "噴頭 Y 軸座標偏移。"
|
msgstr "噴頭 Y 軸座標偏移。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code label"
|
msgctxt "machine_extruder_start_code label"
|
||||||
msgid "Extruder Start G-Code"
|
msgid "Extruder Start G-Code"
|
||||||
msgstr "擠出機起始 G-code"
|
msgstr "擠出機起始 G-code"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_code description"
|
msgctxt "machine_extruder_start_code description"
|
||||||
msgid "Start g-code to execute when switching to this extruder."
|
msgid "Start g-code to execute when switching to this extruder."
|
||||||
msgstr "切換到此擠出機時,要執行的啟動 G-code。"
|
msgstr "切換到此擠出機時,要執行的啟動 G-code。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs label"
|
msgctxt "machine_extruder_start_pos_abs label"
|
||||||
msgid "Extruder Start Position Absolute"
|
msgid "Extruder Start Position Absolute"
|
||||||
msgstr "擠出機起點絕對位置"
|
msgstr "擠出機起點絕對位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_abs description"
|
msgctxt "machine_extruder_start_pos_abs description"
|
||||||
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "讓擠出機以絕對位置做為起點,而不是與前一次位置的相對位置。"
|
msgstr "讓擠出機以絕對位置做為起點,而不是與前一次位置的相對位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x label"
|
msgctxt "machine_extruder_start_pos_x label"
|
||||||
msgid "Extruder Start Position X"
|
msgid "Extruder Start Position X"
|
||||||
msgstr "擠出機起始位置 X 座標"
|
msgstr "擠出機起始位置 X 座標"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_x description"
|
msgctxt "machine_extruder_start_pos_x description"
|
||||||
msgid "The x-coordinate of the starting position when turning the extruder on."
|
msgid "The x-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "打開擠出機時起始位置的 X 座標。"
|
msgstr "打開擠出機時起始位置的 X 座標。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y label"
|
msgctxt "machine_extruder_start_pos_y label"
|
||||||
msgid "Extruder Start Position Y"
|
msgid "Extruder Start Position Y"
|
||||||
msgstr "擠出機起始位置 Y 座標"
|
msgstr "擠出機起始位置 Y 座標"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_start_pos_y description"
|
msgctxt "machine_extruder_start_pos_y description"
|
||||||
msgid "The y-coordinate of the starting position when turning the extruder on."
|
msgid "The y-coordinate of the starting position when turning the extruder on."
|
||||||
msgstr "打開擠出機時的起始位置 Y 座標。"
|
msgstr "打開擠出機時的起始位置 Y 座標。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code label"
|
msgctxt "machine_extruder_end_code label"
|
||||||
msgid "Extruder End G-Code"
|
msgid "Extruder End G-Code"
|
||||||
msgstr "擠出機結束 Gcode"
|
msgstr "擠出機結束 Gcode"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_code description"
|
msgctxt "machine_extruder_end_code description"
|
||||||
msgid "End g-code to execute when switching away from this extruder."
|
msgid "End g-code to execute when switching away from this extruder."
|
||||||
msgstr "從此擠出機切換到其它擠出機時,要執行的結束 G-code。"
|
msgstr "從此擠出機切換到其它擠出機時,要執行的結束 G-code。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs label"
|
msgctxt "machine_extruder_end_pos_abs label"
|
||||||
msgid "Extruder End Position Absolute"
|
msgid "Extruder End Position Absolute"
|
||||||
msgstr "擠出機終點絕對位置"
|
msgstr "擠出機終點絕對位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_abs description"
|
msgctxt "machine_extruder_end_pos_abs description"
|
||||||
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head."
|
||||||
msgstr "讓擠出機以絕對位置為終點,而不是與前一次位置的相對位置。"
|
msgstr "讓擠出機以絕對位置為終點,而不是與前一次位置的相對位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x label"
|
msgctxt "machine_extruder_end_pos_x label"
|
||||||
msgid "Extruder End Position X"
|
msgid "Extruder End Position X"
|
||||||
msgstr "擠出機結束位置 X 座標"
|
msgstr "擠出機結束位置 X 座標"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_x description"
|
msgctxt "machine_extruder_end_pos_x description"
|
||||||
msgid "The x-coordinate of the ending position when turning the extruder off."
|
msgid "The x-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "關閉擠出機時的終止位置的 X 座標。"
|
msgstr "關閉擠出機時的終止位置的 X 座標。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y label"
|
msgctxt "machine_extruder_end_pos_y label"
|
||||||
msgid "Extruder End Position Y"
|
msgid "Extruder End Position Y"
|
||||||
msgstr "擠出機終點位置 Y 座標"
|
msgstr "擠出機終點位置 Y 座標"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_end_pos_y description"
|
msgctxt "machine_extruder_end_pos_y description"
|
||||||
msgid "The y-coordinate of the ending position when turning the extruder off."
|
msgid "The y-coordinate of the ending position when turning the extruder off."
|
||||||
msgstr "關閉擠出機時的終止位置的 Y 座標。"
|
msgstr "關閉擠出機時的終止位置的 Y 座標。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z label"
|
msgctxt "extruder_prime_pos_z label"
|
||||||
msgid "Extruder Prime Z Position"
|
msgid "Extruder Prime Z Position"
|
||||||
msgstr "擠出機初始 Z 軸位置"
|
msgstr "擠出機初始 Z 軸位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_z description"
|
msgctxt "extruder_prime_pos_z description"
|
||||||
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "列印開始時,噴頭在 Z 軸座標上的起始位置."
|
msgstr "列印開始時,噴頭在 Z 軸座標上的起始位置."
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number label"
|
msgctxt "machine_extruder_cooling_fan_number label"
|
||||||
msgid "Extruder Print Cooling Fan"
|
msgid "Extruder Print Cooling Fan"
|
||||||
msgstr "擠出機列印冷卻風扇"
|
msgstr "擠出機列印冷卻風扇"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "machine_extruder_cooling_fan_number description"
|
msgctxt "machine_extruder_cooling_fan_number description"
|
||||||
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder."
|
||||||
msgstr "與此擠出機關聯的列印冷卻風扇的數量。只有當每個擠出機的列印冷卻風扇數量不同時,才需更改此值為正確數量,否則保持預設值 0 即可。"
|
msgstr "與此擠出機關聯的列印冷卻風扇的數量。只有當每個擠出機的列印冷卻風扇數量不同時,才需更改此值為正確數量,否則保持預設值 0 即可。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion label"
|
msgctxt "platform_adhesion label"
|
||||||
msgid "Build Plate Adhesion"
|
msgid "Build Plate Adhesion"
|
||||||
msgstr "列印平台附著"
|
msgstr "列印平台附著"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "platform_adhesion description"
|
msgctxt "platform_adhesion description"
|
||||||
msgid "Adhesion"
|
msgid "Adhesion"
|
||||||
msgstr "附著"
|
msgstr "附著"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x label"
|
msgctxt "extruder_prime_pos_x label"
|
||||||
msgid "Extruder Prime X Position"
|
msgid "Extruder Prime X Position"
|
||||||
msgstr "擠出機 X 軸座標"
|
msgstr "擠出機 X 軸座標"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_x description"
|
msgctxt "extruder_prime_pos_x description"
|
||||||
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The X coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "列印開始時,噴頭在 X 軸上初始位置。"
|
msgstr "列印開始時,噴頭在 X 軸上初始位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y label"
|
msgctxt "extruder_prime_pos_y label"
|
||||||
msgid "Extruder Prime Y Position"
|
msgid "Extruder Prime Y Position"
|
||||||
msgstr "擠出機 Y 軸起始位置"
|
msgstr "擠出機 Y 軸起始位置"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "extruder_prime_pos_y description"
|
msgctxt "extruder_prime_pos_y description"
|
||||||
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
|
||||||
msgstr "列印開始時,噴頭在 Y 軸座標上初始位置。"
|
msgstr "列印開始時,噴頭在 Y 軸座標上初始位置。"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material label"
|
msgctxt "material label"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "線材"
|
msgstr "線材"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material description"
|
msgctxt "material description"
|
||||||
msgid "Material"
|
msgid "Material"
|
||||||
msgstr "線材"
|
msgstr "線材"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter label"
|
msgctxt "material_diameter label"
|
||||||
msgid "Diameter"
|
msgid "Diameter"
|
||||||
msgstr "直徑"
|
msgstr "直徑"
|
||||||
|
|
||||||
#: fdmextruder.def.json
|
#: /fdmextruder.def.json
|
||||||
msgctxt "material_diameter description"
|
msgctxt "material_diameter description"
|
||||||
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
|
||||||
msgstr "調整所用耗材的直徑。調整此值與所用耗材的直徑相匹配。"
|
msgstr "調整所用耗材的直徑。調整此值與所用耗材的直徑相匹配。"
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -15,7 +15,6 @@ variant = AA 0.4
|
|||||||
infill_sparse_density = 15
|
infill_sparse_density = 15
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
speed_wall_0 = =speed_wall
|
speed_wall_0 = =speed_wall
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -15,7 +15,6 @@ variant = AA 0.4
|
|||||||
infill_sparse_density = 15
|
infill_sparse_density = 15
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
speed_wall_0 = =speed_wall
|
speed_wall_0 = =speed_wall
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
@ -14,7 +14,6 @@ variant = AA 0.4
|
|||||||
[values]
|
[values]
|
||||||
jerk_print = 30
|
jerk_print = 30
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_layer_0 = 20
|
|
||||||
speed_print = 30
|
speed_print = 30
|
||||||
speed_topbottom = =speed_print
|
speed_topbottom = =speed_print
|
||||||
speed_wall = =speed_print
|
speed_wall = =speed_print
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user