mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 05:53:59 -06:00
Merge branch 'main' into LNL3D-printer-profiles
This commit is contained in:
commit
86a167fcd3
137 changed files with 17838 additions and 30271 deletions
31
.github/workflows/conan-package.yml
vendored
31
.github/workflows/conan-package.yml
vendored
|
@ -75,28 +75,22 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Cache Conan data
|
||||
id: cache-conan
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.conan
|
||||
key: ${{ runner.os }}-conan
|
||||
|
||||
- name: Setup Python and pip
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10.x'
|
||||
python-version: '3.11.x'
|
||||
cache: 'pip'
|
||||
cache-dependency-path: .github/workflows/requirements-conan-package.txt
|
||||
|
||||
- name: Install Python requirements for runner
|
||||
run: pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt
|
||||
# Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo
|
||||
|
||||
- name: Use Conan download cache (Bash)
|
||||
if: ${{ runner.os != 'Windows' }}
|
||||
run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache"
|
||||
|
||||
- name: Cache Conan local repository packages (Bash)
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
$HOME/.conan/data
|
||||
$HOME/.conan/conan_download_cache
|
||||
key: conan-ubuntu-${{ runner.arch }}-create-cache
|
||||
run: pip install -r .github/workflows/requirements-conan-package.txt
|
||||
|
||||
# NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest.
|
||||
# This is maybe because grub caches the disk it uses last time, which is recreated each time.
|
||||
|
@ -108,16 +102,13 @@ jobs:
|
|||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||
sudo apt update
|
||||
sudo apt upgrade
|
||||
sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison -y
|
||||
|
||||
- name: Install GCC-12
|
||||
run: |
|
||||
sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison g++-12 gcc-12 -y
|
||||
sudo apt install g++-12 gcc-12 -y
|
||||
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12
|
||||
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12
|
||||
|
||||
- name: Create the default Conan profile
|
||||
run: conan profile new default --detect
|
||||
run: conan profile new default --detect --force
|
||||
|
||||
- name: Get Conan configuration
|
||||
run: conan config install https://github.com/Ultimaker/conan-config.git
|
||||
|
|
4
.github/workflows/conan-recipe-version.yml
vendored
4
.github/workflows/conan-recipe-version.yml
vendored
|
@ -132,7 +132,7 @@ jobs:
|
|||
# %% Get the actual version
|
||||
latest_branch_version = Version("0.0.0")
|
||||
latest_branch_tag = None
|
||||
for tag in repo.git.tag(merged = True).splitlines():
|
||||
for tag in repo.active_branch.repo.tags:
|
||||
if str(tag).startswith("firmware") or str(tag).startswith("master"):
|
||||
continue # Quick-fix for the versioning scheme name of the embedded team in fdm_materials(_private) repo
|
||||
try:
|
||||
|
@ -170,6 +170,8 @@ jobs:
|
|||
# An actual full release has been created, we are working on patch
|
||||
bump_up_patch = int(str(latest_branch_version.patch)) + 1
|
||||
actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{bump_up_patch}-beta.1+{buildmetadata}{channel_metadata}"
|
||||
elif latest_branch_version.pre is None:
|
||||
actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{int(latest_branch_version.patch.value) + 1}-beta.1+{buildmetadata}{channel_metadata}"
|
||||
else:
|
||||
# An beta release has been created we are working toward a next beta or full release
|
||||
bump_up_release_tag = int(str(latest_branch_version.pre).split('.')[1]) + 1
|
||||
|
|
75
.github/workflows/update-translation.yml
vendored
Normal file
75
.github/workflows/update-translation.yml
vendored
Normal file
|
@ -0,0 +1,75 @@
|
|||
name: update-translations
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- 'plugins/**'
|
||||
- 'resources/**'
|
||||
- 'cura/**'
|
||||
- 'icons/**'
|
||||
- 'tests/**'
|
||||
- 'packaging/**'
|
||||
- '.github/workflows/conan-*.yml'
|
||||
- '.github/workflows/notify.yml'
|
||||
- '.github/workflows/requirements-conan-package.txt'
|
||||
- 'requirements*.txt'
|
||||
- 'conanfile.py'
|
||||
- 'conandata.yml'
|
||||
- 'GitVersion.yml'
|
||||
- '*.jinja'
|
||||
|
||||
jobs:
|
||||
update-translations:
|
||||
name: Update translations
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Cache Conan data
|
||||
id: cache-conan
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.conan
|
||||
key: ${{ runner.os }}-conan
|
||||
|
||||
- name: Setup Python and pip
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.11.x
|
||||
cache: pip
|
||||
cache-dependency-path: .github/workflows/requirements-conan-package.txt
|
||||
|
||||
- name: Install Python requirements for runner
|
||||
run: pip install -r .github/workflows/requirements-conan-package.txt
|
||||
|
||||
# NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest.
|
||||
# This is maybe because grub caches the disk it uses last time, which is recreated each time.
|
||||
- name: Install Linux system requirements
|
||||
if: ${{ runner.os == 'Linux' }}
|
||||
run: |
|
||||
sudo rm /var/cache/debconf/config.dat
|
||||
sudo dpkg --configure -a
|
||||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||
sudo apt update
|
||||
sudo apt upgrade
|
||||
sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison g++-12 gcc-12 -y
|
||||
sudo apt install g++-12 gcc-12 -y
|
||||
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12
|
||||
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12
|
||||
|
||||
- name: Create the default Conan profile
|
||||
run: conan profile new default --detect --force
|
||||
|
||||
- name: Get Conan configuration
|
||||
run: conan config install https://github.com/Ultimaker/conan-config.git
|
||||
|
||||
- name: generate the files using Conan install
|
||||
run: conan install . --build=missing --update -o cura:devtools=True
|
||||
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
file_pattern: resources/i18n/*.po resources/i18n/*.pot
|
||||
status_options: --untracked-files=no
|
||||
commit_message: update translations
|
|
@ -1,4 +1,10 @@
|
|||
|
||||
> # Work with us!
|
||||
> If you're interested in working with us on Cura and Thingiverse, please apply to one of the open positions below.
|
||||
> - [Software Engineer C++ & Python](https://www.linkedin.com/jobs/view/3516545085) for [Cura](https://github.com/Ultimaker/Cura)
|
||||
> - [DevOps Engineer Community Software](https://www.linkedin.com/jobs/view/3516542580) for [Cura](https://github.com/Ultimaker/Cura) and [Thingiverse](https://www.thingiverse.com/)
|
||||
> - [QA / Test Engineer Cura (3D printing)](https://www.linkedin.com/jobs/view/3516538895) for [Cura](https://github.com/Ultimaker/Cura) and [Thingiverse](https://www.thingiverse.com/)
|
||||
|
||||
<br>
|
||||
|
||||
<div align = center>
|
||||
|
|
23
conanfile.py
23
conanfile.py
|
@ -26,8 +26,7 @@ class CuraConan(ConanFile):
|
|||
no_copy_source = True # We won't build so no need to copy sources to the build folder
|
||||
|
||||
# FIXME: Remove specific branch once merged to main
|
||||
# Extending the conanfile with the UMBaseConanfile https://github.com/Ultimaker/conan-ultimaker-index/tree/CURA-9177_Fix_CI_CD/recipes/umbase
|
||||
python_requires = "umbase/[>=0.1.7]@ultimaker/stable", "translationextractor/[>=1.0.0]@ultimaker/stable"
|
||||
python_requires = "umbase/[>=0.1.7]@ultimaker/stable", "translationextractor/[>=2.1.1]@ultimaker/stable"
|
||||
python_requires_extend = "umbase.UMBaseConanfile"
|
||||
|
||||
options = {
|
||||
|
@ -49,6 +48,10 @@ class CuraConan(ConanFile):
|
|||
"internal": False,
|
||||
}
|
||||
|
||||
def set_version(self):
|
||||
if self.version == "auto":
|
||||
self.version = "5.4.0-alpha"
|
||||
|
||||
@property
|
||||
def _pycharm_targets(self):
|
||||
return self.conan_data["pycharm_targets"]
|
||||
|
@ -275,10 +278,6 @@ class CuraConan(ConanFile):
|
|||
copy(self, "CuraVersion.py.jinja", self.recipe_folder, self.export_sources_folder)
|
||||
copy(self, "cura_app.py", self.recipe_folder, self.export_sources_folder)
|
||||
|
||||
def set_version(self):
|
||||
if self.version is None:
|
||||
self.version = self._umdefault_version()
|
||||
|
||||
def configure(self):
|
||||
self.options["pyarcus"].shared = True
|
||||
self.options["pysavitar"].shared = True
|
||||
|
@ -306,7 +305,7 @@ class CuraConan(ConanFile):
|
|||
if self.options.devtools:
|
||||
if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str):
|
||||
# FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement
|
||||
self.tool_requires("gettext/0.21", force_host_context=True)
|
||||
self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True)
|
||||
|
||||
def layout(self):
|
||||
self.folders.source = "."
|
||||
|
@ -335,19 +334,15 @@ class CuraConan(ConanFile):
|
|||
icon_path = "'{}'".format(os.path.join(self.source_folder, "packaging", self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"),
|
||||
entitlements_file = entitlements_file if self.settings.os == "Macos" else "None")
|
||||
|
||||
# Update the po files
|
||||
# Update the po and pot files
|
||||
if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type=str):
|
||||
vb = VirtualBuildEnv(self)
|
||||
vb.generate()
|
||||
|
||||
# FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement
|
||||
cpp_info = self.dependencies["gettext"].cpp_info
|
||||
for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"):
|
||||
pot_file = self.source_path.joinpath("resources", "i18n", po_file.with_suffix('.pot').name)
|
||||
mkdir(self, str(unix_path(self, pot_file.parent)))
|
||||
self.run(
|
||||
f"{cpp_info.bindirs[0]}/msgmerge --no-wrap --no-fuzzy-matching -width=140 -o {po_file} {po_file} {pot_file}",
|
||||
env="conanbuild", ignore_errors=True)
|
||||
pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0])
|
||||
pot.generate()
|
||||
|
||||
def build(self):
|
||||
if self.options.devtools:
|
||||
|
|
|
@ -2076,3 +2076,7 @@ class CuraApplication(QtApplication):
|
|||
@classmethod
|
||||
def getInstance(cls, *args, **kwargs) -> "CuraApplication":
|
||||
return cast(CuraApplication, super().getInstance(**kwargs))
|
||||
|
||||
@pyqtProperty(bool, constant=True)
|
||||
def isEnterprise(self) -> bool:
|
||||
return ApplicationMetadata.IsEnterpriseVersion
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
scriptdir=$(dirname $0)
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ from .WorkspaceDialog import WorkspaceDialog
|
|||
i18n_catalog = i18nCatalog("cura")
|
||||
|
||||
|
||||
_ignored_machine_network_metadata = {
|
||||
_ignored_machine_network_metadata: Set[str] = {
|
||||
"um_cloud_cluster_id",
|
||||
"um_network_key",
|
||||
"um_linked_to_account",
|
||||
|
@ -55,7 +55,7 @@ _ignored_machine_network_metadata = {
|
|||
"capabilities",
|
||||
"octoprint_api_key",
|
||||
"is_abstract_machine"
|
||||
} # type: Set[str]
|
||||
}
|
||||
|
||||
|
||||
class ContainerInfo:
|
||||
|
@ -69,41 +69,41 @@ class ContainerInfo:
|
|||
|
||||
class QualityChangesInfo:
|
||||
def __init__(self) -> None:
|
||||
self.name = None
|
||||
self.name: Optional[str] = None
|
||||
self.global_info = None
|
||||
self.extruder_info_dict = {} # type: Dict[str, ContainerInfo]
|
||||
self.extruder_info_dict: Dict[str, ContainerInfo] = {}
|
||||
|
||||
|
||||
class MachineInfo:
|
||||
def __init__(self) -> None:
|
||||
self.container_id = None
|
||||
self.name = None
|
||||
self.definition_id = None
|
||||
self.container_id: Optional[str] = None
|
||||
self.name: Optional[str] = None
|
||||
self.definition_id: Optional[str] = None
|
||||
|
||||
self.metadata_dict = {} # type: Dict[str, str]
|
||||
self.metadata_dict: Dict[str, str] = {}
|
||||
|
||||
self.quality_type = None
|
||||
self.intent_category = None
|
||||
self.custom_quality_name = None
|
||||
self.quality_changes_info = None
|
||||
self.variant_info = None
|
||||
self.quality_type: Optional[str] = None
|
||||
self.intent_category: Optional[str] = None
|
||||
self.custom_quality_name: Optional[str] = None
|
||||
self.quality_changes_info: Optional[QualityChangesInfo] = None
|
||||
self.variant_info: Optional[ContainerInfo] = None
|
||||
|
||||
self.definition_changes_info = None
|
||||
self.user_changes_info = None
|
||||
self.definition_changes_info: Optional[ContainerInfo] = None
|
||||
self.user_changes_info: Optional[ContainerInfo] = None
|
||||
|
||||
self.extruder_info_dict = {} # type: Dict[str, ExtruderInfo]
|
||||
self.extruder_info_dict: Dict[str, str] = {}
|
||||
|
||||
|
||||
class ExtruderInfo:
|
||||
def __init__(self) -> None:
|
||||
self.position = None
|
||||
self.enabled = True
|
||||
self.variant_info = None
|
||||
self.root_material_id = None
|
||||
self.variant_info: Optional[ContainerInfo] = None
|
||||
self.root_material_id: Optional[str] = None
|
||||
|
||||
self.definition_changes_info = None
|
||||
self.user_changes_info = None
|
||||
self.intent_info = None
|
||||
self.definition_changes_info: Optional[ContainerInfo] = None
|
||||
self.user_changes_info: Optional[ContainerInfo] = None
|
||||
self.intent_info: Optional[ContainerInfo] = None
|
||||
|
||||
|
||||
class ThreeMFWorkspaceReader(WorkspaceReader):
|
||||
|
@ -131,14 +131,14 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
# - variant
|
||||
self._ignored_instance_container_types = {"quality", "variant"}
|
||||
|
||||
self._resolve_strategies = {} # type: Dict[str, str]
|
||||
self._resolve_strategies: Dict[str, str] = {}
|
||||
|
||||
self._id_mapping = {} # type: Dict[str, str]
|
||||
self._id_mapping: Dict[str, str] = {}
|
||||
|
||||
# In Cura 2.5 and 2.6, the empty profiles used to have those long names
|
||||
self._old_empty_profile_id_dict = {"empty_%s" % k: "empty" for k in ["material", "variant"]}
|
||||
|
||||
self._old_new_materials = {} # type: Dict[str, str]
|
||||
self._old_new_materials: Dict[str, str] = {}
|
||||
self._machine_info = None
|
||||
|
||||
def _clearState(self):
|
||||
|
@ -461,11 +461,15 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
|
||||
materials_in_extruders_dict = {} # Which material is in which extruder
|
||||
|
||||
# if the global stack is found, we check if there are conflicts in the extruder stacks
|
||||
# If the global stack is found, we check if there are conflicts in the extruder stacks
|
||||
for extruder_stack_file in extruder_stack_files:
|
||||
serialized = archive.open(extruder_stack_file).read().decode("utf-8")
|
||||
|
||||
not_upgraded_parser = ConfigParser(interpolation=None)
|
||||
not_upgraded_parser.read_string(serialized)
|
||||
|
||||
serialized = ExtruderStack._updateSerialized(serialized, extruder_stack_file)
|
||||
parser = ConfigParser(interpolation = None)
|
||||
parser = ConfigParser(interpolation=None)
|
||||
parser.read_string(serialized)
|
||||
|
||||
# The check should be done for the extruder stack that's associated with the existing global stack,
|
||||
|
@ -497,19 +501,26 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
extruder_info.user_changes_info = instance_container_info_dict[user_changes_id]
|
||||
self._machine_info.extruder_info_dict[position] = extruder_info
|
||||
|
||||
intent_container_id = parser["containers"][str(_ContainerIndexes.Intent)]
|
||||
|
||||
intent_id = parser["containers"][str(_ContainerIndexes.Intent)]
|
||||
if intent_id not in ("empty", "empty_intent"):
|
||||
extruder_info.intent_info = instance_container_info_dict[intent_id]
|
||||
if intent_container_id in instance_container_info_dict:
|
||||
extruder_info.intent_info = instance_container_info_dict[intent_id]
|
||||
else:
|
||||
# It can happen that an intent has been renamed. In that case, we should still use the old
|
||||
# name, since we used that to generate the instance_container_info_dict keys.
|
||||
extruder_info.intent_info = instance_container_info_dict[not_upgraded_parser["containers"][str(_ContainerIndexes.Intent)]]
|
||||
|
||||
if not machine_conflict and containers_found_dict["machine"] and global_stack:
|
||||
if int(position) >= len(global_stack.extruderList):
|
||||
continue
|
||||
|
||||
existing_extruder_stack = global_stack.extruderList[int(position)]
|
||||
# check if there are any changes at all in any of the container stacks.
|
||||
# Check if there are any changes at all in any of the container stacks.
|
||||
id_list = self._getContainerIdListFromSerialized(serialized)
|
||||
for index, container_id in enumerate(id_list):
|
||||
# take into account the old empty container IDs
|
||||
# Take into account the old empty container IDs
|
||||
container_id = self._old_empty_profile_id_dict.get(container_id, container_id)
|
||||
if existing_extruder_stack.getContainer(index).getId() != container_id:
|
||||
machine_conflict = True
|
||||
|
@ -740,7 +751,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
# quality_changes file. If that's the case, take the extruder count into account when creating the machine
|
||||
# or else the extruderList will return only the first extruder, leading to missing non-global settings in
|
||||
# the other extruders.
|
||||
machine_extruder_count = self._getMachineExtruderCount() # type: Optional[int]
|
||||
machine_extruder_count: Optional[int] = self._getMachineExtruderCount()
|
||||
global_stack = CuraStackBuilder.createMachine(machine_name, self._machine_info.definition_id, machine_extruder_count)
|
||||
if global_stack: # Only switch if creating the machine was successful.
|
||||
extruder_stack_dict = {str(position): extruder for position, extruder in enumerate(global_stack.extruderList)}
|
||||
|
@ -751,8 +762,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
global_stacks = self._container_registry.findContainerStacks(id = self._dialog.getMachineToOverride(), type = "machine")
|
||||
if not global_stacks:
|
||||
message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tag <filename>!",
|
||||
"Project file <filename>{0}</filename> is made using profiles that"
|
||||
" are unknown to this version of Ultimaker Cura.", file_name),
|
||||
"Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura.", file_name),
|
||||
message_type = Message.MessageType.ERROR)
|
||||
message.show()
|
||||
self.setWorkspaceName("")
|
||||
|
@ -868,7 +878,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
|
||||
@staticmethod
|
||||
def _loadMetadata(file_name: str) -> Dict[str, Dict[str, Any]]:
|
||||
result = dict() # type: Dict[str, Dict[str, Any]]
|
||||
result: Dict[str, Dict[str, Any]] = dict()
|
||||
try:
|
||||
archive = zipfile.ZipFile(file_name, "r")
|
||||
except zipfile.BadZipFile:
|
||||
|
@ -880,7 +890,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
|
||||
metadata_files = [name for name in archive.namelist() if name.endswith("plugin_metadata.json")]
|
||||
|
||||
|
||||
for metadata_file in metadata_files:
|
||||
try:
|
||||
plugin_id = metadata_file.split("/")[0]
|
||||
|
@ -921,7 +930,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
quality_changes_name = self._container_registry.uniqueName(quality_changes_name)
|
||||
for position, container_info in container_info_dict.items():
|
||||
extruder_stack = None
|
||||
intent_category = None # type: Optional[str]
|
||||
intent_category: Optional[str] = None
|
||||
if position is not None:
|
||||
try:
|
||||
extruder_stack = global_stack.extruderList[int(position)]
|
||||
|
@ -1162,7 +1171,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
|||
root_material_id = self._old_new_materials.get(root_material_id, root_material_id)
|
||||
|
||||
material_node = machine_node.variants[extruder_stack.variant.getName()].materials[root_material_id]
|
||||
extruder_stack.material = material_node.container # type: InstanceContainer
|
||||
extruder_stack.material = material_node.container
|
||||
|
||||
def _applyChangesToMachine(self, global_stack, extruder_stack_dict):
|
||||
# Clear all first
|
||||
|
|
|
@ -303,18 +303,17 @@ Item
|
|||
|
||||
Component.onCompleted:
|
||||
{
|
||||
update()
|
||||
updateModel();
|
||||
}
|
||||
|
||||
function update()
|
||||
function updateModel()
|
||||
{
|
||||
clear()
|
||||
for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i++)
|
||||
{
|
||||
clear();
|
||||
for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i ++) {
|
||||
// Use String as value. JavaScript only has Number. PropertyProvider.setPropertyValue()
|
||||
// takes a QVariant as value, and Number gets translated into a float. This will cause problem
|
||||
// for integer settings such as "Number of Extruders".
|
||||
append({ text: String(i), value: String(i) })
|
||||
append({ text: String(i), value: String(i) });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -322,7 +321,9 @@ Item
|
|||
Connections
|
||||
{
|
||||
target: Cura.MachineManager
|
||||
function onGlobalContainerChanged() { extruderCountModel.update() }
|
||||
function onGlobalContainerChanged() {
|
||||
extruderCountModel.updateModel();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
"author": "Ultimaker B.V.",
|
||||
"version": "1.0.0",
|
||||
"api": 8,
|
||||
"description": "Manages extensions to the application and allows browsing extensions from the Ultimaker website.",
|
||||
"description": "Manages extensions to the application and allows browsing extensions from the UltiMaker website.",
|
||||
"i18n-catalog": "cura"
|
||||
}
|
||||
|
|
|
@ -285,4 +285,33 @@ Window
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle
|
||||
{
|
||||
color: UM.Theme.getColor("main_background")
|
||||
anchors.fill: parent
|
||||
visible: !Cura.API.account.isLoggedIn && CuraApplication.isEnterprise
|
||||
|
||||
UM.Label
|
||||
{
|
||||
id: signInLabel
|
||||
anchors.centerIn: parent
|
||||
width: Math.round(UM.Theme.getSize("modal_window_minimum").width / 2.5)
|
||||
text: catalog.i18nc("@description","Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise")
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
}
|
||||
|
||||
Cura.PrimaryButton
|
||||
{
|
||||
id: loginButton
|
||||
width: UM.Theme.getSize("account_button").width
|
||||
height: UM.Theme.getSize("account_button").height
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.top: signInLabel.bottom
|
||||
anchors.topMargin: UM.Theme.getSize("default_margin").height * 2
|
||||
text: catalog.i18nc("@button", "Sign in")
|
||||
fixedWidthMode: true
|
||||
onClicked: Cura.API.account.login()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ class PauseAtHeight(Script):
|
|||
"pause_layer":
|
||||
{
|
||||
"label": "Pause Layer",
|
||||
"description": "Enter the Number of the LAST layer you want to finish prior to the pause (from the Cura preview).",
|
||||
"description": "Enter the Number of the LAST layer you want to finish prior to the pause. Note that 0 is the first layer printed.",
|
||||
"type": "int",
|
||||
"value": "math.floor((pause_height - 0.27) / 0.1) + 1",
|
||||
"minimum_value": "0",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Ultimaker Network Connection",
|
||||
"name": "UltiMaker Network Connection",
|
||||
"author": "Ultimaker B.V.",
|
||||
"description": "Manages network connections to Ultimaker networked printers.",
|
||||
"description": "Manages network connections to UltiMaker networked printers.",
|
||||
"version": "2.0.0",
|
||||
"api": 8,
|
||||
"i18n-catalog": "cura"
|
||||
|
|
|
@ -16,7 +16,7 @@ class LegacyDeviceNoLongerSupportedMessage(Message):
|
|||
def __init__(self) -> None:
|
||||
super().__init__(
|
||||
text = I18N_CATALOG.i18nc("@info:status", "You are attempting to connect to a printer that is not "
|
||||
"running Ultimaker Connect. Please update the printer to the "
|
||||
"running UltiMaker Connect. Please update the printer to the "
|
||||
"latest firmware."),
|
||||
title = I18N_CATALOG.i18nc("@info:title", "Update your printer"),
|
||||
lifetime = 10,
|
||||
|
|
|
@ -53,7 +53,7 @@ class AutoDetectBaudJob(Job):
|
|||
try:
|
||||
serial = Serial(str(self._serial_port), baud_rate, timeout = read_timeout, writeTimeout = write_timeout)
|
||||
except SerialException:
|
||||
Logger.logException("w", "Unable to create serial")
|
||||
Logger.warning(f"Unable to create serial connection to {serial} with baud rate {baud_rate}")
|
||||
continue
|
||||
else:
|
||||
# We already have a serial connection, just change the baud rate.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "Ultimaker machine actions",
|
||||
"name": "UltiMaker machine actions",
|
||||
"author": "Ultimaker B.V.",
|
||||
"version": "1.0.1",
|
||||
"description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).",
|
||||
|
|
|
@ -10,6 +10,7 @@ if TYPE_CHECKING:
|
|||
|
||||
upgrade = VersionUpgrade52to53.VersionUpgrade52to53()
|
||||
|
||||
|
||||
def getMetaData() -> Dict[str, Any]:
|
||||
return {
|
||||
"version_upgrade": {
|
||||
|
@ -21,6 +22,7 @@ def getMetaData() -> Dict[str, Any]:
|
|||
("quality_changes", 4000020): ("quality_changes", 4000021, upgrade.upgradeInstanceContainer),
|
||||
("quality", 4000020): ("quality", 4000021, upgrade.upgradeInstanceContainer),
|
||||
("user", 4000020): ("user", 4000021, upgrade.upgradeInstanceContainer),
|
||||
("intent", 4000020): ("intent", 4000021, upgrade.upgradeInstanceContainer),
|
||||
},
|
||||
"sources": {
|
||||
"preferences": {
|
||||
|
|
|
@ -1,46 +1,41 @@
|
|||
### Direct requirements for Uranium and libCharon ###
|
||||
PyQt6-sip==13.2.1 \
|
||||
--hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \
|
||||
--hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \
|
||||
--hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \
|
||||
--hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec
|
||||
PyQt6==6.2.3 \
|
||||
--hash=sha256:a9bfcac198fe4b703706f809bb686c7cef5f60a7c802fc145c6b57929c7a6a34 \
|
||||
--hash=sha256:11c039b07962b29246de2da0912f4f663786185fd74d48daac7a270a43c8d92a \
|
||||
--hash=sha256:8a2f357b86fec8598f52f16d5f93416931017ca1986d5f68679c9565bfc21fff \
|
||||
--hash=sha256:577334c9d4518022a4cb6f9799dfbd1b996167eb31404b5a63d6c43d603e6418
|
||||
PyQt6-Qt6==6.2.4 \
|
||||
--hash=sha256:42c37475a50ec7e06e0445ac9ce39465f69a86af407ad9b28b183da178d401ee \
|
||||
--hash=sha256:b68543e5d5a4f5d24c26b517569da3cd30b0fbe75390b841e142c160399b3c0a \
|
||||
--hash=sha256:0aa93581b92e01deaf2dcaad88ed6718996a6d84de59ee88316bcba143f008c9 \
|
||||
--hash=sha256:48bc5b7400d6bca13d8c0a145f82295a6da317952ee1a3f107f1cd7d078c8140
|
||||
PyQt6-NetworkAuth==6.2.0 \
|
||||
--hash=sha256:23e730cc0d6b828bec2f92d9fac3607871e6033a8af4620e5d4e3afc13bd6c3c \
|
||||
--hash=sha256:b85ee25b01d6cb38d6141df0052b96de2df7f6e69066eaddb22ae238f56be40b \
|
||||
--hash=sha256:e637781a00dd2032d0fd2025af09274898335033763e1dc765a5a99348f60c3b \
|
||||
--hash=sha256:542e9d9a8a5bb78e1f26fa3d35ee01f45209bcf5a35b0cc367aaa85932c29750
|
||||
PyQt6-NetworkAuth-Qt6==6.2.4 \
|
||||
--hash=sha256:c7996a9d8c4ce024529ec37981fbfd525ab1a2d497af1281f81f2b6054452d2e \
|
||||
--hash=sha256:1ae9e08e03bd9d5ebdb42dfaccf484a9cc62eeea7504621fe42c005ff1745e66 \
|
||||
--hash=sha256:1363ea81e5c6ac10bfd643e41ba0d215c0d031a57ff1e5972cc4c2a918efe712 \
|
||||
--hash=sha256:8ed4e5e0eaaa42a6f91aba6745eea23fb3ffcbddc6b162016936530ed28dd0ad
|
||||
PyQt6-sip==13.2.1 \
|
||||
--hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \
|
||||
--hash=sha256:082a80264699d4e2e919a7de8b6662886a353863d2b30a0047fe73d42e65c98e \
|
||||
--hash=sha256:0a49f2d0bb49bc9d72665d62fb5ab6549c72dcf49e1e52dc2046edb8832a17a3 \
|
||||
--hash=sha256:0ede42e84a79871022e1a8e4d5c05f70821b2795910c4cd103e863ce62bc8d68 \
|
||||
--hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec \
|
||||
--hash=sha256:43afd9c9fdbc5f6ed2e22cae0752a8b8d9545c6d85f314bd27b861e21d4a97fe \
|
||||
--hash=sha256:4b119a8fd880ece15a5bdff583edccd89dbc79d49de2e11cbbd6bba72713d1f3 \
|
||||
--hash=sha256:616b6bad827e9c6e7ce5179883ca0f44110a42dcb045344aa28a495c05e19795 \
|
||||
--hash=sha256:65f5aee6195bd0e785bd74f75ee080a5d5fb840c03210956e4ccbdde481b487c \
|
||||
--hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \
|
||||
--hash=sha256:a3d53fab72f959b45aeb954124255b585ff8d497a514a2582e0afd808fc2f3da \
|
||||
--hash=sha256:b0d92f4a21706b18ab80c088cded94cd64d32a0c48e1729a4cc53fe5ab93cc1a \
|
||||
--hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \
|
||||
--hash=sha256:c456d5ccc4478254052082e298db01bb9d0495471c1659046697bb5dc9d2506c \
|
||||
--hash=sha256:e2e6a3972169891dbc33d806f50ebf17eaa47a487ff6e4910fe2485c47cb6c2b \
|
||||
--hash=sha256:f4226d4ab239d8655f94c42b397f23e6e85b246f614ff81162ef9321e47f7619
|
||||
PyQt6-sip==13.4.1 \
|
||||
--hash=sha256:0df998f2b6ceeacfd10de773441572e215be0c9cae566cc7dd36e231bf714a12 \
|
||||
--hash=sha256:224575e84805c4317bacd5d1b8e93e0ad5c48685dadbbe1e902d4ebe16f22828 \
|
||||
--hash=sha256:36ae29cdc223cacc1257d0f5075cf81474550c6d26b728f922487a2aa935f130 \
|
||||
--hash=sha256:3a674c591d4274d4ea8127205290e927a7dab0eb87a0038d4f4ea1d430782649 \
|
||||
--hash=sha256:3ef9392e4ae29d393b79237d85840cdc6b8831f36eed5d56c7d9b329b380cc8d \
|
||||
--hash=sha256:43935873d60f57719632840d517afee04ef8f30e92cfe0dadc7e6326691920fc \
|
||||
--hash=sha256:5731f22618435654352ef07684549a17be82b75254227fc80b4b5b0b59fc6656 \
|
||||
--hash=sha256:5bc4beb6fb1de4c9ba8beee7b1a4a813fa888c3b095206dafcd25d7e6e4ed2a7 \
|
||||
--hash=sha256:5c36ab984402e96792eebf4b031abfaa589aa20af3190a79c54502c16964d97e \
|
||||
--hash=sha256:a2a0461992c6657f343308b150c4d6b57e9e7a0e5c2f79538434e7fb869ea827 \
|
||||
--hash=sha256:a81490ee84d7a41a126b116081bd97d758f41bf706aee0a8cec24d6e4c660184 \
|
||||
--hash=sha256:e00e287ea05bbc293fc6e2198301962af9b7b622bd2daf4288f925a88ae35dc9 \
|
||||
--hash=sha256:e670a7b2fb7e32204ce67d274017bfff3e21139d217d60cebbfcb75b019c91ee \
|
||||
--hash=sha256:ee06f255787a0b4957f357f93b78d2a11ca3761916833e3afa83f1381d4d1a46 \
|
||||
--hash=sha256:fbee0d554e0e98f56dbf6d94b00a28cc32425938ad7ae98fd91f8822c5b24d45 \
|
||||
--hash=sha256:fcc6d78314783f4a193f02353f431b7ea4d357f47c3c7a7d0740e723f69c64dc
|
||||
PyQt6==6.4.2 \
|
||||
--hash=sha256:18d1daf98d9236d55102cdadafd1056f5802f3c9288fcf7238569937b71a89f0 \
|
||||
--hash=sha256:25bd399b4a95dce65d5f937c1aa85d3c7e14a21745ae2a4ca14c0116cd104290 \
|
||||
--hash=sha256:740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d \
|
||||
--hash=sha256:c128bc0f17833e324593e3db83e99470d451a197dd17ff0333927b946c935bd9
|
||||
PyQt6-Qt6==6.4.2 \
|
||||
--hash=sha256:9f07c3c100cb46cca4074965e7494d4df4f0fc016497d5303c1fe135822876e1 \
|
||||
--hash=sha256:a29b8c858babd523e80c8db5f8fd19792641588ec04eab49af18b7a4423eb99f \
|
||||
--hash=sha256:c0e91d0275d428496cacff717a9b719c52bfa52b21f124d638b79cc2217bc81e \
|
||||
--hash=sha256:d19c4e72615762cd6f0b043f23fa5f0b02656091427ce6de1efccd58e10e6a53
|
||||
PyQt6-NetworkAuth==6.4.0 \
|
||||
--hash=sha256:ab6178b3b2902ae9939a148555cfcee8c7803d6b0d5924cd1bd8f3407b8b9210 \
|
||||
--hash=sha256:c16ec80232d88024b60d04386a23cc93067e5644a65f47f26ffb13d84dcd4a6d \
|
||||
--hash=sha256:c302cd0d838c7229eda5e26e0b1b3d3ec4f8720f8d9379472bce5a89ff0735c2 \
|
||||
--hash=sha256:d948fc0cf43b64afbda2acb5bf2392f785a1e7a2950d79ea850c1a3f4ae12f1a
|
||||
PyQt6-NetworkAuth-Qt6==6.4.2 \
|
||||
--hash=sha256:179094bcb4d4d056316c22d3d067cd94d4591da23f804461bfb025ccfa29b2b4 \
|
||||
--hash=sha256:1de6abbb5fa6585b97ae49d3f64b0dfad40bd56b1a31744d9775ff26247241c8 \
|
||||
--hash=sha256:79ec4b0fc9450bbedbff03541b93b10d1c7e761cd2cc16ce70d2b09dcdf8c720 \
|
||||
--hash=sha256:d96d557fe61edb9b68d189f270f0393d6579c8d308e6b0d41bc0699371d7cb4e
|
||||
certifi==2021.10.8 \
|
||||
--hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \
|
||||
--hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569
|
||||
|
|
|
@ -1298,6 +1298,18 @@
|
|||
"limit_to_extruder": "wall_0_extruder_nr",
|
||||
"settable_per_mesh": true
|
||||
},
|
||||
"hole_xy_offset_max_diameter":
|
||||
{
|
||||
"label": "Hole Horizontal Expansion Max Diameter",
|
||||
"description": "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default_value": 0,
|
||||
"minimum_value": "0",
|
||||
"enabled": "hole_xy_offset > 0",
|
||||
"limit_to_extruder": "wall_0_extruder_nr",
|
||||
"settable_per_mesh": true
|
||||
},
|
||||
"z_seam_type":
|
||||
{
|
||||
"label": "Z Seam Alignment",
|
||||
|
@ -1649,6 +1661,20 @@
|
|||
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||
"settable_per_mesh": true
|
||||
},
|
||||
"small_skin_width":
|
||||
{
|
||||
"label": "Small Top/Bottom Width",
|
||||
"description": "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions.",
|
||||
"value": "skin_line_width * 2",
|
||||
"default_value": 1,
|
||||
"minimum_value": "0",
|
||||
"maximum_value_warning": "skin_line_width * 10",
|
||||
"type": "float",
|
||||
"enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'",
|
||||
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||
"settable_per_mesh": true,
|
||||
"unit": "mm"
|
||||
},
|
||||
"skin_no_small_gaps_heuristic":
|
||||
{
|
||||
"label": "No Skin in Z Gaps",
|
||||
|
@ -4395,9 +4421,9 @@
|
|||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default_value": 10,
|
||||
"enabled": "cool_min_layer_time > 0",
|
||||
"minimum_value": "0",
|
||||
"minimum_value": "1",
|
||||
"maximum_value_warning": "100",
|
||||
"enabled": "cool_min_layer_time > 0",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": true
|
||||
},
|
||||
|
@ -4419,8 +4445,10 @@
|
|||
"type": "float",
|
||||
"value": "material_print_temperature",
|
||||
"enabled": "cool_min_layer_time > 0",
|
||||
"minimum_value": "max(material_final_print_temperature, material_initial_print_temperature)",
|
||||
"maximum_value": "material_print_temperature",
|
||||
"minimum_value_warning": "max(material_final_print_temperature, material_initial_print_temperature)",
|
||||
"maximum_value_warning": "material_print_temperature",
|
||||
"minimum_value": "-273.15",
|
||||
"maximum_value": "365",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": true
|
||||
}
|
||||
|
@ -5677,6 +5705,21 @@
|
|||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": true
|
||||
},
|
||||
"skirt_height":
|
||||
{
|
||||
"label": "Skirt Height",
|
||||
"description": "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt.",
|
||||
"type": "int",
|
||||
"default_value": 3,
|
||||
"value": "3 if resolveOrValue('skirt_gap') > 0.0 else 1",
|
||||
"minimum_value": "1",
|
||||
"maximum_value_warning": "10",
|
||||
"maximum_value": "machine_height / layer_height",
|
||||
"enabled": "resolveOrValue('adhesion_type') == 'skirt'",
|
||||
"limit_to_extruder": "skirt_brim_extruder_nr",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": true
|
||||
},
|
||||
"skirt_gap":
|
||||
{
|
||||
"label": "Skirt Distance",
|
||||
|
@ -5787,6 +5830,17 @@
|
|||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": true
|
||||
},
|
||||
"brim_smart_ordering":
|
||||
{
|
||||
"label": "Smart Brim",
|
||||
"description": "Swap print order of the innermost and second innermost brim lines. This improves brim removal.",
|
||||
"type": "bool",
|
||||
"enabled": "resolveOrValue('adhesion_type') == 'brim'",
|
||||
"default_value": true,
|
||||
"limit_to_extruder": "skirt_brim_extruder_nr",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false
|
||||
},
|
||||
"raft_margin":
|
||||
{
|
||||
"label": "Raft Extra Margin",
|
||||
|
@ -6909,7 +6963,7 @@
|
|||
"interlocking_depth":
|
||||
{
|
||||
"label": "Interlocking Depth",
|
||||
"description": "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion.",
|
||||
"description": "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion.",
|
||||
"type": "int",
|
||||
"enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')",
|
||||
"default_value": 2,
|
||||
|
|
49
resources/definitions/geeetech_A10.def.json
Normal file
49
resources/definitions/geeetech_A10.def.json
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech A10",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Amit L",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains": { "0": "geeetech_A10_1" }
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "28" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.15 },
|
||||
"machine_acceleration": { "default_value": 1000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 220 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1 ;Retract filament to lower pressure\nG0 X0 Y200 ;Move hotend to left and bed forward\nM104 S0 ;Cooldown hotend\nG90 ;Switch to absolute mode\nG92 E0 ;Set extruder to zero\nM140 S0 ;Cooldown bed\nM84 ; Disable steppers" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-31, 31],
|
||||
[34, 31],
|
||||
[34, -40],
|
||||
[-31, -40]
|
||||
]
|
||||
},
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 260 },
|
||||
"machine_max_acceleration_z": { "default_value": 500 },
|
||||
"machine_max_feedrate_e": { "default_value": 120 },
|
||||
"machine_max_feedrate_z": { "default_value": 12 },
|
||||
"machine_max_jerk_e": { "default_value": 2.5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 0.2 },
|
||||
"machine_name": { "default_value": "Geeetech A10" },
|
||||
"machine_start_gcode": { "default_value": "G28 ; Auto home\nG1 Z15 F300 ;Move up slightly\nM107 ;Off fans\nG90 ;Switch to absolute positioning\nM82 ;Extruder absolute mode\nG92 E0 ;Set position of extruder to 0\nG0 X10 Y20 F1500 ;Move to X10 Y20 at 1500mms\nG1 Z0.8 ;Move Z to 0.8\nG1 F300 X180 E40 ;Extrude a line of filament\nG1 F1200 Z2 ;Raise Z\nG92 E0 ;Set extruder position to zero\nG28 ;Auto home" },
|
||||
"machine_width": { "default_value": 220 },
|
||||
"retraction_amount": { "default_value": 0.8 },
|
||||
"retraction_speed": { "default_value": 35 }
|
||||
}
|
||||
}
|
|
@ -1,23 +1,32 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech A10M",
|
||||
"inherits": "Geeetech_Base_Dual_Extruder",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Amit L",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "Geeetech_Dual_Extruder_0",
|
||||
"1": "Geeetech_Dual_Extruder_1"
|
||||
},
|
||||
"preferred_material": "Geeetech_PLA_Cyan"
|
||||
"0": "geeetech_A10M_1",
|
||||
"1": "geeetech_A10M_2"
|
||||
}
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"brim_width": { "value": 10 },
|
||||
"gantry_height": { "value": 28 },
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "28" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.15 },
|
||||
"machine_acceleration": { "default_value": 1000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 220 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-2.5 F2700 ;Retract filament\nG1 E-1.5 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Move away\nG1 Z10 ;lift print head\nG90 ;Switch to absolute positioning\nG28 X Y ;homing XY\nM106 S0 ;off Fan\nM104 S0 ;Cooldown hotend\nM140 S0 ;Cooldown bed\nM84 X Y E ;Disable steppers" },
|
||||
"machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" },
|
||||
"machine_extruder_count": { "default_value": 2 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
|
@ -28,10 +37,16 @@
|
|||
]
|
||||
},
|
||||
"machine_height": { "default_value": 260 },
|
||||
"machine_max_acceleration_z": { "default_value": 500 },
|
||||
"machine_max_feedrate_e": { "default_value": 120 },
|
||||
"machine_max_feedrate_z": { "default_value": 12 },
|
||||
"machine_max_jerk_e": { "default_value": 2.5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 0.2 },
|
||||
"machine_name": { "default_value": "Geeetech A10M" },
|
||||
"machine_start_gcode": { "default_value": ";Geeetech A10M Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" },
|
||||
"machine_start_gcode": { "default_value": ";GeeeTech A10M start script\nG28 ;home\nG90 ;absolute positioning\nG1 X0 Y0 Z15 E0 F300 ;go to wait position\nM140 S{material_bed_temperature_layer_0} ;set bed temp\nM109 S{material_print_temperature_layer_0} ;set extruder temp and wait\nG1 Z0.8 F200 ;set extruder height\nG1 X220 Y0 E80 F1000 ;purge line\n;end of start script" },
|
||||
"machine_width": { "default_value": 220 },
|
||||
"prime_tower_position_x": { "value": 190 },
|
||||
"prime_tower_position_y": { "value": 160 }
|
||||
"retraction_amount": { "default_value": 0.8 },
|
||||
"retraction_speed": { "default_value": 35 }
|
||||
}
|
||||
}
|
|
@ -1,24 +1,33 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech A10T",
|
||||
"inherits": "Geeetech_Base_Multi_Extruder",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Amit L",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "Geeetech_Multi_Extruder_0",
|
||||
"1": "Geeetech_Multi_Extruder_1",
|
||||
"2": "Geeetech_Multi_Extruder_2"
|
||||
},
|
||||
"preferred_material": "Geeetech_PLA_Magenta"
|
||||
"0": "geeetech_A10T_1",
|
||||
"1": "geeetech_A10T_2",
|
||||
"2": "geeetech_A10T_3"
|
||||
}
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"brim_width": { "value": 10 },
|
||||
"gantry_height": { "value": 28 },
|
||||
"machine_depth": { "default_value": 220 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-2.5 F2700 ;Retract filament\nG1 E-1.5 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Move away\nG1 Z10 ;lift print head\nG90 ;Switch to absolute positioning\nG28 X Y ;homing XY\nM106 S0 ;off Fan\nM104 S0 ;Cooldown hotend\nM140 S0 ;Cooldown bed\nM84 X Y E ;Disable steppers" },
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "28" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.15 },
|
||||
"machine_acceleration": { "default_value": 1000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 260 },
|
||||
"machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" },
|
||||
"machine_extruder_count": { "default_value": 3 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
|
@ -28,11 +37,17 @@
|
|||
[-31, -40]
|
||||
]
|
||||
},
|
||||
"machine_height": { "default_value": 260 },
|
||||
"machine_height": { "default_value": 220 },
|
||||
"machine_max_acceleration_z": { "default_value": 500 },
|
||||
"machine_max_feedrate_e": { "default_value": 120 },
|
||||
"machine_max_feedrate_z": { "default_value": 12 },
|
||||
"machine_max_jerk_e": { "default_value": 2.5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 0.2 },
|
||||
"machine_name": { "default_value": "Geeetech A10T" },
|
||||
"machine_start_gcode": { "default_value": ";Geeetech A10T Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" },
|
||||
"machine_start_gcode": { "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nM163 S0 P0.33\nM163 S1 P0.33\nM163 S2 P0.33\nM164 S4\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X180 E40\nG1 F1200 Z2\nG92 E0\nG28" },
|
||||
"machine_width": { "default_value": 220 },
|
||||
"prime_tower_position_x": { "value": 190 },
|
||||
"prime_tower_position_y": { "value": 160 }
|
||||
"retraction_amount": { "default_value": 0.8 },
|
||||
"retraction_speed": { "default_value": 35 }
|
||||
}
|
||||
}
|
|
@ -1,17 +1,28 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech A20",
|
||||
"inherits": "Geeetech_Base_Single_Extruder",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"machine_extruder_trains": { "0": "Geeetech_Single_Extruder" }
|
||||
"author": "Amit L",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains": { "0": "geeetech_A20_1" }
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"gantry_height": { "value": 35 },
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "28" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.15 },
|
||||
"machine_acceleration": { "default_value": 1000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 250 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-2.5 F2700 ;Retract filament\nG1 E-1.5 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Move away\nG1 Z10 ;lift print head\nG90 ;Switch to absolute positioning\nG28 X Y ;homing XY\nM106 S0 ;off Fan\nM104 S0 ;Cooldown hotend\nM140 S0 ;Cooldown bed\nM84 X Y E ;Disable steppers" },
|
||||
"machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
|
@ -22,8 +33,16 @@
|
|||
]
|
||||
},
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_max_acceleration_z": { "default_value": 500 },
|
||||
"machine_max_feedrate_e": { "default_value": 120 },
|
||||
"machine_max_feedrate_z": { "default_value": 12 },
|
||||
"machine_max_jerk_e": { "default_value": 2.5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 0.2 },
|
||||
"machine_name": { "default_value": "Geeetech A20" },
|
||||
"machine_start_gcode": { "default_value": ";Geeetech A20 Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" },
|
||||
"machine_width": { "default_value": 250 }
|
||||
"machine_start_gcode": { "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X200 E40\nG1 F1200 Z2\nG92 E0\nG28" },
|
||||
"machine_width": { "default_value": 250 },
|
||||
"retraction_amount": { "default_value": 0.8 },
|
||||
"retraction_speed": { "default_value": 35 }
|
||||
}
|
||||
}
|
|
@ -1,23 +1,32 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech A20M",
|
||||
"inherits": "Geeetech_Base_Dual_Extruder",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Amit L",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "Geeetech_Dual_Extruder_0",
|
||||
"1": "Geeetech_Dual_Extruder_1"
|
||||
},
|
||||
"preferred_material": "Geeetech_PLA_Yellow"
|
||||
"0": "geeetech_A20M_1",
|
||||
"1": "geeetech_A20M_2"
|
||||
}
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"brim_width": { "value": 10 },
|
||||
"gantry_height": { "value": 35 },
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "28" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.15 },
|
||||
"machine_acceleration": { "default_value": 1000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 250 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-2.5 F2700 ;Retract filament\nG1 E-1.5 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Move away\nG1 Z10 ;lift print head\nG90 ;Switch to absolute positioning\nG28 X Y ;homing XY\nM106 S0 ;off Fan\nM104 S0 ;Cooldown hotend\nM140 S0 ;Cooldown bed\nM84 X Y E ;Disable steppers" },
|
||||
"machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" },
|
||||
"machine_extruder_count": { "default_value": 2 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
|
@ -28,10 +37,16 @@
|
|||
]
|
||||
},
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_max_acceleration_z": { "default_value": 500 },
|
||||
"machine_max_feedrate_e": { "default_value": 120 },
|
||||
"machine_max_feedrate_z": { "default_value": 12 },
|
||||
"machine_max_jerk_e": { "default_value": 2.5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 0.2 },
|
||||
"machine_name": { "default_value": "Geeetech A20M" },
|
||||
"machine_start_gcode": { "default_value": ";Geeetech A20M Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" },
|
||||
"machine_start_gcode": { "default_value": ";GeeeTech A20M start script\nG28 ;home\nG90 ;absolute positioning\nG1 X0 Y0 Z15 E0 F300 ;go to wait position\nM140 S{material_bed_temperature_layer_0} ;set bed temp\nM109 S{material_print_temperature_layer_0} ;set extruder temp and wait\nG1 Z0.8 F200 ;set extruder height\nG1 X220 Y0 E80 F1000 ;purge line\n;end of start script" },
|
||||
"machine_width": { "default_value": 250 },
|
||||
"prime_tower_position_x": { "value": 220 },
|
||||
"prime_tower_position_y": { "value": 190 }
|
||||
"retraction_amount": { "default_value": 0.8 },
|
||||
"retraction_speed": { "default_value": 35 }
|
||||
}
|
||||
}
|
|
@ -1,24 +1,33 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech A20T",
|
||||
"inherits": "Geeetech_Base_Multi_Extruder",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Amit L",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "Geeetech_Multi_Extruder_0",
|
||||
"1": "Geeetech_Multi_Extruder_1",
|
||||
"2": "Geeetech_Multi_Extruder_2"
|
||||
},
|
||||
"preferred_material": "Geeetech_PLA_Red"
|
||||
"0": "geeetech_A20T_1",
|
||||
"1": "geeetech_A20T_2",
|
||||
"2": "geeetech_A20T_3"
|
||||
}
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"brim_width": { "value": 10 },
|
||||
"gantry_height": { "value": 35 },
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "28" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.15 },
|
||||
"machine_acceleration": { "default_value": 1000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 250 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-2.5 F2700 ;Retract filament\nG1 E-1.5 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Move away\nG1 Z10 ;lift print head\nG90 ;Switch to absolute positioning\nG28 X Y ;homing XY\nM106 S0 ;off Fan\nM104 S0 ;Cooldown hotend\nM140 S0 ;Cooldown bed\nM84 X Y E ;Disable steppers" },
|
||||
"machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" },
|
||||
"machine_extruder_count": { "default_value": 3 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
|
@ -29,10 +38,16 @@
|
|||
]
|
||||
},
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_max_acceleration_z": { "default_value": 500 },
|
||||
"machine_max_feedrate_e": { "default_value": 120 },
|
||||
"machine_max_feedrate_z": { "default_value": 12 },
|
||||
"machine_max_jerk_e": { "default_value": 2.5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 0.2 },
|
||||
"machine_name": { "default_value": "Geeetech A20T" },
|
||||
"machine_start_gcode": { "default_value": ";Geeetech A20T Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" },
|
||||
"machine_start_gcode": { "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nM163 S0 P0.33\nM163 S1 P0.33\nM163 S2 P0.33\nM164 S4\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X200 E40\nG1 F1200 Z2\nG92 E0\nG28" },
|
||||
"machine_width": { "default_value": 250 },
|
||||
"prime_tower_position_x": { "value": 220 },
|
||||
"prime_tower_position_y": { "value": 190 }
|
||||
"retraction_amount": { "default_value": 0.8 },
|
||||
"retraction_speed": { "default_value": 35 }
|
||||
}
|
||||
}
|
49
resources/definitions/geeetech_Mizar_S.def.json
Normal file
49
resources/definitions/geeetech_Mizar_S.def.json
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech Mizar_S (legacy)",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Amit L",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains": { "0": "geeetech_Mizar_S_1" }
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "28" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.15 },
|
||||
"machine_acceleration": { "default_value": 1000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 255 },
|
||||
"machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1 ;Retract filament to lower pressure\nG0 X0 Y200 ;Move hotend to left and bed forward\nM104 S0 ;Cooldown hotend\nG90 ;Switch to absolute mode\nG92 E0 ;Set extruder to zero\nM140 S0 ;Cooldown bed\nM84 ; Disable steppers" },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-31, 31],
|
||||
[34, 31],
|
||||
[34, -40],
|
||||
[-31, -40]
|
||||
]
|
||||
},
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 260 },
|
||||
"machine_max_acceleration_z": { "default_value": 500 },
|
||||
"machine_max_feedrate_e": { "default_value": 120 },
|
||||
"machine_max_feedrate_z": { "default_value": 12 },
|
||||
"machine_max_jerk_e": { "default_value": 2.5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 0.2 },
|
||||
"machine_name": { "default_value": "Geeetech Mizar_S (legacy)" },
|
||||
"machine_start_gcode": { "default_value": "G28 ; Auto home\nG1 Z15 F300 ;Move up slightly\nM107 ;Off fans\nG90 ;Switch to absolute positioning\nM82 ;Extruder absolute mode\nG92 E0 ;Set position of extruder to 0\nG0 X10 Y20 F1500 ;Move to X10 Y20 at 1500mms\nG1 Z0.8 ;Move Z to 0.8\nG1 F300 X180 E40 ;Extrude a line of filament\nG1 F1200 Z2 ;Raise Z\nG92 E0 ;Set extruder position to zero\nG28 ;Auto home" },
|
||||
"machine_width": { "default_value": 255 },
|
||||
"retraction_amount": { "default_value": 0.8 },
|
||||
"retraction_speed": { "default_value": 35 }
|
||||
}
|
||||
}
|
56
resources/definitions/geeetech_a30.def.json
Normal file
56
resources/definitions/geeetech_a30.def.json
Normal file
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Geeetech A30",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "William & Cataldo URSO",
|
||||
"manufacturer": "Geeetech",
|
||||
"file_formats": "text/x-gcode",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains": { "0": "geeetech_a30_extruder_0" },
|
||||
"preferred_quality_type": "draft"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"adhesion_type": { "default_value": "skirt" },
|
||||
"gantry_height": { "value": "55" },
|
||||
"layer_height": { "default_value": 0.1 },
|
||||
"layer_height_0": { "default_value": 0.3 },
|
||||
"machine_acceleration": { "default_value": 2000 },
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 320 },
|
||||
"machine_end_gcode": { "default_value": "M104 S0;Cooling the heat end\nM140 S0;Cooling the heat bed\nG92 E1\nG1 E-1 F300\nG28 X0 Y0;Home X axis and Y axis\nM84" },
|
||||
"machine_gcode_flavor": { "default_value": "Repetier" },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default_value": [
|
||||
[-75, 35],
|
||||
[18, 35],
|
||||
[18, -18],
|
||||
[-75, -18]
|
||||
]
|
||||
},
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 420 },
|
||||
"machine_max_acceleration_e": { "default_value": 10000 },
|
||||
"machine_max_acceleration_x": { "default_value": 2000 },
|
||||
"machine_max_acceleration_y": { "default_value": 2000 },
|
||||
"machine_max_acceleration_z": { "default_value": 100 },
|
||||
"machine_max_feedrate_e": { "default_value": 50 },
|
||||
"machine_max_feedrate_x": { "default_value": 300 },
|
||||
"machine_max_feedrate_y": { "default_value": 300 },
|
||||
"machine_max_feedrate_z": { "default_value": 7 },
|
||||
"machine_max_jerk_e": { "default_value": 5 },
|
||||
"machine_max_jerk_xy": { "default_value": 10 },
|
||||
"machine_max_jerk_z": { "default_value": 1 },
|
||||
"machine_name": { "default_value": "Geeetech A30" },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"machine_start_gcode": { "default_value": "G28 ;Home\nM190 S{material_bed_temperature}\nM109 S{material_print_temperature} T0\nG1 Z15.0 F6000 ;Move the platform down 15mm\nG92 E0\nG1 F200 E3\nG92 E0" },
|
||||
"machine_width": { "default_value": 320 },
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"retraction_amount": { "default_value": 2 },
|
||||
"retraction_speed": { "default_value": 25 }
|
||||
}
|
||||
}
|
26
resources/definitions/hellbot_magna_SE_300.def.json
Normal file
26
resources/definitions/hellbot_magna_SE_300.def.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Hellbot Magna SE 300",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Hellbot Development Team",
|
||||
"manufacturer": "Hellbot",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "Hellbot_Magna_SE_300.obj",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains": { "0": "hellbot_magna_SE_300_extruder" },
|
||||
"platform_texture": "Hellbot_Magna_SE_300.png"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 300 },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 400 },
|
||||
"machine_name": { "default_value": "Hellbot Magna SE 300" },
|
||||
"machine_width": { "default_value": 300 }
|
||||
}
|
||||
}
|
26
resources/definitions/hellbot_magna_SE_Pro.def.json
Normal file
26
resources/definitions/hellbot_magna_SE_Pro.def.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Hellbot Magna SE Pro",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Hellbot Development Team",
|
||||
"manufacturer": "Hellbot",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "Hellbot_Magna_SE_Pro.obj",
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains": { "0": "hellbot_magna_SE_Pro_extruder" },
|
||||
"platform_texture": "Hellbot_magna_SE_Pro.png"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"machine_center_is_zero": { "default_value": false },
|
||||
"machine_depth": { "default_value": 230 },
|
||||
"machine_extruder_count": { "default_value": 1 },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_name": { "default_value": "Hellbot Magna SE Pro" },
|
||||
"machine_width": { "default_value": 230 }
|
||||
}
|
||||
}
|
118
resources/definitions/mixware_hyper_k.def.json
Normal file
118
resources/definitions/mixware_hyper_k.def.json
Normal file
|
@ -0,0 +1,118 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Hyper K",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Mixware",
|
||||
"manufacturer": "Mixware",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "mixware_hyper_k_platform.stl",
|
||||
"has_machine_quality": true,
|
||||
"has_materials": true,
|
||||
"machine_extruder_trains": { "0": "mixware_hyper_k_extruder_0" },
|
||||
"preferred_material": "generic_pla",
|
||||
"preferred_quality": "coarse"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_print": { "value": 500 },
|
||||
"acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
|
||||
"acceleration_travel": { "value": 500 },
|
||||
"acceleration_travel_layer_0": { "value": "acceleration_travel" },
|
||||
"adaptive_layer_height_variation": { "value": 0.04 },
|
||||
"adaptive_layer_height_variation_step": { "value": 0.04 },
|
||||
"adhesion_type": { "value": "'skirt'" },
|
||||
"brim_replaces_support": { "value": false },
|
||||
"brim_width": { "default_value": 3 },
|
||||
"cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
|
||||
"cool_min_layer_time": { "value": 10 },
|
||||
"fill_outline_gaps": { "value": false },
|
||||
"gantry_height": { "value": 25 },
|
||||
"infill_before_walls": { "value": false },
|
||||
"infill_overlap": { "value": 30.0 },
|
||||
"infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
|
||||
"infill_wipe_dist": { "value": 0.0 },
|
||||
"ironing_line_spacing": { "default_value": 0.4 },
|
||||
"ironing_pattern": { "default_value": "concentric" },
|
||||
"jerk_print": { "value": 8 },
|
||||
"jerk_travel": { "value": "jerk_print" },
|
||||
"jerk_travel_layer_0": { "value": "jerk_travel" },
|
||||
"machine_acceleration": { "value": 500 },
|
||||
"machine_depth": { "default_value": 225 },
|
||||
"machine_end_gcode": { "default_value": "G91; relative positioning\nG1 Z1.0 F3000 ; move z up little to prevent scratching of print\nG90; absolute positioning\nG1 X0 Y200 F1000 ; prepare for part removal\nM104 S0; turn off extruder\nM140 S0 ; turn off bed\nG1 X0 Y220 F1000 ; prepare for part removal\nM84 ; disable motors\nM106 S0 ; turn off fan" },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_max_acceleration_e": { "value": 5000 },
|
||||
"machine_max_acceleration_x": { "value": 500 },
|
||||
"machine_max_acceleration_y": { "value": 500 },
|
||||
"machine_max_acceleration_z": { "value": 100 },
|
||||
"machine_max_feedrate_e": { "value": 50 },
|
||||
"machine_max_feedrate_x": { "value": 500 },
|
||||
"machine_max_feedrate_y": { "value": 500 },
|
||||
"machine_max_feedrate_z": { "value": 10 },
|
||||
"machine_max_jerk_e": { "value": 5 },
|
||||
"machine_max_jerk_xy": { "value": 10 },
|
||||
"machine_max_jerk_z": { "value": 0.4 },
|
||||
"machine_name": { "default_value": "Hyper K" },
|
||||
"machine_start_gcode": { "default_value": "M140 S{material_bed_temperature} ; Heat bed\nM109 S{material_print_temperature} ; Heat nozzle\nM190 S{material_bed_temperature} ; Wait for bed heating\nG28 ; home all axes\nM117 Purge extruder\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface\nG1 X0.1 Y20 Z0.3 F5000.0 ; move to start-line position\nG1 X0.1 Y100.0 Z0.3 F1500.0 E15 ; draw 1st line\nG1 X0.4 Y100.0 Z0.3 F5000.0 ; move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; draw 2nd line\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface" },
|
||||
"machine_width": { "default_value": 225 },
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"material_final_print_temperature": { "value": "material_print_temperature" },
|
||||
"material_initial_print_temperature": { "value": "material_print_temperature" },
|
||||
"meshfix_maximum_resolution": { "value": "0.25" },
|
||||
"meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
|
||||
"minimum_interface_area": { "value": 10 },
|
||||
"minimum_support_area": { "value": 2 },
|
||||
"optimize_wall_printing_order": { "value": "True" },
|
||||
"raft_airgap": { "default_value": 0.24 },
|
||||
"raft_margin":
|
||||
{
|
||||
"default_value": 3,
|
||||
"minimum_value_warning": "0.01"
|
||||
},
|
||||
"retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
|
||||
"retraction_combing_max_distance": { "value": 30 },
|
||||
"retraction_count_max": { "value": 100 },
|
||||
"retraction_extrusion_window": { "value": 10 },
|
||||
"retraction_hop": { "value": 0.2 },
|
||||
"retraction_prime_speed": { "maximum_value": 200 },
|
||||
"retraction_retract_speed": { "maximum_value": 200 },
|
||||
"retraction_speed": { "maximum_value": 200 },
|
||||
"skin_overlap": { "value": 10.0 },
|
||||
"skirt_gap": { "value": 10.0 },
|
||||
"skirt_line_count": { "value": 3 },
|
||||
"speed_layer_0": { "value": 20.0 },
|
||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
||||
"speed_print": { "value": 50.0 },
|
||||
"speed_support": { "value": "speed_wall_0" },
|
||||
"speed_support_interface": { "value": "speed_topbottom" },
|
||||
"speed_travel": { "value": "120.0 if speed_print < 60 else 240.0 if speed_print > 100 else speed_print * 2.5" },
|
||||
"speed_travel_layer_0": { "value": "60 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
|
||||
"speed_z_hop": { "value": 5 },
|
||||
"support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
|
||||
"support_brim_enable": { "value": true },
|
||||
"support_brim_width": { "value": 4 },
|
||||
"support_enable": { "default_value": true },
|
||||
"support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 15" },
|
||||
"support_interface_density": { "value": 33.333 },
|
||||
"support_interface_enable": { "value": true },
|
||||
"support_interface_height": { "value": "layer_height * 4" },
|
||||
"support_interface_pattern": { "value": "'grid'" },
|
||||
"support_type": { "default_value": "buildplate" },
|
||||
"support_use_towers": { "value": false },
|
||||
"support_xy_distance": { "value": "wall_line_width_0 * 2" },
|
||||
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
|
||||
"support_xy_overrides_z": { "value": "'xy_overrides_z'" },
|
||||
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" },
|
||||
"top_bottom_pattern": { "default_value": "zigzag" },
|
||||
"top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" },
|
||||
"travel_avoid_supports": { "value": true },
|
||||
"travel_retract_before_outer_wall": { "value": true },
|
||||
"wall_0_wipe_dist": { "value": 0.0 },
|
||||
"wall_thickness": { "value": "line_width * 2" },
|
||||
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
|
||||
"z_seam_type": { "value": "'back'" }
|
||||
}
|
||||
}
|
|
@ -78,10 +78,9 @@
|
|||
"minimum_value_warning": "0.01"
|
||||
},
|
||||
"retraction_amount": { "default_value": 2 },
|
||||
"retraction_combing": { "value": "all" },
|
||||
"retraction_combing_max_distance": { "default_value": 30 },
|
||||
"retraction_combing": { "value": "off" },
|
||||
"retraction_combing_max_distance": { "default_value": 0.5 },
|
||||
"retraction_count_max": { "default_value": 100 },
|
||||
"retraction_enable": { "default_value": true },
|
||||
"retraction_extrusion_window":
|
||||
{
|
||||
"maximum_value_warning": "20",
|
||||
|
@ -106,29 +105,22 @@
|
|||
"maximum_value": "200",
|
||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')"
|
||||
},
|
||||
"skin_no_small_gaps_heuristic": { "default_value": false },
|
||||
"skin_overlap": { "value": 10.0 },
|
||||
"skirt_brim_speed": { "value": "speed_layer_0" },
|
||||
"skirt_gap": { "default_value": 8.0 },
|
||||
"skirt_line_count": { "default_value": 3 },
|
||||
"speed_layer_0": { "value": "speed_print / 2" },
|
||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
||||
"speed_print": { "default_value": 40.0 },
|
||||
"speed_roofing": { "value": "speed_topbottom" },
|
||||
"speed_support": { "value": "speed_wall_0" },
|
||||
"speed_support_interface": { "value": "speed_topbottom" },
|
||||
"speed_topbottom": { "value": "speed_print / 2" },
|
||||
"speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
|
||||
"speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
|
||||
"speed_wall_0": { "value": "speed_wall" },
|
||||
"speed_travel": { "value": "120.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
|
||||
"speed_travel_layer_0": { "value": "60 if speed_layer_0 < 20 else 120 if speed_layer_0 > 30 else speed_layer_0 * 5" },
|
||||
"speed_wall_x": { "value": "speed_wall" },
|
||||
"speed_z_hop": { "default_value": 5 },
|
||||
"support_angle": { "default_value": 60 },
|
||||
"support_brim_enable": { "value": false },
|
||||
"support_bottom_stair_step_height": { "value": 0.2 },
|
||||
"support_brim_width": { "default_value": 4 },
|
||||
"support_enable": { "default_value": true },
|
||||
"support_infill_rate": { "value": 15 },
|
||||
"support_interface_density": { "default_value": 33.333 },
|
||||
"support_interface_density": { "default_value": 80 },
|
||||
"support_interface_enable": { "default_value": true },
|
||||
"support_interface_height": { "value": "layer_height * 4" },
|
||||
"support_interface_pattern": { "default_value": "grid" },
|
||||
|
@ -138,14 +130,14 @@
|
|||
"support_xy_distance": { "value": "wall_line_width_0 * 2" },
|
||||
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
|
||||
"support_xy_overrides_z": { "default_value": "xy_overrides_z" },
|
||||
"support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" },
|
||||
"support_z_distance": { "value": "layer_height" },
|
||||
"top_bottom_pattern": { "default_value": "zigzag" },
|
||||
"top_bottom_thickness": { "default_value": 0.8 },
|
||||
"travel_avoid_other_parts": { "default_value": false },
|
||||
"travel_avoid_supports": { "default_value": true },
|
||||
"travel_retract_before_outer_wall": { "default_value": true },
|
||||
"wall_0_wipe_dist": { "value": 0.0 },
|
||||
"wall_thickness": { "value": "line_width * 2" },
|
||||
"z_seam_type": { "default_value": "shortest" }
|
||||
"z_seam_corner": { "default_value": "z_seam_corner_weighted" },
|
||||
"z_seam_type": { "default_value": "back" }
|
||||
}
|
||||
}
|
149
resources/definitions/mixware_vulcan.def.json
Normal file
149
resources/definitions/mixware_vulcan.def.json
Normal file
|
@ -0,0 +1,149 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Vulcan",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Mixware",
|
||||
"manufacturer": "Mixware",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "mixware_vulcan_platform.stl",
|
||||
"has_machine_quality": true,
|
||||
"has_materials": true,
|
||||
"has_variants": false,
|
||||
"machine_extruder_trains": { "0": "mixware_vulcan_extruder_0" },
|
||||
"preferred_material": "generic_pla",
|
||||
"preferred_quality": "coarse"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_enabled": { "default_value": true },
|
||||
"acceleration_print": { "default_value": 500 },
|
||||
"acceleration_travel": { "value": 500 },
|
||||
"adhesion_type": { "default_value": "raft" },
|
||||
"brim_width":
|
||||
{
|
||||
"default_value": 5,
|
||||
"maximum_warning_value": "10",
|
||||
"minimum_warning_value": "0"
|
||||
},
|
||||
"infill_before_walls": { "default_value": false },
|
||||
"layer_height":
|
||||
{
|
||||
"maximum_warning_value": "0.3",
|
||||
"minimum_warning_value": "0.05"
|
||||
},
|
||||
"machine_center_is_zero": { "default_value": true },
|
||||
"machine_depth": { "default_value": 240 },
|
||||
"machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28\nM84" },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_height": { "default_value": 250 },
|
||||
"machine_name": { "default_value": "Vulcan" },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"machine_shape": { "default_value": "elliptic" },
|
||||
"machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" },
|
||||
"machine_width": { "default_value": 240 },
|
||||
"material_bed_temperature":
|
||||
{
|
||||
"maximum_warning_value": "105",
|
||||
"minimum_warning_value": "0"
|
||||
},
|
||||
"material_diameter": { "default_value": 1.75 },
|
||||
"material_print_temperature":
|
||||
{
|
||||
"maximum_warning_value": "250",
|
||||
"minimum_warning_value": "180",
|
||||
"value": 200
|
||||
},
|
||||
"optimize_wall_printing_order": { "default_value": true },
|
||||
"raft_airgap":
|
||||
{
|
||||
"default_value": 0.24,
|
||||
"maximum_warning_value": "0.3",
|
||||
"minimum_warning_value": "0.2"
|
||||
},
|
||||
"raft_margin":
|
||||
{
|
||||
"default_value": 3,
|
||||
"maximum_warning_value": "10",
|
||||
"minimum_warning_value": "0",
|
||||
"minimum_warning_value_warning": "0.01"
|
||||
},
|
||||
"retraction_amount":
|
||||
{
|
||||
"default_value": 5.5,
|
||||
"maximum_warning_value": "5.5",
|
||||
"minimum_warning_value": "4"
|
||||
},
|
||||
"retraction_extrusion_window":
|
||||
{
|
||||
"maximum_warning_value": "5.5",
|
||||
"minimum_warning_value": "4"
|
||||
},
|
||||
"retraction_prime_speed":
|
||||
{
|
||||
"maximum_warning_value": "55",
|
||||
"minimum_warning_value": "40",
|
||||
"value": 40
|
||||
},
|
||||
"retraction_retract_speed":
|
||||
{
|
||||
"maximum_warning_value": "55",
|
||||
"minimum_warning_value": "40",
|
||||
"value": 40
|
||||
},
|
||||
"retraction_speed":
|
||||
{
|
||||
"default_value": 40,
|
||||
"maximum_warning_value": "55",
|
||||
"minimum_warning_value": "40"
|
||||
},
|
||||
"skirt_gap":
|
||||
{
|
||||
"maximum_warning_value": "5",
|
||||
"minimum_warning_value": "0"
|
||||
},
|
||||
"speed_print":
|
||||
{
|
||||
"default_value": 40,
|
||||
"maximum_warning_value": "60",
|
||||
"minimum_warning_value": "5"
|
||||
},
|
||||
"speed_travel":
|
||||
{
|
||||
"maximum_warning_value": "150",
|
||||
"minimum_warning_value": "80",
|
||||
"value": 80
|
||||
},
|
||||
"support_enable": { "default_value": true },
|
||||
"support_infill_rate": { "value": 20 },
|
||||
"support_interface_enable": { "default_value": true },
|
||||
"support_offset": { "value": 0.2 },
|
||||
"support_roof_enable": { "value": true },
|
||||
"support_top_distance":
|
||||
{
|
||||
"maximum_warning_value": "0.25",
|
||||
"minimum_warning_value": "0.15",
|
||||
"value": 0.25
|
||||
},
|
||||
"support_z_distance":
|
||||
{
|
||||
"default_value": 0.25,
|
||||
"maximum_warning_value": "0.25",
|
||||
"minimum_warning_value": "0.15"
|
||||
},
|
||||
"top_bottom_thickness":
|
||||
{
|
||||
"default_value": 1.0,
|
||||
"maximum_warning_value": "2",
|
||||
"minimum_warning_value": "0"
|
||||
},
|
||||
"travel_avoid_other_parts": { "default_value": false },
|
||||
"wall_thickness":
|
||||
{
|
||||
"maximum_warning_value": "2",
|
||||
"minimum_warning_value": "0.4"
|
||||
}
|
||||
}
|
||||
}
|
147
resources/definitions/mixware_wand.def.json
Normal file
147
resources/definitions/mixware_wand.def.json
Normal file
|
@ -0,0 +1,147 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Wand",
|
||||
"inherits": "fdmprinter",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Mixware",
|
||||
"manufacturer": "Mixware",
|
||||
"file_formats": "text/x-gcode",
|
||||
"platform": "mixware_wand_platform.stl",
|
||||
"has_machine_quality": true,
|
||||
"has_materials": true,
|
||||
"has_variants": false,
|
||||
"machine_extruder_trains": { "0": "mixware_wand_extruder_0" },
|
||||
"preferred_material": "generic_pla",
|
||||
"preferred_quality": "coarse"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"acceleration_enabled": { "default_value": true },
|
||||
"acceleration_print": { "default_value": 500 },
|
||||
"acceleration_travel": { "value": 500 },
|
||||
"adhesion_type": { "default_value": "raft" },
|
||||
"brim_width":
|
||||
{
|
||||
"default_value": 3,
|
||||
"maximum_warning_value": "3",
|
||||
"minimum_warning_value": "0"
|
||||
},
|
||||
"infill_before_walls": { "default_value": false },
|
||||
"layer_height":
|
||||
{
|
||||
"maximum_warning_value": "0.2",
|
||||
"minimum_warning_value": "0.05"
|
||||
},
|
||||
"machine_depth": { "default_value": 102 },
|
||||
"machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E3 F300\nG1 F1500 Z100\nG28 X0 Y0\nM25\nM84" },
|
||||
"machine_height": { "default_value": 102 },
|
||||
"machine_name": { "default_value": "Wand" },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"machine_start_gcode": { "default_value": "G28 ;Home\n;Prime the extruder\nM117 Print\nG92 E0\nG1 F1500 X-2 Y0 Z0.28\nG1 F2400 X-2 Y70 Z0.28 E8\nG1 F1500 X-1.7 Y70 Z0.28\nG1 F2400 X-1.7 Y0 Z0.28 E16\nG92 E0\nG92 E0\nG1 Z0.18 F2400 ;Move Z Axis up" },
|
||||
"machine_width": { "default_value": 102 },
|
||||
"material_bed_temperature": { "value": 0 },
|
||||
"material_print_temperature":
|
||||
{
|
||||
"maximum_warning_value": "220",
|
||||
"minimum_warning_value": "180",
|
||||
"value": 200
|
||||
},
|
||||
"optimize_wall_printing_order": { "default_value": true },
|
||||
"raft_airgap":
|
||||
{
|
||||
"default_value": 0.23,
|
||||
"maximum_warning_value": "0.3",
|
||||
"minimum_warning_value": "0.2"
|
||||
},
|
||||
"raft_base_line_spacing": { "value": 1.0 },
|
||||
"raft_base_thickness": { "value": 0.36 },
|
||||
"raft_margin":
|
||||
{
|
||||
"default_value": 1,
|
||||
"minimum_warning_value": "0",
|
||||
"minimum_warning_value_warning": "0.01"
|
||||
},
|
||||
"retraction_amount":
|
||||
{
|
||||
"default_value": 4,
|
||||
"maximum_warning_value": "5.5",
|
||||
"minimum_warning_value": "2"
|
||||
},
|
||||
"retraction_extrusion_window":
|
||||
{
|
||||
"maximum_warning_value": "5.5",
|
||||
"minimum_warning_value": "2",
|
||||
"value": 3
|
||||
},
|
||||
"retraction_prime_speed":
|
||||
{
|
||||
"maximum_warning_value": "55",
|
||||
"minimum_warning_value": "40",
|
||||
"value": 40
|
||||
},
|
||||
"retraction_retract_speed":
|
||||
{
|
||||
"maximum_warning_value": "55",
|
||||
"minimum_warning_value": "40",
|
||||
"value": 40
|
||||
},
|
||||
"retraction_speed":
|
||||
{
|
||||
"default_value": 40,
|
||||
"maximum_warning_value": "55",
|
||||
"minimum_warning_value": "40"
|
||||
},
|
||||
"skirt_gap":
|
||||
{
|
||||
"default_value": 2,
|
||||
"maximum_warning_value": "2",
|
||||
"minimum_warning_value": "0"
|
||||
},
|
||||
"speed_print":
|
||||
{
|
||||
"default_value": 40,
|
||||
"maximum_warning_value": "71",
|
||||
"minimum_warning_value": "20"
|
||||
},
|
||||
"speed_travel":
|
||||
{
|
||||
"maximum_warning_value": "120",
|
||||
"minimum_warning_value": "80",
|
||||
"value": 80
|
||||
},
|
||||
"support_angle": { "default_value": 60 },
|
||||
"support_enable": { "default_value": true },
|
||||
"support_infill_rate": { "value": 20 },
|
||||
"support_interface_enable": { "default_value": true },
|
||||
"support_offset": { "value": 0.2 },
|
||||
"support_roof_enable": { "value": true },
|
||||
"support_top_distance":
|
||||
{
|
||||
"maximum_warning_value": "0.25",
|
||||
"minimum_warning_value": "0.15",
|
||||
"value": 0.25
|
||||
},
|
||||
"support_z_distance":
|
||||
{
|
||||
"default_value": 0.25,
|
||||
"maximum_warning_value": "0.25",
|
||||
"minimum_warning_value": "0.15"
|
||||
},
|
||||
"top_bottom_thickness":
|
||||
{
|
||||
"default_value": 1.0,
|
||||
"maximum_warning_value": "2"
|
||||
},
|
||||
"travel_avoid_other_parts": { "default_value": false },
|
||||
"travel_retract_before_outer_wall": { "value": true },
|
||||
"wall_thickness":
|
||||
{
|
||||
"maximum_warning_value": "1.6",
|
||||
"minimum_warning_value": "0.4"
|
||||
},
|
||||
"z_seam_type": { "default_value": "back" },
|
||||
"z_seam_y": { "value": 99 }
|
||||
}
|
||||
}
|
|
@ -196,7 +196,7 @@
|
|||
"wall_line_width": { "value": "machine_nozzle_size" },
|
||||
"wall_overhang_angle": { "default_value": 75 },
|
||||
"wall_overhang_speed_factor": { "default_value": 50 },
|
||||
"xy_offset_layer_0": { "value": 0.3 },
|
||||
"xy_offset_layer_0": { "value": -0.3 },
|
||||
"z_seam_type": { "value": "'back'" },
|
||||
"zig_zaggify_infill": { "value": true }
|
||||
}
|
||||
|
|
20
resources/extruders/geeetech_A10M_1.def.json
Normal file
20
resources/extruders/geeetech_A10M_1.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A10M",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A10M_2.def.json
Normal file
20
resources/extruders/geeetech_A10M_2.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 2",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A10M",
|
||||
"position": "1"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 1,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A10T_1.def.json
Normal file
20
resources/extruders/geeetech_A10T_1.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A10T",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "2"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A10T_2.def.json
Normal file
20
resources/extruders/geeetech_A10T_2.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 2",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A10T",
|
||||
"position": "1"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 1,
|
||||
"maximum_value": "2"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A10T_3.def.json
Normal file
20
resources/extruders/geeetech_A10T_3.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 3",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A10T",
|
||||
"position": "2"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 2,
|
||||
"maximum_value": "2"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
16
resources/extruders/geeetech_A10_1.def.json
Normal file
16
resources/extruders/geeetech_A10_1.def.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A10",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A20M_1.def.json
Normal file
20
resources/extruders/geeetech_A20M_1.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A20M",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A20M_2.def.json
Normal file
20
resources/extruders/geeetech_A20M_2.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 2",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A20M",
|
||||
"position": "1"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 1,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A20T_1.def.json
Normal file
20
resources/extruders/geeetech_A20T_1.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A20T",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "2"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A20T_2.def.json
Normal file
20
resources/extruders/geeetech_A20T_2.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 2",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A20T",
|
||||
"position": "1"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 1,
|
||||
"maximum_value": "2"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/geeetech_A20T_3.def.json
Normal file
20
resources/extruders/geeetech_A20T_3.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 3",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_A20T",
|
||||
"position": "2"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 2,
|
||||
"maximum_value": "2"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
16
resources/extruders/geeetech_Mizar_S_1.def.json
Normal file
16
resources/extruders/geeetech_Mizar_S_1.def.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_Mizar_S",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
16
resources/extruders/geeetech_a30_extruder_0.def.json
Normal file
16
resources/extruders/geeetech_a30_extruder_0.def.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "geeetech_a30",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/hellbot_magna_SE_300_extruder.def.json
Normal file
20
resources/extruders/hellbot_magna_SE_300_extruder.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "hellbot_magna_SE_300",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
20
resources/extruders/hellbot_magna_SE_Pro_extruder.def.json
Normal file
20
resources/extruders/hellbot_magna_SE_Pro_extruder.def.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "hellbot_magna_SE_Pro",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
16
resources/extruders/mixware_hyper_k_extruder_0.def.json
Normal file
16
resources/extruders/mixware_hyper_k_extruder_0.def.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "mixware_hyper_k",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"name": "Extruder",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
|
|
16
resources/extruders/mixware_vulcan_extruder_0.def.json
Normal file
16
resources/extruders/mixware_vulcan_extruder_0.def.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "mixware_vulcan",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
16
resources/extruders/mixware_wand_extruder_0.def.json
Normal file
16
resources/extruders/mixware_wand_extruder_0.def.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"version": 2,
|
||||
"name": "Extruder",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "mixware_wand",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr": { "default_value": 0 },
|
||||
"machine_nozzle_size": { "default_value": 0.4 },
|
||||
"material_diameter": { "default_value": 1.75 }
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: 2020-02-20 17:30+0100\n"
|
||||
"Last-Translator: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
|
|
|
@ -7,15 +7,15 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"PO-Revision-Date: 2022-10-10 19:45+0200\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: 2023-02-16 20:35+0100\n"
|
||||
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
"Language: cs_CZ\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.1.1\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_inset description"
|
||||
|
@ -75,7 +75,7 @@ msgstr "Seznam polygonů s oblastmi, do kterých tisková hlava nemá přístup.
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Část plně obklopená jinou částí může generovat vnější límec, který se dotýká vnitřku obklopující části. Toto nastavení odstraní límec v dané vzdálenosti od vnitřních otvorů."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -284,7 +284,7 @@ msgstr "Použít offset extruderu v souřadnicovém systému. Ovlivňuje všechn
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "V místech, kde se modely dotýkají, budou generovány vzájemně propletené struktury. Ty zlepšují adhezi mezi modely, obzvláště u modelů tištěných z různých materiálů."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -484,7 +484,7 @@ msgstr "Vzdálenost límce"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Vzdálenost od límce uvnitř"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1494,7 +1494,7 @@ msgstr "Výška rámu tiskárny"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Generovat vzájemné propletení"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1559,7 +1559,7 @@ msgstr "Postupné kroky vyplňování podpory"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Postupně ochlazuje na tuto teplotu, když se tiskne při snížených rychlostech kvůli minimální doby vrstvy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1641,6 +1641,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Horizontální expanze díry"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2049,27 +2054,27 @@ msgstr "Zevnitř ven"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Počet vrstev paprsků vzájemného propletení"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Šířka paprsku vzájemného propletení"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Vyhýbání vzájemného propletení hranicím"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Hloubka vzájemného propletení"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Orientace vzájemného propletení"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3181,6 +3186,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Teplota při tisku první vrstvy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3666,6 +3676,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Vzdálenost okraj"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3732,10 +3747,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Maximální velikost malé díry"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Konečná teplota tisku"
|
||||
msgstr "Teplota tisku malých vrstev"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3747,6 +3766,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Drobné části budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3888,10 +3917,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Vzdálenost spodní podpory"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Počet podpůrných stěn"
|
||||
msgstr "Počet stěn v podlaze podpor"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4089,10 +4117,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Tloušťka rozhraní podpor"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Počet podpůrných stěn"
|
||||
msgstr "Počet stěn rozhraní podpor"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4195,10 +4222,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Tloušťka podpor střechy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Počet podpůrných stěn"
|
||||
msgstr "Počet stěn ve střeše podpor"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4233,7 +4259,7 @@ msgstr "Vzdálenost horní podpory"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "support_wall_count label"
|
||||
msgid "Support Wall Line Count"
|
||||
msgstr "Počet podpůrných stěn"
|
||||
msgstr "Počet stěn podpor"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_xy_distance label"
|
||||
|
@ -4275,6 +4301,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Povrchová energie."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4478,7 +4509,7 @@ msgstr "Úhel přesahu vnějších stěn vytvořených pro formu. 0° způsobí,
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_branch_diameter_angle description"
|
||||
msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
|
||||
msgstr "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_angle description"
|
||||
|
@ -4602,8 +4633,8 @@ msgstr "Vzdálenost ujetá při vytváření spojení od obrysu střechy dovnit
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "Vzdálenost od hranic mezi modely, do jaké generovat vzájemně propletené struktury (měřeno v buňkách). Příliš málo buněk způsobí špatnou přilnavost."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4611,10 +4642,9 @@ msgid "The distance from the model to the outermost brim line. A larger brim enh
|
|||
msgstr "Vzdálenost od modelu k nejzazší linii límce. Větší límec zvyšuje přilnavost k podložce, ale také snižuje efektivní tiskovou plochu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr "Vzdálenost od konce trysky, kde se má zaparkovat vlákno, když se extrudér již nepoužívá."
|
||||
msgstr "Vzdálenost od vnějšku modelu, ve které nebudou vzájemně propletené se struktury generovány. Měřeno v buňkách."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4844,12 +4874,12 @@ msgstr "Výška podpůrné výplně dané hustoty před přepnutím na polovinu
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "Výška paprsků vzájemného propletení. Měřeno v počtu vrstev. Méně vrstev způsobí větší pevnost, ale zvýší náchylnost k vadám."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "Výška paprsků vzájemného propletení. Měřeno v počtu vrstev. Méně vrstev způsobí větší pevnost, ale zvýší náchylnost k vadám."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5258,25 +5288,22 @@ msgstr "Počet nejpřednějších vrstev pokožky. Obvykle stačí jedna horní
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "support_wall_count description"
|
||||
msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Počet stěn, které mají obklopovat, se vyplní. Přidání zdi může zajistit spolehlivější podporu tisku a lepší podporu převisů, ale zvyšuje dobu tisku a spotřebovaný materiál."
|
||||
msgstr "Počet stěn, který mají mít podpory. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Počet stěn, které mají obklopovat, se vyplní. Přidání zdi může zajistit spolehlivější podporu tisku a lepší podporu převisů, ale zvyšuje dobu tisku a spotřebovaný materiál."
|
||||
msgstr "Počet stěn, který mají mít podlahy podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Počet stěn, které mají obklopovat, se vyplní. Přidání zdi může zajistit spolehlivější podporu tisku a lepší podporu převisů, ale zvyšuje dobu tisku a spotřebovaný materiál."
|
||||
msgstr "Počet stěn, který mají mít střechy podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Počet stěn, které mají obklopovat, se vyplní. Přidání zdi může zajistit spolehlivější podporu tisku a lepší podporu převisů, ale zvyšuje dobu tisku a spotřebovaný materiál."
|
||||
msgstr "Počet stěn, který mají mít rozhraní podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5699,10 +5726,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "Šířka okraje pro tisk pod podpěrou. Větší okraj zvyšuje přilnavost ke podložce za cenu nějakého dalšího materiálu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "Šířka hlavní věže."
|
||||
msgstr "Šířka paprsků vzájemného propletení."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6319,6 +6345,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Pokud je větší než nula, combingové pohyby delší než tato vzdálenost budou používat retrakci. Nula znamená, že se při combingových pohybech retrakce provádět nebudou."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzuläss
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hierdurch wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "Erzeugen Sie an den Stellen, an denen sich Modelle berühren, eine Struktur aus ineinandergreifenden Balken. Dies verbessert die Haftung zwischen Modellen, insbesondere Modellen, die aus verschiedenen Materialien gedruckt sind."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "Abstand zum Brim-Element"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Innerer Umgehungsabstand zum Brim-Element"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1491,7 +1491,7 @@ msgstr "Brückenhöhe"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Ineinandergreifende Struktur generieren"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1556,7 +1556,7 @@ msgstr "Stufenweise Füllungsschritte Stützstruktur"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Horizontalloch-Erweiterung"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2046,27 +2051,27 @@ msgstr "Von innen nach außen"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Anzahl der Schichten ineinandergreifender Balken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Breite der ineinandergreifenden Balken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Tiefe der ineinandergreifenden Struktur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Ausrichtung der ineinandergreifenden Struktur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -2441,7 +2446,7 @@ msgstr "Maximaler Winkel Außenhaut für Expansion"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "machine_max_feedrate_e label"
|
||||
msgid "Maximum Speed E"
|
||||
msgstr "Maximum Speed E"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_max_feedrate_x label"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Drucktemperatur erste Schicht"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3416,7 +3426,7 @@ msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "relative_extrusion label"
|
||||
msgid "Relative Extrusion"
|
||||
msgstr "Relative Extrusion"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix_union_all_remove_holes label"
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Skirt-Abstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3729,10 +3744,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Max. Lochdurchmesser"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Endgültige Drucktemperatur"
|
||||
msgstr "Drucktemperatur für kleine Schichten"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,10 +3914,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Unterer Abstand der Stützstruktur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Anzahl der Wandlinien der Stützstruktur"
|
||||
msgstr "Anzahl der unteren Wandlinien der Stützstruktur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Dicke der Stützstrukturschnittstelle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Anzahl der Wandlinien der Stützstruktur"
|
||||
msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Dicke des Stützdachs"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Anzahl der Wandlinien der Stützstruktur"
|
||||
msgstr "Anzahl der Wandlinien des Stützdachs"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Oberflächenenergie."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4599,8 +4630,8 @@ msgstr "Der abgedeckte Abstand beim Herstellen einer Verbindung vom Dachumriss n
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "Der Abstand von der Begrenzung zwischen Modellen, in dem eine ineinandergreifende Struktur generiert wird, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4610,7 +4641,7 @@ msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-El
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4650,7 +4681,7 @@ msgstr "Die Strecke, um die horizontale Dachlinien, die „schwebend“ gedruckt
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "lightning_infill_prune_angle description"
|
||||
msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
|
||||
msgstr "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_extrusion_cool_down_speed description"
|
||||
|
@ -4840,12 +4871,12 @@ msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Um
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -4879,7 +4910,7 @@ msgstr ""
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "lightning_infill_straightening_angle description"
|
||||
msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
|
||||
msgstr "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_offset_x description"
|
||||
|
@ -5257,22 +5288,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
|
||||
msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben werden soll. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
|
||||
msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
|
||||
msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5292,7 +5320,7 @@ msgstr "Der Außendurchmesser der Düsenspitze."
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern description"
|
||||
msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
|
||||
msgstr "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_pattern description"
|
||||
|
@ -5695,10 +5723,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "Die Breite des Einzugsturms."
|
||||
msgstr "Die Breite der Balken in der ineinandergreifenden Struktur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6315,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
@ -6774,19 +6806,3 @@ msgstr "Zickzack"
|
|||
msgctxt "travel description"
|
||||
msgid "travel"
|
||||
msgstr "Bewegungen"
|
||||
|
||||
#~ msgctxt "material_flow_dependent_temperature label"
|
||||
#~ msgid "Auto Temperature"
|
||||
#~ msgstr "Automatische Temperatur"
|
||||
|
||||
#~ msgctxt "material_flow_dependent_temperature description"
|
||||
#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
|
||||
#~ msgstr "Die Temperatur wird für jede Schicht automatisch anhand der durchschnittlichen Fließgeschwindigkeit dieser Schicht geändert."
|
||||
|
||||
#~ msgctxt "limit_support_retractions label"
|
||||
#~ msgid "Limit Support Retractions"
|
||||
#~ msgstr "Stützstruktur-Einzüge einschränken"
|
||||
|
||||
#~ msgctxt "limit_support_retractions description"
|
||||
#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
#~ msgstr "Lassen Sie den Einzug beim Vorgehen von Stützstruktur zu Stützstruktur in einer geraden Linie aus. Die Aktivierung dieser Einstellung spart Druckzeit, kann jedoch zu übermäßigem Fadenziehen innerhalb der Stützstruktur führen."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene per
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Una pieza completamente cerrada dentro de otra pieza puede generar un borde exterior que toque el interior de la otra pieza. Esta función elimina todos los bordes situados a menos de esta distancia de los orificios internos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influy
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "En las zonas donde se tocan los modelos, genere una estructura de haz entrelazado. Esta función mejora la adhesión entre modelos, especialmente en los modelos impresos con diferentes materiales."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "Distancia del borde"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Margen a evitar del borde interior"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1491,7 +1491,7 @@ msgstr "Altura del puente"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Generar estructuras de entrelazado"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1556,7 +1556,7 @@ msgstr "Escalones de relleno de soporte"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Reducir gradualmente a esta temperatura al imprimir a velocidades bajas debido al tiempo mínimo por capa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Expansión horizontal de orificios"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2046,27 +2051,27 @@ msgstr "Del interior al exterior"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Recuento de capas de haz entrelazado"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Ancho del haz entrelazado"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Evitar los límites del entrelazado"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Profundidad del entrelazado"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Orientación de la estructura entrelazada"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Temperatura de impresión de la capa inicial"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Distancia de falda"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3729,10 +3744,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Tamaño máximo de agujero pequeño"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Temperatura de impresión final"
|
||||
msgstr "Temperatura de impresión para capas pequeñas"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,10 +3914,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Distancia inferior del soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Recuento de líneas de pared del soporte"
|
||||
msgstr "Recuento de líneas de pared de la base de soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Grosor de la interfaz del soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Recuento de líneas de pared del soporte"
|
||||
msgstr "Recuento de líneas de pared de la interfaz de soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Grosor del techo del soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Recuento de líneas de pared del soporte"
|
||||
msgstr "Recuento de líneas de pared del techo de soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Energía de la superficie."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4599,8 +4630,8 @@ msgstr "Distancia cubierta al hacer una conexión desde un contorno del techo ha
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4610,7 +4641,7 @@ msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde m
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "La distancia desde el exterior de un modelo en la que no se generarán estructuras entrelazadas, medida en celdas."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4840,12 +4871,12 @@ msgstr "Altura del relleno de soporte de una determinada densidad antes de cambi
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5257,22 +5288,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado."
|
||||
msgstr "El número de paredes con las que rodear la base de la interfaz de soporte. Añadir una pared puede hacer que la impresión del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado."
|
||||
msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la impresión del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado."
|
||||
msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la impresión del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5695,10 +5723,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "Anchura de la torre auxiliar."
|
||||
msgstr "El ancho de los haces de la estructura entrelazada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6315,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#, fuzzy
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -11,6 +11,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#: fdmextruder.def.json
|
||||
msgctxt "machine_settings label"
|
||||
msgid "Machine"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#, fuzzy
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -11,6 +11,11 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_settings label"
|
||||
msgid "Machine"
|
||||
|
@ -1156,6 +1161,16 @@ msgctxt "hole_xy_offset description"
|
|||
msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_type label"
|
||||
msgid "Z Seam Alignment"
|
||||
|
@ -1536,6 +1551,16 @@ msgctxt "skin_angles description"
|
|||
msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_no_small_gaps_heuristic label"
|
||||
msgid "No Skin in Z Gaps"
|
||||
|
@ -4691,6 +4716,16 @@ msgctxt "skirt_line_count description"
|
|||
msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_gap label"
|
||||
msgid "Skirt Distance"
|
||||
|
@ -4771,6 +4806,16 @@ msgctxt "brim_inside_margin description"
|
|||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "raft_margin label"
|
||||
msgid "Raft Extra Margin"
|
||||
|
@ -5658,7 +5703,7 @@ msgstr ""
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
|
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -3176,6 +3181,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Alkukerroksen tulostuslämpötila"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3661,6 +3671,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Helman etäisyys"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3732,6 +3747,11 @@ msgctxt "cool_min_temperature label"
|
|||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Tulostuslämpötila lopussa"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
|
@ -3742,6 +3762,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -4270,6 +4300,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4597,7 +4632,7 @@ msgstr "Etäisyys, jolla tehdään liitos katon ääriviivalta sisäänpäin. Ko
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -6309,6 +6344,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'i
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affe
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "Aux endroits où les modèles 3D se touchent, générez une structure d'attaches de connexion. Cette fonctionnalité améliore l'adhérence entre les modèles 3D, en particulier ceux imprimés avec des matériaux différents."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "Distance de la bordure"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Marge d'évitement de la bordure intérieure"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1491,7 +1491,7 @@ msgstr "Hauteur du portique"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Générer une structure de connexion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1556,7 +1556,7 @@ msgstr "Étapes de remplissage graduel du support"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Abaissez progressivement la température jusqu'à ce niveau lors de l'impression à vitesse réduite, en raison du temps d'impression minimum de chaque couche."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Expansion horizontale des trous"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2046,27 +2051,27 @@ msgstr "De l'intérieur vers l'extérieur"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Nombre de couches de l'attache de connexion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Largeur de l'attache de connexion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Limite de la distance de connexion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Profondeur de connexion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Orientation de la structure de connexion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Température d’impression couche initiale"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Distance de la jupe"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3729,10 +3744,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Taille maximale des petits trous"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Température d’impression finale"
|
||||
msgstr "Température d'impression pour couches fines"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,10 +3914,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Distance inférieure des supports"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Nombre de lignes de la paroi du support"
|
||||
msgstr "Nombre de lignes de la paroi inférieure du support"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Épaisseur de l'interface de support"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Nombre de lignes de la paroi du support"
|
||||
msgstr "Nombre de lignes de la paroi de la surface de support"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Épaisseur du plafond de support"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Nombre de lignes de la paroi du support"
|
||||
msgstr "Nombre de lignes de la paroi du plafond de support"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Énergie de la surface."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4599,8 +4630,8 @@ msgstr "La distance couverte lors de l'impression d'une connexion d'un contour d
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "Limite de la distance entre modèles 3D lors de la génération d'une structure de connexion, mesurée en cellules. Un trop petit nombre de cellules entraînera une mauvaise adhérence."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4610,7 +4641,7 @@ msgstr "La distance entre le modèle et la ligne de bordure la plus à l'extéri
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "Distance à partir de l'extérieur d'un modèle 3D où les structures de connexion ne seront plus générées, mesurée en cellules."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4840,12 +4871,12 @@ msgstr "La hauteur de remplissage de support d'une densité donnée avant de pas
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais sujettes à des imperfections."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais sujettes à des imperfections."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5257,22 +5288,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire."
|
||||
msgstr "Nombre de parois avec lesquelles entourer le plancher de la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire."
|
||||
msgstr "Le nombre de parois avec lesquelles entourer le plafond de la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire."
|
||||
msgstr "Nombre de parois avec lesquelles entourer la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5695,10 +5723,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "Largeur de la bordure à imprimer sous le support. Une plus grande bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "La largeur de la tour d'amorçage."
|
||||
msgstr "La largeur des attaches de la structure de connexion."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6315,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: 2020-03-24 09:27+0100\n"
|
||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||
"Language-Team: AT-VLOG\n"
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: 2020-03-24 09:43+0100\n"
|
||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||
"Language-Team: AT-VLOG\n"
|
||||
|
@ -1641,6 +1641,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -3181,6 +3186,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Kezdő réteg nyomtatási hőmérséklete"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3666,6 +3676,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Szoknya távolság"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3737,6 +3752,11 @@ msgctxt "cool_min_temperature label"
|
|||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Befejező nyomtatási hőmérséklet"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
|
@ -3747,6 +3767,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -4275,6 +4305,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Felületi energia."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4602,7 +4637,7 @@ msgstr "A beépített távolság, amikor a tetőtől körvonalakat bekapcsolnak.
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -6319,6 +6354,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutto il brim entro questa distanza dai fori interni."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti g
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "Nei punti in cui i modelli si toccano, genera una struttura di travi a incastro. Ciò migliora l'adesione tra i modelli, in particolare i modelli stampati in diversi materiali."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "Distanza del Brim"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Margine di aggiramento interno del brim"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1491,7 +1491,7 @@ msgstr "Altezza gantry"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Generazione della struttura a incastro"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1556,7 +1556,7 @@ msgstr "Fasi di riempimento graduale del supporto"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Riduci gradualmente a questa temperatura quando si stampa a velocità ridotte a causa del tempo minimo di stratificazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Espansione orizzontale dei fori"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2046,27 +2051,27 @@ msgstr "Dall'interno all'esterno"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Numero di strati delle travi a incastro"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Larghezza delle travi a incastro"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Aggiramento dei confini a incastro"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Profondità di incastro"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Orientamento della struttura a incastro"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Temperatura di stampa Strato iniziale"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Distanza dello skirt"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3729,10 +3744,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Dimensione massima foro piccolo"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Temperatura di stampa finale"
|
||||
msgstr "Temperatura di stampa per piccoli strati"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,10 +3914,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Distanza inferiore supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Numero delle linee perimetrali supporto"
|
||||
msgstr "Numero delle linee perimetrali inferiori di supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Spessore interfaccia supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Numero delle linee perimetrali supporto"
|
||||
msgstr "Numero delle linee perimetrali dell'interfaccia di supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Spessore parte superiore (tetto) del supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Numero delle linee perimetrali supporto"
|
||||
msgstr "Numero delle linee perimetrali del tetto di supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Energia superficiale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4599,8 +4630,8 @@ msgstr "Indica la distanza percorsa durante la realizzazione di una connessione
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro misurata in celle. Un numero troppo basso di celle determina una scarsa adesione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4610,7 +4641,7 @@ msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4840,12 +4871,12 @@ msgstr "Indica l’altezza di riempimento del supporto di una data densità prim
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5257,22 +5288,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato."
|
||||
msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato."
|
||||
msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato."
|
||||
msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5695,10 +5723,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "Indica la larghezza della torre di innesco."
|
||||
msgstr "La larghezza delle travi della struttura a incastro."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6315,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
@ -6774,19 +6806,3 @@ msgstr "Zig Zag"
|
|||
msgctxt "travel description"
|
||||
msgid "travel"
|
||||
msgstr "spostamenti"
|
||||
|
||||
#~ msgctxt "material_flow_dependent_temperature label"
|
||||
#~ msgid "Auto Temperature"
|
||||
#~ msgstr "Temperatura automatica"
|
||||
|
||||
#~ msgctxt "material_flow_dependent_temperature description"
|
||||
#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
|
||||
#~ msgstr "Modifica automaticamente la temperatura per ciascuno strato con la velocità media del flusso per tale strato."
|
||||
|
||||
#~ msgctxt "limit_support_retractions label"
|
||||
#~ msgid "Limit Support Retractions"
|
||||
#~ msgstr "Limitazione delle retrazioni del supporto"
|
||||
|
||||
#~ msgctxt "limit_support_retractions description"
|
||||
#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
#~ msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "プリントヘッドの領域を持つポリゴンのリストは入力
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "部品が他の部品に完全に囲まれている場合、外壁ブリムが他の部品の内側に接触する場合があります。この設定では、内部の穴からこの距離内にあるすべてのブリムを取り除きます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "エクストルーダーのオフセットを座標システムに適用
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "モデルが接触する場所にインターロックビーム構造を生成します。これにより、モデル間、特に異なる材料で印刷されたモデル間の密着性が向上します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "ブリム距離"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "内部ブリムを回避するためのマージン"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1489,7 +1489,7 @@ msgstr "ガントリーの高さ"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "インターロック構造の生成"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1554,7 +1554,7 @@ msgstr "サポートインフィル半減回数"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "最小レイヤー時間の制限を満たすために速度を落としてプリントする場合、温度は徐々にこの温度まで下がります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "穴の水平展開"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2044,27 +2049,27 @@ msgstr "内側から外側へ"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "インターロックビームレイヤー数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "インターロックビーム幅"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "インターロック境界回避"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "インターロックの奥行"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "インターロック構造の向き"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "初期レイヤー印刷温度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "スカート距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3721,7 +3736,7 @@ msgstr "小型形体の最大長さ"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor label"
|
||||
msgid "Small Feature Speed"
|
||||
msgstr "Small Feature Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size label"
|
||||
|
@ -3729,11 +3744,15 @@ msgid "Small Hole Max Size"
|
|||
msgstr "小さい穴の最大サイズ"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "最終印刷温度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,7 +3914,6 @@ msgid "Support Bottom Distance"
|
|||
msgstr "サポート底部距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "サポートウォールライン数"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "サポートインタフェース厚さ"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "サポートウォールライン数"
|
||||
msgstr "サポートインターフェースウォールライン数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "サポートルーフ厚さ"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "サポートウォールライン数"
|
||||
msgstr "サポートルーフウォールライン数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "表面エネルギー。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4601,8 +4632,8 @@ msgstr "ルーフから内側に輪郭を描くときの距離。ワイヤ印刷
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4612,7 +4643,7 @@ msgstr "モデルから最外線のブリムまでの距離。大きなブリム
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "インターロック構造を生成しないモデルの外側からの距離(セル単位)。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4842,12 +4873,12 @@ msgstr "密度が半分に切り替える前の所定のサポートのインフ
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5259,22 +5290,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
|
||||
msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
|
||||
msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
|
||||
msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5697,10 +5725,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "プライムタワーの幅。"
|
||||
msgstr "インターロック構造のビームの幅。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6317,6 +6344,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다."
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "다른 부품 내부에 완전히 포함된 부품은 다른 부품의 내부와 접촉하는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내의 모든 브림이 제거됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "모델이 닿는 위치에 연동되는 빔 구조를 생성합니다. 이렇게 하면 모델 간, 특히 다른 재료로 프린트된 모델 간의 접착력이 향상됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "브림 거리"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "내부 브림이 여백 회피"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1489,7 +1489,7 @@ msgstr "갠트리 높이"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "연동 구조 생성"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1554,7 +1554,7 @@ msgstr "점진적 서포트 내부채움 단계"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "최소 레이어 시간으로 인해 감소된 속도로 프린트할 때 이 온도로 점차 낮추십시오."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "구멍 수평 확장"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2044,27 +2049,27 @@ msgstr "내부에서 외부로"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "연동 빔 레이어 수"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "연동 빔 너비"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "연동 경계 회피"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "연동 깊이"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "연동 구조 방향"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3176,6 +3181,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "첫번째 레이어의 프린팅 온도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3661,6 +3671,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "스커트 거리"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3684,7 +3699,7 @@ msgstr "스커트/브림 압출량"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_skirt_brim label"
|
||||
msgid "Skirt/Brim Jerk"
|
||||
msgstr "Skirt/Brim Jerk"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_brim_line_width label"
|
||||
|
@ -3727,10 +3742,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "소형 구멍 최대 크기"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "최종 프린팅 온도"
|
||||
msgstr "소형 레이어 프린팅 온도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3742,6 +3761,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3883,10 +3912,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "서포트 바닥 거리"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "지지대 벽 라인 카운트"
|
||||
msgstr "지지대 하단 벽 라인 개수"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4084,10 +4112,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "서포트 인터페이스 두께"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "지지대 벽 라인 카운트"
|
||||
msgstr "지지대 인터페이스 벽 라인 개수"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4190,10 +4217,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "서포트 지붕 두께"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "지지대 벽 라인 카운트"
|
||||
msgstr "지지대 지붕 벽 라인 개수"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4270,6 +4296,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "표면의 에너지입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4597,8 +4628,8 @@ msgstr "지붕에서 연결을 할 때 안쪽까지 윤곽선을 그립니다.
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "셀 단위로 측정된 연동 구조를 생성하기 위한 모델 간의 경계로부터의 거리입니다. 셀 수가 너무 적으면 접착력이 떨어집니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4608,7 +4639,7 @@ msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "연동 구조가 생성되지 않는 모델 외부의 거리로, 셀 단위로 측정됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4838,12 +4869,12 @@ msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "레이어 수로 측정된 연동 구조의 빔 높이입니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "레이어 수로 측정된 연동 구조의 빔 높이입니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5255,22 +5286,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다."
|
||||
msgstr "지지대 인터페이스 하단을 둘러싸는 벽의 개수입니다. 벽을 추가하면 지지물 프린트의 안정성을 높일 수 있고 오버행(경사면) 지지를 개선할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다."
|
||||
msgstr "지지대 인터페이스 지붕을 둘러싸는 벽의 개수입니다. 벽을 추가하면 지지물 프린트의 안정성을 높일 수 있고 오버행(경사면) 지지를 개선할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다."
|
||||
msgstr "지지대 인터페이스를 둘러싸는 벽의 개수입니다. 벽을 추가하면 지지물 프린트의 안정성을 높일 수 있고 오버행(경사면) 지지를 개선할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5693,10 +5721,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "프라임 타워의 너비."
|
||||
msgstr "연동 구조 빔의 너비입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6121,7 +6148,7 @@ msgstr "WP 상향 조정"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_fall_down label"
|
||||
msgid "WP Fall Down"
|
||||
msgstr "WP Fall Down"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_flat_delay label"
|
||||
|
@ -6313,6 +6340,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
@ -6696,7 +6728,7 @@ msgstr "리트렉션했을 때의 Z Hop"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_type label"
|
||||
msgid "Z Seam Alignment"
|
||||
msgstr "Z Seam Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_position label"
|
||||
|
@ -6772,19 +6804,3 @@ msgstr "지그재그"
|
|||
msgctxt "travel description"
|
||||
msgid "travel"
|
||||
msgstr "이동"
|
||||
|
||||
#~ msgctxt "material_flow_dependent_temperature label"
|
||||
#~ msgid "Auto Temperature"
|
||||
#~ msgstr "자동 온도"
|
||||
|
||||
#~ msgctxt "material_flow_dependent_temperature description"
|
||||
#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
|
||||
#~ msgstr "해당 레이어의 평균 유속으로 각 레이어의 온도를 자동으로 변경."
|
||||
|
||||
#~ msgctxt "limit_support_retractions label"
|
||||
#~ msgid "Limit Support Retractions"
|
||||
#~ msgstr "지지대 후퇴 제한"
|
||||
|
||||
#~ msgctxt "limit_support_retractions description"
|
||||
#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
#~ msgstr "직선으로 지지대 사이를 이동하는 경우 리트랙션은 생략합니다. 이 설정을 사용하면 프린팅 시간은 절약할 수 있지만, 지지대 구조물 내에 스트링이 과도하게 증가할 수 있습니다."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen."
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Een deel dat volledig in een ander deel is ingesloten, kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van interne gaten."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "Genereer op de plaatsen waar modellen elkaar raken een in elkaar grijpende balkstructuur. Dit verbetert de hechting tussen modellen, vooral modellen die in verschillende materialen zijn gedrukt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "Brimafstand"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Binnenste mijdmarge brim"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1491,7 +1491,7 @@ msgstr "Rijbrughoogte"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Genereer een in elkaar grijpende structuur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1556,7 +1556,7 @@ msgstr "Geleidelijke supportvulling traptreden"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Verlaag vanwege de minimale laagtijd geleidelijk naar deze temperatuur bij het printen aan lagere snelheden."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Horizontale uitbreiding gaten"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2046,27 +2051,27 @@ msgstr "Van binnen naar buiten"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Aantal in elkaar grijpende balklagen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Breedte in elkaar grijpende balk"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "In elkaar grijpende grensvermijding"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "In elkaar grijpende diepte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Oriëntatie van de in elkaar grijpende structuur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Printtemperatuur van de eerste laag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Skirtafstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3729,10 +3744,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Maximale grootte kleine gaten"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Eindtemperatuur voor printen"
|
||||
msgstr "De printtemperatuur van kleine lagens"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,10 +3914,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Afstand van Onderkant Supportstructuur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Aantal wandlijnen supportstructuur"
|
||||
msgstr "Aantal wandlijnen van de ondersteuningsonderzijde"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Dikte Verbindingsstructuur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Aantal wandlijnen supportstructuur"
|
||||
msgstr "Aantal wandlijnen van de ondersteuningsinterface"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Dikte Supportdak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Aantal wandlijnen supportstructuur"
|
||||
msgstr "Aantal wandlijnen van het ondersteuningsdak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Oppervlakte-energie."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4599,8 +4630,8 @@ msgstr "De afstand die wordt overbrugt wanneer vanaf een dakcontour een verbindi
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "De afstand vanaf de grens tussen modellen om een in elkaar grijpende structuur te genereren, gemeten in cellen. Te weinig cellen leiden tot slechte hechting."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4610,7 +4641,7 @@ msgstr "De afstand vanaf de rand van het model tot de buitenrand van de brim. Ee
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "De afstand van de buitenkant van een model waarbij in elkaar grijpende structuren niet worden gegenereerd, gemeten in cellen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4840,12 +4871,12 @@ msgstr "De hoogte van de supportvulling van een bepaalde dichtheid voordat de di
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5257,22 +5288,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt."
|
||||
msgstr "Het aantal muren waarmee de ondersteuningsinterfacevloer kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt."
|
||||
msgstr "Het aantal muren waarmee het dak van de ondersteuningsinterface moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt."
|
||||
msgstr "Het aantal muren waarmee de ondersteuningsinterface kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5695,10 +5723,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "De breedte van de brim die onder de support wordt geprint. Een bredere brim kost meer materiaal, maar hecht beter aan het platform."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "De breedte van de primepijler."
|
||||
msgstr "De breedte van de in elkaar grijpende structuurbalken."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6315,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Mariusz 'Virgin71' Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: reprapy.pl\n"
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: 2019-11-15 15:34+0100\n"
|
||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||
|
@ -1642,6 +1642,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -3182,6 +3187,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Temp. Druku Początk. Warstwy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3667,6 +3677,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Odległ. Obwódki"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3738,6 +3753,11 @@ msgctxt "cool_min_temperature label"
|
|||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Końcowa Temp. Druku"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
|
@ -3748,6 +3768,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -4276,6 +4306,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Energia powierzchni."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4603,7 +4638,7 @@ msgstr "Odległość jaka zostaje pokryta podczas tworzenia połączenia z wewn
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -6320,6 +6355,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: 2021-04-11 17:09+0200\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
|
|
|
@ -6,8 +6,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.0\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"PO-Revision-Date: 2022-10-10 07:50+0200\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: 2023-02-17 16:31+0100\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language: pt_BR\n"
|
||||
|
@ -15,7 +15,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.1.1\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_inset description"
|
||||
|
@ -75,7 +75,7 @@ msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é pro
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -284,7 +284,7 @@ msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todo
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -484,7 +484,7 @@ msgstr "Distância do Brim"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Brim Dentro da Margem a Evitar"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1168,7 +1168,7 @@ msgstr "Exclusivo"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "experimental label"
|
||||
msgid "Experimental"
|
||||
msgstr "Experimental"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_outer"
|
||||
|
@ -1496,7 +1496,7 @@ msgstr "Altura do Eixo"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Gerar Estrutura Interligada"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1561,7 +1561,7 @@ msgstr "Passos de Preenchimento Gradual de Suporte"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1643,6 +1643,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Expansão Horizontal do Furo"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2051,27 +2056,27 @@ msgstr "De Dentro Pra Fora"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Contagem de Camadas das Vigas Interligadas"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Largura da Viga Interligada"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Prevenção de Fronteira de Interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Profundidade de Interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Orientação da Estrutura de Interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -2751,12 +2756,12 @@ msgstr "Nenhum"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "magic_mesh_surface_mode option normal"
|
||||
msgid "Normal"
|
||||
msgstr "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_structure option normal"
|
||||
msgid "Normal"
|
||||
msgstr "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix_keep_open_polygons description"
|
||||
|
@ -3183,6 +3188,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Temperatura de Impressão da Camada Inicial"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3668,6 +3678,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Distância do Skirt"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3739,6 +3754,11 @@ msgctxt "cool_min_temperature label"
|
|||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Temperatura de Impressão Final"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
|
@ -3749,6 +3769,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -4277,6 +4307,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Energia de superfície."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4604,8 +4639,8 @@ msgstr "A distância coberta quando é feita uma conexão do contorno do teto pa
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4846,12 +4881,12 @@ msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar p
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -6321,6 +6356,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pod
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas.
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "Nos locais onde os modelos tocam, gere uma estrutura de vigas interligadas. Isto melhora a adesão entre os modelos, especialmente os modelos impressos em materiais diferentes."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "Distância da Aba"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Borda interna evitar margem"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1163,7 +1163,7 @@ msgstr "Exclusivo"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "experimental label"
|
||||
msgid "Experimental"
|
||||
msgstr "Experimental"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_outer"
|
||||
|
@ -1491,7 +1491,7 @@ msgstr "Altura do pórtico"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Gerar estrutura de interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1556,7 +1556,7 @@ msgstr "Enchimento Gradual Suporte"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Expansão horizontal de buraco"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2046,27 +2051,27 @@ msgstr "De dentro para fora"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Contagem de camada de feixe de interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Largura do feixe de interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Evitar a interligação de fronteiras"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Profundidade de interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Orientação da estrutura de interligação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -2746,12 +2751,12 @@ msgstr "Nenhum"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "magic_mesh_surface_mode option normal"
|
||||
msgid "Normal"
|
||||
msgstr "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_structure option normal"
|
||||
msgid "Normal"
|
||||
msgstr "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix_keep_open_polygons description"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Temperatura Impressão Camada Inicial"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3391,7 +3401,7 @@ msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a supe
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "machine_shape option rectangular"
|
||||
msgid "Rectangular"
|
||||
msgstr "Rectangular"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "cool_fan_speed_min label"
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Distância Contorno"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3729,10 +3744,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Tamanho máximo do buraco pequeno"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Temperatura de impressão final"
|
||||
msgstr "Temperatura de impressão de camada pequena"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,10 +3914,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Distância inferior do suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Número Linhas Paredes Suporte"
|
||||
msgstr "Contagem das linhas da parede inferior de suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Espessura Interface Suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Número Linhas Paredes Suporte"
|
||||
msgstr "Contagem das linhas de parede da interface de suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Espessura do tecto de suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Número Linhas Paredes Suporte"
|
||||
msgstr "Contagem das linhas de parede do telhado de suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Energia da superfície."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4599,8 +4630,8 @@ msgstr "A distância percorrida ao efetuar uma ligação a partir de um contorno
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "A distância do limite entre modelos para gerar estrutura de interligação medida em células. Um pequeno número de células resultará numa fraca adesão."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4610,7 +4641,7 @@ msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4840,12 +4871,12 @@ msgstr "A altura do enchimento de suporte de uma determinada densidade antes de
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "A altura dos vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5257,22 +5288,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado."
|
||||
msgstr "O número de paredes com as quais cercar o piso da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado."
|
||||
msgstr "O número de paredes com as quais envolver o telhado da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado."
|
||||
msgstr "O número de paredes com as quais envolver a interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5695,10 +5723,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "A largura da torre de preparação."
|
||||
msgstr "A largura das vigas da estrutura de interligação."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6315,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-02-02 16:06+0000\n"
|
||||
"POT-Creation-Date: 2023-03-21 13:32+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -70,7 +70,7 @@ msgstr "Список полигонов с областями, в которые
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin description"
|
||||
msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
|
||||
msgstr ""
|
||||
msgstr "Деталь, полностью заключенная внутри другой детали, может иметь внешний край, который касается внутренней части другой детали. Это опция удаляет все края на этом расстоянии от внутренних отверстий."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "extruder_prime_pos_abs label"
|
||||
|
@ -279,7 +279,7 @@ msgstr "Применить смещение экструдера к систем
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable description"
|
||||
msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
|
||||
msgstr ""
|
||||
msgstr "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшает адгезию между моделями, особенно моделями, напечатанными с использованием разных материалов."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_avoid_other_parts label"
|
||||
|
@ -479,7 +479,7 @@ msgstr "Расстояние до каймы"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "brim_inside_margin label"
|
||||
msgid "Brim Inside Avoid Margin"
|
||||
msgstr ""
|
||||
msgstr "Края на расстоянии избегания"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_line_count label"
|
||||
|
@ -1491,7 +1491,7 @@ msgstr "Высота портала"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_enable label"
|
||||
msgid "Generate Interlocking Structure"
|
||||
msgstr ""
|
||||
msgstr "Создать взаимосвязанную структуру"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_enable label"
|
||||
|
@ -1556,7 +1556,7 @@ msgstr "Степень заполнения поддержек"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "cool_min_temperature description"
|
||||
msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
|
||||
msgstr ""
|
||||
msgstr "Постепенно снижайте до этой температуры при печати на пониженных скоростях из-за минимального времени слоя."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "infill_pattern option grid"
|
||||
|
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||
msgid "Hole Horizontal Expansion"
|
||||
msgstr "Горизонтальное расширение отверстия"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter label"
|
||||
msgid "Hole Horizontal Expansion Max Diameter"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_hole_max_size description"
|
||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||
|
@ -2046,27 +2051,27 @@ msgstr "От внутренних к внешним"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count label"
|
||||
msgid "Interlocking Beam Layer Count"
|
||||
msgstr ""
|
||||
msgstr "Количество слоев взаимосвязанных балок"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_width label"
|
||||
msgid "Interlocking Beam Width"
|
||||
msgstr ""
|
||||
msgstr "Ширина взаимосвязанных балок"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance label"
|
||||
msgid "Interlocking Boundary Avoidance"
|
||||
msgstr ""
|
||||
msgstr "Избегание взаимосвязанной структуры"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth label"
|
||||
msgid "Interlocking Depth"
|
||||
msgstr ""
|
||||
msgstr "Глубина взаимосвязанной структуры"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation label"
|
||||
msgid "Interlocking Structure Orientation"
|
||||
msgstr ""
|
||||
msgstr "Ориентация взаимосвязанной структуры"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_only_highest_layer label"
|
||||
|
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||
msgid "Printing Temperature Initial Layer"
|
||||
msgstr "Температура печати первого слоя"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height description"
|
||||
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_extra_perimeter description"
|
||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||
|
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||
msgid "Skirt Distance"
|
||||
msgstr "Дистанция до юбки"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_height label"
|
||||
msgid "Skirt Height"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skirt_line_count label"
|
||||
msgid "Skirt Line Count"
|
||||
|
@ -3729,10 +3744,14 @@ msgid "Small Hole Max Size"
|
|||
msgstr "Максимальный размер малого отверстия"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "cool_min_temperature label"
|
||||
msgid "Small Layer Printing Temperature"
|
||||
msgstr "Конечная температура печати"
|
||||
msgstr "Температура малослойной печати"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width label"
|
||||
msgid "Small Top/Bottom Width"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 description"
|
||||
|
@ -3744,6 +3763,16 @@ msgctxt "small_feature_speed_factor description"
|
|||
msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
|
||||
msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_skin_width description"
|
||||
msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering label"
|
||||
msgid "Smart Brim"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "z_seam_corner option z_seam_corner_weighted"
|
||||
msgid "Smart Hiding"
|
||||
|
@ -3885,10 +3914,9 @@ msgid "Support Bottom Distance"
|
|||
msgstr "Дистанция поддержки снизу"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count label"
|
||||
msgid "Support Bottom Wall Line Count"
|
||||
msgstr "Количество линий стенки поддержки"
|
||||
msgstr "Количество линий нижней стены опоры"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_brim_line_count label"
|
||||
|
@ -4086,10 +4114,9 @@ msgid "Support Interface Thickness"
|
|||
msgstr "Толщина связующего слоя поддержки"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count label"
|
||||
msgid "Support Interface Wall Line Count"
|
||||
msgstr "Количество линий стенки поддержки"
|
||||
msgstr "Количество линий связующего слоя поддержки"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "jerk_support label"
|
||||
|
@ -4192,10 +4219,9 @@ msgid "Support Roof Thickness"
|
|||
msgstr "Толщина крыши"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count label"
|
||||
msgid "Support Roof Wall Line Count"
|
||||
msgstr "Количество линий стенки поддержки"
|
||||
msgstr "Количество линий опорной крыши"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed_support label"
|
||||
|
@ -4272,6 +4298,11 @@ msgctxt "material_surface_energy description"
|
|||
msgid "Surface energy."
|
||||
msgstr "Поверхностная энергия."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_smart_ordering description"
|
||||
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "alternate_carve_order description"
|
||||
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
|
||||
|
@ -4599,8 +4630,8 @@ msgstr "Покрываемое расстояние при создании со
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_depth description"
|
||||
msgid "The distance from the boundary between models to generate interlocking structure measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr ""
|
||||
msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
|
||||
msgstr "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_width description"
|
||||
|
@ -4610,7 +4641,7 @@ msgstr "Расстояние между моделью и самой удалё
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_boundary_avoidance description"
|
||||
msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
|
||||
msgstr ""
|
||||
msgstr "Расстояние от внешней стороны модели, на котором не будут создаваться взаимосвязанные структуры, измеряемое в ячейках."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_heat_zone_length description"
|
||||
|
@ -4840,12 +4871,12 @@ msgstr "Высота заполнения поддержек, по достиж
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_beam_layer_count description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "interlocking_orientation description"
|
||||
msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
|
||||
msgstr ""
|
||||
msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "layer_height_0 description"
|
||||
|
@ -5257,22 +5288,19 @@ msgid "The number of walls with which to surround support infill. Adding a wall
|
|||
msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_bottom_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов."
|
||||
msgstr "Количество стенок, которыми можно окружить опору связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_roof_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов."
|
||||
msgstr "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "support_interface_wall_count description"
|
||||
msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
|
||||
msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов."
|
||||
msgstr "Количество стен, которыми можно окружить связующий слой поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_distribution_count description"
|
||||
|
@ -5695,10 +5723,9 @@ msgid "The width of the brim to print underneath the support. A larger brim enha
|
|||
msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
#, fuzzy
|
||||
msgctxt "interlocking_beam_width description"
|
||||
msgid "The width of the interlocking structure beams."
|
||||
msgstr "Ширина черновой башни."
|
||||
msgstr "Ширина взаимосвязанных балок конструкции."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "prime_tower_size description"
|
||||
|
@ -6315,6 +6342,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "hole_xy_offset_max_diameter description"
|
||||
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_skin_material_flow description"
|
||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2023-01-31 16:46+0000\n"
|
||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue