mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-09-14 06:33:16 +08:00
Merge branch 'main' into CURA-10406_fix_project_loading
# Conflicts: # resources/i18n/cs_CZ/cura.po # resources/i18n/cura.pot # resources/i18n/de_DE/cura.po # resources/i18n/es_ES/cura.po # resources/i18n/fi_FI/cura.po # resources/i18n/fr_FR/cura.po # resources/i18n/hu_HU/cura.po # resources/i18n/it_IT/cura.po # resources/i18n/ja_JP/cura.po # resources/i18n/ko_KR/cura.po # resources/i18n/nl_NL/cura.po # resources/i18n/pl_PL/cura.po # resources/i18n/pt_BR/cura.po # resources/i18n/pt_PT/cura.po # resources/i18n/ru_RU/cura.po # resources/i18n/tr_TR/cura.po # resources/i18n/zh_CN/cura.po # resources/i18n/zh_TW/cura.po
This commit is contained in:
commit
86d95f8375
7
.github/workflows/conan-package.yml
vendored
7
.github/workflows/conan-package.yml
vendored
@ -75,6 +75,13 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Cache Conan data
|
||||||
|
id: cache-conan
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ~/.conan
|
||||||
|
key: ${{ runner.os }}-conan
|
||||||
|
|
||||||
- name: Setup Python and pip
|
- name: Setup Python and pip
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
|
7
.github/workflows/update-translation.yml
vendored
7
.github/workflows/update-translation.yml
vendored
@ -27,6 +27,13 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Cache Conan data
|
||||||
|
id: cache-conan
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ~/.conan
|
||||||
|
key: ${{ runner.os }}-conan
|
||||||
|
|
||||||
- name: Setup Python and pip
|
- name: Setup Python and pip
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
|
@ -303,18 +303,17 @@ Item
|
|||||||
|
|
||||||
Component.onCompleted:
|
Component.onCompleted:
|
||||||
{
|
{
|
||||||
update()
|
updateModel();
|
||||||
}
|
}
|
||||||
|
|
||||||
function update()
|
function updateModel()
|
||||||
{
|
{
|
||||||
clear()
|
clear();
|
||||||
for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i++)
|
for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i ++) {
|
||||||
{
|
|
||||||
// Use String as value. JavaScript only has Number. PropertyProvider.setPropertyValue()
|
// Use String as value. JavaScript only has Number. PropertyProvider.setPropertyValue()
|
||||||
// takes a QVariant as value, and Number gets translated into a float. This will cause problem
|
// takes a QVariant as value, and Number gets translated into a float. This will cause problem
|
||||||
// for integer settings such as "Number of Extruders".
|
// for integer settings such as "Number of Extruders".
|
||||||
append({ text: String(i), value: String(i) })
|
append({ text: String(i), value: String(i) });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -322,7 +321,9 @@ Item
|
|||||||
Connections
|
Connections
|
||||||
{
|
{
|
||||||
target: Cura.MachineManager
|
target: Cura.MachineManager
|
||||||
function onGlobalContainerChanged() { extruderCountModel.update() }
|
function onGlobalContainerChanged() {
|
||||||
|
extruderCountModel.updateModel();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ class PauseAtHeight(Script):
|
|||||||
"pause_layer":
|
"pause_layer":
|
||||||
{
|
{
|
||||||
"label": "Pause Layer",
|
"label": "Pause Layer",
|
||||||
"description": "Enter the Number of the LAST layer you want to finish prior to the pause (from the Cura preview).",
|
"description": "Enter the Number of the LAST layer you want to finish prior to the pause. Note that 0 is the first layer printed.",
|
||||||
"type": "int",
|
"type": "int",
|
||||||
"value": "math.floor((pause_height - 0.27) / 0.1) + 1",
|
"value": "math.floor((pause_height - 0.27) / 0.1) + 1",
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
|
@ -1,46 +1,41 @@
|
|||||||
### Direct requirements for Uranium and libCharon ###
|
### Direct requirements for Uranium and libCharon ###
|
||||||
PyQt6-sip==13.2.1 \
|
PyQt6-sip==13.4.1 \
|
||||||
--hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \
|
--hash=sha256:0df998f2b6ceeacfd10de773441572e215be0c9cae566cc7dd36e231bf714a12 \
|
||||||
--hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \
|
--hash=sha256:224575e84805c4317bacd5d1b8e93e0ad5c48685dadbbe1e902d4ebe16f22828 \
|
||||||
--hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \
|
--hash=sha256:36ae29cdc223cacc1257d0f5075cf81474550c6d26b728f922487a2aa935f130 \
|
||||||
--hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec
|
--hash=sha256:3a674c591d4274d4ea8127205290e927a7dab0eb87a0038d4f4ea1d430782649 \
|
||||||
PyQt6==6.2.3 \
|
--hash=sha256:3ef9392e4ae29d393b79237d85840cdc6b8831f36eed5d56c7d9b329b380cc8d \
|
||||||
--hash=sha256:a9bfcac198fe4b703706f809bb686c7cef5f60a7c802fc145c6b57929c7a6a34 \
|
--hash=sha256:43935873d60f57719632840d517afee04ef8f30e92cfe0dadc7e6326691920fc \
|
||||||
--hash=sha256:11c039b07962b29246de2da0912f4f663786185fd74d48daac7a270a43c8d92a \
|
--hash=sha256:5731f22618435654352ef07684549a17be82b75254227fc80b4b5b0b59fc6656 \
|
||||||
--hash=sha256:8a2f357b86fec8598f52f16d5f93416931017ca1986d5f68679c9565bfc21fff \
|
--hash=sha256:5bc4beb6fb1de4c9ba8beee7b1a4a813fa888c3b095206dafcd25d7e6e4ed2a7 \
|
||||||
--hash=sha256:577334c9d4518022a4cb6f9799dfbd1b996167eb31404b5a63d6c43d603e6418
|
--hash=sha256:5c36ab984402e96792eebf4b031abfaa589aa20af3190a79c54502c16964d97e \
|
||||||
PyQt6-Qt6==6.2.4 \
|
--hash=sha256:a2a0461992c6657f343308b150c4d6b57e9e7a0e5c2f79538434e7fb869ea827 \
|
||||||
--hash=sha256:42c37475a50ec7e06e0445ac9ce39465f69a86af407ad9b28b183da178d401ee \
|
--hash=sha256:a81490ee84d7a41a126b116081bd97d758f41bf706aee0a8cec24d6e4c660184 \
|
||||||
--hash=sha256:b68543e5d5a4f5d24c26b517569da3cd30b0fbe75390b841e142c160399b3c0a \
|
--hash=sha256:e00e287ea05bbc293fc6e2198301962af9b7b622bd2daf4288f925a88ae35dc9 \
|
||||||
--hash=sha256:0aa93581b92e01deaf2dcaad88ed6718996a6d84de59ee88316bcba143f008c9 \
|
--hash=sha256:e670a7b2fb7e32204ce67d274017bfff3e21139d217d60cebbfcb75b019c91ee \
|
||||||
--hash=sha256:48bc5b7400d6bca13d8c0a145f82295a6da317952ee1a3f107f1cd7d078c8140
|
--hash=sha256:ee06f255787a0b4957f357f93b78d2a11ca3761916833e3afa83f1381d4d1a46 \
|
||||||
PyQt6-NetworkAuth==6.2.0 \
|
--hash=sha256:fbee0d554e0e98f56dbf6d94b00a28cc32425938ad7ae98fd91f8822c5b24d45 \
|
||||||
--hash=sha256:23e730cc0d6b828bec2f92d9fac3607871e6033a8af4620e5d4e3afc13bd6c3c \
|
--hash=sha256:fcc6d78314783f4a193f02353f431b7ea4d357f47c3c7a7d0740e723f69c64dc
|
||||||
--hash=sha256:b85ee25b01d6cb38d6141df0052b96de2df7f6e69066eaddb22ae238f56be40b \
|
PyQt6==6.4.2 \
|
||||||
--hash=sha256:e637781a00dd2032d0fd2025af09274898335033763e1dc765a5a99348f60c3b \
|
--hash=sha256:18d1daf98d9236d55102cdadafd1056f5802f3c9288fcf7238569937b71a89f0 \
|
||||||
--hash=sha256:542e9d9a8a5bb78e1f26fa3d35ee01f45209bcf5a35b0cc367aaa85932c29750
|
--hash=sha256:25bd399b4a95dce65d5f937c1aa85d3c7e14a21745ae2a4ca14c0116cd104290 \
|
||||||
PyQt6-NetworkAuth-Qt6==6.2.4 \
|
--hash=sha256:740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d \
|
||||||
--hash=sha256:c7996a9d8c4ce024529ec37981fbfd525ab1a2d497af1281f81f2b6054452d2e \
|
--hash=sha256:c128bc0f17833e324593e3db83e99470d451a197dd17ff0333927b946c935bd9
|
||||||
--hash=sha256:1ae9e08e03bd9d5ebdb42dfaccf484a9cc62eeea7504621fe42c005ff1745e66 \
|
PyQt6-Qt6==6.4.2 \
|
||||||
--hash=sha256:1363ea81e5c6ac10bfd643e41ba0d215c0d031a57ff1e5972cc4c2a918efe712 \
|
--hash=sha256:9f07c3c100cb46cca4074965e7494d4df4f0fc016497d5303c1fe135822876e1 \
|
||||||
--hash=sha256:8ed4e5e0eaaa42a6f91aba6745eea23fb3ffcbddc6b162016936530ed28dd0ad
|
--hash=sha256:a29b8c858babd523e80c8db5f8fd19792641588ec04eab49af18b7a4423eb99f \
|
||||||
PyQt6-sip==13.2.1 \
|
--hash=sha256:c0e91d0275d428496cacff717a9b719c52bfa52b21f124d638b79cc2217bc81e \
|
||||||
--hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \
|
--hash=sha256:d19c4e72615762cd6f0b043f23fa5f0b02656091427ce6de1efccd58e10e6a53
|
||||||
--hash=sha256:082a80264699d4e2e919a7de8b6662886a353863d2b30a0047fe73d42e65c98e \
|
PyQt6-NetworkAuth==6.4.0 \
|
||||||
--hash=sha256:0a49f2d0bb49bc9d72665d62fb5ab6549c72dcf49e1e52dc2046edb8832a17a3 \
|
--hash=sha256:ab6178b3b2902ae9939a148555cfcee8c7803d6b0d5924cd1bd8f3407b8b9210 \
|
||||||
--hash=sha256:0ede42e84a79871022e1a8e4d5c05f70821b2795910c4cd103e863ce62bc8d68 \
|
--hash=sha256:c16ec80232d88024b60d04386a23cc93067e5644a65f47f26ffb13d84dcd4a6d \
|
||||||
--hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec \
|
--hash=sha256:c302cd0d838c7229eda5e26e0b1b3d3ec4f8720f8d9379472bce5a89ff0735c2 \
|
||||||
--hash=sha256:43afd9c9fdbc5f6ed2e22cae0752a8b8d9545c6d85f314bd27b861e21d4a97fe \
|
--hash=sha256:d948fc0cf43b64afbda2acb5bf2392f785a1e7a2950d79ea850c1a3f4ae12f1a
|
||||||
--hash=sha256:4b119a8fd880ece15a5bdff583edccd89dbc79d49de2e11cbbd6bba72713d1f3 \
|
PyQt6-NetworkAuth-Qt6==6.4.2 \
|
||||||
--hash=sha256:616b6bad827e9c6e7ce5179883ca0f44110a42dcb045344aa28a495c05e19795 \
|
--hash=sha256:179094bcb4d4d056316c22d3d067cd94d4591da23f804461bfb025ccfa29b2b4 \
|
||||||
--hash=sha256:65f5aee6195bd0e785bd74f75ee080a5d5fb840c03210956e4ccbdde481b487c \
|
--hash=sha256:1de6abbb5fa6585b97ae49d3f64b0dfad40bd56b1a31744d9775ff26247241c8 \
|
||||||
--hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \
|
--hash=sha256:79ec4b0fc9450bbedbff03541b93b10d1c7e761cd2cc16ce70d2b09dcdf8c720 \
|
||||||
--hash=sha256:a3d53fab72f959b45aeb954124255b585ff8d497a514a2582e0afd808fc2f3da \
|
--hash=sha256:d96d557fe61edb9b68d189f270f0393d6579c8d308e6b0d41bc0699371d7cb4e
|
||||||
--hash=sha256:b0d92f4a21706b18ab80c088cded94cd64d32a0c48e1729a4cc53fe5ab93cc1a \
|
|
||||||
--hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \
|
|
||||||
--hash=sha256:c456d5ccc4478254052082e298db01bb9d0495471c1659046697bb5dc9d2506c \
|
|
||||||
--hash=sha256:e2e6a3972169891dbc33d806f50ebf17eaa47a487ff6e4910fe2485c47cb6c2b \
|
|
||||||
--hash=sha256:f4226d4ab239d8655f94c42b397f23e6e85b246f614ff81162ef9321e47f7619
|
|
||||||
certifi==2021.10.8 \
|
certifi==2021.10.8 \
|
||||||
--hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \
|
--hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \
|
||||||
--hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569
|
--hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569
|
||||||
|
@ -1298,6 +1298,18 @@
|
|||||||
"limit_to_extruder": "wall_0_extruder_nr",
|
"limit_to_extruder": "wall_0_extruder_nr",
|
||||||
"settable_per_mesh": true
|
"settable_per_mesh": true
|
||||||
},
|
},
|
||||||
|
"hole_xy_offset_max_diameter":
|
||||||
|
{
|
||||||
|
"label": "Hole Horizontal Expansion Max Diameter",
|
||||||
|
"description": "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded.",
|
||||||
|
"unit": "mm",
|
||||||
|
"type": "float",
|
||||||
|
"default_value": 0,
|
||||||
|
"minimum_value": "0",
|
||||||
|
"enabled": "hole_xy_offset > 0",
|
||||||
|
"limit_to_extruder": "wall_0_extruder_nr",
|
||||||
|
"settable_per_mesh": true
|
||||||
|
},
|
||||||
"z_seam_type":
|
"z_seam_type":
|
||||||
{
|
{
|
||||||
"label": "Z Seam Alignment",
|
"label": "Z Seam Alignment",
|
||||||
@ -5679,6 +5691,21 @@
|
|||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
"settable_per_extruder": true
|
"settable_per_extruder": true
|
||||||
},
|
},
|
||||||
|
"skirt_height":
|
||||||
|
{
|
||||||
|
"label": "Skirt Height",
|
||||||
|
"description": "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt.",
|
||||||
|
"type": "int",
|
||||||
|
"default_value": 3,
|
||||||
|
"value": "3 if resolveOrValue('skirt_gap') > 0.0 else 1",
|
||||||
|
"minimum_value": "1",
|
||||||
|
"maximum_value_warning": "10",
|
||||||
|
"maximum_value": "machine_height / layer_height",
|
||||||
|
"enabled": "resolveOrValue('adhesion_type') == 'skirt'",
|
||||||
|
"limit_to_extruder": "skirt_brim_extruder_nr",
|
||||||
|
"settable_per_mesh": false,
|
||||||
|
"settable_per_extruder": true
|
||||||
|
},
|
||||||
"skirt_gap":
|
"skirt_gap":
|
||||||
{
|
{
|
||||||
"label": "Skirt Distance",
|
"label": "Skirt Distance",
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: 2023-02-16 20:28+0100\n"
|
"PO-Revision-Date: 2023-02-16 20:28+0100\n"
|
||||||
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
||||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Neznámá chyba."
|
msgstr "Neznámá chyba."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "Projektový soubor <filename>{0}</filename> obsahuje neznámý typ zařízení <message>{1}</message>. Nelze importovat zařízení. Místo toho budou importovány modely."
|
msgstr "Projektový soubor <filename>{0}</filename> obsahuje neznámý typ zařízení <message>{1}</message>. Nelze importovat zařízení. Místo toho budou importovány modely."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Otevřít soubor s projektem"
|
msgstr "Otevřít soubor s projektem"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Vytvořit nový"
|
msgstr "Vytvořit nový"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "Soubor projektu <filename>{0}</filename> je neočekávaně nedostupný: <message>{1}</message>."
|
msgstr "Soubor projektu <filename>{0}</filename> je neočekávaně nedostupný: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Nepovedlo se otevřít soubor projektu"
|
msgstr "Nepovedlo se otevřít soubor projektu"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "Soubor projektu <filename>{0}</filename> je poškozený: <message>{1}</message>."
|
msgstr "Soubor projektu <filename>{0}</filename> je poškozený: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: 2023-02-16 20:35+0100\n"
|
"PO-Revision-Date: 2023-02-16 20:35+0100\n"
|
||||||
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
||||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||||
@ -1641,6 +1641,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Horizontální expanze díry"
|
msgstr "Horizontální expanze díry"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3181,6 +3186,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Teplota při tisku první vrstvy"
|
msgstr "Teplota při tisku první vrstvy"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3666,6 +3676,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Vzdálenost okraj"
|
msgstr "Vzdálenost okraj"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6310,6 +6325,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Pokud je větší než nula, combingové pohyby delší než tato vzdálenost budou používat retrakci. Nula znamená, že se při combingových pohybech retrakce provádět nebudou."
|
msgstr "Pokud je větší než nula, combingové pohyby delší než tato vzdálenost budou používat retrakci. Nula znamená, že se při combingových pohybech retrakce provádět nebudou."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -815,18 +815,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -834,27 +834,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Unbekannter Fehler."
|
msgstr "Unbekannter Fehler."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "Projektdatei <filename>{0}</filename> enthält einen unbekannten Maschinentyp <message>{1}</message>. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert."
|
msgstr "Projektdatei <filename>{0}</filename> enthält einen unbekannten Maschinentyp <message>{1}</message>. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Projektdatei öffnen"
|
msgstr "Projektdatei öffnen"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Neu erstellen"
|
msgstr "Neu erstellen"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "Auf Projektdatei <filename>{0}</filename> kann plötzlich nicht mehr zugegriffen werden: <message>{1}</message>."
|
msgstr "Auf Projektdatei <filename>{0}</filename> kann plötzlich nicht mehr zugegriffen werden: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Projektdatei kann nicht geöffnet werden"
|
msgstr "Projektdatei kann nicht geöffnet werden"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "Projektdatei <filename>{0}</filename> ist beschädigt: <message>{1}</message>."
|
msgstr "Projektdatei <filename>{0}</filename> ist beschädigt: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Horizontalloch-Erweiterung"
|
msgstr "Horizontalloch-Erweiterung"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Drucktemperatur erste Schicht"
|
msgstr "Drucktemperatur erste Schicht"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Skirt-Abstand"
|
msgstr "Skirt-Abstand"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht."
|
msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.3\n"
|
"Project-Id-Version: Cura 5.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Expansión horizontal de orificios"
|
msgstr "Expansión horizontal de orificios"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Temperatura de impresión de la capa inicial"
|
msgstr "Temperatura de impresión de la capa inicial"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Distancia de falda"
|
msgstr "Distancia de falda"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción."
|
msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1161,6 +1161,16 @@ msgctxt "hole_xy_offset description"
|
|||||||
msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
|
msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "z_seam_type label"
|
msgctxt "z_seam_type label"
|
||||||
msgid "Z Seam Alignment"
|
msgid "Z Seam Alignment"
|
||||||
@ -4696,6 +4706,16 @@ msgctxt "skirt_line_count description"
|
|||||||
msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
|
msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_gap label"
|
msgctxt "skirt_gap label"
|
||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-15 10:53+0200\n"
|
"PO-Revision-Date: 2022-07-15 10:53+0200\n"
|
||||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
@ -804,18 +804,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -823,27 +823,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Luo uusi"
|
msgstr "Luo uusi"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
"PO-Revision-Date: 2022-07-15 11:17+0200\n"
|
||||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3176,6 +3181,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Alkukerroksen tulostuslämpötila"
|
msgstr "Alkukerroksen tulostuslämpötila"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3661,6 +3671,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Helman etäisyys"
|
msgstr "Helman etäisyys"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6309,6 +6324,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Erreur inconnue."
|
msgstr "Erreur inconnue."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "Le fichier projet <filename>{0}</filename> contient un type de machine inconnu <message>{1}</message>. Impossible d'importer la machine. Les modèles seront importés à la place."
|
msgstr "Le fichier projet <filename>{0}</filename> contient un type de machine inconnu <message>{1}</message>. Impossible d'importer la machine. Les modèles seront importés à la place."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Ouvrir un fichier de projet"
|
msgstr "Ouvrir un fichier de projet"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "Le fichier de projet <filename>{0}</filename> est soudainement inaccessible: <message>{1}</message>."
|
msgstr "Le fichier de projet <filename>{0}</filename> est soudainement inaccessible: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Impossible d'ouvrir le fichier de projet"
|
msgstr "Impossible d'ouvrir le fichier de projet"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "Le fichier de projet <filename>{0}</filename> est corrompu: <message>{1}</message>."
|
msgstr "Le fichier de projet <filename>{0}</filename> est corrompu: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Expansion horizontale des trous"
|
msgstr "Expansion horizontale des trous"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Température d’impression couche initiale"
|
msgstr "Température d’impression couche initiale"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Distance de la jupe"
|
msgstr "Distance de la jupe"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction."
|
msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: 2020-03-24 09:36+0100\n"
|
"PO-Revision-Date: 2020-03-24 09:36+0100\n"
|
||||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||||
"Language-Team: ATI-SZOFT\n"
|
"Language-Team: ATI-SZOFT\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "A projekt fájl <filename>{0}</filename> egy ismeretlen <message>{1}</message> géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket."
|
msgstr "A projekt fájl <filename>{0}</filename> egy ismeretlen <message>{1}</message> géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Projekt fájl megnyitása"
|
msgstr "Projekt fájl megnyitása"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Új létrehozása"
|
msgstr "Új létrehozása"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: 2020-03-24 09:43+0100\n"
|
"PO-Revision-Date: 2020-03-24 09:43+0100\n"
|
||||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||||
"Language-Team: AT-VLOG\n"
|
"Language-Team: AT-VLOG\n"
|
||||||
@ -1641,6 +1641,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3181,6 +3186,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Kezdő réteg nyomtatási hőmérséklete"
|
msgstr "Kezdő réteg nyomtatási hőmérséklete"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3666,6 +3676,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Szoknya távolság"
|
msgstr "Szoknya távolság"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6319,6 +6334,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Errore sconosciuto."
|
msgstr "Errore sconosciuto."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "Il file di progetto <filename>{0}</filename> contiene un tipo di macchina sconosciuto <message>{1}</message>. Impossibile importare la macchina. Verranno invece importati i modelli."
|
msgstr "Il file di progetto <filename>{0}</filename> contiene un tipo di macchina sconosciuto <message>{1}</message>. Impossibile importare la macchina. Verranno invece importati i modelli."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Apri file progetto"
|
msgstr "Apri file progetto"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "Il file di progetto <filename>{0}</filename> è diventato improvvisamente inaccessibile: <message>{1}</message>."
|
msgstr "Il file di progetto <filename>{0}</filename> è diventato improvvisamente inaccessibile: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Impossibile aprire il file di progetto"
|
msgstr "Impossibile aprire il file di progetto"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "Il file di progetto <filename>{0}</filename> è danneggiato: <message>{1}</message>."
|
msgstr "Il file di progetto <filename>{0}</filename> è danneggiato: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Espansione orizzontale dei fori"
|
msgstr "Espansione orizzontale dei fori"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Temperatura di stampa Strato iniziale"
|
msgstr "Temperatura di stampa Strato iniziale"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Distanza dello skirt"
|
msgstr "Distanza dello skirt"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione."
|
msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "不明なエラー。"
|
msgstr "不明なエラー。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "プロジェクトファイル <filename>{0}</filename> に不明なマシンタイプ <message>{1}</message> があります。マシンをインポートできません。代わりにモデルをインポートします。"
|
msgstr "プロジェクトファイル <filename>{0}</filename> に不明なマシンタイプ <message>{1}</message> があります。マシンをインポートできません。代わりにモデルをインポートします。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "プロジェクトファイルを開く"
|
msgstr "プロジェクトファイルを開く"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "プロジェクトファイル<filename>{0}</filename>が突然アクセスできなくなりました:<message>{1}</message>。"
|
msgstr "プロジェクトファイル<filename>{0}</filename>が突然アクセスできなくなりました:<message>{1}</message>。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "プロジェクトファイルを開けません"
|
msgstr "プロジェクトファイルを開けません"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "プロジェクトファイル<filename>{0}</filename>は破損しています:<message>{1}</message>。"
|
msgstr "プロジェクトファイル<filename>{0}</filename>は破損しています:<message>{1}</message>。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "穴の水平展開"
|
msgstr "穴の水平展開"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "初期レイヤー印刷温度"
|
msgstr "初期レイヤー印刷温度"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "スカート距離"
|
msgstr "スカート距離"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6309,6 +6324,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。"
|
msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "알 수 없는 오류입니다."
|
msgstr "알 수 없는 오류입니다."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "프로젝트 파일 <filename>{0}</filename>에 알 수 없는 기기 유형 <message>{1}</message>이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다."
|
msgstr "프로젝트 파일 <filename>{0}</filename>에 알 수 없는 기기 유형 <message>{1}</message>이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "프로젝트 파일 열기"
|
msgstr "프로젝트 파일 열기"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "프로젝트 파일 <filename>{0}</filename>에 갑자기 접근할 수 없습니다: <message>{1}</message>."
|
msgstr "프로젝트 파일 <filename>{0}</filename>에 갑자기 접근할 수 없습니다: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "프로젝트 파일 열 수 없음"
|
msgstr "프로젝트 파일 열 수 없음"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "프로젝트 파일 <filename>{0}</filename>이 손상됨: <message>{1}</message>."
|
msgstr "프로젝트 파일 <filename>{0}</filename>이 손상됨: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1636,6 +1636,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "구멍 수평 확장"
|
msgstr "구멍 수평 확장"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3176,6 +3181,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "첫번째 레이어의 프린팅 온도"
|
msgstr "첫번째 레이어의 프린팅 온도"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3661,6 +3671,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "스커트 거리"
|
msgstr "스커트 거리"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6305,6 +6320,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다."
|
msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Onbekende fout."
|
msgstr "Onbekende fout."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "Projectbestand <filename>{0}</filename> bevat een onbekend type machine <message>{1}</message>. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd."
|
msgstr "Projectbestand <filename>{0}</filename> bevat een onbekend type machine <message>{1}</message>. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Projectbestand Openen"
|
msgstr "Projectbestand Openen"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Nieuw maken"
|
msgstr "Nieuw maken"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "Projectbestand <filename>{0}</filename> is plotseling ontoegankelijk: <message>{1}</message>."
|
msgstr "Projectbestand <filename>{0}</filename> is plotseling ontoegankelijk: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Kan projectbestand niet openen"
|
msgstr "Kan projectbestand niet openen"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "Projectbestand <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgstr "Projectbestand <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Horizontale uitbreiding gaten"
|
msgstr "Horizontale uitbreiding gaten"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Printtemperatuur van de eerste laag"
|
msgstr "Printtemperatuur van de eerste laag"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Skirtafstand"
|
msgstr "Skirtafstand"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats."
|
msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: 2021-09-07 08:02+0200\n"
|
"PO-Revision-Date: 2021-09-07 08:02+0200\n"
|
||||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||||
@ -813,18 +813,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "Plik projektu <filename>{0}</filename> zawiera nieznany typ maszyny <message>{1}</message>. Nie można zaimportować maszyny. Zostaną zaimportowane modele."
|
msgstr "Plik projektu <filename>{0}</filename> zawiera nieznany typ maszyny <message>{1}</message>. Nie można zaimportować maszyny. Zostaną zaimportowane modele."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Otwórz Plik Projektu"
|
msgstr "Otwórz Plik Projektu"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -832,27 +832,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Utwórz nowy"
|
msgstr "Utwórz nowy"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: 2019-11-15 15:34+0100\n"
|
"PO-Revision-Date: 2019-11-15 15:34+0100\n"
|
||||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||||
@ -1642,6 +1642,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3182,6 +3187,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Temp. Druku Początk. Warstwy"
|
msgstr "Temp. Druku Początk. Warstwy"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3667,6 +3677,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Odległ. Obwódki"
|
msgstr "Odległ. Obwódki"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6320,6 +6335,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.0\n"
|
"Project-Id-Version: Cura 5.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: 2023-02-17 17:37+0100\n"
|
"PO-Revision-Date: 2023-02-17 17:37+0100\n"
|
||||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Erro desconhecido."
|
msgstr "Erro desconhecido."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "O arquivo de projeto <filename>{0}</filename> contém um tipo de máquina desconhecido <message>{1}</message>. Não foi possível importar a máquina. Os modelos serão importados ao invés dela."
|
msgstr "O arquivo de projeto <filename>{0}</filename> contém um tipo de máquina desconhecido <message>{1}</message>. Não foi possível importar a máquina. Os modelos serão importados ao invés dela."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Abrir Arquivo de Projeto"
|
msgstr "Abrir Arquivo de Projeto"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Criar novos"
|
msgstr "Criar novos"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "O arquivo de projeto <filename>{0}</filename> tornou-se subitamente inacessível: <message>{1}</message>."
|
msgstr "O arquivo de projeto <filename>{0}</filename> tornou-se subitamente inacessível: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Não Foi Possível Abrir o Arquivo de Projeto"
|
msgstr "Não Foi Possível Abrir o Arquivo de Projeto"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "Arquivo de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
|
msgstr "Arquivo de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.0\n"
|
"Project-Id-Version: Cura 5.0\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: 2023-02-17 16:31+0100\n"
|
"PO-Revision-Date: 2023-02-17 16:31+0100\n"
|
||||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||||
@ -1643,6 +1643,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Expansão Horizontal do Furo"
|
msgstr "Expansão Horizontal do Furo"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3183,6 +3188,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Temperatura de Impressão da Camada Inicial"
|
msgstr "Temperatura de Impressão da Camada Inicial"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3668,6 +3678,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Distância do Skirt"
|
msgstr "Distância do Skirt"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6321,6 +6336,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração."
|
msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -807,18 +807,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Erro desconhecido."
|
msgstr "Erro desconhecido."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "O ficheiro de projeto <filename>{0}</filename> contém um tipo de máquina desconhecido <message>{1}</message>. Não é possível importar a máquina. Em vez disso, serão importados os modelos."
|
msgstr "O ficheiro de projeto <filename>{0}</filename> contém um tipo de máquina desconhecido <message>{1}</message>. Não é possível importar a máquina. Em vez disso, serão importados os modelos."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Abrir ficheiro de projeto"
|
msgstr "Abrir ficheiro de projeto"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -826,27 +826,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Criar nova"
|
msgstr "Criar nova"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "O projeto de ficheiro <filename>{0}</filename> ficou subitamente inacessível: <message>{1}</message>."
|
msgstr "O projeto de ficheiro <filename>{0}</filename> ficou subitamente inacessível: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Não é possível abrir o ficheiro de projeto"
|
msgstr "Não é possível abrir o ficheiro de projeto"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "O ficheiro de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
|
msgstr "O ficheiro de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Expansão horizontal de buraco"
|
msgstr "Expansão horizontal de buraco"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Temperatura Impressão Camada Inicial"
|
msgstr "Temperatura Impressão Camada Inicial"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Distância Contorno"
|
msgstr "Distância Contorno"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações."
|
msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Горизонтальное расширение отверстия"
|
msgstr "Горизонтальное расширение отверстия"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "Температура печати первого слоя"
|
msgstr "Температура печати первого слоя"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Дистанция до юбки"
|
msgstr "Дистанция до юбки"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката."
|
msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "Bilinmeyen hata."
|
msgstr "Bilinmeyen hata."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "Proje dosyası <filename>{0}</filename> bilinmeyen bir makine tipi içeriyor: <message>{1}</message>. Makine alınamıyor. Bunun yerine modeller alınacak."
|
msgstr "Proje dosyası <filename>{0}</filename> bilinmeyen bir makine tipi içeriyor: <message>{1}</message>. Makine alınamıyor. Bunun yerine modeller alınacak."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "Proje Dosyası Aç"
|
msgstr "Proje Dosyası Aç"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "Yeni oluştur"
|
msgstr "Yeni oluştur"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "<filename>{0}</filename> proje dosyası aniden erişilemez oldu: <message>{1}</message>."
|
msgstr "<filename>{0}</filename> proje dosyası aniden erişilemez oldu: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "Proje Dosyası Açılamıyor"
|
msgstr "Proje Dosyası Açılamıyor"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "Proje dosyası <filename>{0}</filename> bozuk: <message>{1}</message>."
|
msgstr "Proje dosyası <filename>{0}</filename> bozuk: <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "Delik Yatay Büyüme"
|
msgstr "Delik Yatay Büyüme"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "İlk Katman Yazdırma Sıcaklığı"
|
msgstr "İlk Katman Yazdırma Sıcaklığı"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Etek Mesafesi"
|
msgstr "Etek Mesafesi"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz."
|
msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-15 11:06+0200\n"
|
"PO-Revision-Date: 2022-07-15 11:06+0200\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "未知错误。"
|
msgstr "未知错误。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "项目文件 <filename>{0}</filename> 包含未知机器类型 <message>{1}</message>。无法导入机器。将改为导入模型。"
|
msgstr "项目文件 <filename>{0}</filename> 包含未知机器类型 <message>{1}</message>。无法导入机器。将改为导入模型。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "打开项目文件"
|
msgstr "打开项目文件"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr "新建"
|
msgstr "新建"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "突然无法访问项目文件 <filename>{0}</filename>:<message>{1}</message>。"
|
msgstr "突然无法访问项目文件 <filename>{0}</filename>:<message>{1}</message>。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "无法打开项目文件"
|
msgstr "无法打开项目文件"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "项目文件 <filename>{0}</filename> 损坏: <message>{1}</message>。"
|
msgstr "项目文件 <filename>{0}</filename> 损坏: <message>{1}</message>。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Uranium json setting files\n"
|
"Project-Id-Version: Uranium json setting files\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE\n"
|
"Language-Team: LANGUAGE\n"
|
||||||
@ -1638,6 +1638,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "孔洞水平扩展"
|
msgstr "孔洞水平扩展"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3178,6 +3183,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "打印温度起始层"
|
msgstr "打印温度起始层"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3663,6 +3673,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "Skirt 距离"
|
msgstr "Skirt 距离"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6307,6 +6322,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。"
|
msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-03-17 15:28+0000\n"
|
"POT-Creation-Date: 2023-03-15 11:58+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
|
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
|
||||||
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
||||||
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
||||||
@ -812,18 +812,18 @@ msgctxt "@text"
|
|||||||
msgid "Unknown error."
|
msgid "Unknown error."
|
||||||
msgstr "未知的錯誤."
|
msgstr "未知的錯誤."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
|
||||||
msgstr "專案檔案 <filename>{0}</filename> 包含未知的機器類型 <message>{1}</message>。機器無法被匯入,但模型將被匯入。"
|
msgstr "專案檔案 <filename>{0}</filename> 包含未知的機器類型 <message>{1}</message>。機器無法被匯入,但模型將被匯入。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Open Project File"
|
msgid "Open Project File"
|
||||||
msgstr "開啟專案檔案"
|
msgstr "開啟專案檔案"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
#: plugins/3MFReader/WorkspaceDialog.qml:99
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
#: plugins/3MFReader/WorkspaceDialog.qml:127
|
||||||
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
#: plugins/3MFReader/WorkspaceDialog.qml:134
|
||||||
@ -831,27 +831,27 @@ msgctxt "@button"
|
|||||||
msgid "Create new"
|
msgid "Create new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
|
||||||
msgstr "專案檔案 <filename>{0}</filename> 無法存取:<message>{1}</message>。"
|
msgstr "專案檔案 <filename>{0}</filename> 無法存取:<message>{1}</message>。"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
|
||||||
msgctxt "@info:title"
|
msgctxt "@info:title"
|
||||||
msgid "Can't Open Project File"
|
msgid "Can't Open Project File"
|
||||||
msgstr "無法開啟專案檔案"
|
msgstr "無法開啟專案檔案"
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
|
||||||
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
|
||||||
msgstr "專案檔案<filename>{0}</filename> 已毀損 : <message>{1}</message>."
|
msgstr "專案檔案<filename>{0}</filename> 已毀損 : <message>{1}</message>."
|
||||||
|
|
||||||
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766
|
#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
msgctxt "@info:error Don't translate the XML tag <filename>!"
|
||||||
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Cura 5.1\n"
|
"Project-Id-Version: Cura 5.1\n"
|
||||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||||
"POT-Creation-Date: 2023-03-08 09:03+0000\n"
|
"POT-Creation-Date: 2023-03-16 17:19+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-02 20:24+0800\n"
|
"PO-Revision-Date: 2022-01-02 20:24+0800\n"
|
||||||
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
||||||
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
"Language-Team: Valen Chang <carf17771@gmail.com>\n"
|
||||||
@ -1643,6 +1643,11 @@ msgctxt "hole_xy_offset label"
|
|||||||
msgid "Hole Horizontal Expansion"
|
msgid "Hole Horizontal Expansion"
|
||||||
msgstr "孔洞水平擴展"
|
msgstr "孔洞水平擴展"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter label"
|
||||||
|
msgid "Hole Horizontal Expansion Max Diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "small_hole_max_size description"
|
msgctxt "small_hole_max_size description"
|
||||||
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
|
||||||
@ -3183,6 +3188,11 @@ msgctxt "material_print_temperature_layer_0 label"
|
|||||||
msgid "Printing Temperature Initial Layer"
|
msgid "Printing Temperature Initial Layer"
|
||||||
msgstr "列印溫度起始層"
|
msgstr "列印溫度起始層"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height description"
|
||||||
|
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "alternate_extra_perimeter description"
|
msgctxt "alternate_extra_perimeter description"
|
||||||
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
|
||||||
@ -3668,6 +3678,11 @@ msgctxt "skirt_gap label"
|
|||||||
msgid "Skirt Distance"
|
msgid "Skirt Distance"
|
||||||
msgstr "外圍間距"
|
msgstr "外圍間距"
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "skirt_height label"
|
||||||
|
msgid "Skirt Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "skirt_line_count label"
|
msgctxt "skirt_line_count label"
|
||||||
msgid "Skirt Line Count"
|
msgid "Skirt Line Count"
|
||||||
@ -6321,6 +6336,11 @@ msgctxt "retraction_combing_max_distance description"
|
|||||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||||
msgstr "觸發回抽時之最小距離,如大於此數值,便開啟回抽;如設置為0,則關閉回抽."
|
msgstr "觸發回抽時之最小距離,如大於此數值,便開啟回抽;如設置為0,則關閉回抽."
|
||||||
|
|
||||||
|
#: fdmprinter.def.json
|
||||||
|
msgctxt "hole_xy_offset_max_diameter description"
|
||||||
|
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: fdmprinter.def.json
|
#: fdmprinter.def.json
|
||||||
msgctxt "bridge_skin_material_flow description"
|
msgctxt "bridge_skin_material_flow description"
|
||||||
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
|
||||||
|
@ -65,31 +65,22 @@ UM.TooltipArea
|
|||||||
{
|
{
|
||||||
id: defaultOptionsModel
|
id: defaultOptionsModel
|
||||||
|
|
||||||
function updateModel()
|
function updateModel() {
|
||||||
{
|
clear();
|
||||||
clear()
|
|
||||||
|
|
||||||
if(!propertyProvider.properties.options)
|
if (!propertyProvider.properties.options) {
|
||||||
{
|
return;
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof propertyProvider.properties["options"] === "string")
|
if (typeof(propertyProvider.properties["options"]) === "string") {
|
||||||
{
|
return;
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const keys = propertyProvider.properties["options"].keys();
|
||||||
for (var i = 0; i < propertyProvider.properties["options"].keys().length; i++)
|
for (let index = 0; index < propertyProvider.properties["options"].keys().length; index ++) {
|
||||||
{
|
const key = propertyProvider.properties["options"].keys()[index];
|
||||||
var key = propertyProvider.properties["options"].keys()[i]
|
const value = propertyProvider.properties["options"][key];
|
||||||
var value = propertyProvider.properties["options"][key]
|
defaultOptionsModel.append({ text: value, value: key });
|
||||||
append({ text: value, code: key })
|
|
||||||
|
|
||||||
if (propertyProvider.properties.value === key)
|
|
||||||
{
|
|
||||||
comboBox.currentIndex = i
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,36 +105,27 @@ UM.TooltipArea
|
|||||||
model: defaultOptionsModel
|
model: defaultOptionsModel
|
||||||
textRole: "text"
|
textRole: "text"
|
||||||
|
|
||||||
currentIndex:
|
currentIndex: {
|
||||||
{
|
const currentValue = propertyProvider.properties.value
|
||||||
var currentValue = propertyProvider.properties.value
|
for (let i = 0; i < model.count; i ++) {
|
||||||
var index = 0
|
if (model.get(i).value === currentValue) {
|
||||||
for (var i = 0; i < model.count; i++)
|
return i;
|
||||||
{
|
|
||||||
if (model.get(i).value == currentValue)
|
|
||||||
{
|
|
||||||
index = i
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return index
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
onActivated:
|
onActivated: function (index) {
|
||||||
{
|
const newValue = model.get(index).value;
|
||||||
var newValue = model.get(index).value
|
|
||||||
if (propertyProvider.properties.value !== newValue && newValue !== undefined)
|
if (propertyProvider.properties.value !== newValue && newValue !== undefined) {
|
||||||
{
|
if (setValueFunction !== null) {
|
||||||
if (setValueFunction !== null)
|
setValueFunction(newValue);
|
||||||
{
|
} else {
|
||||||
setValueFunction(newValue)
|
propertyProvider.setPropertyValue("value", newValue);
|
||||||
}
|
}
|
||||||
else
|
forceUpdateOnChangeFunction();
|
||||||
{
|
afterOnEditingFinishedFunction();
|
||||||
propertyProvider.setPropertyValue("value", newValue)
|
|
||||||
}
|
|
||||||
forceUpdateOnChangeFunction()
|
|
||||||
afterOnEditingFinishedFunction()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -38,6 +38,7 @@ fill_outline_gaps
|
|||||||
xy_offset
|
xy_offset
|
||||||
xy_offset_layer_0
|
xy_offset_layer_0
|
||||||
hole_xy_offset
|
hole_xy_offset
|
||||||
|
hole_xy_offset_max_diameter
|
||||||
z_seam_type
|
z_seam_type
|
||||||
z_seam_position
|
z_seam_position
|
||||||
z_seam_x
|
z_seam_x
|
||||||
@ -302,6 +303,7 @@ adhesion_extruder_nr
|
|||||||
raft_surface_extruder_nr
|
raft_surface_extruder_nr
|
||||||
skirt_line_count
|
skirt_line_count
|
||||||
skirt_gap
|
skirt_gap
|
||||||
|
skirt_height
|
||||||
skirt_brim_minimal_length
|
skirt_brim_minimal_length
|
||||||
brim_width
|
brim_width
|
||||||
brim_gap
|
brim_gap
|
||||||
|
Loading…
x
Reference in New Issue
Block a user