mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 15:25:02 +08:00
Merge remote-tracking branch 'origin/main' into CURA-10127-dont-allow-minimum-speed-to-be-zero
This commit is contained in:
commit
58b88a2ab4
23
.github/workflows/conan-package.yml
vendored
23
.github/workflows/conan-package.yml
vendored
@ -78,25 +78,12 @@ jobs:
|
||||
- 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,10 +95,7 @@ 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
|
||||
@ -133,6 +117,7 @@ jobs:
|
||||
if: always()
|
||||
run: |
|
||||
conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c
|
||||
conan upload "*@_/_" -r cura --all -c
|
||||
conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -c
|
||||
|
||||
notify-create:
|
||||
|
2
.github/workflows/conan-recipe-version.yml
vendored
2
.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:
|
||||
|
68
.github/workflows/update-translation.yml
vendored
Normal file
68
.github/workflows/update-translation.yml
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
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: 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
|
||||
|
||||
- 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>
|
||||
|
@ -26,7 +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
|
||||
python_requires = "umbase/[>=0.1.7]@ultimaker/stable", "translationextractor/[>=2.0.0]@ultimaker/stable"
|
||||
python_requires = "umbase/[>=0.1.7]@ultimaker/stable", "translationextractor/[>=2.1.1]@ultimaker/stable"
|
||||
python_requires_extend = "umbase.UMBaseConanfile"
|
||||
|
||||
options = {
|
||||
@ -305,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@ultimaker/testing")
|
||||
self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True)
|
||||
|
||||
def layout(self):
|
||||
self.folders.source = "."
|
||||
@ -340,7 +340,8 @@ class CuraConan(ConanFile):
|
||||
vb.generate()
|
||||
|
||||
# FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement
|
||||
pot = self.python_requires["translationextractor"].module.ExtractTranslations(self)
|
||||
cpp_info = self.dependencies["gettext"].cpp_info
|
||||
pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0])
|
||||
pot.generate()
|
||||
|
||||
def build(self):
|
||||
|
@ -4419,8 +4419,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
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: 2023-02-16 20:28+0100\n"
|
||||
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
@ -1281,45 +1281,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Nahlásit chybu v UltiMaker Cura issue trackeru."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Nelze slicovat s aktuálním materiálem, protože je nekompatibilní s vybraným strojem nebo konfigurací."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Nelze slicovat"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "S aktuálním nastavením nelze slicovat. Následující nastavení obsahuje chyby: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Nelze slicovat kvůli některým nastavení jednotlivých modelů. Následující nastavení obsahuje chyby na jednom nebo více modelech: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Nelze slicovat, protože hlavní věž nebo primární pozice jsou neplatné."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Nelze slicovat, protože jsou zde objekty asociované k zakázanému extruder %s."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6591,17 +6591,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Ovlivněno"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Toto nastavení je vždy sdíleno všemi extrudéry. Jeho změnou se změní hodnota všech extruderů."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Toto nastavení je vyřešeno z konfliktních hodnot specifického extruder:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6612,7 +6612,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Klepnutím obnovíte hodnotu profilu."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1279,45 +1279,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Einen Fehler im Issue Tracker von UltiMaker Cura melden."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Slicing nicht möglich"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6571,17 +6571,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Wird beeinflusst von"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6592,7 +6592,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Klicken Sie, um den Wert des Profils wiederherzustellen."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1278,45 +1278,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Informar de un error en el rastreador de problemas de UltiMaker Cura."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "No se puede segmentar"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6576,17 +6576,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Afectado por"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6597,7 +6597,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Haga clic para restaurar el valor del perfil."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: 2022-07-15 10:53+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
@ -1271,45 +1271,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr ""
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Viipalointi ei onnistu nykyisellä materiaalilla, sillä se ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Viipalointi ei onnistu"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Viipalointi ei onnistu nykyisten asetuksien ollessa voimassa. Seuraavissa asetuksissa on virheitä: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr ""
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Viipalointi ei onnistu, koska esitäyttötorni tai esitäytön sijainti tai sijainnit eivät kelpaa."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr ""
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6533,17 +6533,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Riippuu seuraavista"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr ""
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr ""
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6554,7 +6554,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Palauta profiilin arvo napsauttamalla."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1279,45 +1279,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Notifiez un bug sur l'outil de suivi des problèmes d'UltiMaker Cura."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Impossible de découper"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Impossible de couper en raison de certains paramètres par modèle. Les paramètres suivants contiennent des erreurs sur un ou plusieurs modèles: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6571,17 +6571,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Touché par"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6592,7 +6592,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Cliquez pour restaurer la valeur du profil."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: 2020-03-24 09:36+0100\n"
|
||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||
"Language-Team: ATI-SZOFT\n"
|
||||
@ -1279,45 +1279,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr ""
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Nem lehet szeletelni"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6547,17 +6547,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Befolyásolja"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Ezt a beállítást megoszta az összes extruder között. Az itt megváltoztatott értékek az összes extrudernél meg fognak változni."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr ""
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6568,7 +6568,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Kattintson a profil értékének visszaállításához."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1279,45 +1279,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Segnalare un errore nel registro problemi di UltiMaker Cura."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Sezionamento impossibile"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6574,17 +6574,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Influenzato da"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6595,7 +6595,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Fare clic per ripristinare il valore del profilo."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1277,45 +1277,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "UltiMaker Curaの問題追跡ツールでバグを報告してください。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "スライスできません"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6556,17 +6556,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "次によって影響を受ける"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "この設定はエクストルーダー固有の競合する値から取得します:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6576,7 +6576,7 @@ msgstr ""
|
||||
"この設定にプロファイルと異なった値があります。\n"
|
||||
"プロファイルの値を戻すためにクリックしてください。"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1277,45 +1277,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr ""
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "슬라이스 할 수 없습니다"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6557,17 +6557,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "영향을 받다"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6578,7 +6578,7 @@ msgstr ""
|
||||
"\n"
|
||||
"프로파일 값을 복원하려면 클릭하십시오."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1279,45 +1279,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Meld een fout via de issue tracker van UltiMaker Cura."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Met het huidige materiaal is slicen niet mogelijk, omdat het materiaal niet compatibel is met de geselecteerde machine of configuratie."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Kan niet slicen"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Met de huidige instellingen is slicing niet mogelijk. De volgende instellingen bevatten fouten: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Slicing is niet mogelijk vanwege enkele instellingen per model. De volgende instellingen bevatten fouten voor een of meer modellen: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Slicen is niet mogelijk omdat de terugduwpijler of terugduwpositie(s) ongeldig zijn."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6574,17 +6574,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Beïnvloed door"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6595,7 +6595,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Klik om de waarde van het profiel te herstellen."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: 2021-09-07 08:02+0200\n"
|
||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||
@ -1280,45 +1280,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr ""
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Nie można pociąć z obecnym materiałem, ponieważ nie jest on kompatybilny z wybraną maszyną lub konfiguracją."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Nie można pociąć"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Nie można pociąć z bieżącymi ustawieniami. Następujące ustawienia mają błędy: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Nie można pokroić przez ustawienia osobne dla modelu. Następujące ustawienia mają błędy w jednym lub więcej modeli: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Nie można pociąć, ponieważ wieża czyszcząca lub jej pozycja(e) są niewłaściwe."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Nie można pociąć, ponieważ obecne są obiekty powiązane z wyłączonym ekstruderem %s."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6550,17 +6550,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Pod wpływem"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "To ustawienie jest dzielone pomiędzy wszystkimi ekstruderami. Zmiana tutaj spowoduje zmianę dla wszystkich ekstruderów."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr ""
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6571,7 +6571,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Kliknij, aby przywrócić wartość z profilu."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: 2023-02-17 17:37+0100\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
@ -1279,45 +1279,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Relatar um bug no issue tracker do UltiMaker Cura."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Não foi possível fatiar"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6576,17 +6576,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Afetado Por"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6597,7 +6597,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Clique para restaurar o valor do perfil."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1274,45 +1274,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Reportar um erro no registo de problemas do UltiMaker Cura."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Não é possível Seccionar"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Não é possível seccionar devido a algumas definições por modelo. As seguintes definições apresentam erros num ou mais modelos: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Não é possível seccionar porque a torre de preparação ou a(s) posição(ões) de preparação é(são) inválidas."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6568,17 +6568,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Modificado Por"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Esta definição está resolvida a partir de valores específicos da extrusora em conflito:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6589,7 +6589,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Clique para restaurar o valor do perfil."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1276,45 +1276,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Сообщите об ошибке в системе отслеживания проблем UltiMaker Cura."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Невозможно нарезать"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6582,17 +6582,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "Зависит от"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Эта настройка получена из конфликтующих значений экструдера:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6603,7 +6603,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Щёлкните для восстановления значения из профиля."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1279,45 +1279,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "Ultimaker Cura'nın sorun izleyicisinde hata bildirin."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "Dilimlenemedi"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6574,17 +6574,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr ".........den etkilenir"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan değiştirildiğinde tüm ekstrüderler için değer değiştirir."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6595,7 +6595,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Profil değerini yenilemek için tıklayın."
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: 2022-07-15 11:06+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@ -1277,45 +1277,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "在 UltiMaker Cura 问题跟踪器上报告错误。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "无法切片"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "无法切片(原因:主塔或主位置无效)。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6559,17 +6559,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "受影响项目"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "此设置与挤出器特定值不同:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6580,7 +6580,7 @@ msgstr ""
|
||||
"\n"
|
||||
"单击以恢复配置文件的值。"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-03-07 09:01+0100\n"
|
||||
"POT-Creation-Date: 2023-03-09 11:03+0000\n"
|
||||
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
|
||||
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
||||
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
||||
@ -1277,45 +1277,45 @@ msgctxt "@message:description"
|
||||
msgid "Report a bug on UltiMaker Cura's issue tracker."
|
||||
msgstr "於UltiMaker Cura問題追蹤器中回報問題."
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:401
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:416
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
|
||||
msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:402
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:435
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:462
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:474
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:486
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:499
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:417
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:450
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:477
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:489
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:501
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:514
|
||||
msgctxt "@info:title"
|
||||
msgid "Unable to slice"
|
||||
msgstr "無法切片"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:434
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:449
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
|
||||
msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:461
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:476
|
||||
#, python-brace-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
|
||||
msgstr "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:473
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:488
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
|
||||
msgstr "無法切片(原因:換料塔或主位置無效)。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:485
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:500
|
||||
#, python-format
|
||||
msgctxt "@info:status"
|
||||
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
|
||||
msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。"
|
||||
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:495
|
||||
#: plugins/CuraEngineBackend/CuraEngineBackend.py:510
|
||||
msgctxt "@info:status"
|
||||
msgid ""
|
||||
"Please review settings and check if your models:\n"
|
||||
@ -6550,17 +6550,17 @@ msgctxt "@label Header for list of settings."
|
||||
msgid "Affected By"
|
||||
msgstr "影響因素"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:190
|
||||
#: resources/qml/Settings/SettingItem.qml:196
|
||||
msgctxt "@label"
|
||||
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
|
||||
msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:194
|
||||
#: resources/qml/Settings/SettingItem.qml:200
|
||||
msgctxt "@label"
|
||||
msgid "This setting is resolved from conflicting extruder-specific values:"
|
||||
msgstr "此設定是透過解決擠出機設定值衝突獲得:"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:234
|
||||
#: resources/qml/Settings/SettingItem.qml:240
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting has a value that is different from the profile.\n"
|
||||
@ -6571,7 +6571,7 @@ msgstr ""
|
||||
"\n"
|
||||
"單擊以復原列印參數的值。"
|
||||
|
||||
#: resources/qml/Settings/SettingItem.qml:334
|
||||
#: resources/qml/Settings/SettingItem.qml:340
|
||||
msgctxt "@label"
|
||||
msgid ""
|
||||
"This setting is normally calculated, but it currently has an absolute value set.\n"
|
||||
|
@ -115,7 +115,16 @@ Item
|
||||
|
||||
onExited:
|
||||
{
|
||||
if (controlContainer.item && controlContainer.item.hovered)
|
||||
if (controlContainer.children[0] && controlContainer.children[0].hovered)
|
||||
{
|
||||
return
|
||||
}
|
||||
|
||||
// Don't trigger the hide if either of the nested buttons is hidden. This is caused by a bug in QT
|
||||
// Documentation claims that nested mouse events don't trigger the onExit, but this is only true if they
|
||||
// have a *direct* parent child relationship. In this case there are rows and other visual layouts in
|
||||
// between which messes this up.
|
||||
if(linkedSettingIcon.hovered || revertButton.hovered || inheritButton.hovered)
|
||||
{
|
||||
return
|
||||
}
|
||||
@ -129,10 +138,7 @@ Item
|
||||
interval: 500
|
||||
repeat: false
|
||||
|
||||
onTriggered:
|
||||
{
|
||||
base.showTooltip(base.createTooltipText())
|
||||
}
|
||||
onTriggered: base.showTooltip(base.createTooltipText())
|
||||
}
|
||||
|
||||
UM.Label
|
||||
@ -150,7 +156,7 @@ Item
|
||||
|
||||
color: UM.Theme.getColor("setting_control_text")
|
||||
opacity: (definition.visible) ? 1 : 0.5
|
||||
// emphasize the setting if it has a value in the user or quality profile
|
||||
// Emphasize the setting if it has a value in the user or quality profile
|
||||
font: base.doQualityUserSettingEmphasis && base.stackLevel !== undefined && base.stackLevel <= 1 ? UM.Theme.getFont("default_italic") : UM.Theme.getFont("default")
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user