From 7675a8effab1112541fc5a1b3a1d11bdb08a6e9b Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Fri, 26 Feb 2016 13:43:51 -0300 Subject: [PATCH 1/4] Made Redirect python output options True by default - fixes #2454 --- src/Gui/DlgReportView.ui | 47 ++++++++++++++++++++++++++++++++++------ src/Gui/Macro.cpp | 4 ++-- 2 files changed, 42 insertions(+), 9 deletions(-) diff --git a/src/Gui/DlgReportView.ui b/src/Gui/DlgReportView.ui index eb20d4634..7c1054bf0 100644 --- a/src/Gui/DlgReportView.ui +++ b/src/Gui/DlgReportView.ui @@ -20,7 +20,16 @@ Output - + + 11 + + + 11 + + + 11 + + 11 @@ -77,7 +86,16 @@ Colors - + + 9 + + + 9 + + + 9 + + 9 @@ -101,7 +119,16 @@ - + + 0 + + + 0 + + + 0 + + 0 @@ -147,7 +174,7 @@ - + 0 0 @@ -202,7 +229,7 @@ - + 0 0 @@ -257,7 +284,7 @@ - + 255 170 @@ -312,7 +339,7 @@ - + 255 0 @@ -343,6 +370,9 @@ Redirect internal Python output to report view + + true + RedirectPythonOutput @@ -356,6 +386,9 @@ Redirect internal Python errors to report view + + true + RedirectPythonErrors diff --git a/src/Gui/Macro.cpp b/src/Gui/Macro.cpp index 4489607a4..3d16c99b2 100644 --- a/src/Gui/Macro.cpp +++ b/src/Gui/Macro.cpp @@ -231,8 +231,8 @@ void MacroManager::run(MacroType eType,const char *sName) try { ParameterGrp::handle hGrp = App::GetApplication().GetUserParameter() .GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("OutputWindow"); - PyObject* pyout = hGrp->GetBool("RedirectPythonOutput") ? new OutputStdout : 0; - PyObject* pyerr = hGrp->GetBool("RedirectPythonErrors") ? new OutputStderr : 0; + PyObject* pyout = hGrp->GetBool("RedirectPythonOutput",true) ? new OutputStdout : 0; + PyObject* pyerr = hGrp->GetBool("RedirectPythonErrors",true) ? new OutputStderr : 0; PythonRedirector std_out("stdout",pyout); PythonRedirector std_err("stderr",pyerr); //The given path name is expected to be Utf-8 From 83f87ba3eac9b05ae4b7d24ff1d8c7b5207ae1de Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Fri, 26 Feb 2016 13:51:39 -0300 Subject: [PATCH 2/4] Turned Zoom At Cursor option True by default - fixes #2371 --- src/Gui/DlgSettings3DView.ui | 42 ++++++++++++++++++++++++++++++------ src/Gui/NavigationStyle.cpp | 2 +- src/Gui/View3DInventor.cpp | 2 +- 3 files changed, 38 insertions(+), 8 deletions(-) diff --git a/src/Gui/DlgSettings3DView.ui b/src/Gui/DlgSettings3DView.ui index 4f6d633fe..46f31adce 100644 --- a/src/Gui/DlgSettings3DView.ui +++ b/src/Gui/DlgSettings3DView.ui @@ -172,6 +172,9 @@ Zoom at cursor + + true + ZoomAtCursor @@ -258,7 +261,16 @@ 6 - + + 11 + + + 11 + + + 11 + + 11 @@ -297,7 +309,16 @@ - + + 11 + + + 11 + + + 11 + + 11 @@ -345,7 +366,7 @@ false - + 255 255 @@ -391,7 +412,16 @@ Camera type - + + 11 + + + 11 + + + 11 + + 11 @@ -400,7 +430,7 @@ - Orthographic rendering + Or&thographic rendering true @@ -416,7 +446,7 @@ - Perspective rendering + Perspective renderin&g Perspective diff --git a/src/Gui/NavigationStyle.cpp b/src/Gui/NavigationStyle.cpp index 0e3eaa515..6bd3e9251 100644 --- a/src/Gui/NavigationStyle.cpp +++ b/src/Gui/NavigationStyle.cpp @@ -233,7 +233,7 @@ void NavigationStyle::initialize() this->invertZoom = App::GetApplication().GetParameterGroupByPath ("User parameter:BaseApp/Preferences/View")->GetBool("InvertZoom",true); this->zoomAtCursor = App::GetApplication().GetParameterGroupByPath - ("User parameter:BaseApp/Preferences/View")->GetBool("ZoomAtCursor",false); + ("User parameter:BaseApp/Preferences/View")->GetBool("ZoomAtCursor",true); this->zoomStep = App::GetApplication().GetParameterGroupByPath ("User parameter:BaseApp/Preferences/View")->GetFloat("ZoomStep",0.2f); } diff --git a/src/Gui/View3DInventor.cpp b/src/Gui/View3DInventor.cpp index 3b229c1f4..691a2bd54 100644 --- a/src/Gui/View3DInventor.cpp +++ b/src/Gui/View3DInventor.cpp @@ -344,7 +344,7 @@ void View3DInventor::OnChange(ParameterGrp::SubjectType &rCaller,ParameterGrp::M _viewer->navigationStyle()->setZoomInverted(on); } else if (strcmp(Reason,"ZoomAtCursor") == 0) { - bool on = rGrp.GetBool("ZoomAtCursor", false); + bool on = rGrp.GetBool("ZoomAtCursor", true); _viewer->navigationStyle()->setZoomAtCursor(on); } else if (strcmp(Reason,"ZoomStep") == 0) { From d3870968df82c555af60da0a84efe63d06e568ac Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Fri, 26 Feb 2016 16:11:13 -0300 Subject: [PATCH 3/4] Draft: Fixed undo mode of wires - fixes #2456 --- src/Mod/Draft/DraftGui.py | 22 ++++++++++------------ src/Mod/Draft/DraftTools.py | 5 ++--- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/src/Mod/Draft/DraftGui.py b/src/Mod/Draft/DraftGui.py index 2ec10273c..ddc919f49 100644 --- a/src/Mod/Draft/DraftGui.py +++ b/src/Mod/Draft/DraftGui.py @@ -1486,20 +1486,18 @@ class DraftToolBar: dp = plane.getLocalCoords(point) # set widgets - if self.mask in ['y','z']: - self.xValue.setText(displayExternal(dp.x,self.DECIMALS,'Length')) - else: - if dp: + if dp: + if self.mask in ['y','z']: self.xValue.setText(displayExternal(dp.x,self.DECIMALS,'Length')) - if self.mask in ['x','z']: - self.yValue.setText(displayExternal(dp.y,self.DECIMALS,'Length')) - else: - if dp: + else: + self.xValue.setText(displayExternal(dp.x,self.DECIMALS,'Length')) + if self.mask in ['x','z']: self.yValue.setText(displayExternal(dp.y,self.DECIMALS,'Length')) - if self.mask in ['x','y']: - self.zValue.setText(displayExternal(dp.z,self.DECIMALS,'Length')) - else: - if dp: + else: + self.yValue.setText(displayExternal(dp.y,self.DECIMALS,'Length')) + if self.mask in ['x','y']: + self.zValue.setText(displayExternal(dp.z,self.DECIMALS,'Length')) + else: self.zValue.setText(displayExternal(dp.z,self.DECIMALS,'Length')) # set length and angle diff --git a/src/Mod/Draft/DraftTools.py b/src/Mod/Draft/DraftTools.py index cf598d049..11ff3c6cd 100644 --- a/src/Mod/Draft/DraftTools.py +++ b/src/Mod/Draft/DraftTools.py @@ -517,12 +517,11 @@ class Line(Creator): "undoes last line segment" if (len(self.node) > 1): self.node.pop() - last = self.node[len(self.node)-1] + last = self.node[-1] if self.obj.Shape.Edges: edges = self.obj.Shape.Edges if len(edges) > 1: - edges.pop() - newshape = Part.Wire(edges) + newshape = Part.makePolygon(self.node) self.obj.Shape = newshape else: self.obj.ViewObject.hide() From 28b6c825553dc462a96a3d138374b8b55b6e4cf6 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Fri, 26 Feb 2016 18:32:02 -0300 Subject: [PATCH 4/4] Added updated translations from crowdin - fixes #2443 --- src/Gui/Language/FreeCAD.ts | 16 +- src/Gui/Language/FreeCAD_af.qm | Bin 164775 -> 165293 bytes src/Gui/Language/FreeCAD_af.ts | 28 +- src/Gui/Language/FreeCAD_cs.qm | Bin 164531 -> 165445 bytes src/Gui/Language/FreeCAD_cs.ts | 154 +-- src/Gui/Language/FreeCAD_de.qm | Bin 173781 -> 174299 bytes src/Gui/Language/FreeCAD_de.ts | 28 +- src/Gui/Language/FreeCAD_el.qm | Bin 177201 -> 177717 bytes src/Gui/Language/FreeCAD_el.ts | 28 +- src/Gui/Language/FreeCAD_es-ES.qm | Bin 173453 -> 174017 bytes src/Gui/Language/FreeCAD_es-ES.ts | 30 +- src/Gui/Language/FreeCAD_fi.qm | Bin 168289 -> 168811 bytes src/Gui/Language/FreeCAD_fi.ts | 28 +- src/Gui/Language/FreeCAD_fr.qm | Bin 175775 -> 176365 bytes src/Gui/Language/FreeCAD_fr.ts | 28 +- src/Gui/Language/FreeCAD_hr.qm | Bin 165828 -> 166346 bytes src/Gui/Language/FreeCAD_hr.ts | 28 +- src/Gui/Language/FreeCAD_hu.qm | Bin 168338 -> 170248 bytes src/Gui/Language/FreeCAD_hu.ts | 414 ++++---- src/Gui/Language/FreeCAD_it.qm | Bin 172551 -> 173113 bytes src/Gui/Language/FreeCAD_it.ts | 30 +- src/Gui/Language/FreeCAD_ja.qm | Bin 141080 -> 141516 bytes src/Gui/Language/FreeCAD_ja.ts | 28 +- src/Gui/Language/FreeCAD_nl.qm | Bin 169415 -> 170187 bytes src/Gui/Language/FreeCAD_nl.ts | 70 +- src/Gui/Language/FreeCAD_no.qm | Bin 163329 -> 163839 bytes src/Gui/Language/FreeCAD_no.ts | 28 +- src/Gui/Language/FreeCAD_pl.qm | Bin 167655 -> 168157 bytes src/Gui/Language/FreeCAD_pl.ts | 28 +- src/Gui/Language/FreeCAD_pt-BR.qm | Bin 170035 -> 170609 bytes src/Gui/Language/FreeCAD_pt-BR.ts | 28 +- src/Gui/Language/FreeCAD_pt-PT.qm | Bin 170263 -> 170723 bytes src/Gui/Language/FreeCAD_pt-PT.ts | 38 +- src/Gui/Language/FreeCAD_ro.qm | Bin 170098 -> 170608 bytes src/Gui/Language/FreeCAD_ro.ts | 28 +- src/Gui/Language/FreeCAD_ru.qm | Bin 169424 -> 170052 bytes src/Gui/Language/FreeCAD_ru.ts | 42 +- src/Gui/Language/FreeCAD_sk.qm | Bin 165357 -> 165873 bytes src/Gui/Language/FreeCAD_sk.ts | 28 +- src/Gui/Language/FreeCAD_sl.qm | Bin 164148 -> 164736 bytes src/Gui/Language/FreeCAD_sl.ts | 86 +- src/Gui/Language/FreeCAD_sr.qm | Bin 163508 -> 164018 bytes src/Gui/Language/FreeCAD_sr.ts | 28 +- src/Gui/Language/FreeCAD_sv-SE.qm | Bin 161831 -> 162341 bytes src/Gui/Language/FreeCAD_sv-SE.ts | 28 +- src/Gui/Language/FreeCAD_tr.qm | Bin 165086 -> 165604 bytes src/Gui/Language/FreeCAD_tr.ts | 28 +- src/Gui/Language/FreeCAD_uk.qm | Bin 170130 -> 170642 bytes src/Gui/Language/FreeCAD_uk.ts | 28 +- src/Gui/Language/FreeCAD_zh-CN.qm | Bin 135402 -> 135922 bytes src/Gui/Language/FreeCAD_zh-CN.ts | 28 +- src/Gui/Language/FreeCAD_zh-TW.qm | Bin 129208 -> 129460 bytes src/Gui/Language/FreeCAD_zh-TW.ts | 36 +- src/Mod/Arch/Resources/translations/Arch.ts | 40 +- .../Arch/Resources/translations/Arch_af.qm | Bin 64456 -> 67025 bytes .../Arch/Resources/translations/Arch_af.ts | 436 ++++---- .../Arch/Resources/translations/Arch_cs.qm | Bin 62926 -> 65927 bytes .../Arch/Resources/translations/Arch_cs.ts | 586 ++++++----- .../Arch/Resources/translations/Arch_de.qm | Bin 69376 -> 72367 bytes .../Arch/Resources/translations/Arch_de.ts | 492 +++++---- .../Arch/Resources/translations/Arch_el.qm | Bin 65440 -> 67999 bytes .../Arch/Resources/translations/Arch_el.ts | 436 ++++---- .../Arch/Resources/translations/Arch_es-ES.qm | Bin 68428 -> 71279 bytes .../Arch/Resources/translations/Arch_es-ES.ts | 436 ++++---- .../Arch/Resources/translations/Arch_fi.qm | Bin 64902 -> 67465 bytes .../Arch/Resources/translations/Arch_fi.ts | 436 ++++---- .../Arch/Resources/translations/Arch_fr.qm | Bin 69566 -> 72503 bytes .../Arch/Resources/translations/Arch_fr.ts | 442 ++++---- .../Arch/Resources/translations/Arch_hr.qm | Bin 63903 -> 66484 bytes .../Arch/Resources/translations/Arch_hr.ts | 436 ++++---- .../Arch/Resources/translations/Arch_hu.qm | Bin 65277 -> 67882 bytes .../Arch/Resources/translations/Arch_hu.ts | 572 +++++----- .../Arch/Resources/translations/Arch_it.qm | Bin 69062 -> 72035 bytes .../Arch/Resources/translations/Arch_it.ts | 438 ++++---- .../Arch/Resources/translations/Arch_ja.qm | Bin 50723 -> 53292 bytes .../Arch/Resources/translations/Arch_ja.ts | 436 ++++---- .../Arch/Resources/translations/Arch_nl.qm | Bin 64800 -> 67369 bytes .../Arch/Resources/translations/Arch_nl.ts | 438 ++++---- .../Arch/Resources/translations/Arch_no.qm | Bin 64056 -> 66617 bytes .../Arch/Resources/translations/Arch_no.ts | 436 ++++---- .../Arch/Resources/translations/Arch_pl.qm | Bin 65724 -> 68293 bytes .../Arch/Resources/translations/Arch_pl.ts | 436 ++++---- .../Arch/Resources/translations/Arch_pt-BR.qm | Bin 67798 -> 70511 bytes .../Arch/Resources/translations/Arch_pt-BR.ts | 436 ++++---- .../Arch/Resources/translations/Arch_pt-PT.qm | Bin 67892 -> 70669 bytes .../Arch/Resources/translations/Arch_pt-PT.ts | 458 ++++---- .../Arch/Resources/translations/Arch_ro.qm | Bin 66543 -> 69110 bytes .../Arch/Resources/translations/Arch_ro.ts | 470 +++++---- .../Arch/Resources/translations/Arch_ru.qm | Bin 64391 -> 67048 bytes .../Arch/Resources/translations/Arch_ru.ts | 484 +++++---- .../Arch/Resources/translations/Arch_sk.qm | Bin 64030 -> 66603 bytes .../Arch/Resources/translations/Arch_sk.ts | 436 ++++---- .../Arch/Resources/translations/Arch_sl.qm | Bin 64381 -> 67010 bytes .../Arch/Resources/translations/Arch_sl.ts | 438 ++++---- .../Arch/Resources/translations/Arch_sr.qm | Bin 63915 -> 66492 bytes .../Arch/Resources/translations/Arch_sr.ts | 436 ++++---- .../Arch/Resources/translations/Arch_sv-SE.qm | Bin 65532 -> 68119 bytes .../Arch/Resources/translations/Arch_sv-SE.ts | 446 ++++---- .../Arch/Resources/translations/Arch_tr.qm | Bin 64131 -> 66694 bytes .../Arch/Resources/translations/Arch_tr.ts | 436 ++++---- .../Arch/Resources/translations/Arch_uk.qm | Bin 64527 -> 67092 bytes .../Arch/Resources/translations/Arch_uk.ts | 436 ++++---- .../Arch/Resources/translations/Arch_zh-CN.qm | Bin 58097 -> 60644 bytes .../Arch/Resources/translations/Arch_zh-CN.ts | 436 ++++---- .../Arch/Resources/translations/Arch_zh-TW.qm | Bin 55779 -> 58326 bytes .../Arch/Resources/translations/Arch_zh-TW.ts | 436 ++++---- .../Resources/translations/Complete_es-ES.qm | Bin 1359 -> 1419 bytes .../Resources/translations/Complete_es-ES.ts | 10 +- .../Gui/Resources/translations/Complete_hu.qm | Bin 1390 -> 1388 bytes .../Gui/Resources/translations/Complete_hu.ts | 2 +- .../Resources/translations/Complete_pt-PT.qm | Bin 1439 -> 1461 bytes .../Resources/translations/Complete_pt-PT.ts | 4 +- .../Gui/Resources/translations/Complete_sl.qm | Bin 1366 -> 1366 bytes .../Gui/Resources/translations/Complete_sl.ts | 2 +- src/Mod/Draft/Resources/translations/Draft.ts | 600 +++++------ .../Draft/Resources/translations/Draft_af.qm | Bin 75831 -> 76576 bytes .../Draft/Resources/translations/Draft_af.ts | 536 +++++----- .../Draft/Resources/translations/Draft_cs.qm | Bin 75613 -> 76356 bytes .../Draft/Resources/translations/Draft_cs.ts | 631 ++++++------ .../Draft/Resources/translations/Draft_de.qm | Bin 80823 -> 81638 bytes .../Draft/Resources/translations/Draft_de.ts | 536 +++++----- .../Draft/Resources/translations/Draft_el.qm | Bin 82053 -> 82794 bytes .../Draft/Resources/translations/Draft_el.ts | 536 +++++----- .../Resources/translations/Draft_es-ES.qm | Bin 81463 -> 82298 bytes .../Resources/translations/Draft_es-ES.ts | 536 +++++----- .../Draft/Resources/translations/Draft_fi.qm | Bin 77073 -> 77806 bytes .../Draft/Resources/translations/Draft_fi.ts | 536 +++++----- .../Draft/Resources/translations/Draft_fr.qm | Bin 82761 -> 83654 bytes .../Draft/Resources/translations/Draft_fr.ts | 542 +++++----- .../Draft/Resources/translations/Draft_hr.qm | Bin 75158 -> 75903 bytes .../Draft/Resources/translations/Draft_hr.ts | 536 +++++----- .../Draft/Resources/translations/Draft_hu.qm | Bin 77138 -> 79673 bytes .../Draft/Resources/translations/Draft_hu.ts | 974 +++++++++--------- .../Draft/Resources/translations/Draft_it.qm | Bin 81707 -> 82602 bytes .../Draft/Resources/translations/Draft_it.ts | 540 +++++----- .../Draft/Resources/translations/Draft_ja.qm | Bin 59680 -> 60287 bytes .../Draft/Resources/translations/Draft_ja.ts | 536 +++++----- .../Draft/Resources/translations/Draft_nl.qm | Bin 77333 -> 78078 bytes .../Draft/Resources/translations/Draft_nl.ts | 536 +++++----- .../Draft/Resources/translations/Draft_no.qm | Bin 74707 -> 75452 bytes .../Draft/Resources/translations/Draft_no.ts | 536 +++++----- .../Draft/Resources/translations/Draft_pl.qm | Bin 78611 -> 79338 bytes .../Draft/Resources/translations/Draft_pl.ts | 536 +++++----- .../Resources/translations/Draft_pt-BR.qm | Bin 79413 -> 80222 bytes .../Resources/translations/Draft_pt-BR.ts | 536 +++++----- .../Resources/translations/Draft_pt-PT.qm | Bin 80043 -> 80972 bytes .../Resources/translations/Draft_pt-PT.ts | 577 ++++++----- .../Draft/Resources/translations/Draft_ro.qm | Bin 77736 -> 78473 bytes .../Draft/Resources/translations/Draft_ro.ts | 536 +++++----- .../Draft/Resources/translations/Draft_ru.qm | Bin 78342 -> 79089 bytes .../Draft/Resources/translations/Draft_ru.ts | 550 +++++----- .../Draft/Resources/translations/Draft_sk.qm | Bin 75419 -> 76164 bytes .../Draft/Resources/translations/Draft_sk.ts | 536 +++++----- .../Draft/Resources/translations/Draft_sl.qm | Bin 75702 -> 76473 bytes .../Draft/Resources/translations/Draft_sl.ts | 544 +++++----- .../Draft/Resources/translations/Draft_sr.qm | Bin 75826 -> 76561 bytes .../Draft/Resources/translations/Draft_sr.ts | 536 +++++----- .../Resources/translations/Draft_sv-SE.qm | Bin 76393 -> 77126 bytes .../Resources/translations/Draft_sv-SE.ts | 536 +++++----- .../Draft/Resources/translations/Draft_tr.qm | Bin 76402 -> 77147 bytes .../Draft/Resources/translations/Draft_tr.ts | 536 +++++----- .../Draft/Resources/translations/Draft_uk.qm | Bin 77426 -> 78161 bytes .../Draft/Resources/translations/Draft_uk.ts | 536 +++++----- .../Resources/translations/Draft_zh-CN.qm | Bin 60876 -> 61621 bytes .../Resources/translations/Draft_zh-CN.ts | 536 +++++----- .../Resources/translations/Draft_zh-TW.qm | Bin 52892 -> 53661 bytes .../Resources/translations/Draft_zh-TW.ts | 536 +++++----- .../Gui/Resources/translations/Drawing_af.qm | Bin 16846 -> 17534 bytes .../Gui/Resources/translations/Drawing_af.ts | 8 +- .../Gui/Resources/translations/Drawing_cs.qm | Bin 16702 -> 17378 bytes .../Gui/Resources/translations/Drawing_cs.ts | 28 +- .../Gui/Resources/translations/Drawing_de.qm | Bin 17832 -> 18552 bytes .../Gui/Resources/translations/Drawing_de.ts | 8 +- .../Gui/Resources/translations/Drawing_el.qm | Bin 16994 -> 17682 bytes .../Gui/Resources/translations/Drawing_el.ts | 8 +- .../Resources/translations/Drawing_es-ES.qm | Bin 17556 -> 18260 bytes .../Resources/translations/Drawing_es-ES.ts | 8 +- .../Gui/Resources/translations/Drawing_fi.qm | Bin 17148 -> 17844 bytes .../Gui/Resources/translations/Drawing_fi.ts | 8 +- .../Gui/Resources/translations/Drawing_fr.qm | Bin 17734 -> 18448 bytes .../Gui/Resources/translations/Drawing_fr.ts | 8 +- .../Gui/Resources/translations/Drawing_hr.qm | Bin 16909 -> 17601 bytes .../Gui/Resources/translations/Drawing_hr.ts | 8 +- .../Gui/Resources/translations/Drawing_hu.qm | Bin 17019 -> 17975 bytes .../Gui/Resources/translations/Drawing_hu.ts | 112 +- .../Gui/Resources/translations/Drawing_it.qm | Bin 17714 -> 18456 bytes .../Gui/Resources/translations/Drawing_it.ts | 8 +- .../Gui/Resources/translations/Drawing_ja.qm | Bin 14321 -> 15003 bytes .../Gui/Resources/translations/Drawing_ja.ts | 8 +- .../Gui/Resources/translations/Drawing_nl.qm | Bin 17060 -> 17746 bytes .../Gui/Resources/translations/Drawing_nl.ts | 8 +- .../Gui/Resources/translations/Drawing_no.qm | Bin 16632 -> 17324 bytes .../Gui/Resources/translations/Drawing_no.ts | 8 +- .../Gui/Resources/translations/Drawing_pl.qm | Bin 16770 -> 17464 bytes .../Gui/Resources/translations/Drawing_pl.ts | 8 +- .../Resources/translations/Drawing_pt-BR.qm | Bin 17438 -> 18162 bytes .../Resources/translations/Drawing_pt-BR.ts | 8 +- .../Resources/translations/Drawing_pt-PT.qm | Bin 17758 -> 18880 bytes .../Resources/translations/Drawing_pt-PT.ts | 58 +- .../Gui/Resources/translations/Drawing_ro.qm | Bin 17301 -> 17991 bytes .../Gui/Resources/translations/Drawing_ro.ts | 8 +- .../Gui/Resources/translations/Drawing_ru.qm | Bin 16913 -> 17671 bytes .../Gui/Resources/translations/Drawing_ru.ts | 34 +- .../Gui/Resources/translations/Drawing_sk.qm | Bin 16858 -> 17550 bytes .../Gui/Resources/translations/Drawing_sk.ts | 8 +- .../Gui/Resources/translations/Drawing_sl.qm | Bin 16681 -> 17355 bytes .../Gui/Resources/translations/Drawing_sl.ts | 12 +- .../Gui/Resources/translations/Drawing_sr.qm | Bin 16915 -> 17607 bytes .../Gui/Resources/translations/Drawing_sr.ts | 8 +- .../Resources/translations/Drawing_sv-SE.qm | Bin 16514 -> 17202 bytes .../Resources/translations/Drawing_sv-SE.ts | 8 +- .../Gui/Resources/translations/Drawing_tr.qm | Bin 16715 -> 17391 bytes .../Gui/Resources/translations/Drawing_tr.ts | 8 +- .../Gui/Resources/translations/Drawing_uk.qm | Bin 17449 -> 18145 bytes .../Gui/Resources/translations/Drawing_uk.ts | 8 +- .../Resources/translations/Drawing_zh-CN.qm | Bin 14341 -> 14999 bytes .../Resources/translations/Drawing_zh-CN.ts | 8 +- .../Resources/translations/Drawing_zh-TW.qm | Bin 13319 -> 13975 bytes .../Resources/translations/Drawing_zh-TW.ts | 8 +- .../Fem/Gui/Resources/translations/Fem_af.qm | Bin 25672 -> 28449 bytes .../Fem/Gui/Resources/translations/Fem_af.ts | 44 +- .../Fem/Gui/Resources/translations/Fem_cs.qm | Bin 25948 -> 28641 bytes .../Fem/Gui/Resources/translations/Fem_cs.ts | 100 +- .../Fem/Gui/Resources/translations/Fem_de.qm | Bin 27554 -> 30341 bytes .../Fem/Gui/Resources/translations/Fem_de.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_el.qm | Bin 26388 -> 29187 bytes .../Fem/Gui/Resources/translations/Fem_el.ts | 42 +- .../Gui/Resources/translations/Fem_es-ES.qm | Bin 27838 -> 30799 bytes .../Gui/Resources/translations/Fem_es-ES.ts | 48 +- .../Fem/Gui/Resources/translations/Fem_fi.qm | Bin 27054 -> 29861 bytes .../Fem/Gui/Resources/translations/Fem_fi.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_fr.qm | Bin 28394 -> 31269 bytes .../Fem/Gui/Resources/translations/Fem_fr.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_hr.qm | Bin 25877 -> 28664 bytes .../Fem/Gui/Resources/translations/Fem_hr.ts | 44 +- .../Fem/Gui/Resources/translations/Fem_hu.qm | Bin 26427 -> 29346 bytes .../Fem/Gui/Resources/translations/Fem_hu.ts | 96 +- .../Fem/Gui/Resources/translations/Fem_it.qm | Bin 27492 -> 30293 bytes .../Fem/Gui/Resources/translations/Fem_it.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_ja.qm | Bin 22029 -> 24454 bytes .../Fem/Gui/Resources/translations/Fem_ja.ts | 66 +- .../Fem/Gui/Resources/translations/Fem_nl.qm | Bin 25868 -> 28659 bytes .../Fem/Gui/Resources/translations/Fem_nl.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_no.qm | Bin 25744 -> 28515 bytes .../Fem/Gui/Resources/translations/Fem_no.ts | 44 +- .../Fem/Gui/Resources/translations/Fem_pl.qm | Bin 27278 -> 30059 bytes .../Fem/Gui/Resources/translations/Fem_pl.ts | 46 +- .../Gui/Resources/translations/Fem_pt-BR.qm | Bin 27622 -> 30519 bytes .../Gui/Resources/translations/Fem_pt-BR.ts | 46 +- .../Gui/Resources/translations/Fem_pt-PT.qm | Bin 27116 -> 30313 bytes .../Gui/Resources/translations/Fem_pt-PT.ts | 112 +- .../Fem/Gui/Resources/translations/Fem_ro.qm | Bin 27091 -> 29930 bytes .../Fem/Gui/Resources/translations/Fem_ro.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_ru.qm | Bin 27021 -> 29898 bytes .../Fem/Gui/Resources/translations/Fem_ru.ts | 56 +- .../Fem/Gui/Resources/translations/Fem_sk.qm | Bin 25914 -> 28703 bytes .../Fem/Gui/Resources/translations/Fem_sk.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_sl.qm | Bin 26149 -> 28800 bytes .../Fem/Gui/Resources/translations/Fem_sl.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_sr.qm | Bin 26311 -> 29114 bytes .../Fem/Gui/Resources/translations/Fem_sr.ts | 46 +- .../Gui/Resources/translations/Fem_sv-SE.qm | Bin 25874 -> 28653 bytes .../Gui/Resources/translations/Fem_sv-SE.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_tr.qm | Bin 27353 -> 30150 bytes .../Fem/Gui/Resources/translations/Fem_tr.ts | 46 +- .../Fem/Gui/Resources/translations/Fem_uk.qm | Bin 27079 -> 29924 bytes .../Fem/Gui/Resources/translations/Fem_uk.ts | 46 +- .../Gui/Resources/translations/Fem_zh-CN.qm | Bin 24791 -> 27524 bytes .../Gui/Resources/translations/Fem_zh-CN.ts | 44 +- .../Gui/Resources/translations/Fem_zh-TW.qm | Bin 20379 -> 22512 bytes .../Gui/Resources/translations/Fem_zh-TW.ts | 46 +- .../Gui/Resources/translations/Image_sl.qm | Bin 3838 -> 3838 bytes .../Gui/Resources/translations/Image_sl.ts | 2 +- .../Gui/Resources/translations/Mesh_af.qm | Bin 39819 -> 43260 bytes .../Gui/Resources/translations/Mesh_af.ts | 14 +- .../Gui/Resources/translations/Mesh_cs.qm | Bin 39233 -> 42586 bytes .../Gui/Resources/translations/Mesh_cs.ts | 48 +- .../Gui/Resources/translations/Mesh_de.qm | Bin 40813 -> 44264 bytes .../Gui/Resources/translations/Mesh_de.ts | 14 +- .../Gui/Resources/translations/Mesh_el.qm | Bin 39281 -> 42696 bytes .../Gui/Resources/translations/Mesh_el.ts | 14 +- .../Gui/Resources/translations/Mesh_es-ES.qm | Bin 41139 -> 44548 bytes .../Gui/Resources/translations/Mesh_es-ES.ts | 14 +- .../Gui/Resources/translations/Mesh_fi.qm | Bin 40643 -> 43940 bytes .../Gui/Resources/translations/Mesh_fi.ts | 14 +- .../Gui/Resources/translations/Mesh_fr.qm | Bin 41913 -> 45370 bytes .../Gui/Resources/translations/Mesh_fr.ts | 14 +- .../Gui/Resources/translations/Mesh_hr.qm | Bin 39552 -> 42929 bytes .../Gui/Resources/translations/Mesh_hr.ts | 14 +- .../Gui/Resources/translations/Mesh_hu.qm | Bin 40322 -> 43781 bytes .../Gui/Resources/translations/Mesh_hu.ts | 29 +- .../Gui/Resources/translations/Mesh_it.qm | Bin 40721 -> 44172 bytes .../Gui/Resources/translations/Mesh_it.ts | 14 +- .../Gui/Resources/translations/Mesh_ja.qm | Bin 34548 -> 37647 bytes .../Gui/Resources/translations/Mesh_ja.ts | 14 +- .../Gui/Resources/translations/Mesh_nl.qm | Bin 39927 -> 43334 bytes .../Gui/Resources/translations/Mesh_nl.ts | 14 +- .../Gui/Resources/translations/Mesh_no.qm | Bin 39081 -> 42448 bytes .../Gui/Resources/translations/Mesh_no.ts | 14 +- .../Gui/Resources/translations/Mesh_pl.qm | Bin 40071 -> 43452 bytes .../Gui/Resources/translations/Mesh_pl.ts | 14 +- .../Gui/Resources/translations/Mesh_pt-BR.qm | Bin 40817 -> 44186 bytes .../Gui/Resources/translations/Mesh_pt-BR.ts | 14 +- .../Gui/Resources/translations/Mesh_pt-PT.qm | Bin 40841 -> 44248 bytes .../Gui/Resources/translations/Mesh_pt-PT.ts | 16 +- .../Gui/Resources/translations/Mesh_ro.qm | Bin 40054 -> 43441 bytes .../Gui/Resources/translations/Mesh_ro.ts | 14 +- .../Gui/Resources/translations/Mesh_ru.qm | Bin 40382 -> 43771 bytes .../Gui/Resources/translations/Mesh_ru.ts | 16 +- .../Gui/Resources/translations/Mesh_sk.qm | Bin 39515 -> 42914 bytes .../Gui/Resources/translations/Mesh_sk.ts | 14 +- .../Gui/Resources/translations/Mesh_sl.qm | Bin 39204 -> 42513 bytes .../Gui/Resources/translations/Mesh_sl.ts | 14 +- .../Gui/Resources/translations/Mesh_sr.qm | Bin 39310 -> 42709 bytes .../Gui/Resources/translations/Mesh_sr.ts | 20 +- .../Gui/Resources/translations/Mesh_sv-SE.qm | Bin 38957 -> 42328 bytes .../Gui/Resources/translations/Mesh_sv-SE.ts | 14 +- .../Gui/Resources/translations/Mesh_tr.qm | Bin 39072 -> 42471 bytes .../Gui/Resources/translations/Mesh_tr.ts | 14 +- .../Gui/Resources/translations/Mesh_uk.qm | Bin 40650 -> 44037 bytes .../Gui/Resources/translations/Mesh_uk.ts | 14 +- .../Gui/Resources/translations/Mesh_zh-CN.qm | Bin 32560 -> 35497 bytes .../Gui/Resources/translations/Mesh_zh-CN.ts | 14 +- .../Gui/Resources/translations/Mesh_zh-TW.qm | Bin 32980 -> 36195 bytes .../Gui/Resources/translations/Mesh_zh-TW.ts | 16 +- .../Gui/Resources/translations/MeshPart_ru.qm | Bin 2918 -> 2916 bytes .../Gui/Resources/translations/MeshPart_ru.ts | 4 +- .../Resources/translations/OpenSCAD_af.qm | Bin 8282 -> 8457 bytes .../Resources/translations/OpenSCAD_af.ts | 47 +- .../Resources/translations/OpenSCAD_cs.qm | Bin 8386 -> 8561 bytes .../Resources/translations/OpenSCAD_cs.ts | 47 +- .../Resources/translations/OpenSCAD_de.qm | Bin 9088 -> 9263 bytes .../Resources/translations/OpenSCAD_de.ts | 47 +- .../Resources/translations/OpenSCAD_el.qm | Bin 8506 -> 8681 bytes .../Resources/translations/OpenSCAD_el.ts | 47 +- .../Resources/translations/OpenSCAD_es-ES.qm | Bin 8728 -> 8923 bytes .../Resources/translations/OpenSCAD_es-ES.ts | 47 +- .../Resources/translations/OpenSCAD_fi.qm | Bin 8688 -> 8863 bytes .../Resources/translations/OpenSCAD_fi.ts | 47 +- .../Resources/translations/OpenSCAD_fr.qm | Bin 9154 -> 9359 bytes .../Resources/translations/OpenSCAD_fr.ts | 47 +- .../Resources/translations/OpenSCAD_hr.qm | Bin 8305 -> 8480 bytes .../Resources/translations/OpenSCAD_hr.ts | 47 +- .../Resources/translations/OpenSCAD_hu.qm | Bin 8817 -> 8992 bytes .../Resources/translations/OpenSCAD_hu.ts | 47 +- .../Resources/translations/OpenSCAD_it.qm | Bin 8972 -> 9161 bytes .../Resources/translations/OpenSCAD_it.ts | 47 +- .../Resources/translations/OpenSCAD_ja.qm | Bin 6725 -> 6854 bytes .../Resources/translations/OpenSCAD_ja.ts | 47 +- .../Resources/translations/OpenSCAD_nl.qm | Bin 8390 -> 8565 bytes .../Resources/translations/OpenSCAD_nl.ts | 47 +- .../Resources/translations/OpenSCAD_no.qm | Bin 8284 -> 8459 bytes .../Resources/translations/OpenSCAD_no.ts | 47 +- .../Resources/translations/OpenSCAD_pl.qm | Bin 8578 -> 8753 bytes .../Resources/translations/OpenSCAD_pl.ts | 47 +- .../Resources/translations/OpenSCAD_pt-BR.qm | Bin 8644 -> 8831 bytes .../Resources/translations/OpenSCAD_pt-BR.ts | 47 +- .../Resources/translations/OpenSCAD_pt-PT.qm | Bin 8616 -> 8803 bytes .../Resources/translations/OpenSCAD_pt-PT.ts | 47 +- .../Resources/translations/OpenSCAD_ro.qm | Bin 8597 -> 8772 bytes .../Resources/translations/OpenSCAD_ro.ts | 47 +- .../Resources/translations/OpenSCAD_ru.qm | Bin 8591 -> 8766 bytes .../Resources/translations/OpenSCAD_ru.ts | 47 +- .../Resources/translations/OpenSCAD_sk.qm | Bin 8278 -> 8453 bytes .../Resources/translations/OpenSCAD_sk.ts | 47 +- .../Resources/translations/OpenSCAD_sl.qm | Bin 8603 -> 8788 bytes .../Resources/translations/OpenSCAD_sl.ts | 49 +- .../Resources/translations/OpenSCAD_sr.qm | Bin 8347 -> 8522 bytes .../Resources/translations/OpenSCAD_sr.ts | 47 +- .../Resources/translations/OpenSCAD_sv-SE.qm | Bin 8376 -> 8551 bytes .../Resources/translations/OpenSCAD_sv-SE.ts | 47 +- .../Resources/translations/OpenSCAD_tr.qm | Bin 8281 -> 8456 bytes .../Resources/translations/OpenSCAD_tr.ts | 47 +- .../Resources/translations/OpenSCAD_uk.qm | Bin 8673 -> 8848 bytes .../Resources/translations/OpenSCAD_uk.ts | 47 +- .../Resources/translations/OpenSCAD_zh-CN.qm | Bin 7021 -> 7196 bytes .../Resources/translations/OpenSCAD_zh-CN.ts | 47 +- .../Resources/translations/OpenSCAD_zh-TW.qm | Bin 6069 -> 6188 bytes .../Resources/translations/OpenSCAD_zh-TW.ts | 47 +- .../Gui/Resources/translations/Part_cs.qm | Bin 77142 -> 77202 bytes .../Gui/Resources/translations/Part_cs.ts | 14 +- .../Gui/Resources/translations/Part_hu.qm | Bin 79849 -> 79869 bytes .../Gui/Resources/translations/Part_hu.ts | 8 +- .../Gui/Resources/translations/Part_it.qm | Bin 81202 -> 81202 bytes .../Gui/Resources/translations/Part_it.ts | 2 +- .../Gui/Resources/translations/Part_ja.qm | Bin 67247 -> 67253 bytes .../Gui/Resources/translations/Part_ja.ts | 2 +- .../Gui/Resources/translations/Part_nl.qm | Bin 78916 -> 78970 bytes .../Gui/Resources/translations/Part_nl.ts | 104 +- .../Gui/Resources/translations/Part_pt-PT.qm | Bin 80158 -> 80176 bytes .../Gui/Resources/translations/Part_pt-PT.ts | 20 +- .../Gui/Resources/translations/Part_ru.qm | Bin 79941 -> 79957 bytes .../Gui/Resources/translations/Part_ru.ts | 16 +- .../Gui/Resources/translations/Part_sl.qm | Bin 77021 -> 77027 bytes .../Gui/Resources/translations/Part_sl.ts | 10 +- .../Resources/translations/PartDesign_cs.qm | Bin 30448 -> 30444 bytes .../Resources/translations/PartDesign_cs.ts | 2 +- .../Resources/translations/PartDesign_fr.qm | Bin 33092 -> 33096 bytes .../Resources/translations/PartDesign_fr.ts | 2 +- .../Resources/translations/PartDesign_hu.qm | Bin 31845 -> 31865 bytes .../Resources/translations/PartDesign_hu.ts | 8 +- .../Resources/translations/PartDesign_nl.qm | Bin 31414 -> 31408 bytes .../Resources/translations/PartDesign_nl.ts | 10 +- .../Resources/translations/PartDesign_no.qm | Bin 30460 -> 30432 bytes .../Resources/translations/PartDesign_no.ts | 6 +- .../translations/PartDesign_pt-PT.qm | Bin 31512 -> 31600 bytes .../translations/PartDesign_pt-PT.ts | 14 +- .../Resources/translations/PartDesign_sl.qm | Bin 30617 -> 30541 bytes .../Resources/translations/PartDesign_sl.ts | 12 +- .../Path/Gui/Resources/translations/Path.ts | 126 ++- .../Gui/Resources/translations/Path_af.qm | Bin 28205 -> 31692 bytes .../Gui/Resources/translations/Path_af.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_cs.qm | Bin 28223 -> 31666 bytes .../Gui/Resources/translations/Path_cs.ts | 847 +++++++++------ .../Gui/Resources/translations/Path_de.qm | Bin 31405 -> 34244 bytes .../Gui/Resources/translations/Path_de.ts | 841 +++++++++------ .../Gui/Resources/translations/Path_el.qm | Bin 28237 -> 31722 bytes .../Gui/Resources/translations/Path_el.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_es-ES.qm | Bin 31831 -> 35522 bytes .../Gui/Resources/translations/Path_es-ES.ts | 845 +++++++++------ .../Gui/Resources/translations/Path_fi.qm | Bin 28243 -> 31746 bytes .../Gui/Resources/translations/Path_fi.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_fr.qm | Bin 31909 -> 34592 bytes .../Gui/Resources/translations/Path_fr.ts | 841 +++++++++------ .../Gui/Resources/translations/Path_hr.qm | Bin 28204 -> 31689 bytes .../Gui/Resources/translations/Path_hr.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_hu.qm | Bin 28214 -> 32135 bytes .../Gui/Resources/translations/Path_hu.ts | 961 ++++++++++------- .../Gui/Resources/translations/Path_it.qm | Bin 31743 -> 35708 bytes .../Gui/Resources/translations/Path_it.ts | 835 +++++++++------ .../Gui/Resources/translations/Path_ja.qm | Bin 27910 -> 31411 bytes .../Gui/Resources/translations/Path_ja.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_nl.qm | Bin 28425 -> 31904 bytes .../Gui/Resources/translations/Path_nl.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_no.qm | Bin 28199 -> 31700 bytes .../Gui/Resources/translations/Path_no.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_pl.qm | Bin 28575 -> 32188 bytes .../Gui/Resources/translations/Path_pl.ts | 658 +++++++----- .../Gui/Resources/translations/Path_pt-BR.qm | Bin 31219 -> 34996 bytes .../Gui/Resources/translations/Path_pt-BR.ts | 841 +++++++++------ .../Gui/Resources/translations/Path_pt-PT.qm | Bin 30177 -> 33032 bytes .../Gui/Resources/translations/Path_pt-PT.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_ro.qm | Bin 28246 -> 31747 bytes .../Gui/Resources/translations/Path_ro.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_ru.qm | Bin 30904 -> 34027 bytes .../Gui/Resources/translations/Path_ru.ts | 839 +++++++++------ .../Gui/Resources/translations/Path_sk.qm | Bin 28219 -> 31702 bytes .../Gui/Resources/translations/Path_sk.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_sl.qm | Bin 28572 -> 31821 bytes .../Gui/Resources/translations/Path_sl.ts | 839 +++++++++------ .../Gui/Resources/translations/Path_sr.qm | Bin 28186 -> 31685 bytes .../Gui/Resources/translations/Path_sr.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_sv-SE.qm | Bin 28205 -> 31696 bytes .../Gui/Resources/translations/Path_sv-SE.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_tr.qm | Bin 28174 -> 31663 bytes .../Gui/Resources/translations/Path_tr.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_uk.qm | Bin 28574 -> 32063 bytes .../Gui/Resources/translations/Path_uk.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_zh-CN.qm | Bin 28064 -> 31539 bytes .../Gui/Resources/translations/Path_zh-CN.ts | 833 +++++++++------ .../Gui/Resources/translations/Path_zh-TW.qm | Bin 27698 -> 31203 bytes .../Gui/Resources/translations/Path_zh-TW.ts | 833 +++++++++------ .../Plot/resources/translations/Plot_af.ts | 2 +- .../Plot/resources/translations/Plot_cs.ts | 2 +- .../Plot/resources/translations/Plot_de.ts | 2 +- .../Plot/resources/translations/Plot_el.ts | 2 +- .../Plot/resources/translations/Plot_es-ES.ts | 2 +- .../Plot/resources/translations/Plot_fi.ts | 2 +- .../Plot/resources/translations/Plot_fr.ts | 2 +- .../Plot/resources/translations/Plot_hr.ts | 2 +- .../Plot/resources/translations/Plot_hu.qm | Bin 9316 -> 9318 bytes .../Plot/resources/translations/Plot_hu.ts | 10 +- .../Plot/resources/translations/Plot_it.ts | 2 +- .../Plot/resources/translations/Plot_ja.ts | 2 +- .../Plot/resources/translations/Plot_nl.qm | Bin 9129 -> 9289 bytes .../Plot/resources/translations/Plot_nl.ts | 18 +- .../Plot/resources/translations/Plot_no.ts | 2 +- .../Plot/resources/translations/Plot_pl.ts | 2 +- .../Plot/resources/translations/Plot_pt-BR.ts | 2 +- .../Plot/resources/translations/Plot_pt-PT.qm | Bin 9297 -> 9329 bytes .../Plot/resources/translations/Plot_pt-PT.ts | 4 +- .../Plot/resources/translations/Plot_ro.ts | 2 +- .../Plot/resources/translations/Plot_ru.ts | 2 +- .../Plot/resources/translations/Plot_sk.ts | 2 +- .../Plot/resources/translations/Plot_sl.ts | 2 +- .../Plot/resources/translations/Plot_sr.ts | 2 +- .../Plot/resources/translations/Plot_sv-SE.ts | 2 +- .../Plot/resources/translations/Plot_tr.ts | 2 +- .../Plot/resources/translations/Plot_uk.ts | 2 +- .../Plot/resources/translations/Plot_zh-CN.ts | 2 +- .../Plot/resources/translations/Plot_zh-TW.ts | 2 +- .../Gui/Resources/translations/Points_cs.qm | Bin 3912 -> 3920 bytes .../Gui/Resources/translations/Points_cs.ts | 4 +- .../Gui/Resources/translations/Points_hu.qm | Bin 3965 -> 3979 bytes .../Gui/Resources/translations/Points_hu.ts | 8 +- .../Gui/Resources/translations/Points_ru.qm | Bin 4131 -> 4131 bytes .../Gui/Resources/translations/Points_ru.ts | 2 +- .../Resources/translations/Raytracing_cs.qm | Bin 15303 -> 15315 bytes .../Resources/translations/Raytracing_cs.ts | 4 +- .../Resources/translations/Raytracing_hu.qm | Bin 15610 -> 15614 bytes .../Resources/translations/Raytracing_hu.ts | 2 +- .../Resources/translations/Raytracing_ja.qm | Bin 13022 -> 13022 bytes .../Resources/translations/Raytracing_ja.ts | 2 +- .../translations/Raytracing_pt-PT.qm | Bin 16231 -> 16229 bytes .../translations/Raytracing_pt-PT.ts | 2 +- .../Resources/translations/Raytracing_ru.qm | Bin 15878 -> 15884 bytes .../Resources/translations/Raytracing_ru.ts | 39 +- .../translations/ReverseEngineering_af.ts | 10 +- .../translations/ReverseEngineering_cs.qm | Bin 4137 -> 4133 bytes .../translations/ReverseEngineering_cs.ts | 52 +- .../translations/ReverseEngineering_de.qm | Bin 4092 -> 4207 bytes .../translations/ReverseEngineering_de.ts | 10 +- .../translations/ReverseEngineering_el.ts | 10 +- .../translations/ReverseEngineering_es-ES.ts | 10 +- .../translations/ReverseEngineering_fi.ts | 10 +- .../translations/ReverseEngineering_fr.ts | 10 +- .../translations/ReverseEngineering_hr.ts | 10 +- .../translations/ReverseEngineering_hu.qm | Bin 4100 -> 4164 bytes .../translations/ReverseEngineering_hu.ts | 48 +- .../translations/ReverseEngineering_it.ts | 10 +- .../translations/ReverseEngineering_ja.ts | 10 +- .../translations/ReverseEngineering_nl.ts | 10 +- .../translations/ReverseEngineering_no.ts | 10 +- .../translations/ReverseEngineering_pl.ts | 10 +- .../translations/ReverseEngineering_pt-BR.ts | 10 +- .../translations/ReverseEngineering_pt-PT.ts | 10 +- .../translations/ReverseEngineering_ro.ts | 10 +- .../translations/ReverseEngineering_ru.ts | 10 +- .../translations/ReverseEngineering_sk.ts | 10 +- .../translations/ReverseEngineering_sl.ts | 10 +- .../translations/ReverseEngineering_sr.ts | 10 +- .../translations/ReverseEngineering_sv-SE.ts | 10 +- .../translations/ReverseEngineering_tr.ts | 10 +- .../translations/ReverseEngineering_uk.ts | 10 +- .../translations/ReverseEngineering_zh-CN.ts | 10 +- .../translations/ReverseEngineering_zh-TW.ts | 10 +- .../Gui/Resources/translations/Robot_cs.qm | Bin 18353 -> 18365 bytes .../Gui/Resources/translations/Robot_cs.ts | 2 +- .../Gui/Resources/translations/Robot_hu.qm | Bin 18584 -> 18588 bytes .../Gui/Resources/translations/Robot_hu.ts | 2 +- .../Gui/Resources/translations/Robot_ja.qm | Bin 15936 -> 15934 bytes .../Gui/Resources/translations/Robot_ja.ts | 2 +- .../Gui/Resources/translations/Robot_pt-PT.qm | Bin 18411 -> 18441 bytes .../Gui/Resources/translations/Robot_pt-PT.ts | 4 +- .../Gui/Resources/translations/Robot_ru.qm | Bin 18688 -> 18688 bytes .../Gui/Resources/translations/Robot_ru.ts | 4 +- .../Ship/resources/translations/Ship_af.qm | Bin 13719 -> 20704 bytes .../Ship/resources/translations/Ship_af.ts | 355 +++++-- .../Ship/resources/translations/Ship_cs.qm | Bin 14043 -> 21026 bytes .../Ship/resources/translations/Ship_cs.ts | 337 ++++-- .../Ship/resources/translations/Ship_de.qm | Bin 15111 -> 22080 bytes .../Ship/resources/translations/Ship_de.ts | 355 +++++-- .../Ship/resources/translations/Ship_el.qm | Bin 13915 -> 20896 bytes .../Ship/resources/translations/Ship_el.ts | 355 +++++-- .../Ship/resources/translations/Ship_es-ES.qm | Bin 15233 -> 23006 bytes .../Ship/resources/translations/Ship_es-ES.ts | 359 +++++-- .../Ship/resources/translations/Ship_fi.qm | Bin 14497 -> 21488 bytes .../Ship/resources/translations/Ship_fi.ts | 355 +++++-- .../Ship/resources/translations/Ship_fr.qm | Bin 15345 -> 22342 bytes .../Ship/resources/translations/Ship_fr.ts | 355 +++++-- .../Ship/resources/translations/Ship_hr.qm | Bin 13768 -> 20749 bytes .../Ship/resources/translations/Ship_hr.ts | 355 +++++-- .../Ship/resources/translations/Ship_hu.qm | Bin 14092 -> 21105 bytes .../Ship/resources/translations/Ship_hu.ts | 343 ++++-- .../Ship/resources/translations/Ship_it.qm | Bin 15571 -> 23442 bytes .../Ship/resources/translations/Ship_it.ts | 374 +++++-- .../Ship/resources/translations/Ship_ja.qm | Bin 10512 -> 17515 bytes .../Ship/resources/translations/Ship_ja.ts | 355 +++++-- .../Ship/resources/translations/Ship_nl.qm | Bin 13833 -> 20822 bytes .../Ship/resources/translations/Ship_nl.ts | 355 +++++-- .../Ship/resources/translations/Ship_no.qm | Bin 13743 -> 20730 bytes .../Ship/resources/translations/Ship_no.ts | 355 +++++-- .../Ship/resources/translations/Ship_pl.qm | Bin 14947 -> 21916 bytes .../Ship/resources/translations/Ship_pl.ts | 355 +++++-- .../Ship/resources/translations/Ship_pt-BR.qm | Bin 14937 -> 21958 bytes .../Ship/resources/translations/Ship_pt-BR.ts | 355 +++++-- .../Ship/resources/translations/Ship_pt-PT.qm | Bin 14463 -> 21434 bytes .../Ship/resources/translations/Ship_pt-PT.ts | 357 +++++-- .../Ship/resources/translations/Ship_ro.qm | Bin 14192 -> 21177 bytes .../Ship/resources/translations/Ship_ro.ts | 355 +++++-- .../Ship/resources/translations/Ship_ru.qm | Bin 14582 -> 21565 bytes .../Ship/resources/translations/Ship_ru.ts | 355 +++++-- .../Ship/resources/translations/Ship_sk.qm | Bin 13721 -> 20700 bytes .../Ship/resources/translations/Ship_sk.ts | 355 +++++-- .../Ship/resources/translations/Ship_sl.qm | Bin 14130 -> 21387 bytes .../Ship/resources/translations/Ship_sl.ts | 355 +++++-- .../Ship/resources/translations/Ship_sr.qm | Bin 13822 -> 20805 bytes .../Ship/resources/translations/Ship_sr.ts | 355 +++++-- .../Ship/resources/translations/Ship_sv-SE.qm | Bin 13843 -> 20836 bytes .../Ship/resources/translations/Ship_sv-SE.ts | 355 +++++-- .../Ship/resources/translations/Ship_tr.qm | Bin 13756 -> 20745 bytes .../Ship/resources/translations/Ship_tr.ts | 355 +++++-- .../Ship/resources/translations/Ship_uk.qm | Bin 14644 -> 21623 bytes .../Ship/resources/translations/Ship_uk.ts | 355 +++++-- .../Ship/resources/translations/Ship_zh-CN.qm | Bin 12632 -> 19593 bytes .../Ship/resources/translations/Ship_zh-CN.ts | 355 +++++-- .../Ship/resources/translations/Ship_zh-TW.qm | Bin 12800 -> 19803 bytes .../Ship/resources/translations/Ship_zh-TW.ts | 355 +++++-- .../Gui/Resources/translations/Sketcher_cs.qm | Bin 91814 -> 91800 bytes .../Gui/Resources/translations/Sketcher_cs.ts | 18 +- .../Gui/Resources/translations/Sketcher_fr.ts | 8 +- .../Gui/Resources/translations/Sketcher_hu.qm | Bin 96735 -> 97751 bytes .../Gui/Resources/translations/Sketcher_hu.ts | 192 ++-- .../Gui/Resources/translations/Sketcher_it.qm | Bin 98502 -> 98638 bytes .../Gui/Resources/translations/Sketcher_it.ts | 122 +-- .../Gui/Resources/translations/Sketcher_ja.qm | Bin 73413 -> 73177 bytes .../Gui/Resources/translations/Sketcher_ja.ts | 22 +- .../Gui/Resources/translations/Sketcher_no.qm | Bin 93192 -> 93226 bytes .../Gui/Resources/translations/Sketcher_no.ts | 8 +- .../Resources/translations/Sketcher_pt-PT.qm | Bin 98486 -> 98502 bytes .../Resources/translations/Sketcher_pt-PT.ts | 6 +- .../Gui/Resources/translations/Sketcher_sl.qm | Bin 92755 -> 92647 bytes .../Gui/Resources/translations/Sketcher_sl.ts | 18 +- .../Resources/translations/Spreadsheet_af.qm | Bin 8676 -> 8748 bytes .../Resources/translations/Spreadsheet_af.ts | 2 +- .../Resources/translations/Spreadsheet_cs.qm | Bin 8648 -> 8738 bytes .../Resources/translations/Spreadsheet_cs.ts | 8 +- .../Resources/translations/Spreadsheet_de.qm | Bin 9704 -> 9780 bytes .../Resources/translations/Spreadsheet_de.ts | 2 +- .../Resources/translations/Spreadsheet_el.qm | Bin 8990 -> 9062 bytes .../Resources/translations/Spreadsheet_el.ts | 2 +- .../translations/Spreadsheet_es-ES.qm | Bin 9566 -> 9644 bytes .../translations/Spreadsheet_es-ES.ts | 2 +- .../Resources/translations/Spreadsheet_fi.qm | Bin 9358 -> 9430 bytes .../Resources/translations/Spreadsheet_fi.ts | 2 +- .../Resources/translations/Spreadsheet_fr.qm | Bin 9474 -> 9548 bytes .../Resources/translations/Spreadsheet_fr.ts | 2 +- .../Resources/translations/Spreadsheet_hr.qm | Bin 8689 -> 8761 bytes .../Resources/translations/Spreadsheet_hr.ts | 2 +- .../Resources/translations/Spreadsheet_hu.qm | Bin 8703 -> 9369 bytes .../Resources/translations/Spreadsheet_hu.ts | 172 ++-- .../Resources/translations/Spreadsheet_it.qm | Bin 9518 -> 9596 bytes .../Resources/translations/Spreadsheet_it.ts | 2 +- .../Resources/translations/Spreadsheet_ja.qm | Bin 7423 -> 7507 bytes .../Resources/translations/Spreadsheet_ja.ts | 2 +- .../Resources/translations/Spreadsheet_nl.qm | Bin 9254 -> 9326 bytes .../Resources/translations/Spreadsheet_nl.ts | 2 +- .../Resources/translations/Spreadsheet_no.qm | Bin 8686 -> 8758 bytes .../Resources/translations/Spreadsheet_no.ts | 2 +- .../Resources/translations/Spreadsheet_pl.qm | Bin 9530 -> 9608 bytes .../Resources/translations/Spreadsheet_pl.ts | 2 +- .../translations/Spreadsheet_pt-BR.qm | Bin 9274 -> 9348 bytes .../translations/Spreadsheet_pt-BR.ts | 2 +- .../translations/Spreadsheet_pt-PT.qm | Bin 9678 -> 9752 bytes .../translations/Spreadsheet_pt-PT.ts | 2 +- .../Resources/translations/Spreadsheet_ro.qm | Bin 9467 -> 9543 bytes .../Resources/translations/Spreadsheet_ro.ts | 2 +- .../Resources/translations/Spreadsheet_ru.qm | Bin 9711 -> 9787 bytes .../Resources/translations/Spreadsheet_ru.ts | 2 +- .../Resources/translations/Spreadsheet_sk.qm | Bin 8910 -> 8982 bytes .../Resources/translations/Spreadsheet_sk.ts | 2 +- .../Resources/translations/Spreadsheet_sl.qm | Bin 8927 -> 9005 bytes .../Resources/translations/Spreadsheet_sl.ts | 2 +- .../Resources/translations/Spreadsheet_sr.qm | Bin 8693 -> 8769 bytes .../Resources/translations/Spreadsheet_sr.ts | 2 +- .../translations/Spreadsheet_sv-SE.qm | Bin 8694 -> 8766 bytes .../translations/Spreadsheet_sv-SE.ts | 2 +- .../Resources/translations/Spreadsheet_tr.qm | Bin 8665 -> 8737 bytes .../Resources/translations/Spreadsheet_tr.ts | 2 +- .../Resources/translations/Spreadsheet_uk.qm | Bin 9139 -> 9215 bytes .../Resources/translations/Spreadsheet_uk.ts | 2 +- .../translations/Spreadsheet_zh-CN.qm | Bin 8555 -> 8627 bytes .../translations/Spreadsheet_zh-CN.ts | 2 +- .../translations/Spreadsheet_zh-TW.qm | Bin 6931 -> 6995 bytes .../translations/Spreadsheet_zh-TW.ts | 2 +- .../Resources/translations/StartPage_af.qm | Bin 11266 -> 11388 bytes .../Resources/translations/StartPage_af.ts | 5 + .../Resources/translations/StartPage_cs.qm | Bin 11004 -> 11126 bytes .../Resources/translations/StartPage_cs.ts | 5 + .../Resources/translations/StartPage_de.qm | Bin 11794 -> 11924 bytes .../Resources/translations/StartPage_de.ts | 5 + .../Resources/translations/StartPage_el.qm | Bin 11490 -> 11612 bytes .../Resources/translations/StartPage_el.ts | 5 + .../Resources/translations/StartPage_es-ES.qm | Bin 11722 -> 11854 bytes .../Resources/translations/StartPage_es-ES.ts | 5 + .../Resources/translations/StartPage_fi.qm | Bin 11464 -> 11586 bytes .../Resources/translations/StartPage_fi.ts | 5 + .../Resources/translations/StartPage_fr.qm | Bin 11970 -> 12100 bytes .../Resources/translations/StartPage_fr.ts | 5 + .../Resources/translations/StartPage_hr.qm | Bin 11219 -> 11341 bytes .../Resources/translations/StartPage_hr.ts | 5 + .../Resources/translations/StartPage_hu.qm | Bin 11229 -> 11399 bytes .../Resources/translations/StartPage_hu.ts | 15 +- .../Resources/translations/StartPage_it.qm | Bin 11538 -> 11664 bytes .../Resources/translations/StartPage_it.ts | 7 +- .../Resources/translations/StartPage_ja.qm | Bin 8607 -> 8729 bytes .../Resources/translations/StartPage_ja.ts | 5 + .../Resources/translations/StartPage_nl.qm | Bin 11534 -> 11664 bytes .../Resources/translations/StartPage_nl.ts | 35 +- .../Resources/translations/StartPage_no.qm | Bin 11218 -> 11340 bytes .../Resources/translations/StartPage_no.ts | 5 + .../Resources/translations/StartPage_pl.qm | Bin 11458 -> 11580 bytes .../Resources/translations/StartPage_pl.ts | 5 + .../Resources/translations/StartPage_pt-BR.qm | Bin 11302 -> 11484 bytes .../Resources/translations/StartPage_pt-BR.ts | 5 + .../Resources/translations/StartPage_pt-PT.qm | Bin 11680 -> 11986 bytes .../Resources/translations/StartPage_pt-PT.ts | 29 +- .../Resources/translations/StartPage_ro.qm | Bin 11659 -> 11781 bytes .../Resources/translations/StartPage_ro.ts | 5 + .../Resources/translations/StartPage_ru.qm | Bin 11741 -> 11863 bytes .../Resources/translations/StartPage_ru.ts | 5 + .../Resources/translations/StartPage_sk.qm | Bin 11078 -> 11200 bytes .../Resources/translations/StartPage_sk.ts | 5 + .../Resources/translations/StartPage_sl.qm | Bin 10985 -> 11101 bytes .../Resources/translations/StartPage_sl.ts | 7 +- .../Resources/translations/StartPage_sr.qm | Bin 11119 -> 11235 bytes .../Resources/translations/StartPage_sr.ts | 5 + .../Resources/translations/StartPage_sv-SE.qm | Bin 11240 -> 11362 bytes .../Resources/translations/StartPage_sv-SE.ts | 5 + .../Resources/translations/StartPage_tr.qm | Bin 11383 -> 11505 bytes .../Resources/translations/StartPage_tr.ts | 5 + .../Resources/translations/StartPage_uk.qm | Bin 11519 -> 11641 bytes .../Resources/translations/StartPage_uk.ts | 5 + .../Resources/translations/StartPage_zh-CN.qm | Bin 7871 -> 7993 bytes .../Resources/translations/StartPage_zh-CN.ts | 5 + .../Resources/translations/StartPage_zh-TW.qm | Bin 7567 -> 7653 bytes .../Resources/translations/StartPage_zh-TW.ts | 5 + .../Gui/Resources/translations/Test_af.ts | 2 +- .../Gui/Resources/translations/Test_cs.ts | 2 +- .../Gui/Resources/translations/Test_de.ts | 2 +- .../Gui/Resources/translations/Test_el.ts | 2 +- .../Gui/Resources/translations/Test_es-ES.ts | 2 +- .../Gui/Resources/translations/Test_fi.ts | 2 +- .../Gui/Resources/translations/Test_fr.ts | 2 +- .../Gui/Resources/translations/Test_hr.ts | 2 +- .../Gui/Resources/translations/Test_hu.qm | Bin 2885 -> 2877 bytes .../Gui/Resources/translations/Test_hu.ts | 4 +- .../Gui/Resources/translations/Test_it.ts | 2 +- .../Gui/Resources/translations/Test_ja.ts | 2 +- .../Gui/Resources/translations/Test_nl.ts | 2 +- .../Gui/Resources/translations/Test_no.ts | 2 +- .../Gui/Resources/translations/Test_pl.ts | 2 +- .../Gui/Resources/translations/Test_pt-BR.ts | 2 +- .../Gui/Resources/translations/Test_pt-PT.ts | 2 +- .../Gui/Resources/translations/Test_ro.ts | 2 +- .../Gui/Resources/translations/Test_ru.ts | 2 +- .../Gui/Resources/translations/Test_sk.ts | 2 +- .../Gui/Resources/translations/Test_sl.ts | 2 +- .../Gui/Resources/translations/Test_sr.ts | 2 +- .../Gui/Resources/translations/Test_sv-SE.ts | 2 +- .../Gui/Resources/translations/Test_tr.ts | 2 +- .../Gui/Resources/translations/Test_uk.ts | 2 +- .../Gui/Resources/translations/Test_zh-CN.ts | 2 +- .../Gui/Resources/translations/Test_zh-TW.ts | 2 +- .../Web/Gui/Resources/translations/Web_cs.qm | Bin 2379 -> 2383 bytes .../Web/Gui/Resources/translations/Web_cs.ts | 2 +- .../Web/Gui/Resources/translations/Web_hu.qm | Bin 2258 -> 2374 bytes .../Web/Gui/Resources/translations/Web_hu.ts | 52 +- .../Web/Gui/Resources/translations/Web_no.qm | Bin 2273 -> 2271 bytes .../Web/Gui/Resources/translations/Web_no.ts | 2 +- 750 files changed, 38214 insertions(+), 26316 deletions(-) diff --git a/src/Gui/Language/FreeCAD.ts b/src/Gui/Language/FreeCAD.ts index d0c774715..e6edc3b55 100644 --- a/src/Gui/Language/FreeCAD.ts +++ b/src/Gui/Language/FreeCAD.ts @@ -1796,14 +1796,6 @@ Specify another directory, please. Camera type - - Orthographic rendering - - - - Perspective rendering - - @@ -1872,6 +1864,14 @@ Specify another directory, please. MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp diff --git a/src/Gui/Language/FreeCAD_af.qm b/src/Gui/Language/FreeCAD_af.qm index 9a1754ffae61cf617bf0f21ade3dbda8c390fcb1..b0b21c1ff393b3d3012318514bf47c8988c1cf77 100644 GIT binary patch delta 12079 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 Macro name: Makronaam: - - Macro destination: - Makrobestemming: - Execute Voer uit @@ -1265,15 +1261,15 @@ Definieer asseblief 'n ander kortpad. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1318,7 +1314,7 @@ Hierdie lêer bestaan reeds. Read-only - + Read-only @@ -1806,11 +1802,11 @@ Spesifiseer asseblief 'n ander gids. Orthographic rendering - Ortografiese weergawe + Ortografiese weergawe Perspective rendering - Perspektief weergawe + Perspektief weergawe @@ -1880,6 +1876,14 @@ Spesifiseer asseblief 'n ander gids. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4860,11 +4864,11 @@ Wees bewus dat die punt waar jy kliek belangrik is. Delete macro - Verwyder makro + Verwyder makro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_cs.qm b/src/Gui/Language/FreeCAD_cs.qm index 3b4ea8cbf307d430280dd5b3c4c9e6478cddda6a..cb46a61647df644d01f874a2a6ca4727aa219c60 100644 GIT binary patch delta 16472 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 diff --git a/src/Gui/Language/FreeCAD_cs.ts b/src/Gui/Language/FreeCAD_cs.ts index 294254df9..a0d7f2009 100644 --- a/src/Gui/Language/FreeCAD_cs.ts +++ b/src/Gui/Language/FreeCAD_cs.ts @@ -136,7 +136,7 @@ DlgExpressionInput Formula editor - Formula editor + Editor vzorců Result: @@ -144,7 +144,7 @@ &Discard - &Discard + &Zahodit Ok @@ -246,7 +246,7 @@ %1 help files not found (%2). You might need to install the %1 documentation package. - %1 help files not found (%2). You might need to install the %1 documentation package. + %1 soubory nápovědy nebyly nalezeny (%2). Zřejmě potřebujete nainstalovat %1 balík dokumentace. Unable to launch Qt Assistant (%1) @@ -257,7 +257,7 @@ Gui::AutoSaver Please wait until the AutoRecovery file has been saved... - Please wait until the AutoRecovery file has been saved... + Prosím počkejte než se uloží soubor Automatické obnovy... @@ -1237,10 +1237,6 @@ Please define another shortcut. Macro name: Název makra: - - Macro destination: - Umístění makra: - Execute Spustit @@ -1263,15 +1259,15 @@ Please define another shortcut. User macros - + Uživatelská makra System macros - + Systémová makra User macros location: - + Umístění uživatelských maker: @@ -1316,7 +1312,7 @@ Tento soubor již existuje. Read-only - + Jen pro čtení @@ -1449,7 +1445,7 @@ Specify another directory, please. HTML files - HTML files + HTML soubory @@ -1525,15 +1521,15 @@ Specify another directory, please. Clear user settings - Clear user settings + Vymazat uživatelská nastavení Do you want to clear all your user settings? - Do you want to clear all your user settings? + Chcete vymazat všechna uživatelská nastavení? If you agree all your settings will be cleared. - If you agree all your settings will be cleared. + Pokud souhlasíte, budou všechna vaše nastavení vymazána. @@ -1803,11 +1799,11 @@ Specify another directory, please. Orthographic rendering - Ortografické vykreslování + Ortografické vykreslování Perspective rendering - Perspektivní vykreslování + Perspektivní vykreslování @@ -1877,6 +1873,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -1886,11 +1890,11 @@ Specify another directory, please. Anti-aliasing - Anti-aliasing + Anti-aliasing Open a new viewer or restart %1 to apply anti-aliasing changes. - Open a new viewer or restart %1 to apply anti-aliasing changes. + Otevřete nové okno nebo restartujte %1 pro aplikaci změn anti-aliasingu. @@ -2140,11 +2144,11 @@ Specify another directory, please. Run AutoRecovery at startup - Run AutoRecovery at startup + Spusti Automatickou obnovu při startu Save AutoRecovery information every - Save AutoRecovery information every + Uložit informace Automatické obnovy každých @@ -2597,11 +2601,11 @@ Specify another directory, please. Enabled workbenches - Enabled workbenches + Povolené workenche Disabled workbenches - Disabled workbenches + Vyřazené workbenche Move down @@ -2609,7 +2613,7 @@ Specify another directory, please. <html><head/><body><p><span style=" font-weight:600;">Move the selected item down.</span></p><p>The item will be moved down</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Move the selected item down.</span></p><p>The item will be moved down</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Přesunout vybranou položku dolů.</span></p><p>Položka bude přesunuta dolů</p></body></html> Move left @@ -2617,7 +2621,7 @@ Specify another directory, please. <html><head/><body><p><span style=" font-weight:600;">Remove the selected workbench from enabled workbenches</span></p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Remove the selected workbench from enabled workbenches</span></p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Odstranit vybrané workbenche z povolených workenchů</span></p></body></html> Move right @@ -2625,15 +2629,15 @@ Specify another directory, please. <html><head/><body><p><span style=" font-weight:600;">Move the selected workbench to enabled workbenches.</span></p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Move the selected workbench to enabled workbenches.</span></p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Přesunout vybrané workbenche mezi povolené workbenche.</span></p></body></html> Sort enabled workbenches - Sort enabled workbenches + Třídit povolené workbenche <b>Sort enabled workbenches</p> - <b>Sort enabled workbenches</p> + <b>Třídit povolené workbenche</p> Move up @@ -2641,15 +2645,15 @@ Specify another directory, please. <html><head/><body><p><span style=" font-weight:600;">Move the selected item up.</span></p><p>The item will be moved up.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Move the selected item up.</span></p><p>The item will be moved up.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Přesunout vybranou položku nahoru.</span></p><p>Položka bude přesunuta nahoru.</p></body></html> <html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Note:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> The changes become active the next time you start FreeCAD</span></p></body></html> - <html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Note:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> The changes become active the next time you start FreeCAD</span></p></body></html> + <html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Poznámka:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Změna bude aktivní po příštím startu FreeCADu</span></p></body></html> Add all to enabled workbenches - Add all to enabled workbenches + Přidat všechny mezi povolené workbenche @@ -2663,23 +2667,23 @@ Specify another directory, please. Gui::Dialog::DocumentRecovery Document Recovery - Document Recovery + Obnova dokumentu Press 'Start Recovery' to start the recovery process of the doument listed below. The 'Status' column shows whether the document could be recovered. - Press 'Start Recovery' to start the recovery process of the doument listed below. + Stiskněte "Začít obnovu" pro start procesu obnovy dokumentu níže. -The 'Status' column shows whether the document could be recovered. +Sloupec "Status" zobrazuje, jestli může být dokument obnoven. Status of recovered documents: - Status of recovered documents: + Status obnovených dokumentů: Document Name - Document Name + Název dokumentu Status @@ -2691,19 +2695,19 @@ The 'Status' column shows whether the document could be recovered. Not yet recovered - Not yet recovered + Zatím neobnoveno Unknown problem occurred - Unknown problem occurred + Objevil se neznámý problém Failed to recover - Failed to recover + Obnova selhala Successfully recovered - Successfully recovered + Úspěšně obnoveno Finish @@ -3120,7 +3124,7 @@ The 'Status' column shows whether the document could be recovered. Euler angles (XY'Z'') - Euler angles (XY'Z'') + Eulerovy úhly (XY'Z") @@ -3338,7 +3342,7 @@ The 'Status' column shows whether the document could be recovered. Plain Text Files - Plain Text Files + Soubory prostého textu @@ -3404,11 +3408,11 @@ The 'Status' column shows whether the document could be recovered. To python console - To python console + Do konzole pythonu Reveals this object and its subelements in the python console. - Reveals this object and its subelements in the python console. + Odkrýt tento objekt a jeho subelementy v konzoli pythonu. @@ -3525,11 +3529,11 @@ Chcete uložit provedené změny? FreeCAD macro - FreeCAD macro + FreeCAD makro PDF file - PDF file + PDF soubor @@ -3592,19 +3596,19 @@ Chcete uložit provedené změny? Gui::GestureNavigationStyle Tap. Or click left mouse button. - Tap. Or click left mouse button. + Ťukněte. Nebo stiskněte levé tlačítko myši. Drag screen with two fingers. Or press right mouse button. - Drag screen with two fingers. Or press right mouse button. + Táhněte obrazovku dvěma prsty. Nebo stiskněté pravé tlačítko myši. Drag the screen with one finger. Or press left mouse button. In Sketcher and other edit modes, hold Alt in addition. - Drag the screen with one finger. Or press left mouse button. In Sketcher and other edit modes, hold Alt in addition. + Táhněte obrazovku jedním prstem. Nebo stiskněté levé tlačítko myši. V Náčrtu a dalších editačních módech držte navíc Alt. Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or PgUp/PgDown on keyboard. - Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or PgUp/PgDown on keyboard. + Štípněte (položte dva prsty na obrazovku a táhněte je od sebe/k sobě). Nebo rolujte prostředním tlačítem myši. Nebo použijte na klávesnici PgUp/PgDown. @@ -3631,11 +3635,11 @@ Chcete uložit provedené změny? SVG format - SVG format + SVG formát PDF format - PDF format + PDF formát @@ -3729,11 +3733,11 @@ Chcete uložit provedené změny? Macro file doesn't exist - Macro file doesn't exist + Soubor makra neexistuje No such macro file: '%1' - No such macro file: '%1' + Není soubor makra: '%1' @@ -3769,15 +3773,15 @@ Do you want to copy them, too? There is a rendering issue on MacOS. - There is a rendering issue on MacOS. + Na MacOS je problém s vykreslováním. See <a href="http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS"> the wiki</a> for more information - See <a href="http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS"> the wiki</a> for more information + Podívejte se na <a href="http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS"> wiki</a> pro více informací Don't show again - Don't show again + Znovu nezobrazovat @@ -3875,19 +3879,19 @@ V pravém pohledu jsou %2 body vybrány. Gui::MayaGestureNavigationStyle Tap. Or click left mouse button. - Tap. Or click left mouse button. + Ťukněte. Nebo stiskněte levé tlačítko myši. Drag screen with two fingers. Or press ALT + middle mouse button. - Drag screen with two fingers. Or press ALT + middle mouse button. + Táhněte obrazovku dvěma prsty. Nebo stiskněte ALT + prostřední tlačítko myši. Drag the screen with one finger. Or press ALT + left mouse button. In Sketcher and other edit modes, hold Alt in addition. - Drag the screen with one finger. Or press ALT + left mouse button. In Sketcher and other edit modes, hold Alt in addition. + Táhněte obrazovku jedním prstem. Nebo stiskněte ALT + levé tlačítko myši. V Náčrtu a dalších editačních módech držte navíc Alt. Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or press ALT + right mouse button. Or PgUp/PgDown on keyboard. - Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or press ALT + right mouse button. Or PgUp/PgDown on keyboard. + Štípněte (položte dva prsty na obrazovku a táhněte je od sebe/k sobě). Nebo rolujte prostředním tlačítkem myši. Nebo stiskněte ALT + pravé tlačítko myši. Nebo použijte PgUp/PgDown na klávesnici. @@ -3906,7 +3910,7 @@ V pravém pohledu jsou %2 body vybrány. Press CTRL and middle mouse button - Press CTRL and middle mouse button + Stiskněte CTRL a prostřední tlačítko myši Press CTRL and right mouse button @@ -4073,7 +4077,7 @@ Chcete průvodce ukončit bez uložení dat? All Files - All Files + Všechny soubory @@ -4337,15 +4341,15 @@ Do you want to specify another directory? PDF file - PDF file + PDF soubor Opening file failed - Opening file failed + Otevření souboru selhalo Can't open file '%1' for writing. - Can't open file '%1' for writing. + Soubor "%1" nelze otevřít pro zápis. @@ -4842,7 +4846,7 @@ Dejte si pozor na místo, kam klikáte. Frozen views - Frozen views + Zmražené pohledy Saving document failed @@ -4854,11 +4858,11 @@ Dejte si pozor na místo, kam klikáte. Delete macro - Odstranit makro + Odstranit makro Not allowed to delete system-wide macros - + Není povoleno mazat systémová makra @@ -5015,7 +5019,7 @@ Dejte si pozor na místo, kam klikáte. Close all windows - Zavřete všechna okna + Zavřít všechna okna @@ -5195,7 +5199,7 @@ Dejte si pozor na místo, kam klikáte. List of available dock panels - List of available dock panels + Seznam dostupných dokovaných panelů @@ -5846,11 +5850,11 @@ Dejte si pozor na místo, kam klikáte. Revert - Revert + Vrátit Reverts to the saved version of this file - Reverts to the saved version of this file + Vrátit se k uložené verzi tohoto souboru @@ -5895,7 +5899,7 @@ Dejte si pozor na místo, kam klikáte. Save a copy of the active document under a new file name - Save a copy of the active document under a new file name + Uložit kopii aktivního dokumento pod novým názvem diff --git a/src/Gui/Language/FreeCAD_de.qm b/src/Gui/Language/FreeCAD_de.qm index 6147d00d0f6d345d8b70c28781de7d8241efeb49..1c36dd5217629b4962b4de534bdfa26610bb6a0c 100644 GIT binary patch delta 12102 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 z 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 J_`rG{{XgLG$_oGh diff --git a/src/Gui/Language/FreeCAD_de.ts b/src/Gui/Language/FreeCAD_de.ts index 3e8662fc5..2abc4eaf4 100644 --- a/src/Gui/Language/FreeCAD_de.ts +++ b/src/Gui/Language/FreeCAD_de.ts @@ -1238,10 +1238,6 @@ Wählen Sie bitte eine andere Tastenkombination. Macro name: Makroname: - - Macro destination: - Makro-Zielpfad: - Execute Ausführen @@ -1264,15 +1260,15 @@ Wählen Sie bitte eine andere Tastenkombination. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1317,7 +1313,7 @@ Diese Datei ist bereits vorhanden. Read-only - + Read-only @@ -1806,11 +1802,11 @@ Wählen Sie bitte ein anderes Verzeichnis aus. Orthographic rendering - Orthographische Darstellung + Orthographische Darstellung Perspective rendering - Perspektivische Darstellung + Perspektivische Darstellung @@ -1880,6 +1876,14 @@ Wählen Sie bitte ein anderes Verzeichnis aus. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4862,11 +4866,11 @@ Beachten Sie, dass es auf den Punkt ankommt, auf den Sie klicken. Delete macro - Makro löschen + Makro löschen Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_el.qm b/src/Gui/Language/FreeCAD_el.qm index eaf8928d85951be80a68b17aba90be756a207e2b..1f8f4d9a58c3badb2bd5a8df107533fd6f3d2577 100644 GIT binary patch delta 12072 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 delta 11690 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 Y%i6BqHi}nF)914XhO}w#+3^ei10{CTyZ`_I diff --git a/src/Gui/Language/FreeCAD_el.ts b/src/Gui/Language/FreeCAD_el.ts index c952d528f..81806bb5f 100644 --- a/src/Gui/Language/FreeCAD_el.ts +++ b/src/Gui/Language/FreeCAD_el.ts @@ -1239,10 +1239,6 @@ Please define another shortcut. Macro name: Όνομα μακροεντολής: - - Macro destination: - Προορισμός μακροεντολής: - Execute Εκτέλεση @@ -1265,15 +1261,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1318,7 +1314,7 @@ This file already exists. Read-only - + Read-only @@ -1807,11 +1803,11 @@ Specify another directory, please. Orthographic rendering - Ορθογραφική αποτύπωση + Ορθογραφική αποτύπωση Perspective rendering - Προοπτική αποτύπωση + Προοπτική αποτύπωση @@ -1881,6 +1877,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4868,11 +4872,11 @@ Be aware the point where you click matters. Delete macro - Διαγραφή μακροεντολής + Διαγραφή μακροεντολής Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_es-ES.qm b/src/Gui/Language/FreeCAD_es-ES.qm index 6b890d49c27faa943c789fd08aa0c83d46cd5547..75287738a984425246074319ab621b58545d2aea 100644 GIT binary patch delta 12420 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 F{vTu(YYqSa delta 12131 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 F{U1ohA Ok - Ok + Aceptar @@ -1239,10 +1239,6 @@ Por favor defina otro atajo de teclado. Macro name: Nombre de la macro: - - Macro destination: - Destino de la macro: - Execute Ejecutar @@ -1265,15 +1261,15 @@ Por favor defina otro atajo de teclado. User macros - + Macros de usuario System macros - + Macros de sistema User macros location: - + Ubicación de macros de usuario: @@ -1318,7 +1314,7 @@ Este archivo ya existe. Read-only - + Solo lectura @@ -1807,11 +1803,11 @@ Especifique otro directorio, por favor. Orthographic rendering - Renderizado ortográfico + Renderizado ortográfico Perspective rendering - Renderizado en perspectiva + Renderizado en perspectiva @@ -1881,6 +1877,14 @@ Especifique otro directorio, por favor. MSAA 8x MSAA 8 x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4858,11 +4862,11 @@ Be aware the point where you click matters. Delete macro - Borrar macro + Borrar macro Not allowed to delete system-wide macros - + No se permite eliminar macros del sistema diff --git a/src/Gui/Language/FreeCAD_fi.qm b/src/Gui/Language/FreeCAD_fi.qm index 5a5007448ed052475adbe21678a0ffd7eae9db34..201cf9f4fc7064b045009b4e02c416af58a19fed 100644 GIT binary patch delta 12127 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 K&0Q9i{eJ-Xp*`#X delta 11762 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 diff --git a/src/Gui/Language/FreeCAD_fi.ts b/src/Gui/Language/FreeCAD_fi.ts index b52639add..3fb3b73cb 100644 --- a/src/Gui/Language/FreeCAD_fi.ts +++ b/src/Gui/Language/FreeCAD_fi.ts @@ -1239,10 +1239,6 @@ Määritä toinen pikakuvake. Macro name: Makron nimi: - - Macro destination: - Makro kohde: - Execute Suorita @@ -1265,15 +1261,15 @@ Määritä toinen pikakuvake. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1318,7 +1314,7 @@ Tämä tiedosto on jo olemassa. Read-only - + Read-only @@ -1807,11 +1803,11 @@ Määritä toinen hakemisto, ole hyvä. Orthographic rendering - Ortografinen renderointi + Ortografinen renderointi Perspective rendering - Perspektiivin renderöinti + Perspektiivin renderöinti @@ -1881,6 +1877,14 @@ Määritä toinen hakemisto, ole hyvä. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4859,11 +4863,11 @@ Huomaa, että piste johon klikkaat vaikuttaa. Delete macro - Poista makro + Poista makro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_fr.qm b/src/Gui/Language/FreeCAD_fr.qm index c0226400eebcd0048a72924130d82b8fa5e69da0..12684229b5d7179259ee52ef2fe8068d8efc27e9 100644 GIT binary patch delta 12090 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 Macro name: Nom de la macro : - - Macro destination: - Destination de la macro : - Execute Lancer @@ -1265,15 +1261,15 @@ Veuillez définir un autre raccourci. User macros - + Macros utilisateur System macros - + Macros du système User macros location: - + Emplacement des macros de l'utilisateur : @@ -1317,7 +1313,7 @@ This file already exists. Read-only - + Lecture seule @@ -1806,11 +1802,11 @@ Veuillez spécifier un autre répertoire. Orthographic rendering - Rendu orthographique + Rendu orthographique Perspective rendering - Rendu en perspective + Rendu en perspective @@ -1880,6 +1876,14 @@ Veuillez spécifier un autre répertoire. MSAA 8x MSAA 8 x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4856,11 +4860,11 @@ Be aware the point where you click matters. Delete macro - Supprimer la macro + Supprimer la macro Not allowed to delete system-wide macros - + Pas autorisé à supprimer les macros du système diff --git a/src/Gui/Language/FreeCAD_hr.qm b/src/Gui/Language/FreeCAD_hr.qm index 9bf5cc0ffc7afd0efababc059d956e3197db1df0..f51f56cab638b41846b26c92e4cca4e6744ac5b5 100644 GIT binary patch delta 12087 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 b29NWtLL?#E(?v2uMxjLZ&Uzv{85vm- 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 Macro name: Makro ime: - - Macro destination: - Makro odredište: - Execute Izvršiti @@ -1264,15 +1260,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1317,7 +1313,7 @@ Ova datoteka već postoji. Read-only - + Read-only @@ -1804,11 +1800,11 @@ Specify another directory, please. Orthographic rendering - Renderiranje pravopisa + Renderiranje pravopisa Perspective rendering - Perspektivna projekcija + Perspektivna projekcija @@ -1878,6 +1874,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4854,11 +4858,11 @@ Pazite jer točke odabira utječu. Delete macro - Brisanje makro + Brisanje makro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_hu.qm b/src/Gui/Language/FreeCAD_hu.qm index 3def09137d615c23617e42a83e7e19544e3ace28..1988aded5695564a36ebcd85410199e38f11d326 100644 GIT binary patch delta 20969 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 diff --git a/src/Gui/Language/FreeCAD_hu.ts b/src/Gui/Language/FreeCAD_hu.ts index 0c4956995..b20363271 100644 --- a/src/Gui/Language/FreeCAD_hu.ts +++ b/src/Gui/Language/FreeCAD_hu.ts @@ -60,11 +60,11 @@ CmdTestConsoleOutput Standard-Test - Standard-Test + Általános-teszt Test console output - Test console output + Tesztkimenet konzol @@ -136,15 +136,15 @@ DlgExpressionInput Formula editor - Formula editor + Képlet szerkesztő Result: - Result: + Eredmény: &Discard - &Discard + Mégse Ok @@ -246,7 +246,7 @@ %1 help files not found (%2). You might need to install the %1 documentation package. - %1 help files not found (%2). You might need to install the %1 documentation package. + %1 súgó fájl nem található (%2). Szükséges lehet a %1 dokumentáció csomag telepítése. Unable to launch Qt Assistant (%1) @@ -257,7 +257,7 @@ Gui::AutoSaver Please wait until the AutoRecovery file has been saved... - Please wait until the AutoRecovery file has been saved... + Kérem várjon míg a helyreállítási fájl mentésre került... @@ -268,7 +268,7 @@ Press SHIFT and middle mouse button - Nyomja le a SHIFT BILLENTYŰT, és a középső egérgomb + Nyomja le a SHIFT BILLENTYŰT, és a középső egérgombot Press middle mouse button @@ -371,7 +371,7 @@ while doing a left or right click and move the mouse up or down Gui::Dialog::ButtonModel Button %1 - Billentyű %1 + Gomb % 1 Out Of Range @@ -390,7 +390,7 @@ while doing a left or right click and move the mouse up or down Flip - Flip + Átfordítás Offset @@ -452,7 +452,7 @@ while doing a left or right click and move the mouse up or down Enable timer - Időzítő engedélezése + Időzítő engedélyezése s @@ -540,7 +540,7 @@ while doing a left or right click and move the mouse up or down Icon folders... - Icon folders... + Ikon mappák... @@ -991,79 +991,79 @@ Kérem másik elérési utat definiálni. Aluminium - Aluminium + Alumínium Brass - Brass + Sárgaréz Bronze - Bronze + Bronz Copper - Copper + Réz Chrome - Chrome + Króm Emerald - Emerald + Smaragd Gold - Gold + Arany Jade - Jade + Jadezöld Metalized - Metalized + Fémes Neon GNC - Neon GNC + Neon GNC Neon PHC - Neon PHC + Neon PHC Obsidian - Obsidian + Obszidián Pewter - Pewter + Ón Plaster - Plaster + Vakolat Plastic - Plastic + Műanyag Ruby - Ruby + Rubin Satin - Satin + Szatén Shiny plastic - Shiny plastic + Fényes műanyag Silver - Silver + Ezüst Steel @@ -1071,7 +1071,7 @@ Kérem másik elérési utat definiálni. Stone - Stone + @@ -1239,10 +1239,6 @@ Kérem másik elérési utat definiálni. Macro name: Makrónév: - - Macro destination: - Makró helye: - Execute Végrehajtás @@ -1265,15 +1261,15 @@ Kérem másik elérési utat definiálni. User macros - + Felhasználói makrók System macros - + Rendszer makrók User macros location: - + Felhasználói makrók helye: @@ -1317,7 +1313,7 @@ This file already exists. Read-only - + Csak olvasható @@ -1452,7 +1448,7 @@ Kérem válasszon másik könyvtárat. HTML files - HTML files + HTML fájlok @@ -1528,15 +1524,15 @@ Kérem válasszon másik könyvtárat. Clear user settings - Clear user settings + Törölje a felhasználói beállítások Do you want to clear all your user settings? - Do you want to clear all your user settings? + Szeretné törölni az összes felhasználói beállításait? If you agree all your settings will be cleared. - If you agree all your settings will be cleared. + Ha elfogadja az összes beállítása törlődni fog. @@ -1654,7 +1650,7 @@ Kérem válasszon másik könyvtárat. Project file - Project file + Projekt téma fájl @@ -1673,7 +1669,7 @@ Kérem válasszon másik könyvtárat. Please select an object from the list - Please select an object from the list + Kérem válasszon ki egy objektumot a listából @@ -1732,7 +1728,7 @@ Kérem válasszon másik könyvtárat. Python interpreter - Python interpreter + Python értelmező @@ -1806,11 +1802,11 @@ Kérem válasszon másik könyvtárat. Orthographic rendering - Függőleges vetület leképezés + Függőleges vetület leképezés Perspective rendering - Perspektivikus leképezés + Perspektivikus leképezés @@ -1880,6 +1876,14 @@ Kérem válasszon másik könyvtárat. MSAA 8x MSAA 8 x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -1889,11 +1893,11 @@ Kérem válasszon másik könyvtárat. Anti-aliasing - Anti-aliasing + Élsimítás Open a new viewer or restart %1 to apply anti-aliasing changes. - Open a new viewer or restart %1 to apply anti-aliasing changes. + Nyisson megy egy új megjelenítőt, vagy indítsa újra a %1, az élsimítás változtatások alkalmazásához. @@ -1904,7 +1908,7 @@ Kérem válasszon másik könyvtárat. &Gradient: - Színátmenet: + &Színátmenet red-yellow-green-cyan-blue @@ -2048,7 +2052,7 @@ Kérem válasszon másik könyvtárat. Allow duplicate object labels in one document - Engedélyezi, hogy egy dokumentumban duplikált objektumazonosítók legyenek + Engedélyezi, hogy egy dokumentumban duplikált objektumazonosítók legyenek Maximum Undo/Redo steps @@ -2060,23 +2064,23 @@ Kérem válasszon másik könyvtárat. Authoring and License - Authoring and License + Szerző és a licenc Author name - Author name + Szerző neve <html><head/><body><p>The name to use on document creation.</p><p>Keep blank for anonymous.</p><p>You can also use the form:</p><p>John Doe &lt;john@doe.com&gt;</p></body></html> - <html><head/><body><p>The name to use on document creation.</p><p>Keep blank for anonymous.</p><p>You can also use the form:</p><p>John Doe &lt;john@doe.com&gt;</p></body></html> + <html><head/><body><p>A dokumentum létrehozásakor használt név.</p><p>Hagyja üresen névtelenhez.</p><p>Használhatja az űrlapot:</p><p>John Doe &lt;john@doe.com&gt;</p></body></html> If this is checked, the "Last modified by" field will be set when saving the file - If this is checked, the "Last modified by" field will be set when saving the file + Ha ez be van jelölve, az "Utolsó módosított" mező értékét használja a fájl mentésekor Set on save - Set on save + Mentéskor beállítva Company @@ -2084,47 +2088,47 @@ Kérem válasszon másik könyvtárat. Default license - Default license + Alapértelmezett licenc The default license for new documents - The default license for new documents + Az új dokumentumok alapértelmezett licence All rights reserved - All rights reserved + Minden jog fenntartva CreativeCommons Attribution - CreativeCommons Attribution + CreativeCommons Attribution CreativeCommons Attribution-ShareAlike - CreativeCommons Attribution-ShareAlike + CreativeCommons Attribution-ShareAlike CreativeCommons Attribution-NoDerivatives - CreativeCommons Attribution-NoDerivatives + CreativeCommons Attribution-NoDerivatives CreativeCommons Attribution-NonCommercial - CreativeCommons Attribution-NonCommercial + CreativeCommons Attribution-NonCommercial CreativeCommons Attribution-NonCommercial-ShareAlike - CreativeCommons Attribution-NonCommercial-ShareAlike + CreativeCommons Attribution-NonCommercial-ShareAlike CreativeCommons Attribution-NonCommercial-NoDerivatives - CreativeCommons Attribution-NonCommercial-NoDerivatives + CreativeCommons Attribution-NonCommercial-NoDerivatives Public Domain - Public Domain + Nyilvános Domén FreeArt - FreeArt + FreeArt Other @@ -2136,19 +2140,19 @@ Kérem válasszon másik könyvtárat. An URL where the user can find more details about the license - An URL where the user can find more details about the license + Egy URL-cím, ahol a felhasználó megtalálja a licenc további részleteit The default company to use for new files - The default company to use for new files + Alapértelmezett vállalat az új fájlokhoz Run AutoRecovery at startup - Run AutoRecovery at startup + Automatikus helyreállítás futtatása indításkor Save AutoRecovery information every - Save AutoRecovery information every + Helyreállítási adatok mentése minden @@ -2468,7 +2472,7 @@ Kérem válasszon másik könyvtárat. Standard (mm/kg/s/degree) - Standard (mm/kg/s/fok) + Alapértelmezett (mm/kg/s/fok) MKS (m/kg/s/degree) @@ -2476,7 +2480,7 @@ Kérem válasszon másik könyvtárat. Magnitude - Méret + Terjedelem Unit @@ -2554,7 +2558,7 @@ Kérem válasszon másik könyvtárat. &Next Tip - Következő ta&nács + Következő tanács Alt+N @@ -2596,15 +2600,15 @@ Kérem válasszon másik könyvtárat. Gui::Dialog::DlgWorkbenches Workbenches - Workbenches + Munkafelületek Enabled workbenches - Enabled workbenches + Engedélyezett munkafelületek Disabled workbenches - Disabled workbenches + Kikapcsolt munkafelületek Move down @@ -2612,7 +2616,7 @@ Kérem válasszon másik könyvtárat. <html><head/><body><p><span style=" font-weight:600;">Move the selected item down.</span></p><p>The item will be moved down</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Move the selected item down.</span></p><p>The item will be moved down</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Kijelölt elem lejeb mozgatása.</span></p><p>Az elemet lejeb mozgatja</p></body></html> Move left @@ -2620,7 +2624,7 @@ Kérem válasszon másik könyvtárat. <html><head/><body><p><span style=" font-weight:600;">Remove the selected workbench from enabled workbenches</span></p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Remove the selected workbench from enabled workbenches</span></p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Kijelölt munkafelület eltávolítása az engedélyezett munkafelületek közül</span></p></body></html> Move right @@ -2628,15 +2632,15 @@ Kérem válasszon másik könyvtárat. <html><head/><body><p><span style=" font-weight:600;">Move the selected workbench to enabled workbenches.</span></p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Move the selected workbench to enabled workbenches.</span></p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Kijelölt munkafelület mozgatása az engedélyezett munkafelületekhez.</span></p></body></html> Sort enabled workbenches - Sort enabled workbenches + Engedélyezett munkafelületek rendezése <b>Sort enabled workbenches</p> - <b>Sort enabled workbenches</p> + <b>Engedélyezett munkafelületek rendezése</p> Move up @@ -2644,15 +2648,15 @@ Kérem válasszon másik könyvtárat. <html><head/><body><p><span style=" font-weight:600;">Move the selected item up.</span></p><p>The item will be moved up.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Move the selected item up.</span></p><p>The item will be moved up.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Kijelölt elem feljebb mozgatása.</span></p><p>Az elemet feljebb mozgatja</p></body></html> <html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Note:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> The changes become active the next time you start FreeCAD</span></p></body></html> - <html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Note:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> The changes become active the next time you start FreeCAD</span></p></body></html> + <html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Megjegyzés:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> A változások a FreeCAD következő indításánál válnak aktívvá</span></p></body></html> Add all to enabled workbenches - Add all to enabled workbenches + Összes hozzáadása az engedélyezett munkafelületekhez @@ -2666,47 +2670,47 @@ Kérem válasszon másik könyvtárat. Gui::Dialog::DocumentRecovery Document Recovery - Document Recovery + Dokumentum helyreállítás Press 'Start Recovery' to start the recovery process of the doument listed below. The 'Status' column shows whether the document could be recovered. - Press 'Start Recovery' to start the recovery process of the doument listed below. + Nyomja meg a 'Helyreállítás indítása' az alább listázott dokumentumok helyreállítási folyamatának elindításához. -The 'Status' column shows whether the document could be recovered. +Az 'Állapot' oszlop tájékoztatja a visszaállítás sikerességéről. Status of recovered documents: - Status of recovered documents: + Helyreállított dokumentumok állapota: Document Name - Document Name + Dokumentum neve Status - Status + Állapot Start Recovery - Start Recovery + Helyreállítás indítása Not yet recovered - Not yet recovered + Még nincs helyreállítva Unknown problem occurred - Unknown problem occurred + Ismeretlen hiba történt Failed to recover - Failed to recover + Nem sikerült helyreállítani Successfully recovered - Successfully recovered + Sikeresen helyreállítva Finish @@ -2850,26 +2854,26 @@ The 'Status' column shows whether the document could be recovered.Gui::Dialog::IconDialog Icon folders - Icon folders + Ikon mappák Add icon folder - Add icon folder + Ikon mappa hozzáadása Gui::Dialog::IconFolders Add or remove custom icon folders - Add or remove custom icon folders + Egyéni ikon mappák hozzáadása és eltávolítása Remove folder - Remove folder + Mappa eltávolítása Removing a folder only takes effect after an application restart. - Removing a folder only takes effect after an application restart. + Könyvtár mappa eltávolítása csak az alkalmazás újraindításával lép érvénybe. @@ -3115,15 +3119,15 @@ The 'Status' column shows whether the document could be recovered. Incorrect quantity - Incorrect quantity + Hibás mennyiség There are input fields with incorrect input, please ensure valid placement values! - There are input fields with incorrect input, please ensure valid placement values! + Helytelen beviteli mezők, ellenőrizze az értékek elhelyezkedését! Euler angles (XY'Z'') - Euler angles (XY'Z'') + Euler-szögek (XY'Z'') @@ -3199,7 +3203,7 @@ The 'Status' column shows whether the document could be recovered. No 3d view - Nem 3D nézet + Nincs 3D-s nézet No active 3d view found. @@ -3341,7 +3345,7 @@ The 'Status' column shows whether the document could be recovered. Plain Text Files - Plain Text Files + Egyszerű szöveges fájlok @@ -3363,23 +3367,23 @@ The 'Status' column shows whether the document could be recovered. Search - Search + Keresés Searches object labels - Searches object labels + Keresések tárgyának feliratai Clears the search field - Clears the search field + Törli a keresési mezőt Select only - Select only + Csak kiválasztás Selects only this object - Selects only this object + Csak azt a tárgyat jelöli ki Deselect @@ -3387,15 +3391,15 @@ The 'Status' column shows whether the document could be recovered. Deselects this object - Deselects this object + Ennek az objektum kijelölésének megszüntetése Zoom fit - Zoom fit + Nagyitás-illesztés Selects and fits this object in the 3D window - Selects and fits this object in the 3D window + Tárgy kiválasztása és illesztése a 3D ablakhoz Go to selection @@ -3403,15 +3407,15 @@ The 'Status' column shows whether the document could be recovered. Selects and locates this object in the tree view - Selects and locates this object in the tree view + Tárgy kiválasztása és foglalása a fa nézetben To python console - To python console + Python konzolhoz Reveals this object and its subelements in the python console. - Reveals this object and its subelements in the python console. + Megmutatja a tárgyat és annak al elemeit a python konzolban. @@ -3530,11 +3534,11 @@ El akarja menteni a változásokat? FreeCAD macro - FreeCAD macro + FreeCAD makró PDF file - PDF file + PDF-fájl @@ -3597,19 +3601,19 @@ El akarja menteni a változásokat? Gui::GestureNavigationStyle Tap. Or click left mouse button. - Tap. Or click left mouse button. + Érintse meg. Vagy kattintson a bal egérgombbal. Drag screen with two fingers. Or press right mouse button. - Drag screen with two fingers. Or press right mouse button. + Húzza a képernyőn két ujjal. Vagy nyomja meg az egér jobb oldali gombját. Drag the screen with one finger. Or press left mouse button. In Sketcher and other edit modes, hold Alt in addition. - Drag the screen with one finger. Or press left mouse button. In Sketcher and other edit modes, hold Alt in addition. + Húzza a képernyőn, egy ujjal. Vagy nyomja meg a bal egérgombot. Vázlatkészítőben és más szerkesztési módokban tartsa lenyomva az Alt billentyűt is ezen kívül. Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or PgUp/PgDown on keyboard. - Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or PgUp/PgDown on keyboard. + Csípje (helyezze két ujját a képernyőn, és húzza őket egymáshoz). Vagy görgesse a középső egér gombot. Vagy a billentyűzet PgUp/PgDown gombjával. @@ -3620,27 +3624,27 @@ El akarja menteni a változásokat? PNG format - PNG format + PNG formátum Bitmap format - Bitmap format + Bittérkép-formátum GIF format - GIF format + GIF formátum JPG format - JPG format + JPG formátum SVG format - SVG format + SVG formátum PDF format - PDF format + PDF formátum @@ -3677,7 +3681,7 @@ El akarja menteni a változásokat? Gui::LabelEditor List - List + Lista @@ -3734,11 +3738,11 @@ El akarja menteni a változásokat? Macro file doesn't exist - Macro file doesn't exist + Makró fájl nem létezik No such macro file: '%1' - No such macro file: '%1' + Nincs ilyen makró fájl: '%1' @@ -3774,15 +3778,15 @@ Do you want to copy them, too? There is a rendering issue on MacOS. - There is a rendering issue on MacOS. + MacOS fordítóval probléma van. See <a href="http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS"> the wiki</a> for more information - See <a href="http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS"> the wiki</a> for more information + See <a href="http://www.freecadweb.org/wiki/index.php?title=OpenGL_on_MacOS"> the wiki</a> további információért Don't show again - Don't show again + Ne mutassa többször @@ -3880,19 +3884,19 @@ a jobboldali nézetben %2 pont lett jelölve. Gui::MayaGestureNavigationStyle Tap. Or click left mouse button. - Tap. Or click left mouse button. + Érintse meg. Vagy kattintson a bal egérgombbal. Drag screen with two fingers. Or press ALT + middle mouse button. - Drag screen with two fingers. Or press ALT + middle mouse button. + Húzza a képernyőn két ujjal. Vagy nyomja meg az ALT + a középső egér gombot. Drag the screen with one finger. Or press ALT + left mouse button. In Sketcher and other edit modes, hold Alt in addition. - Drag the screen with one finger. Or press ALT + left mouse button. In Sketcher and other edit modes, hold Alt in addition. + Húzza a képernyőn, egy ujjal. Vagy nyomja meg az ALT + bal egérgombot. Vázlatkészítőben és más szerkesztési módokban tartsa lenyomva az Alt billentyűt is ezen felül. Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or press ALT + right mouse button. Or PgUp/PgDown on keyboard. - Pinch (put two fingers on the screen and drag them apart/to each other). Or scroll middle mouse button. Or press ALT + right mouse button. Or PgUp/PgDown on keyboard. + Csípjen (helyezze két ujját a képernyőn, és húzza őket egymáshoz). Vagy görgesse a középső egér gombot. Vagy nyomja meg az ALT + jobb egér gombot. Vagy a billentyűzet PgUp/PgDown gombjait használja. @@ -3911,11 +3915,11 @@ a jobboldali nézetben %2 pont lett jelölve. Press CTRL and middle mouse button - Press CTRL and middle mouse button + Nyomja meg a CTRL és a középső egér gombot Press CTRL and right mouse button - Press CTRL and right mouse button + Nyomja meg a CTRL és a jobb egérgombot Press CTRL and left mouse button @@ -3934,7 +3938,7 @@ a jobboldali nézetben %2 pont lett jelölve. Clear list - Clear list + Lista törlése @@ -4026,11 +4030,11 @@ Ki szeretne lépni az adatok mentése nélkül? &Copy command - Parancs &másolás + Parancs másolás &Copy history - Előzmények &másolás + Előzmények másolása Save history as... @@ -4074,11 +4078,11 @@ Ki szeretne lépni az adatok mentése nélkül? Macro Files - Macro Files + Makró Fájlok All Files - All Files + Minden Fájl @@ -4344,15 +4348,15 @@ Meg szeretne adni egy másik könyvtárat? PDF file - PDF file + PDF-fájl Opening file failed - Opening file failed + Fájl megnyitás sikertelen Can't open file '%1' for writing. - Can't open file '%1' for writing. + Nem lehet megnyitni a "%1" fájlt írásra. @@ -4460,7 +4464,7 @@ Meg szeretne adni egy másik könyvtárat? Input in line %1 is not a number - Input in line %1 is not a number + Az %1 tételsor nem szám @@ -4570,7 +4574,7 @@ Meg szeretne adni egy másik könyvtárat? Clear views - Tiszta nézet + Nézetek törlése Restore view &%1 @@ -4672,7 +4676,7 @@ Folytatni kívánja? The group '%1' already exists. - A csoport (%1) már létezik. + A csoport '%1' már létezik. Change value @@ -4684,7 +4688,7 @@ Folytatni kívánja? Saving aborted - Mentése megszakítva + Mentés megszakítva Unsaved document @@ -4743,7 +4747,7 @@ Nyisson meg egy böngészőt, és írja be: http://localhost:%1. Out of memory - Elfogyott a memória + Kevés a memória Not enough memory available to display the data. @@ -4825,7 +4829,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Move annotation - Lépés jegyzék + Lépés leírása Transform @@ -4837,23 +4841,23 @@ Legyen körültekintő, fontos melyik pontra kattint. Do you want to save your changes to document '%1' before closing? - Do you want to save your changes to document '%1' before closing? + Szeretné menteni a módosításait bezárás előtt az '%1' dokumentumba? If you don't save, your changes will be lost. - If you don't save, your changes will be lost. + Ha nem menti, a módosítások elvesznek. Save a copy of the document under new filename... - Save a copy of the document under new filename... + Menti új fájlnév alatt a dokumentum egy másolatát... Frozen views - Frozen views + Fagyasztott nézetek Saving document failed - Saving document failed + Dokumentum mentése sikertelen Document @@ -4861,11 +4865,11 @@ Legyen körültekintő, fontos melyik pontra kattint. Delete macro - Makró törlése + Makró törlése Not allowed to delete system-wide macros - + Nem szabad törölni a rendszer-területi makrókat @@ -4876,7 +4880,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Box selection - Box kiválasztás + Négyzet kiválasztás @@ -4891,7 +4895,7 @@ Legyen körültekintő, fontos melyik pontra kattint. About %1 - Névjegy %1 + Alkotó %1 @@ -5168,7 +5172,7 @@ Legyen körültekintő, fontos melyik pontra kattint. E&dit parameters ... - Paraméterek szerkesztése &d... + Paraméterek szerkesztése ... Opens a Dialog to edit the parameters @@ -5183,11 +5187,11 @@ Legyen körültekintő, fontos melyik pontra kattint. &Preferences ... - Beállítások &P... + Beállítások ... Opens a Dialog to edit the preferences - Párbeszédablak megnyitása a beállítások szerkesztéséhez + Megnyit egy párbeszédpanelt a beállítások szerkesztéséhez @@ -5202,7 +5206,7 @@ Legyen körültekintő, fontos melyik pontra kattint. List of available dock panels - List of available dock panels + Elérhető csatoló panelek listája @@ -5224,7 +5228,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Duplicate selection - Másolat létrehozása a kijelölésről + Többszörös kijelölés Put duplicates of the selected objects to the active document @@ -5296,7 +5300,7 @@ Legyen körültekintő, fontos melyik pontra kattint. &Recompute - Új&raszámítás + Újraszámítás Recompute feature or document @@ -5571,7 +5575,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Cannot merge project with itself. - Nem tudja egyesíteni önmagával a projektet. + Nem tudja egyesíteni önmagával a projekt témát. @@ -5616,7 +5620,7 @@ Legyen körültekintő, fontos melyik pontra kattint. The website where the help is maintained - A honlap, ahol a súgót tartják + A honlap, ahol a súgót tárolják @@ -5643,11 +5647,11 @@ Legyen körültekintő, fontos melyik pontra kattint. Cannot open file - Cannot open file + Fájl nem nyitható meg Loading the file %1 is not supported - Loading the file %1 is not supported + A %1 fájl betöltése nem támogatott @@ -5823,7 +5827,7 @@ Legyen körültekintő, fontos melyik pontra kattint. &Redo - Új&ra,ismét + Ismét Redoes a previously undone action @@ -5838,7 +5842,7 @@ Legyen körültekintő, fontos melyik pontra kattint. &Refresh - F&rissítés + Frissítés Recomputes the current active document @@ -5853,11 +5857,11 @@ Legyen körültekintő, fontos melyik pontra kattint. Revert - Revert + Visszaállítás Reverts to the saved version of this file - Reverts to the saved version of this file + Visszatérés a fájl mentett változatára @@ -5868,7 +5872,7 @@ Legyen körültekintő, fontos melyik pontra kattint. &Save - Menté&s + Mentés Save the active document @@ -5898,11 +5902,11 @@ Legyen körültekintő, fontos melyik pontra kattint. Save a &Copy... - Save a &Copy... + Mentés & Másolás... Save a copy of the active document under a new file name - Save a copy of the active document under a new file name + Az aktív dokumentum másolatának mentése egy új fájl alatt @@ -5928,7 +5932,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Select &All - Összes kijelölése &A + Összes kijelölése Select all @@ -6059,11 +6063,11 @@ Legyen körültekintő, fontos melyik pontra kattint. Toggle navigation/Edit mode - Váltás a navigációs/szerkesztési mód között + Váltás a navigációs/szerkesztési mód közt Toggle between navigation and edit mode - Váltás a navigációs és szerkesztési mód között + Váltás a navigációs és szerkesztési mód közt @@ -6228,7 +6232,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Set to axonometric view - Set to axonometric view + Axonometric nézetre váltás @@ -6254,7 +6258,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Create new view - Új nézet + Új nézet létrehozása Creates a new view window for the active document @@ -6269,7 +6273,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Inventor example #1 - Inventor példa #1 + Létrehozott példa #1 Shows a 3D texture with manipulator @@ -6284,7 +6288,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Inventor example #2 - Feltaláló példa #2 + Létrehozott példa #2 Shows spheres and drag-lights @@ -6299,7 +6303,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Inventor example #3 - Feltaláló példa #3 + Létrehozott példa #3 Shows a animated texture @@ -6419,11 +6423,11 @@ Legyen körültekintő, fontos melyik pontra kattint. Stereo quad buffer - Stereo quad buffer + Sztereo négyszeres tároló Switch stereo viewing to quad buffer - Sztereó nézet váltása: quad buffer + Sztereó nézet váltása: négyszeres tároló @@ -6434,11 +6438,11 @@ Legyen körültekintő, fontos melyik pontra kattint. Stereo red/cyan - Stereo red/cyan + Sztereó piros/cián Switch stereo viewing to red/cyan - Switch stereo viewing to red/cyan + Piros/cián sztereó nézetre váltás @@ -6453,7 +6457,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Set to left view - Bal oldali nézet beállítása + Bal oldali nézetre váltás @@ -6468,7 +6472,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Set to rear view - Hátulnézet beállítása + Hátulnézetre váltás @@ -6483,7 +6487,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Set to right view - Jobb oldali nézet beállítása + Jobb oldali nézetre váltás @@ -6528,7 +6532,7 @@ Legyen körültekintő, fontos melyik pontra kattint. Set to top view - Felülnézet beállítása + Felülnézetre váltás @@ -6539,11 +6543,11 @@ Legyen körültekintő, fontos melyik pontra kattint. FreeCAD-VR - FreeCAD-VR + FreeCAD-VR Extend the FreeCAD 3D Window to a Oculus Rift - Extend the FreeCAD 3D Window to a Oculus Rift + A FreeCAD 3D ablak kiterjesztése Oculus Rift ablakra @@ -6554,7 +6558,7 @@ Legyen körültekintő, fontos melyik pontra kattint. &What's This? - Mi ez &W? + Mi ez? What's This @@ -6569,7 +6573,7 @@ Legyen körültekintő, fontos melyik pontra kattint. &Windows... - Ablakok + Ablakok... Windows list @@ -6794,11 +6798,11 @@ Do you want to specify its installation path if it's already installed?Std_Revert This will discard all the changes since last file save. - This will discard all the changes since last file save. + Ez elveti az utolsó fájl mentéstől létrehozott összes módosítást. Are you sure? - Are you sure? + Biztos benne? diff --git a/src/Gui/Language/FreeCAD_it.qm b/src/Gui/Language/FreeCAD_it.qm index 705ac9d80a45127ace91a99d1833fb9a9305e0af..10f49c763f565ce3732dee99dcbdde6728e79f4b 100644 GIT binary patch delta 12040 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 E58cNovj6}9 delta 11801 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 Macro name: Nome macro: - - Macro destination: - Percorso Macro: - Execute Esegui @@ -1265,15 +1261,15 @@ Definire un'altra scorciatoia. User macros - + Macro utente System macros - + Macro di sistema User macros location: - + Posizione delle macro utente: @@ -1318,7 +1314,7 @@ Il file esiste già. Read-only - + Sola lettura @@ -1807,11 +1803,11 @@ Specificare un'altra cartella. Orthographic rendering - Render ortografico + Render ortografico Perspective rendering - Render prospettico + Render prospettico @@ -1881,6 +1877,14 @@ Specificare un'altra cartella. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4818,7 +4822,7 @@ Prestare attenzione al punto dove si fa clic. Navigation styles - Stili di navigazione + Stile di navigazione %1 navigation @@ -4862,11 +4866,11 @@ Prestare attenzione al punto dove si fa clic. Delete macro - Cancella macro + Cancella macro Not allowed to delete system-wide macros - + Non è consentito eliminare le macro di sistema diff --git a/src/Gui/Language/FreeCAD_ja.qm b/src/Gui/Language/FreeCAD_ja.qm index e6c3fd375cebb69f6c68fad4d2125b25c0981085..2594b2dbf12f2089b7789221278d2f6b997cdcd1 100644 GIT binary patch delta 12011 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 bVZjl>mQzg2Zy6aH6#RE->6hbK|M>q0)LC_~ delta 11734 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 Macro name: マクロ名: - - Macro destination: - マクロのコピー先: - Execute 実行 @@ -1266,15 +1262,15 @@ Please define another shortcut. User macros - + ユーザーマクロ System macros - + システムマクロ User macros location: - + ユーザーマクロの場所: @@ -1318,7 +1314,7 @@ This file already exists. Read-only - + 読み取り専用 @@ -1806,11 +1802,11 @@ Specify another directory, please. Orthographic rendering - 正射投影レンダリング + 正射投影レンダリング Perspective rendering - 透視投影レンダリング + 透視投影レンダリング @@ -1880,6 +1876,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4856,11 +4860,11 @@ Be aware the point where you click matters. Delete macro - マクロの削除 + マクロの削除 Not allowed to delete system-wide macros - + システム全体のマクロを削除することはできません diff --git a/src/Gui/Language/FreeCAD_nl.qm b/src/Gui/Language/FreeCAD_nl.qm index 1fa04b7256702ab5d15765f591d6941c05a12bdc..a14dd77835b11bfc8f8fb00a04131621970c81ec 100644 GIT binary patch delta 12993 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 delta 12609 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 Yy?!qLV`D7>Mux}QjL#`Z Macro name: Macro-naam: - - Macro destination: - Macro-bestemming: - Execute Uitvoeren @@ -1264,15 +1260,15 @@ Gelieve een andere snelkoppeling te kiezen. User macros - + Gebruikers macro's System macros - + Systeem macro's User macros location: - + Locatie gebruikers macro's: @@ -1316,7 +1312,7 @@ This file already exists. Read-only - + Enkel lezen @@ -1804,11 +1800,11 @@ Kies een andere map, alstublieft. Orthographic rendering - Orthogonale projectie + Orthogonale projectie Perspective rendering - Perspectiefreproductie + Perspectiefreproductie @@ -1878,6 +1874,14 @@ Kies een andere map, alstublieft. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -2703,7 +2707,7 @@ De kolom 'Status' toont als het document kan hersteld worden. Successfully recovered - Successfully recovered + Met success teruggehaald Finish @@ -3611,31 +3615,31 @@ Wilt u uw wijzigingen opslaan? Gui::GraphvizView Export graph - Export graph + Export grafiek PNG format - PNG format + PNG formaat Bitmap format - Bitmap format + Bitmap formaat GIF format - GIF format + GIF formaat JPG format - JPG format + JPG formaat SVG format - SVG format + SVG formaat PDF format - PDF format + PDF formaat @@ -3760,7 +3764,7 @@ Wilt u uw wijzigingen opslaan? Object dependencies - Object dependencies + Object afhankelijkheden The selected objects have a dependency to unselected objects. @@ -4067,7 +4071,7 @@ Do you want to exit without saving your data? Macro Files - Macro Files + Macro Bestanden All Files @@ -4853,11 +4857,11 @@ Let op, het maakt uit waar je klikt. Delete macro - Verwijder macro + Verwijder macro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros @@ -5845,11 +5849,11 @@ Let op, het maakt uit waar je klikt. Revert - Revert + Ongedaan maken Reverts to the saved version of this file - Reverts to the saved version of this file + Keer terug naar de bewaarde versie van dit bestand @@ -5890,11 +5894,11 @@ Let op, het maakt uit waar je klikt. Save a &Copy... - Save a &Copy... + &Duplicaat opslagen... Save a copy of the active document under a new file name - Save a copy of the active document under a new file name + Bewaar een duplikaat van het aktieve document onder een nieuwe naam @@ -6691,7 +6695,7 @@ Let op, het maakt uit waar je klikt. Std_Delete Object dependencies - Object dependencies + Object afhankelijkheden This object is referenced by other objects and thus these objects might get broken. @@ -6740,20 +6744,20 @@ Are you sure to continue? Points mode - Points mode + Punten modus Std_DuplicateSelection Object dependencies - Object dependencies + Object afhankelijkheden The selected objects have a dependency to unselected objects. Do you want to duplicate them, too? - The selected objects have a dependency to unselected objects. -Do you want to duplicate them, too? + De geselecteerde objecten hebben een afhankelijkheid van niet-geselecteerde objecten. +Wilt u deze ook dupliceren? @@ -6788,11 +6792,11 @@ Do you want to specify its installation path if it's already installed?Std_Revert This will discard all the changes since last file save. - This will discard all the changes since last file save. + Dit zal alle wijzigingen annuleren sinds de laatste keer dat het bestand werd bewaard. Are you sure? - Are you sure? + Bent u zeker? diff --git a/src/Gui/Language/FreeCAD_no.qm b/src/Gui/Language/FreeCAD_no.qm index df3305f8ca673a22ec0cb1f10a058377b7ffeaa1..ad449caf261bb10ac0e1be0cca4c486f6f8305a9 100644 GIT binary patch delta 12109 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 delta 11798 zcmXY%d0Y+O8^@nBcV_OLyAmRiq)ieMSyFtHB}rfVnypZhEjwLHS(BxtLfO}B-;gar zp^ym4UiN({B-`)Po!=k5-p$ONnRCvwKWF~_l@|PxR@Y?5*VOViPHIm?jA+(=nR6%0 zTnaqpTWL|0} z^JSy|bEnMDGplGM_C4i_K&{`6jb8Q0DVt zGGE=7`35hpy8lg@%(qKre(VIc!iA5Ql=r z!56kfz55aWt~r!2SLUjzCbDUQ%;{HUCXbSNxZD3(A~XMu%$;7EZmo!Bx|_)A zfqvzj6nC)zt9zG;YSw>{lg#^r%Yj}c$4M{}(bR_H>f%7>s$8R7Z ztsI(Kn}n=jJim~H93Glg{ECF@mxwGknaDy@WoDPle6&R7Z#NS;<#w6sZ!&eyWID~1 z>6J)A#a>vZJ1MIMtTva~>KrN4wiD<7hqRf|#5FojwcnQ;VRnD1UeZfQ{xLPOQsaij z)F`qiQLL7np!+QJIyphrIgcIW1P$Rl?vhg>T+Aj7IaNut>tz$U4hm|r;vlilovBG; z4zcpK)Z`Ep=g$yol6{akjUzR|L^)40a@MXQO5w@b+&By;rjm1K_yK7lIj>$s^kF77 z4e%y5^((n}2Qxp( zQP+fcVgcX5Y@%BKQrE}uT_1JSt#t_oFdKXZo&sNhzrfE#E^%NP(R3G?Pga57Fyo%! z4=@4zL-Zt{jNRPfIbCj(i7Agk1yQrwGP66#EWr!iA(~W2>gI0;w{*-zHkYW|00nU^ zi>TX-w!~`8pl+W+iPij0-5oX%){JN=*AWj?4Y^Pz>zzw&j?GmrWXK25A)EcKlSGyZQT^&5PFSiOnVfB8wGf9B^> z{{!cVjzv)aJdAK#a~hyOO?2fm4a_(}%x@bF%tb`0?MMT!BoP}lfd>9AC(dRi4H{L6 z^ONFssO*h4S{l3wv1@^m2Jge|u)M*?V14~p(%>veY^xm&zPE^IfSQJkX-RC(1(_#u zWoEvSdH#ybY$o$+N12aL$$Vd5W`()TKMhPYa@rd-G$5Vmo+AxikU^Z?Ga9<+D3Xi` zCbCcm8rGvq5?5*1ryWE$+-O8M__3|KC{&FFp(vWbfro5pQa2xB`K~lo?MdwPe>B$% zku^4$=Ff*Jtumw78J5uP>$IT)2}R;_+S08EZsfsP+Qu~_wjrFhPlr+2FQh%&qo9)q z=~OOMMlpoWZe2sntsz~gGP-+(l&5qd*20wvIztk6#dNbC2EgXft$X3bJa^IE&lliG zlj&p80b)x>Qdxx=QL+VnTU?!3+%Wnc2BWS2ntnVm1|dRjp`X>C6HCZv+=Z9K89Fjv zJ(^f{2d3nLiA79gwcG~~Evsa;_rPyOSTKv7ABf%1vj&NMh)rnA8U}~pfh}0WvwexW zI5N9WPDG&xnM247Vl!Sb$4ifh40Tzvv=c;Mzp<9l+wq)9tgW$7LG;;*b$o#l?LW*q zr}z_j%wkJkM<$P6990&*aNi%Z!M4MfoE5gYmO0MXN3EVw*{xE6z0=s?4R2eW&X5LM1G_W0!oBxup>iQ6q=R|d0};kRJ}dyVY#y?@|F zezPybAgie}ScTS_SjtECr%!h%*;|e;o=EIm3r^#bPwaxgY1a-$DmRKVWMw0*%iwDL zhIRPv;p)1QN4ZQIp!#|^Z2xt>uI4d27Ly{JL# z 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 Macro name: Makronavn: - - Macro destination: - Makrodestinasjon: - Execute Kjør @@ -1264,15 +1260,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1317,7 +1313,7 @@ Denne filen finnes allerede. Read-only - + Read-only @@ -1805,11 +1801,11 @@ Vennligst angi en annen mappe. Orthographic rendering - Ortografisk presentasjonsgjengivelse + Ortografisk presentasjonsgjengivelse Perspective rendering - Perspektiv presentasjonsgjengivelse + Perspektiv presentasjonsgjengivelse @@ -1879,6 +1875,14 @@ Vennligst angi en annen mappe. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4857,11 +4861,11 @@ Vær oppmerksom på at punktet hvor du klikker betyr noe. Delete macro - Slett makro + Slett makro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_pl.qm b/src/Gui/Language/FreeCAD_pl.qm index fc4b9d145d0f02380ce7cca02a5c9e8682f236b7..445fce37cc923efdc5e19498aa0b564c4926ae2e 100644 GIT binary patch delta 12103 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�=iqwdrHPi~XtW>?w zW64UhR4*fAQJ_+?s_Z))j8`{aFwd|LFI>(*VsVn!p3EkCbf4Gnz<_#B<}0K_#J$pZ z%OprBw=3_ka5NIC6?{Yc$Hew6<{Nd3BsN&XHyMR8qRT|ytr}c=qfEZ}9VlC}H{ZGy zs@v4peA})y;ka`7c706vr^gY#-LGcIDOd5`kM}`bw&r^u_9bfjjvw+6iO8o?K4jWT zEJag=U1lo$Uc`s|EF)^TkTum3^Ts!kot#XOFe&QDtE=58!g&`II9HIF4)?y9iJliwC`4mafTJC1Bc7XDM= zLK{BK8ONPFD;(91-xINyXmc9BFADy__MSq=+5Dj`2a#cg@`qBxiJkn!ALHP{+u57= z`!=VyzzVZ@%G0ZsYmSH}?>;7^*OBIA5{^H=M4+|A<~hG;t9B>--|(EPn81 zeWNkZxdN;2i|)xnf%O?j6rmNk>L|)L_7ub(JZj*rf;RpGv1U8X%dv3y@mRPw9D}+JY@fx;U z7<3PArB;eC*dm`er^CYV=}?KAdSTSJG-7+F3uAnmBKLhEgk<8n6|>A_O>YPxZ}6PH zYlMmQe33RRvJpaeqOVuyr4U+zm8f4NOy2MqiH?&nIoF-Y;-wJY?;wmyEkpuDr{MS^YJHzE|l9}IMV?tj+(x z+d;Uw-Ii*6rOe;P3)Yb!YnI==f5kwFh}9VfeJ76GLtj5RM`5j!Zw$M z!hbQ)PY%K>?En;1i-dPAIY_`(c$Z&7T=jh6+m+2IpcV_?i<8h#-6NV*R;k3<^b}S8 zSmPikk-w2m?Ab(7m%tNe+$I`2UzH=c?tRhx=mrJzE zSFF+>4WyAL#i}=4u;xF-8jmg$-Peg08r+HJ&c|N5CC~7mIyPPC@b;E)H}=*uVNk9QdFX zvEenuAwv!kotY~R^+)jZxFrr94`pn9L>$o;MRJx&9I?C}lJOy85CW@WJ`yNGYX9G z^cTcgqKatHPBU5KmSVI&@|TKQaq&e&dGU!DV+p%|-in~#cZue!-RtZm(5bxZ3z@QioWUAlS@`;evXIs(j|sqQ)w zp=i)ib=Q4EP;gyS_qYcMG|5)?8gipEu~$dc0oIR+e)m!LE%YOH$WJ}Uwv^ba5cS~V zf3Xxr>XF_k1uOfjgRi3vux^}sd^0S~7`1x*BS_|MNA>t;zQkUBREM-*PORolg?nzq z_OP@th1W)A5K^d~YKvv8ov4oZi$eU3vwFraSdhPs!muIgIo%duS@tRXd0Rc_xEoQI zItsrpQ=3X05gt~l=NSqSAJ3?x^X8+8vqT+p3a0K~*-W;SQ!l?VnrN7hdQG4$I;J~J z>UCO7#wl98?iCdFUI+EY3E}9K{56wV+o`uaf>%u%uinmM8TXc|cMShP^truykJC>y znRC_q?XWtHR;mw%tc5{js}D5~BZ`SspALi%>NG@sb?H>1o!!;f3a7z|2CEx4mi#Qop?e{aTi2CcEdM{`l$?ykN1JEODCpdr1Ilq5$=e!Xd;p&Qbqt0;$eC ztNxo_0x$VP{kH%E{&iQwf6qelWvvnBhruaYC|u2JG?{ClpOU8P1Q<|1D^0yih&Nf+ zG)>A4$7C6+aeG$*&6ZV~=1-%D?DlF}#ngnN-qg5f~+g^Hp?v(Do&vF7778~RQq zuHp^N?m~&E;b%?SQlCLkj_~q-(3{)pVMN?-@#!iToJFht`fi00?Fe5l@DiTy^VaO|L@^2TuZC`lL; z3ElURgz$sJTwNrs3pAv;LDE-rCpJ1+syG%Y&xSOq(ohYO(fLxPlXr+#B}Ic%!7?3+xEAJZnu$aKd&Szm?PEiw-}K>SaKK*own;N zIkxgdG>DfP4uy)otRXeyE5TC;QnSumh;9s#nmg6SmegIT`4U{W(^YCYE)iAmC8_1N zTX5<}rB<>Ra;QyjbhVLIn7Tp4+g?kn>KXCEQiW6PrPw3$;Z7P!YaZ0c?%hl& zt_O4^Fvd)-b47(-u~Ne7K$PhP(xzRQXi}@>^{#|~bN;)@S1-7m{q^z^QQAm_Y*=g_&RuiP`yS-62+?6gO zvtY4zq>Im?tlMfyR}NRkPR=kXcOU%Y@&hI*um4Eox9QT8YGuSZ?2z6x%|*_%NO~9F z8kv6$>D|WOXt{2dN`FAK%ce>{`fo?3F-7__Jc$?=FSFOMn&hgo<{2cE@m-c;ZxB;Q z%5sqbJ>Jf;9^s7U+?Vx}KN3X_k}I}4Ms($#Y~wSIXs#(;w#hq1oZV2_&K+y}&Rurk zj}rTMPIfG>EGAu+opgJ!aj;c(9+ruZ5n9SF9Rslc*ivqM2ohOdAUCyu4m7PPw;8n& zn{Wf`xV*8XoaQl?JxH(MiO>@ zMC{cY={t~+1W%BoM#78r z=_)VSV@t6=>)Mzq4v?3goQW<_pu8NJGP}A%UX`^1NlJ5h{pu8AV;{+J-8K?cogl~0 zhZ;4RC2wRu6kK0N-ukRR(b7Y5nsYQhYj`W~b;qjLjg!+0Z^H#Y zl=nLap+O%mXH>)(GbYFx`Pt}3x9%+;UIdqP=AC?aSvHY(Tlqu`2FZIX45)4E^+WLT9cL!nP%2+Pahq6! zp>p2BB-GKi^3AjGxlM}YM|&P4t#jHcKi&js?zWK&9h)GkU6o(w-+^zuEx*ZC!NT9l zZ=F%_7QB_;S$h&!KS2HxikU62lS>{$EprOxKffK(5g4cCyd%-;sHWwDkqmY1pjF4h z#jSj#l{O&3Pa<_VQI?M+>#~@3A!JyK9}2P|UQdt!)yAC2LbNIkbfRL~6%Y z$AJC~(2hT}lDOd$wNon>p;Nd(J8ex@_+WRf$^6g8quQlbhz=>dcDV{(eaQfYG5fUZ z?z$739H)&dn1t;qm6_~%eeH&2FyNd`+63zFr4EReW9(P&d1>L9TO+LYg*`*1Tk z&2H_^ZjjjP&I-Sd*6zBr35|b0lXj1PE25D%w0p8sapMf_-o6`%1sv1vo7oygN}@JB zv>|qf=4#U?`yzVO)Mku97;3Oid$@Z?^c=jjnX}Hr*}7_vj#d%ZaH#fpJ_2{%YVDbG zhzhzB+Dl~^*yCtzUIDcJ^m=VUGeS4WqKRNW|1)y-pvJ1mDtKSNR#Vba7jq z_49*BLOAF{8b6ID18sY2B9i4r1^b+3s>FmGOLwVOz=V*(9*QSB4 zO$J`rV4Inoext7KV)&qd(Yg*bmSZPzqps5n=)nEkI`6f8kdkzc)^#s;!ilwXesL&P zLhW_E7ji^3dg=nAo}6EnEswU0SMJ+#Uh;pK7{g{hAWz+(x&0GTJgTLv?G~*F?%W@dEDzOfbmd{zg}S6GaP~gIx@~*$`_nhNoir20P=DRNksnZ}e%77XX>!Njg-Mr_ zAfRDhO_#ITfSIT1avsBM`YhI6o(H8%Z=$=lpbX(>yzctL6?owtUEcOA;%Y3^<-f>O;i8biWoo#}>jD-LLO!@g+b9U72mUBwY2vgptIqSn9cUj)2-MZr@8-02-3)45Y7{mj;gT8|g#7y3LVs_dm-Qr?_s8m(UzcMFMkU487}So9W( z^c$ZuVw;ESQzw>T(`Ao7H8F>{YMJ`&9*|6h1Nz;inBlx!eR?1GjjbK^``d*P`%^`K ztbRWx$2+pbVCBZPhaQ4I~p$q&!2L2$DHUHNJzB~yu*~~Sl^Kiqkc!Q?vNW_47hDu!u zu~u=0s)k^qL&ptOorVzmJ=I{5fg9VD8Eo&sh3)V%*xf-NiM$LA^1cz*V3EOLksooL z#~NDpGNGY$+0e#&8a__*GqmHg;JWu2+AqL;KLZWkg*S=jN@kj9cQb>}u_~y~pBa2E z7h!8+p`phlh^}$I!T;55tWlVur#(bFr=OvBt$Z}LUK{!%Sg|?zhCmYrdVRK`p9PXM zse@sNB_wh8wqZ;gxZoKz3=@Z72~~-PNyBmcO=p;TZz@q{Q$u7a68L|f8Wu$C!){P( z(GdR-qEjs~B>3c_!(XJ(`(MN6yuJ7q>#t$Q>{9f}T@5=DBZ*oS8+KQNdH%X$NI!#t zJ{e#*^kgDj@LNOXjDwKOR>SE>_u<=n8gAySA$EI-;YBZGg98^Cie2GPX4Evi>0g4< zXM^F*!DjGqLIuOe=2`fT#c23+1PMshiH6T%U=+CZ0Tj=sE%vU<&89sD!@E4_ZY`zLG?1@jpK)43-#`3 z-#1M)&T}7)bb5qwNjy}oN18E)9N?Bdl@lx1E7Z8c0=hYFuyJ+W*+gp>8WR^UKv#E* zF}c(VMl{rz8eJEkOzbjl-4=;<)pFyGl6%m>gT|dVFw-%ojcLB&$a5|j5A--i)N+|I zquLCjrzebuy_;fl>ag*ICsajaFrGm4=Im{ar=MZK*C!b-t}}%p%>OiAo;(gkq^&XU z9$wJlp2C%#j0Juhu;Dk?c&9E__WTaxqbpeH9>0yRCfcH*=4E{Qco$O2D#j8g-)rGJM6YkgAF>~o=DzWd7mj@^8~=v7BLf_1{HsMR$2l|}i?r%i z#!Z)@qhmL&3us)EdeaOFqi_nQ31p4G;WUz_&?E{&KLE;&KYi~RVd23OtS1Z~Ic3uN zjx7;7*H(6_MtyK!Fs}W-@6z@O3!d`--_zOg|Go!L2*Ddi;@#mi7XMA8*8lVNs{i|( zFzb*>BV$9?IcI!YXTjT5qF#9aa0;S^=6gbD#{b+U^$H#y)Nsx#ygF&$-J^MxsGOMj@+^l%zuTreq|9>@F&sFA60x%FZl%Wn_dz zh>R%fXH)k2y}QRBygK*ZbIx;~=QG})&vPDbl3%Qsmsep&R#XizMQ$M?Ml`d(Len&b zOMvpv6N(gWysz--Wiy#WPtcAi@)77sOlS-CA=aZc*cTiD_5)WCaTAGZ4+iHDOa4W~ z8;CUSpdYO$wls+khyIjJ8sBeJBh#4Xk)@!LS7*{U;Jh2y;gYWSO<*YYa zVX%wBL_CU6i0|(ztoK-9@BoF0>xjfpq+*)I@w1p!y>M5eCK%d^Y%|&72qM?9#8zD+ zasyXSi9gA#Ocq&0{f7|Od=k+}+)@f9Zp1sHxNPDQFyxB`#I4CEx>S|8o#%;NT25T% zMPlzSld45qT&|QB1LY)xHKO~L1D{75yk{PQAGT?K1j zB7W;MGLdGz`484AlKAbLh()Q1Kh6`4m}w>pc&{+hM&V*7g=ae}yfpM5|NZXrG37Wv zTH&n~3P0ER$F&Oo2A9)B9M-q|hMd?(VYOI=7CRNzXhVFS9kBvmg@sKOK0l@K-6w?~ zhAAxVukg!3gEkjVf-jF*_?_B=WbTGt%|}^cNCtUqwoQq7w5Bwg2G4P z3ZGP0Sp4rgAF`F>k6vchWWTJ;e{k-&(3fV!oH>Q9U&nj%_NK=FBcX8@qD8~NG-BPh zk>J~mX!>n4ne7b{{L64!TM~MC6RkZ(!iZDE8jeut{hox#g+z4{Nmx9WxF#n_NKPW^ zJ%fZ@Lx`*^D~ymxNH2q>+L4eIN;G3K3E4a>>#++7*Dn&)Dl(HrwN!XBNa35oW^&qf z3acrfbC!3Mhb~0?h0GSIAJr{M0bTt{vk)$K8qSlj^&oubp|<>FL2j%a?B4S+7v^MzU8eN-<*fg6Oo1OAMa!tBNbh#P1)h~DE zTIA+j?zHu&nfdqvH8UT_Qwy^*A0hYh&(}<(Rvj&fZFQtJ<=-<#o~H4Ohz3n1&wG!E zQ#+Bjoej~dL*#u2PkynOd{!qA>purPPgJcx`4sVRh1%rX{0RmS1wI82gU`Wl;76iH zAHh5rLg{u}b`ts<_Y9r;daNv!5>^8GNHSnZb7xqdRy6&vcjAeE^5C-QT`40hRP zCTmnh;ilRq@@u{dUKyg$%2i?LAu}1-Dy+R%p-m$BCk-Rks2BO?s#ILn%P z_B%(+PD{NO9V6-xYouO#&JvxFsaFn0xG$1=8%_}2ct(8=A0^i7HTAiSj8bPR^|_Kn zETjeX`CUd_)1}mR*bjVuAbyL+-sE_R`mLW%6nlgE?ZWAOZd1QQ@V>q^sb3aWZ0j!S zR~UoiwbXxvE3x^z6kgn-@X85=d0q-{^i_CokHWY675$3- z3XS*mCU*ZkO_V)|<;2oVPh{4W{b}}Wm{NQNS~jI7R=P7Ke{&;Rcb_)-79fn2*ib6h zh}ib#lokc2s{e*|q{YG}-_r5RFd3~Uo!-2HSli=tuH5OK)TbP^3$a%FD6b<{qJ9&) zSqlS@yy#Y81To(xbob*q%%qOq7wjRHuz^ayRU%5MO<(3!B(~uzeGPv^%zhPpe_#qh zhFnZPD?THZx{-0`UJz#$%XoP>u^UND&4m)19mA?32-4ClX0f9&QB*3k-1?5#qwTCt zVh>_d3s~LIQ811BtnO*(9baE&_rZ~9EMxUYO(7O@fHk-X*&$Uq$rIowa+85gmKWI;I2=d3ZA)%Nj&s7Zir?VL{ngf~%3NzZOf-y(1g?eh<;B z3>I3JLR|YfZ1i-bp!Pa8#;q#RmRW2}7ue9=1UAn3D^c-(Y<$x=V)cz|d`}mm)}vWu z=|rOA5zI8vR7B+1jYWB%A{w`dP1y#ebhZ|oS`oIrt^=F(wka|7VisFFg(%vAZCsZ? zq-)2{_k_^~6r0Hwq_K-f5hiBrV|mYS5oNbvcdfS(;~%lYA1=i5Yq6piP+iSb?6KP| zVs{JKi-_Csfie^OSl9s(T+KcW#9Emqvu`?UV(BXOr$=WvRTGZCH;&kKJ*RcaC6+gb z)2-}BG&++rW}PRl`6jOFZ+M6Qb*_fnA7Wf%u8tROWc;nL;!-nNP!)v}d=xIt;u;sf zBR0@~k*HVpJT_!DXDgJ*4QhJ)Fm212O+#g%MVqPjM=-r=Pjb z8N-Nk8O{ZzPlWNUbCA=fWK(mH3o#Q_mD46*SeEO5y`$iy6HI>UipydKIT*fN6+nL2& zW(?eMb_*^u|2A>04|9hWZ6P+Lo5Hg9+~FiV`8E&kh-wHixe0d!@sJvA=Z@AHMD%Vn zckI(K_`f!jJN6aE^|TUq91)2N$mCAgMiV>Sh|BKcK`j0mmt&79eHzB)_C(5XTg~Mb zaK!WvxO=){7+n>vFb>)IR0W0S1}nV$TH(#>3QIy2KHaMDSsrMzAWqZR`~fFTR4A`k zXxOOGxL0AtCJHMRE3C3gp%wR!MGCF|U9au}<+$E0g*KlR+G!NpH{}XV7&%wJn(~3e zzZ*ErQ;wbRgYxg4Z!2`sDr}Uhu*n34P1`GUt*y|lqrzr$6gGEI*y5eS)*%YpY~)Pl z8??QweBilRVY?R!+c*EmV_e~L#08G$irSAPu1gqKw7)m8|9#`0ER7&mT*eib>!Pap zT=64RMb&H+?tjd^yjhv(?ji1j*FoaieBwU7jfO3`ab+_QVM{ViT-jb+VCrP<`x!eF znJVtrefaZ#Q&ij#SikUI#aH-2)a{9xY*BTUIQJaUvhON&_zR*MV^r#F528;-RfShD z;uguO8lxHz-E5$$wGSb<+ZWCX0lt}5q|u(k1)s)p77AZh!nnwZNw(>PU=^7?I6 ziptH)g;)cv%F8STeN|rF)x;S}Rle^(5vx*5)x|6geN;hp@u-8Ys(P4z_enMIF^sR# zE7jop@1Rx3sD{lz95~orH7o-UG;h6X;>Znrv$G=6nP(c+xa3#?XJ5@pk-0jzP zRZ8z=L{=BfWLtNrc1-ia%-O4UyJ7|g-c=o*0EJh)U3K_8ylI5B>PY%+RI|0rG?8k6 z>gds)#BOD&POXJIS&dg^-yTG)=Xcemw!z5rnX1df&JbIlsJeYLlxRdu3A#I|f! z-QA1qSxHvidv^<}eY5Iezg%K-i&aIv8WD}kRF$ZaJuM`K8&|5H>9JI$*{T=O@x=bz zQvLZRpg`?3gBQ$C){_@5&dBkxuXA-(ZozIg$RY?D9Vs^tS{;MaT`pBe~Q zd3@WRVAmsj+n=Up(30_dm*YK=kL&S04h0akdBYDv)yUr4^WjsLV+mXpcABp6>oY$5 z#~)&WV-=2T!%rU#BON%KpRMUcT*D|nre!XX&j&uXcoBrmB!1p?*u+VmU(x{A+ZVzw zt0y2*=J2ac$5F>vb>+=5+Ty3eoiTi3XK2CjaD{)1&14O76|Nu6C+SeqR&?c)MhHYb zJot6TF;g}b`Sop<5!bjkpE5I=XhB;(<<2T%=b!T_g;~%Kh5Uxqc;Fs!{DvDSJtG2n zQ(FELVh0lWElX@r;Edw8HjgJ-(nMjg55G0)EKbPfw;$O8_5DL(oDHAujN^_S6^>}j z?~d9-v|$gwHwJOR=DtFQX#U`)Oem}7{K2$I#7@-Xk8udyZ5;UH+F=m2UrhXQhn2+I z&ET^JAe#+7&7YrUhdA((zdo`fu}bgwyr4u_dxDv4%Mbom#B6keTJU#fFGA<1gn#fj z1tRk(UsM^k@Hd7pZc~D4ppY-=GZO=RW+t;+#XoO|IP>2X{>7;AFj6=E)#4Ch?xu(Q ztFO3`>sbEd&E3SR4^_CUK3}>JC!FlYe~+6FEjNh&d44`|)t&f1z2Y#?xdO8bK-c7m zz2NO(VWht+v6~h`_+k8R=`1r@(|jTP6)w~(L5Q${ z*UYmK#_vF*&+31|_);v9U5PMZEtX_nLt#R$2a)9qVN#z=c$*|d2^qwBdk71%zM6;) zwG|d`jl~q76P9$!hPy>8w0AI*`79Hbps~VM3>TJMO(2d96PCWg(&UB<%LiisF&l)0 zXdKVDC#*pvWaFL-Ywp}a7cfdlUXVzvd2eBzQyOG^XJOstn|PpELdx_^4B)V^v5g5A z=(9-Jv{{+abm57R-tH;U;ZQSKYPgX8 z_8!*yx3IS%*3@~wux}PLpZ=|Ix`H!tgT4!=19FKSpDSdwgR%Kk6wYmcn|@CavQyKE z=H?37rt&|IR}(G|#}qnl7Ow0<#ba<4u7+9>RhX%;(m69(P=atxyB1>AQn-#}M%OwB zH}_i;<=+;H8v5aaKEmTJVZ^cqC_EFS@SLN<^LrI$FI9LURxp*H!0AVuKj2z6`Nv;E z@n?+mU4P-FwjWBY`NA7_4l`gcyvZ*mu9_fxy|NJ{)gs~B^AvPgcZ({kG~(*Sh^ip0 zafp-1-^eCbv{BS0^SJ(9(a;V{(C(OMc+i`;${R%EGA#ApHYTy+8yDz`PGY4uxkNjH z#43H!QW|zzta`%*YyL~D{xFB=o(utzoK)>X5xh5qVuWE2xR@mh8Za7l1y%*OY&ss z@snbs@r4i!)@HJW$Hhh;PN5zM6r0At_$n?D-FoBuzzw3??GRM4MP{<3PGSf56y*EW zqStIFo!S-(8>Wf=HOq)apAr4rAgMK;E(S#*PE33$_B*e% zNDXn&po2uG=Zb@akWM>@;@~kb#+Jv#VQo-0pPeHPTWSM&K1dAV;ARy{#E@3)kcO*@ zW9DZNrTL2Cl`-H?Yn(+Gv-r~ySFT^^GRk(7#xW<5i_uMHa z&T}LBb3jZ?hZ`;p6gTd|(k-YhZm)EWxVEw4kpmcbmb-ZN_d;Sde8dakc(BvFc;WI> z`2WWO@zQb_SN2`;@;rFK+R5V003H=evUqboe%Q50%(nysc8U4-@p*uanE#~wI7}>X zgnNByE*3O(#L{#U?`FXm$3GJ9PuPJ#)Kh%c$_u;CPLT+R-!$MsvNn+NDM$V)G1j<7#tJ%RN>%or5*5`%>+0U4RH#sP5$BMeNOI zwa+l{T)Nt4IFeQW<7%J1gHVe7Rd>CInP_rR-Tg*KV$WZzgRLJC{p_voRUC*KagKU` zZ5grU5$b`@KNIIsRXyAfHDblNYE$TSGzeCOtH(UV)ZCe<9`hss7pSWa_gqTM@|ME% zHR|wJeIU2DfqlWBAmT#JK=ou>tZA(c>Zrdc(_ao!Px}dP3baueIYd3Hb1atViNfz{ z^{nHtl}>dOeqCx(n@X{Eb}Q6#48=&JXVr0ebJ62jtX^^|2i98IOtz3$FTD~*G{j$> z(AyRb)$QulT0D{CeD&&=Fy6Zz)a%AhBKpqEWOW*-H$6mTT|ZX6eds%)5AD^voqnM8 zoTuJzkELm}Qk@yT3SMFQsy^6!BGKa6>eIauh}tbzUtKhrXnR-nwc;rVrEAm=_G8M= z7}T%pBII5fp?+NeBU`k=Oja;i{r=@CM8cP5vUStc-%5i~DFv&)7Y`z?(NFb{rkL4j z=hT1ql_FApSO2|(f&M7e@ZZkC|Ic^V2y-VQG}ctOLeyvuC%{UznyO=6i1oJC*jz%= zIeT5x)a*X1G;VJyparu+)BJG^k^LS`%Oy2ntce+UpUqW@9yL zdrc;;f=aWiSR!ipQIo#NA2u;b;UquJ?&YUYN=3#0u5IOL+fZ|I$tAQ2tu-f?H9%Ld zj^<=xGn5zYG$&ue%U4y=oc}8l*RVmnx0Q>j;cLw`RR*MJoaW9X1omM~G{x6YYkU6G zl=QGd3*Sfc(Qi7DZMf#g*L?Ko_DSp)M8VNRlFAQvRmDldfM}R@v?NT*B<9js(z?J9 znj0j2MGw?jX;Q^eUx_8{ktz+=K#|5ul};8AEl-mwZ?r<(9a%%F{5=lyyk4sQ;~R0U zE=V=6hZAMEO17T2h;Fr&Y(Fk1x^0r|`Yb?_50f0iV7hjlB*&KC2>gSkhJ#^=&ud7{ z_(}){YN=VrO+kYX?JNHU$D|isu#7J#d;0F7DOP(53pld%%?fS_?a~4XSGh&I- ze@H=<5e`>OmU_aX*vDB?Kig;Ux$DwE6Bc+%pfsex9@J~D(y$cFguSOU{3d4VX?1DD zRnui+lSfKnFP;)xwon>bf*a2HD2+;QK`b&u;lvVY)Xzo8nX{zuP8i693@O|f@%Gd} zDST)dGDx5lKBD}1t27?Y&ay8`6LL7>TI`i3IXotMmMBGQwm`YYNefpAD1)@pk|?-H zCmU&*sWYZ{%WG+cjS)BeqHvOf6n|tcx{qI^g!^{bx|=B_c7=`fT4pBK!AoJMY$+n(g&;~uB%QbsKx_$< zPXEGrUzp$Le@ON3>|QkrT81f#M!c3VnBm8O4cJ|(aZ<3 ze!_dAS%c(?Esqi9+?VV6k4D?WbU?0~cZxXM6|%ht*7kKf*@4Hd$=fp7vAl|ixGFp8 zc4OCIo9sN~FtOxTvP=75Y(9>bn;gW9EV(PYTEYgJ){L1t0Lf?5X%9ISAy3i_qMEF;QJ%cO6^&VUdGgy37|nHg>UPMIka6*Xjf<(m0C~~L z>BOx2%1fb;Sx%w6;@mQblacb8m8rx=7Ria7*AZ16D<{o`O*Ne%uVb)5eHD50Ks8En zFM0D|aCKdI%M+yRg@@&I=Qv`QYs-5)U;_0L<$cAs5p^HP`<+A3s*jR0Dh?vHe}kNn zpG{iUvZs7#KH}5qckw4}tW1N)$XP8qW9#vooRx+9HR>s!eVL1WtN!wZD5UsHr{v2^ zFi%%*$hm>YO97+JWJzD->nCnw?_sE%H!p=ai(c~0Gl;WIs>=^|KSCkAMSipa^R(lI zT4-nHpE`0=3yi`U0 z{mT)pfYDmcFPi9TbuAYPk>eeyRmUT&{a2)w*4kndxV=`6#HMgSRWsS9|Fl|`jmp1@ z!fACBuHB)n^yCvXN}jgrnIdA-uWM_}4nVoJ;I7s-=PG1g6>a^uSb?*%v`#6gRov@n znN-blyJ7(YE7f{8LG<}+rS*=% zikujt^*$3oockB8cNsc$-a*<QYlXYkYrEfgPb}72 z8{7x&oRB5j-WTw_w^}>G!5uy`TRX}E11g=T9di)xwG7^CQL^UzIiyWY>CY*Di+BUfQHhwvHrD z+f4v_gA4AIbW9f;Q_cGJ*U~d+84b_TaEK?+%Rn<>wcp-ufcPQp&xA7MOoR6CW*qm~prfW=p}ehif{TnI$zCU}^~Ose zn{>MIn33j5I(>KwGRZ7mAIB1-E~&Fz(kZF;~aE7=5bJY-E_e*PfCrYPrA@ATZmOo&`nwcYM5>ccZx`UuF!j&!Y?JdDJDFb_eF(Y z-F35fV;~tNx>(gB2xDFsdwnxrefXa)P8Uq%@K`r*5oYSb3EcwEVetQD)pd*exDw|$ zR=08jx-QcqbqSs|AX990NxqoE9qV*SqYwv{MC#Tx;^Eg%btzX6;Qd2&Tle7mqFTDW z!{4F)EY+RZ;ekDhIl9Zq0vhAKy2~34c;a;3aIUn z2LHDy(B*AAhvvr-UH)6_(7p22Jsjmi%r9B@@T>~CZmI5tzZbDG3*GB<=%5iNb*0)= zWc@k1FOlsaM?7`ky5amFd)@be35eLvx*suic$4m@?&ticXrPtpetuhp9sdrxKepvF z&`2+g9gc|IRWFV-g(Fvb>vewCkoX7n7Q$q-{)6?kydf_+2NsM1yRT z-g?qtVsVywhZcAO-7CFwO&C#6XT4ipM0Cppy;mI%RBx$zzmVxDx(4V23v;3Hd+CEL zk3kkS(09Lkp2%;W!Y)7b!KTBQ^4f3p1N3>2rn~ebl8^&C{^N;#`cXK6wNBHIy8oT% zi<_Dr(lx%SCZbF~xs-d;t6ugDj&EOe}-+%9G@GHIv|J5qo*}~v| ztO^S35`%wE3HBfs7`l$bj5WS(2zq%NOEcNftv+USWlSN;bks&cSF(x%ow*gzM->)i5a%fEJOEusA2p1Xrh+S4ZEtr3BUg~?90Ni9xgE) zEQ&yUeQP*8EfbHw&2ai*Ap&;~!_CVHc(LHP;aPXcyM7A|&l@3HOs!>j)wh(W-&(_~ zOoT7KlHq;xb9gDGz2U)Da82-zc6c zPf2QH#f4Txl{CgmWBL*KmKiNnL+}>fD5FIK-1z-xqs7iVq_9>-%hh)gKaUw}HvEeh z6Ewy;`&L124KmhSh)m-4+-Tdj1PfnewC@eM5s>vpzr#2q}~!6M`6bFjQa$;L5* z8X&9{j55yXimp}d7~_m_E_mf)n{kdu7?g8}abXe~kzF1cmyiR((kC;ypv}f*mN3mx zgN-ZeVT&bUfpPtUShQ+WjhoA?;6p2nX>s+4b9rFgvNambr_;vmrT1Wohm1RJ;6cOA z7}EnLLEc<49_VU1MdZHNm{DySUX?gyJmlw!TH>Yggf}ckUBP$)Nt?6lWjy@^BhH;* zytsNIlKU@X&V|3Ai;5w_@# z`59k7+KGa?nz7WWT!FqambH$miYIV2mVwNBi}716n5d6~@w*&|Wd6YT+ZV_F-p0S< zJ@7)pD&t>NZCw4~qlgSU55^j z9A_O8I&spdh@q24jf-d%-(-z_eBaf<85h@B@-dCp9d5La4QO`w;tl4cJ3Q|Z>wVz= DQ}*4% diff --git a/src/Gui/Language/FreeCAD_pl.ts b/src/Gui/Language/FreeCAD_pl.ts index f69e89ff0..eaae66b22 100644 --- a/src/Gui/Language/FreeCAD_pl.ts +++ b/src/Gui/Language/FreeCAD_pl.ts @@ -1237,10 +1237,6 @@ Please define another shortcut. Macro name: Nazwa Makra: - - Macro destination: - Przeznaczenia makra: - Execute Uruchom @@ -1263,15 +1259,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1315,7 +1311,7 @@ This file already exists. Read-only - + Read-only @@ -1803,11 +1799,11 @@ Specify another directory, please. Orthographic rendering - Rzutowanie równoległe + Rzutowanie równoległe Perspective rendering - Rzutowanie perspektywiczne + Rzutowanie perspektywiczne @@ -1877,6 +1873,14 @@ Specify another directory, please. MSAA 8x MSAA 8 x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4845,11 +4849,11 @@ Be aware the point where you click matters. Delete macro - Usuń makro + Usuń makro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_pt-BR.qm b/src/Gui/Language/FreeCAD_pt-BR.qm index 1b4ed4a4ff000cb50a7b0ce3106cd594e0bda7a3..1f7d7acbe5e7eb9c21426323b091efe6945c2e59 100644 GIT binary patch delta 12042 zcmY+KcU+Bq{Quvd>s;44=eo|a$w*34DkL)sNlB$!QIe4gk&H5LI#yYkg)%ZSLNc;P zMlwPoGdp{AbC*qiug-PPK1nf=3#S)o! z1ZNS;=u5=wiPT=8H!UwUGis&~2`)tStW0E96TpE)s(auuVl|y)+F+Pf#{-VY+^`BP z!1s|dZK|%r@qm{yHyi~^@O`RG8%(L{IHZ=$4G)Nv|B`}fzbDUN=9Xg*61B$AR*o@| ztvE;2W(=|Qb%~s-cqaKIGdDKG;|2~Tu6skGk)w#jsl*L0BU%tkT*`H#%gc#dT?}3$ zZs$2-*S`^W-~zE9CrQ!13m(&j6rGE(Iz$T3s^eFr@ToeUNQy}xiKUMw#blgMPa(zh zs`L2%3TVEO_-#|kNa|gt56rCt@tK>5P5+zt<2(kFXd(;DlR0Iz%oVd_US2Ho`X!k+ z2FWb$Ec0QO%tu#Er$yeLyst%^qCv>N$D4M&-lNiwaD$!yk%_#$g!PnXDiep==y zTvv7e`%RfYLuFQCU^vflcy1LH7+4i~UZ%jwR2PG7@r5`{J|Vu8sl6am_eZ84Gp~Ap z0W+;)$nE6C3UlLzdc?nMO4Q$m`1h@#gHL6yZe${xcU|U!c$s@#WnRSlaXq`ZL*~op zGGC3B`TB{>cV}h3&zJf0jLcuLCN|(yTTCA~cZ};xTVk!SFjee&IN5`5X6!tfgjTSZ z#ZSO3#DXT0;MJBWez}Rv_HPn=DsbCR68d`(r5_?;crGy~XPMrANSLsI$RdJ-MYD

CT-jO|It=b>58UXyU`0#T#mCbH>!WIl+O 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 G@c#jv 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 Macro name: Nome da macro: - - Macro destination: - Destino da macro: - Execute Executar @@ -1265,15 +1261,15 @@ Defina outro atalho. User macros - + Macros do usuário System macros - + Macros do sistema User macros location: - + Localização das macros do usuário: @@ -1318,7 +1314,7 @@ Este arquivo já existe. Read-only - + Somente leitura @@ -1806,11 +1802,11 @@ Por favor especifique outro diretório. Orthographic rendering - Renderização ortográfica + Renderização ortográfica Perspective rendering - Renderização perspectiva + Renderização perspectiva @@ -1880,6 +1876,14 @@ Por favor especifique outro diretório. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4847,11 +4851,11 @@ Be aware the point where you click matters. Delete macro - Excluir macro + Excluir macro Not allowed to delete system-wide macros - + Não é permitido excluir macros do sistema diff --git a/src/Gui/Language/FreeCAD_pt-PT.qm b/src/Gui/Language/FreeCAD_pt-PT.qm index 818e4bfa18ce430062092b4f433dc2eef5964742..1002aa4b92bfb9951710db54f7419c81368de6eb 100644 GIT binary patch delta 12255 zcmai)d0Y)|`1h}S&dfPy=4?X98bUh~i4>BOB#M%sdw(KFYuTgdq z*>~B=TFCx6|4(M4pE85@%Us=wNcowJOjDW24g;uGg{Zln z$jVA)w{V#;tz{<5-?PP4iCT;#wrUBHGnj^Zy)%iVWiqWWk?w17>_ilFmRQZrM12Pk z*KsY;uqYx-m>cq*Xm&^9Qm*MV^S)l@0~eWpJN)BO6FJFRrly{WM$W9ge4;@$nGHM1Y_y;F z!bZd%{gC+-H&z^fY%Q~Vp3EPWWd0s*B1fe%xvu|MCR6c`s@L+dIxC?XCkLuFS8StfIz^{&eEnO(7vIl_+=w3EKw{S@xAVsxk>#Wkly5laL!pMw&8) zgws&5;w~gyISb3SF_BI9E%WYenO~lp$W=Qiv;GU2je5$o4wKnAOJ>-963Vv`Ym`o^ ziUCVuGF>KHj*t=j_Y%iY>S2xt-nUL6)W52x`|wWOZJPCh`yaAhX7AvGt9}+?L1M0 zlA2zg4zHF%%`U-q>l9Io)H_5M%E`G&g^fQZXZs49wxX65$7%DZrRg}8TqakX&!yHC z=hI!NO{eO_w%;W;W5oqbLms2%5%v3zJnlRsuCjr=8Z{(Z{*t_IV&+%cllSrzV*Rdw z`S5aSd5HWh*Cto{Auxqx7%&Dqc{;(-2`GK;!u^sugT1Je!EYotS z%*I>EFLe+xry%kxEFi9V6m?r3M4VF;`7h5Unv`QATegF`Zwe%`;VD34Np!m%1q7WU zw#$qHf+4ra)fABBNpxnbiOl{O1x|zl+;=mP8H@7e4>!KZyqPTX(`K2UL;tZrW@#sx zWnE0CvMtin0^$N`+W-U?gd54K+W>D{)h^WWTQ|}8H;QkZ} z)*pp278O#+fkVVX`%=hxgpmf|#Z+QL-%-f#GUD6^Q=dUUaDFxQnTLf7&ZbZan$zG6 zg;oN?9Vm3fURZk#3Z2&w1Gq+^t0xl8>PMm5k0PRPr_lW{#*hybnu`V8f}nmk2@&3f z`VMJfB(|Vs#Rp;qe`OX;mw9`x%sUTc7N^Vn=4v7*Y?fK+mrP^=6~DtZaiOq)9C(+7 z6gKSuaUIGiENLH6Vm%Ytgd_^@TCr3cDg2{xBheil4e)_q+h2>KB#2D9K_fXZKaNKE zcoBQHl;S0KxOqKI_JHG0-bz!aLbXx`(V}s+pbLE{t=yR?V;HUTxkdE6BW>WC65H{M zGRHzf){M4h&VY(8r6cE|Q@Y!9V*L_g?VnPfvBC(Sy3qxdBe8bZsIU{(s!2z>RvQD* z6wvj%F~qti)9p`r5Pdm)xV4j5>NqMbNBXhmIDMUEMr>mT`WF3=n9X|nem{aZO%M8M z_MF((W{k^&d$YO3cxf=PyY-ohi-dPs!^~ZRiT+bEWA&}gh{pfNEH=F-_A;8)TNy}f z@@ZB-ayXRdHmiRk2>D4FYxL2UD7G?dGJG7dIW?K}*@r}i{j6!$A)>!OS&NyO_?;5w zTBIQQv5&QXfdQSI%Q|KF6Scd?ye(=XrznvbbASb$#u60NGqS!KEJ068Ht@qvqLK&} zS(ZUuw>%a#5h1CQGaKP-PP8ePjp*t{lwHJP?Y|K{+rvgV%_L^)$VT;YBx>u<;!5M8 z-5xC7_=w1M6dUVxoM`l1Hg0nQQQl=X-VEBm`UIQu&IwE0fX%3rK{VA^ovlqzA<|A~ z`MsdE{(DSh3*Fh-LvR~Y_OQYi*I~c!*=@_sNK(_--5*%0dpp^qm&nFiHfE2VuM>N6 zkiCq#0V{dQKHcpIhi=0@hhwRdrm%9YC9&Nj*q^{I(6L?|eszn)n4{U#b&oR;%0-azbqIM*d- z5OHl#I!03u6IZcGapd0Gm14&=dCpdUB(!YZQFy4?6ph%8-$xbY|N8W9V}aft$y?7={8 z_DU;aha$N-6Q2-gUmHYj>o5d-N}OXpw?z!u$c9AaPq=k|%83OW z;WnI2C3@VB%d86}9J_?u2G>qq{*yT|PUeeC+^!OVIDIQFXCi_z7utr)Sq5`Ew}ji9 z1aq90%k3??L7ev^ZvVWE#3mVJ{xxt1QZe%#mAQk80g%uo?jSrSHT}jNs@IR`V=#C4 z^I;-Q33vD#l>t0&Y#$)ALz>Kv-DP_2mFYc8rq6AezUDH!{yXkg zM?UTr_mAb=-52l+%vi=f>M)GB;8gC>?qFi2les4gV~CZs;fgELq#F5L@k10#7Byua ztjWE)R)y&9M((5MKH|DG<37DhBu@8=E1Lut`>rxqwhQ-94&=U{Y=p||6Zh*L%z5!K z1vdcNFFaN7m3|QQIB6m?E;^-9PS3*yo(fg;OQM<=6{^$jL}m7hN^hXWF8PX@!>x&~ zn<;8%!v*(R2{z!BBIZzAK`Dx!9m61#Ovk$ChjYSt=>BvZ;cSdsK~G_i)8 z6tm7C8kXKr%zX@N(Y919nh8&8U#j?ze~0JS3sWSAFD3d_s7T4#h!nH6A|rSa&Q~&# zWld0Qo!|-4)mH3i0SScPQydtLjPLDj#esa7)9_1*gIPBqYUv+4D-Ip%MeM;4#qm|J zrn-9-r*HHl)~CPXT)QA*`>rd_4?0O~{V2taL&iv=T}g_Y_unHq4pH3Rh45J?Kyl|i z>LZ=6;z4KuvDt2lN4=X8jqo#(ZThQtszMmGD3`ghOz~WYCHqpYc$t`tDj-AgryLHZ z=Vo5u-(e!Dyl^20;k+}iId+=pkvXs1f&ulq$5%3DL&V{A`C1te(RDB0X4X)oT&sA8 zCJ%|_9ORpINhH?4AMZ5eG;-Zs-nklld-KYCt6NaEP1$@K*ZV{poq0F!nnct4^6h$o z-O~AXKU*Sb1@K*u^g>v+Xd``t$(QhtVy9=8~dYAA0sedt_OKJg=hkN)uo zF8sC3cqe{h6tp#b3_n%fnK;*Be3EMc@`1JdjN*C7Xw3OpSD+htXZQuy_`%(C`9%!` zc+7Nu`4N;iHcNPutFBorGuwe**#$Xa%xDuCH`^$Gu=_4^y*r<(MI~J2GoLy{APThN z(~m$@jqUl>Zi|R(`-s`HZ`{NF-+SYnEfifwBCWt0+lF1@M_g zPlz4N=Ql2BNGz*9zo}I+(ZbO(pAF+TjXj0yjfeRy2R9N8G0L2k$!FQ)*z>;3A-VjH zu{(*@dGNcE;2#>lk!e4J-?wfru`T)hzRUz-r|$BHIk<2SZ~lm85VG4f{1Ka_#5|Mv z+%N>S!I6CaghoXCeg4X@PQ=W&^MwH`iHyHpO&{3yE&TPEspu^==WkA(N95F+zyCM` zNv0Y9s0s=+DVQ&Idy2y04*xV{GEpa^iOhOA|H1(dCuJS~a`-4>v!?TJ=0^}~`<;LD z4G(HHpZ|1i2eDe6WoBRIOXuSHd^`U8%-OL2*jWB&{%qnJp637bMoKl9b(4@X6=5o@LKhP;I~ds)cLj$)*5Si)=LQ6i~%S@g|Itt zIJMsi;TA>2waga=j)$&X`ymYZmPKsOPGOjzu?5oN)k5?ET)60jiLB)ZA^Ht|sP}Xs zrXkE`_99`_R2v6-KXmNNnCNVRV5zTy`%ZA!IMn>HET1A&0mgy@ffs z--t!z3iCJ3K-OF+Ea-e1=9Vq9v8{>Bw^&$UM8kzGcNG>~Nro`E zb;JE3gM@X9aDMerVf}-u#GXb7o6apm!zWtUHXjKOMGD64i@njAStVq(e@1jDz(ls? ztC02X4%YgRu*(5!>d;%ro`T#@-%U7C$)30oF2V`_0%*OpklP;0<{K{Lt?5S`?) zlW(tuSDH{%TE?|PNox*Db5AHKDkZM|eBs;0wM1)c3FR*`5X};min^J^*?w0l0f2)pJg+JB_k)p1eN!41VXd<#D9uV7i8EL$E0+`yZCj|U z+UF&)A(NEmR~@nBr<64wT!8)GV@eA(ZuA+av`E}XtjQRq#j;iK?X8pzVoQl~B9u)W zA>yu8mDa~0I{ka4?HVZGk8MhO7dVvkD5ZVIdg3a1D(#Q2N5kQ<(jf=6-Ky0}$Fwm> z%daY%j=GDyfisaU8mw&k@i^*&(MqSJmgr+w4OBV@sTDBTQg-}TjT@RE-Cxo zs||m0O4+a9KBAM2l>Gw`RsDUH{YO9<-CigMxz)mA=eJT0TG$YIx~(#TgPB#?ql{?N zp4hgt$`P}35Z#iM(N!?wUjvmfbw%PV^OOnx8;G-Bq#WDI6H#%Za-7W@qJZ@#vPCN8 zgqsG$fV0X;N(E8aA`@AQ#>$xiNNg&fQO-Gw_^)22Tu{phyMH)cxisx7F|XM&SHvn; z=rQs>wUsMpITK^;lq<7fhD$}|+U;1o1-q47DqlwKSD-w&2LnHOR(b08Tw=99E6+q@ zW~agP&xrjztvt85Lbnzw&(DGtq}^9u^XG~6&?&FY#&tacl|@DieCXLoS#+=Bi&SON zlZr1MDR0>p5J%CIRrHvt4 z>87f6@)I1zb5))3iNsDcQ`Pybg7zn=>iGr1qXnoe*KQ#$C`Vma4P2C$X>0pQw6X?Sx+cNL7&KL!#ehs@}!jQ6nBwg;|vm zTh>t({^AR9zC%@meNiLUex{1Ng8snr)v6IKu{6WBs75@1WF9qCjd_f6D+G8P> zYJ|+)#-FO_Hz7o|bYLH_4+zIlYojWm4ibrxPgG;9u(tJvsK)+9-TvvZYQj&LRnIjt z$GWSgbeTaMYa&yTteSGfnaJyq%pY2nu@p<#Xu4{ez8KN;sA^{6bhLansTLf+0Q>L$ z$@GCO+@e}|5v}C`(^M(JR%p21S1s3Ih7LN=|3jj?1-i&cB0mmwxpQSECLPqg5z>O?RclV85- z(!4Qcgw!@QkBPWb1-e z<)uM{j)m%bF?@g9WvU-e5cQOks=wK#@SKIJzc(@9-_z85IfBi_IJGc69-h)g=Ca3X z^??-h|IALQ%}2tlLKmwWo8D_#Ca5>*}Fvr(nm;Up;jHV`9^utA{>{B(mtEPW0SJw4zu&qw;B@C>!<6 za4f}xLiMbR$p1U7#*L6Uewli{pCi$nPwHeuYo%}rs1;|_Va--)%Vy% z?M(G2--$@n`m29@D}pL^5!o-K6Gu*n3SSIQ*-R9|65+P8MIm7?e$P+TI6`Auxr#b7 zcVbZkM6=<@i!%Jh%KgD9I zCfXYyT6tV2y4hH?`h+s$R)p9nWDc@}0MTYBblkdwXzS{Q0?r^h^v@uA`CM$tSH|W= zu-LNGI%Iqu#8!3)so9XVp_sMUy(USjKS*AWA~E{m>`53voKMAtlQMSltr z+b%>g-shRvc1;1%_Cm2;C3m8RQDVC#c)*^=qK6ta?3!e;eW--=L@##9nL)JERSc-| zhG^+!u@_X2{frbtt)9b3L&b0-G+~05IKX-*v7+DNpbSXD#z!1{Z7*!#-FR`xrSrrl zIEq7GJ|mXgUmW%n4@?>>4$pESHg<{3ar?yKKj$IXCW+CVF_8F&Vzdt&_USHS^uRJ= zXIhBSLn@Bvh@;>g*kwT+eSss+bBvf^^B9te6cg1O(Y_SLxyu9?Wpi=CSR;(7%Ls81 zcC%=+wYa3A0S~+_bKGAs`QUVZX)MDO=h4@Oj{aEtZcft zW*cVOyQ#P#7`d>+8F9n(L1;T(6f^grAWO0mw~a@-SD!VQoyi`g|?wn23eCYGcJ61!t1mVJk4|EnW@ z@3R>hqrLchUxpPrgIIMo+&1>#>1ot zx2m{qzKLwQixe@eDl)?HAgYAj9@3C}b7IAhrJ-G*Y+sUOezlNBNioE7yGe0=X!KY_ zNpUMWpoy=xlM>YZi1|&B#>{Df&9mFmn0FCGh3lp9TaeETvyqYp!{7CCNgmmtx{;IS zt@(qtYlt-O*hJ)u4P`bQBrQbB&904=mgFrWc6gJtV(A8A(KDr$UDAonuS%)Yp=nOn zrE~_>tl=cB4_6_eU6R)K2Uo;N8=oKrm`_rc{Y+woMro%z6r+Jr$}YYExBXh$Z6AR! zp>maS%rM*ox1^k+)5v5eNc(5QZJivQT&H1mqe42mAOST}o|Nm-1sk20rQBRRwrQqx z>Qw=Xx;N69u`}@VmeTnJkmBVzQbBiwH~*d{vW!gW%F!E;%0#JfRt9km%B5>3;f38U zNe^~BB(nPAWUlF=sr=+K>hED1^OKL@O%pF`YEJbhnpa0-b>R}RK^OXIW>3)I0~({{8olCxo&w$EW1d95@a?L4qw)<@$J0Yj+nqiJ6( zAbjaGUd>^;Y`4ZM2@8{_)_9%tC$7^4jaL~Ofj*Npoom{_hwZE&yy=JA@`+#R8t-?% z(fimYb9Wt0&#ND>eKlPZ6oTX~vYjUQ48Heip&4S+n%LUbn&H(kpx^155&ISs7fqTm zRi2{rI9@X@#T#B(DRb>?&AhsJ&gO}lg$lU&1s`QD4%RHcZFDD=kf>RCGZy<@3ru7; zs%Tcthe=KSj~>pnYeF?W@qnJ#DZ&Rc1>&pQ;5=J8%H@{yJ@E;d$d2X@x_{) zVF*mtyEOZ|c0fvVP;+2XKHRUT<`7=+;asL^juau3UmdNJAKKpQN3kn1@aDW7-*4*5gf!FWQ;fAiRO_TRUqWBxSt( zRXfK6A@{#Q+W8?Zh-=kVyL2>~Ia8vwDIPVE#E9BdABb>Qdu{4)_<@CcwdqZHtSPU} zxCr;}H%Yr`C%%8hX}8iuWMx|IuEFn-kEd&oZgof7J5GB(O+f!WT6=!29y(Q3d;TG; zCit25!Zd%_|K2F=SNn5JffZV{S{TkOENlPVdc@Nwl7NPwfo&pCxU;87e5k%fy z`*Zd)=s*|k&+=u+UFK{5SOuY@VB@P3Mh=FH-KSFyi-re$r_=gcqGI@_t1ckVR^Hat z_CgZUHC|Vz2s3*BN>}ezFZAEMb(RVJiOo&c*|=Z=hK)M=TF|ACr8?*OaPSs?be{Fx zQ5=5K`9?r8<3e@a?-rn7@YMxa9L6s7NL|m{6&(fNVfX-cE!PDdfaom?bYZ$eB(N#E zA*oe~c^Apdi_s0obsX!;^_l&C;bmW2k|a=`v&fpy}$V z%Upe)ILmO|W=}|_a;$E98D==6OqbmYj$`XO-R^dHknl=(xDm?XqCvX+b8e_Ge#tyC z#zdBNKzF*v61=I@9a*Oo-8`p5GftT;D)FUy&BpU!qqP;`#yi^=j|Ihyh9Z%AJd`R6X?O`beVv_C~$AT|dmk zLvN9T8#`O;t!}}EZP~1Ed<*R-(MfMz_>DNHHF}%b-O-MEq;K8RNUUnAzOC;#y!;lZ zZ^!4MbKs-*n1TC#{?PjtUn83OT;}!&z2D)gcmsjg`(1cSY?6<@TWmbqV6XK7uWn$8 zjG6i#O(5E-z4d{$i_j07uJ4U##im}=2OBZc8*%y&3#4t8`|11Df+X%7*AHt87d)}1 zKBgbmP?4mM9f;%daQ&D&V~7sc)+d%BrBB|gpD`Bil6B(ssrMl{!A+m$SAY$Jmoj}n z=+_qRg#D)<&~KSshQ|8}{g%~lRYv)sl-S4V@-V^y@_+|Zzrf?{eO7w5~l)~Y7>fh{zhf`kBe`uA5*JAAS z9}hZVsoUv4#e?Rb^rdM9u>anj^gm`IamZbw|2?l0Ht50)%HxPygI5{M=GG;u9A&6H zB9zD{+fZFG057mw8LC_3!QWRKs&6Yql#4Q0EWb@`-AY3(hrif&%QV!>UWR-k&Cp;j zf=vgd!K&R;_yco8<6ua@KEvQxu`PC~gTc)iulKRe!3OtWXlD&qgNGU$aMj-$JkE52 zc^xuzh=bYa42F&=7Q}|e7&>QoqP9pgc<+TWwdM@nDu-Z$KFZ*~B>}H6y)^jmGZ5FS znjx5n>;CVeA@URw+h0EnLpr3OZSHCqauX9g>R^b$_n~=^bpD_BCw1iiwVhH)Q!IAnMjI>@jvb zPSiTpkW*~}Ue+e%Da(diPap7VY3K#SxP%fs3T7jj`l6*0_7+fDs1CwhU ztCJIUbfikGM7`ztB|XbK@GOsQQLShm%37@`zQ`>9m!u9rQf<}AS5`JZFzPz{tZ5iP z{`Ax&pVyGlDEw?3waC!JBJBt8II&VT zDjl3u2KlO7^AWs^@BLId;6EkDK@(N3Ee+ns_ZF27?^FhDQ@PfSNcxv7OyNZJFn|hW zi5i-S92``32~#@#=1*@hdqVN1E}UaeRw36H3k(CuA^NORG2%c5Eaz@fZmwFxH{=R=C$exyD=(j zY*6V?hJ@TyE!e1<=k9Dhty`R$d;A5kiQWvTqz)k;p=Rk8q;{69+G>amnlLJM(i zpn5`Ss!~5zrNOMy*hOV11_ZlP)x#v*UPQ$5R4THSY|ShZUO8YEuaWQ`POkf($^;Aq z$1KiOw!_4tL2%9rsf-%MBe&oY%i@>LeiwUP_PD%)X7 zzBM6M|6i4@ixM(4ww9h{NUV30c#AJ2Ht0;WU?I4LSfEH^$0kHmc3a76pC!?+keEw- z5`(;n)>I^M$SGp3qf~ZuByr4qqUyIvTsVt(%X=iQNhS)$^>+6svg@rf`Xh;Z3W+Y} zl9(Az7Mj|P#4Nbjv*sjTzlfEM3xRCn2bK5SR2H_il9w;1(ypCK`+X{FA64nCQ`s92 z_G1?@hj`MK3|Q%-vguUP?%6^-GKmZsvoX^i5>@2?g$bNbk zqUBEHv~3cxN!7@y#79FIIl<+4NF#E}A4;_GEIF0TY^R%6@{plaZ{dF8x&W$|ltoet;LT zSdm;>T_PG>n_REWf~qA_gR5A()$*xv@;#zUZ^*4q$r{fkH|LTy?LbXRj#p2nCf4I* zYC5&#d?qz3Ilrb3wP;_F*sjae%2M(Jrl&Te77+E_Pi^i!CSGbddDpThT5*TGZ{x|Y zttFq8iNwNAgXf`gYslvbEFo2-j_%KhE<1uRz)0{FxEqAhHE0ihC7QHUN)m z;{Kbdm9xT{7)k@Y-(5WA`rX@U*Dq6zG z*L?*smZ7rxES0sA$uD^zv4-u*FE@v{>jmnvGLU$K3*^5tlW6i1D_Pbk85k)uEX zdOM;!^(i3mEU|rz0)k<;@C*vr<3*H}Y$dC=mwMp8^uXClX34WtKius0A3v%5toe^e zRDN;#j~i6}yVXiwQT;y;ZBK!rCy6qN!)-IbyYcQqY3qL~)ZTXx~|)lgB9N zG6s0)GX=VnZHL$e%*utxi*~fj@D65%pSti3`r9 zPz9b-^8$sI0>ipc=b~=!NIdR zG^(RFv4W2@R`DQ~8%a~!zt)z5f(VpWvvUbR%a=F=KW}5zOi)o%Q={`5`DU}k66-B`ud{`QOZ90Hm5YPEu-ms)MH|Gms8Qh!3e2) z=~wBO#CF&*eh%_hw=NTuLB#G(V_F^#by>p7Hw`9QRKP41cQzoJFr3+J`$+6%Hmjc0 zgV>bAtVVbQu{znT#_2%hCxxumXD6Z&A6cD<3B=|qtnS6fMCK#Rb@B!X zHfx@*Au8I+JYQizr(d%6DgH#QA21)A%E)6zs~nNQ0iU>>A}W) z9SiSvWn(Q*h@3{T@!qG1MuoEp+hd5%X0VB+;r(m(vuPh1VT#MJxN0dx(=A`whP8=A zhFR=}fgnI{Fq?$sP9Peme-dBl|ZDQ#ES@`(dynmfD*Y_vi#4JHUl|BZ=Lr!}TsX#4LB} zaKrLYqTwUBIrBX6wvN2~A1n{QPrR~QF)__GUfl~fDix-(^m8j&_o*sl%Boxz$s52? zS$})p=#)Y-V@D5o>`=w~A4zs*Vu8}*y}6l^B;{uu9+ zHjsF;B|KoySOkb_JRtvn#2!xLAqt-8#W5ZkWJB~cghxKJCAOdqk8&J`?;r8#)p(LO zhxur`{zR-hAJ=#X(dsxbn<%*ue1qdweEj9rL`fz-aT_9wZ+kxR%zb3pn}+h~BAo1D zH$FGXfmr$(K5z0f;!YF60^;?~g3pQ9x8sY`9Ffg1p5(BO*!~fGeYic*_Zxg;@eg8M zck|5`lZl?x=UZ&ygyTl=U66L_v_$13f0Zv!^8N2cg4uc6WCUX#vXZB*z;e6rfgg&+ za-6Z2AIiT)yhBTVWWiQs0e@Bg8P3y_@#K3rKdR{u3!UUgp_t_Qogb^-m*|rZKmPA= zBK>=Q{5zcMWkr4h!p3`be^fW6`OXCqpl>#j2UqRQ*XRNhNh`OZe=`@t$dBw5Kz$EhrHLuENpWu*oxZ91#0 z{13O3+=y45qn@zsr?Spkm30@YbaGHxFG{8JWtH{6s&uWSvcZ4fHw;ye8;AYJqbi$B zRM}J=IB(X_qMm4;pt9v$m90joY~53(#~zh!zN_@yt+HJymEHv^ecV)b9Iev#zvIr6 z)Z@-MD*Xca{a4ThW+~)P+72V$^MCxwfnZ`^?(%1gqKUm-$qP!-q>6`l!DAFll@ygn z#`8CMWr^;s;Gew?6ZeVdUp`ESGqvZ1Qy{VLqIuzd{C|oUFFI2TmDd;k`vI2ok~JFM zAKouM*9fJ45_NlKC9^C#sF7x!!w+g`v{A2#DqqoPvpk5tR@Ibx3omYZUQ;=uE>S+y zR855hcbl!Lvj&2dbVTDk46A3ft)_mZVkqBVO+#zdXRm2kQq?7Q*SLAP5Ob=e@v>%$ zzcpUnwZtpU*L3{!FR}91G@X$M;tHKL0X6Wb{bWrKYYMqd6ZRC&*Dz1h@4-jn4sA69 zr$7ge6>A2j;fdyCYlijbL^U2-$yhy2o0%_ts65ejdwd*h$UNJ-1+L(F> zY!7L&ZuKP=(p8h)IuH`vKyzu}8DbkZXl@;|gcI!>tGWH~Ba-8en!EcEKCA4}-1~_7 zNWV?;C zMD=7ryqtzG?k?yvvWOmwf^i215_m-@l?u!Do-9BI6YAG_OzdDe zp+TqV#QORRjfP|q?^;!Gs{l=JSVnNa11H=1RA|xsA<-5Gp_NZ%qM1#F);+;4YlYUo znjlzt3Y|~%BpUx)=yAlKsMS27??WUY-)jm{6P7}thN|pPPOw-{6a@-VKZ}WVyQgwY zO<{5*yfkcuFhkdYc+>MjZ1WuC0ULz4f(6KAL}AW#_{7w2*8-1ze^;NFE{*^=L1wJpohI zsw%8&wHT#pFCk^>bfS4NLdxwG#4b-3QtoFWftVnyUx_E~u|!yZ1EuIlXJJeJGsF-( zVQaiSvE8MGZSDy~@m*9t4-vMFKa1br7j_)oN;Jf>Ui~n8hOoyOC%hi29P(7yJANP0 z23KK!EOepPeU*co@>IEQq5G!;(h2O_IIEu3&%POM$5kl6>p zY+z5}{G?h$!b9Quu=d2ttr2nql8AmgTFETCl7ySlGtg6NDBPa0fT&S3;o;L1B$=Ot zCuLEX>C%LPR?kr|ToRs#OeJb>v69u9BfP2)p-EUKyp9+}Z1x!8?ZUytTKprt{f-+o znIe42+e@snyUP6;!q@ru{n@!f(QI_sqB{$}&d((auUSJV4nit5u#(7X`J>HpTVy>W z5k6mwydsM8HAh9Mi-0H?Eb5a#5_3OcC9jzymabBs*y}4|>1z<6dL6`yF&@N5=)@|s z!l9@>V(k!Erv3`i>32Kgwaj9@@5hN^NNki!5VX5u)16KU1IkslMCITk{5sfIY~3B- zh?`E2)B!C<|Pqp)=ykpZwoT^uHxEDd3d5bV#?%0!~SK^)z_b{nD#r^dy zn7#TzV(K(xccw1l=~B+bBND{Z{yD@l$vRK3#hv<{hvjy17q$VyW*- zG;4?WwDVBZtp`-Hd9{L-yuurmUc*(k_Y({L2j%$YExyr*qL$hq zzHi3iGgrj-`Co}we=UB$vVmy5Ui|SY1>q`1vS@6#5O?e;X#z0Eg9|0$Mi#MGA0@*Y zfq2DG$>fPCXm?gJJq#vZt%qb@jJe()A(ejbLfjZ9m3f~-v~!wNuGec~;lri!H(W61 z2c=4nE+bR;BH8HhzYh75&Gf^>YKKcUD^^3qhe$O?ekD2>Xp!o;z{I|SRQD82XZk2P zt%vg!Ns@C@NXME`$vI^canpLq`P3$87D@HfP`xEDl3dn|Blb^y$#v9yWCk^@WQ%%8 zuAfg4`*Tfd6bt7o>m|7b;47J}ZO_4N2efC+&8dZ>H z2OxDReMFjf5fNUyK#H$|b^mCLw0zAsV(llWT-i@rWx~Ki3{uh@H}vwUzLc~F>vCz4 zv|%^qZsA60N11EHJ32{64`Sq*>C)Lh^NCd{kS;{w$A74Ql7tnQsj@6Hy6JP@RIUvz;5NG{0BH6Fki}lR&xHjbjJy+t2kS_)5rEWN1#>IX^h2NdJU4AT39e~E2-AbtC|kErxmD_M_3 zshFU2$2Mx|1-f86?rMc%%xy@#R!N#fbd0oRw6NeXgSLtxnrM}?w#u0=Xl=CBR-0&< zPAnr{TkT(@hjpK5tNR5)**vv&8+H)yVb<2&h2$*g6Sx`OpO#w3ayVYKNb3{>N5PYw3RGANxSIEP@?`DwTZzFXqrCMuGC}f&ND6Am2cpv_iVIlN5l~Q zTx%t(A!;{1f|{=Tt=%!;BheRk?cRDnQ4$-q2Wn#$8qUxjidunqGg5oleJs(!i`vt{ z(45Y8+N%r35$#x@y;d**qWMMp@BplPVTkr!4XEo?qxRh$xYL4cE7@bqLhYwFr=WTR ztYjPJYJYqUB;xI~MFo)c=3lfw8^MZG4`~0UeuXN2*8aVXf&Lz?6Mme-wB_i;Sz{rB zbyOzi>U8Oe#7Z61l^=lx(`$y#J{$4nT#T+!$wH~>u5)`|3d#O0o%_>REb-bIy5{kf zvF01-Jks*92Qp0OwY(g$m`ytGUl@QiQP<%PcGGs+>HOL*Cbqeg&i~;5V9GFEuf0Z8 z3r;FCx>?C<+|vyi@{%Y@s~fsu8g|P(bVH9kB{t)hZs?P6BAZ^i>0VojR_5vA%48wL zNA%In4#N~Y%+$@ff+XHMMdhk8y1CD5V&r+c`R&k@8{b>ygxR`k{ffjqMV22}QBQHdWEB^m!OL*T9aJok;|ntQ_`{>t_Hr4YTkB{vbuKp1@FCha#O zhifRi*Q<$QshR9PAHUnPS#B1&4pFa(-0b^JXm z;c=|!j2!Cl63ta#Im`kFm{>#ZUw0phv|jSS6j-8eGkH+nA>?fDZpuThULrQpRv!BL z1+nE_(ch zD#^?2&A4H<%JHA%grl>NEcTTXAJih|5+x^ffv<$Tv6A~eQrRs+Ub8$HmHA_N{VqId zP*-_#FtS_cn)2pZ1JNoxA#XW|Vro`7dDlc_FkYYJy*FMEFVj}uZwd4z8q`lt-IPO| z9?J)gq@m+}UQXA+MX7;&^y*h)#wPMHDHlag6Z!aHsE9I2K6wKgy=0wy`gabT?vZ>p zbTPIPoaA$7eq%eXvz)aDB2m4aoOQPcN`|}gMI;n#a&E6dNNW@1Cl!i`H*%2QHpYNV-{tqoEs*dxli#oHLF~>9xv&VPU2K$#dTmF7 zF;D(8AO+1;XNCQPRkJZt(LIBOjvQCygd4x9|QajsiAQ{`XLEDk&&Nrz-Ufd$CpUQgQB| zPHcSz#ieZ^@zy((hKFI1rBO;_8~A{mlhSg?TH@whrR8TAV$nHDE8jctjX#R#cIavI z8j4pQeCqOX#rt_Tl$)jhQT)ud#DnW7JzgRAI$u5ELk(L?tq^5!t8zG;VkMhdM;Sb< z98$SqAkzC(S7pfg@~9J9DMLHKr@lT>SvXD^r9=}uwNn}6haODD3(A;PZIMA$QDSs` ziFJ-p#?5PtZLMr&+=syk`^%MyJCKJAwNYXRLCksvD{*@rAhYF@lsQ!uv?>NE^9S~a z9@SJ9tS?57G(=gDF&VjES(P=rD~pglv)nvo*}26?T)47o`DS9n$0(qGDFGC#6VoPC}-c~pk%wCTo{jBA!n*`DIS)-I#J2#iU{Z59kd`YtUIJ!KY0sV z6Ol^poD||U0+qZoP~?_%l}CFYqfY**JYEk|@0+F+I5i@!)hYkv-+^$>SKj7mu>AKb z@0?Kt-#)9nxAR8ZdxrAwDENBpBIWC2`0TYD<- z1aQe$y}TOPhqjwu8G}9KE`O|K+g$Z}1`9NCP&rkvGG&s!%(H({T@TZjKl6mxv>%9xn$n%NPcc|Z1_WB`?&9JzJS@aPV zF`{2T^urG?B_7#FKd$U^B5|UALZT0`W#3e;PuDN7g@SL3)GyLN@)tf;xx`1m@~#K5 zvC;aZ+avJ`%pNOQ{z(1mg;?E}LiKC#b_y@IL!V-UB=&{Be)B^EEM}|U{2OdznP&aK zOI6qJ>;#j2>Z9^cdHt^J_1Fn0uiqQc95v=j{obrC_~QuuzM$2_f^_=*lUrbQgz8gA z)yHm8iavF;Kd}jU`m|w)QFZt0k92N}tmddbead-QZoU54Pz~`WkMt+<5!G`C=rhkE zWLV1e(PtN9WY4qoxwql<=a~L>6ST1ty!20wuf`Ls(?6>R?{)8>e>HSEu|Bo*Z*{YY zSMH*J|MD|YMnC<>4j5RcrTW6`d)OFwuK(ZA$LO@2RN1;C2xt7KwEoA3^{A+R>whH{ zBDfm$e>bg1R1PgNP^0g-VSzz(fe!plHb|?zk*Dl57)HS&&9)khQ7I6fu7a_W6UMjyw7bUj`WJe6vT%=WlRwKoMM{ zv7u!e?&r9_gm|^1d^(1ItU84*U-OPELdy^|F#wV zb8kb;Do`F}n7~h=^-~$N;DfiQp7`N!m|($^d55X|vDq+VF9wqK(-5awfIQ`qA@2Gn zyeV{Qejooz);Hwluu<^CI?puHoGtBuqmG8!TV-n~9fxVE8u16Nw8MesseHLNg6T zVTsW4g@&K8wP5P5hF^1EVD4)fe*IX1{AG%v*rCJ%zD9AxAY#``8>L}U2&$co246eW z3a^b7MWooGo3W}l@{mr~jn(q;Kp)y0tKaE~uG(g!T}(e>^I|PV$EJ7!(+Z<=6*y7w zETdZuXuVCb(W|-#QI#)7-@%hnzquQ`-p@g?(83sCa~!+NVaD!v&m$HLQ`z~4F)$q_ zuYStd$C!&8HqJOCxg4<$=Tx4#Y>dF~S?eRlhzCVjHATj;@10TaS-g!grV)7G$KE)x z(^xbxB8?NbUdEQ>GvnkIh*ppH8|U~vCMtWxIKQM(;kMqmFzF_;@hZlIumqwr$DyjBRZ z^1SZG^VzLXHdR%5JlsmQd%H2K(lWeZP}`X84xjiw)|h=L5WSxV#><<-(ZqUeyxJq2 zScPTAYgJcapS+bGs7n($dtd zJ0!g9d{ax`3D`1qHMNOrg82XQt;x3_52iSya#x_q?|3=X>V+o1%g?bz(ah9k3@|^(6k>ynt<-T--zu=c-F>EE zEg`uRznP-@V(K)prjY}1{Jo25+&#-UqI834dLh#JHEpFA$K2M&Dw6-F}09*;8)X*b<>HOe>Cl`;D%1?FH>qJ2Kr)`>F|?iNbW3C z`lLg!NTKQUqx+EZQl`91iFgxXyXj?jq=tPmOs_1i5Rl0aO>cXBg}@9ly*&g)6Hl8y zxt~L?XRhh<(MFi#`lc^q!E(<`U)Nw2^mH@*oQ*u;^i0#A1?{n)*2OHHLXaAC++2FT zEm4_BbD80xcz-L^Tv3CRF1wt$VqM($dy%=~u3X|F7tA&*??O?t&6XnT-ppYJG6cd9T;t{9SjRNr=6v7tmtTNqr<*g z#dqd57upk@+G%b(2CKzrHn&T(AvUD1xkHK<%8G?%pF{8=_rB&XWkRr@9%}aA5ra35 z&RNX8M*UgJV%hxiH#=?x#!rI}A6jC0p0^J%>HO4sX}FRmPm zcz@k|d2}Rd*d^xNd$@kv=PE4;+)lKEUQ|ELP5?UrvYQo3Sl3e0~x;yCDu`R^zX(6rGvkw83n9*=gF%iShA`loSq@4y`4JI##ocu zQ#g&q{!au&uhg@02|L&6%a-XfV9=P6c7wym#zaI9h=~{(-6G-4iSh}5SCvi}xUx@L zsU#mEZQt4)JNugCO9Lnx*N6h`XfQt6{lC|wk!kBP#%o#4Rgt|}m4tO!+E|CIbcZaq zLCgFSGUrw(M_x3NM$o{L5#SoH={b#DRkatdw#xSwGp+i0mD&A&gHL!nwPJdYYs^8H Qo_>ox*QdJ_u)|0H4-!Qo_W%F@ diff --git a/src/Gui/Language/FreeCAD_pt-PT.ts b/src/Gui/Language/FreeCAD_pt-PT.ts index dba521488..62490fe78 100644 --- a/src/Gui/Language/FreeCAD_pt-PT.ts +++ b/src/Gui/Language/FreeCAD_pt-PT.ts @@ -922,7 +922,7 @@ Please define another shortcut. Gui::Dialog::DlgDisplayProperties Display properties - Propriedades da Visualização + Propriedades Display @@ -1237,10 +1237,6 @@ Please define another shortcut. Macro name: Nome da Macro: - - Macro destination: - Destino da macro: - Execute Executar @@ -1263,15 +1259,15 @@ Please define another shortcut. User macros - + Macros do utilizador System macros - + Macros do sistema User macros location: - + Localização de macros do utilizador: @@ -1315,7 +1311,7 @@ This file already exists. Read-only - + Só-de-leitura @@ -1678,7 +1674,7 @@ Por favor, indique outra pasta. Gui::Dialog::DlgReportView Output window - Janela de Destino + Janela mensagens Output @@ -1776,7 +1772,7 @@ Por favor, indique outra pasta. Gui::Dialog::DlgSettings3DView 3D View - Visualização a 3D + Vista 3D 3D View settings @@ -1804,11 +1800,11 @@ Por favor, indique outra pasta. Orthographic rendering - Renderização Ortográfica + Renderização Ortográfica Perspective rendering - Renderização de perspectiva + Renderização de perspectiva @@ -1878,6 +1874,14 @@ Por favor, indique outra pasta. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4476,7 +4480,7 @@ Quer especificar outro diretório? Combo View - Visualizar Combinação de visualizações + Visualização Combinada Toolbox @@ -4488,7 +4492,7 @@ Quer especificar outro diretório? Display properties - Propriedades da Visualização + Propriedades @@ -4851,11 +4855,11 @@ Be aware the point where you click matters. Delete macro - Apagar macro + Apagar macro Not allowed to delete system-wide macros - + Não é permitido apagar macros do sistema diff --git a/src/Gui/Language/FreeCAD_ro.qm b/src/Gui/Language/FreeCAD_ro.qm index 2048e51eb85c29029900bd4f832fdbe7929a8652..b032c91f1015369505916ef9ac973367d17a4ad0 100644 GIT binary patch delta 12100 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

rQbV!P-zZc6Rq#C9KA|HUp*e3 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 Macro name: Nume macrocomandă: - - Macro destination: - Destinație de macrocomandă: - Execute Execută @@ -1265,15 +1261,15 @@ Vă rugăm definiți o altă comandă rapidă. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1318,7 +1314,7 @@ Acest fişier există deja. Read-only - + Read-only @@ -1805,11 +1801,11 @@ Specify another directory, please. Orthographic rendering - Redare ortografică + Redare ortografică Perspective rendering - Redare din perspectivă + Redare din perspectivă @@ -1879,6 +1875,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4856,11 +4860,11 @@ Retineti: locul unde faceti click conteaza. Delete macro - Ştergeţi macrocomanda + Ştergeţi macrocomanda Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_ru.qm b/src/Gui/Language/FreeCAD_ru.qm index d160d3018c75c928306f19cae426af3fca21ed76..25efbc8befbe4357f9b6a0c21c79044e323b164e 100644 GIT binary patch delta 12654 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 AumAu6 diff --git a/src/Gui/Language/FreeCAD_ru.ts b/src/Gui/Language/FreeCAD_ru.ts index b3714e2d1..0b4abe68e 100644 --- a/src/Gui/Language/FreeCAD_ru.ts +++ b/src/Gui/Language/FreeCAD_ru.ts @@ -144,7 +144,7 @@ &Discard - &Discard + & Отменить Ok @@ -1239,10 +1239,6 @@ Please define another shortcut. Macro name: Имя макроса: - - Macro destination: - Папка с макросами: - Execute Выполнить @@ -1265,15 +1261,15 @@ Please define another shortcut. User macros - + Пользовательские макросы System macros - + Системные макросы User macros location: - + Расположение пользовательских макросов: @@ -1317,7 +1313,7 @@ This file already exists. Read-only - + Только для чтения @@ -1805,11 +1801,11 @@ Specify another directory, please. Orthographic rendering - Рендеринг в параллельной проекции + Рендеринг в параллельной проекции Perspective rendering - Рендеринг в перспективной проекции + Рендеринг в перспективной проекции @@ -1879,6 +1875,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -3533,7 +3537,7 @@ Do you want to save your changes? PDF file - PDF file + PDF файл @@ -3676,7 +3680,7 @@ Do you want to save your changes? Gui::LabelEditor List - List + Список @@ -3737,7 +3741,7 @@ Do you want to save your changes? No such macro file: '%1' - No such macro file: '%1' + Нет такого файла макроса: «%1» @@ -4075,7 +4079,7 @@ Do you want to exit without saving your data? All Files - All Files + Все файлы @@ -4340,7 +4344,7 @@ Do you want to specify another directory? PDF file - PDF file + PDF файл Opening file failed @@ -4853,11 +4857,11 @@ Be aware the point where you click matters. Delete macro - Удалить макрос + Удалить макрос Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros @@ -5890,7 +5894,7 @@ Be aware the point where you click matters. Save a &Copy... - Save a &Copy... + Сохранить &копию... Save a copy of the active document under a new file name diff --git a/src/Gui/Language/FreeCAD_sk.qm b/src/Gui/Language/FreeCAD_sk.qm index a0026ce9116f9119118e70b97310a213e372a0d8..33fd55e4af4ea139ce0c1de58768ef23deb055e7 100644 GIT binary patch delta 12111 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 delta 11782 zcmXY%d0Y+aAIHDXb7tn8nX}nKB1x7Op|V{|NK&##bnOa}Y?Zx(M7A!n6mIrCYmt2q zSrSq9$a-CSew6k1>CFA3*SncHGxIFp<@0=>`S_RecA>JQ5<9%qrmJO~k%$=4luat9 zk5HKqpmIsJ%C�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 scw~}sgt<8 diff --git a/src/Gui/Language/FreeCAD_sk.ts b/src/Gui/Language/FreeCAD_sk.ts index 94d2f451e..a854d0e8f 100644 --- a/src/Gui/Language/FreeCAD_sk.ts +++ b/src/Gui/Language/FreeCAD_sk.ts @@ -1240,10 +1240,6 @@ Definujte iného zástupcu, prosím. Macro name: Názov makra: - - Macro destination: - Umiestnenie makra: - Execute Vykonať @@ -1266,15 +1262,15 @@ Definujte iného zástupcu, prosím. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1319,7 +1315,7 @@ Tento súbor už existuje. Read-only - + Read-only @@ -1808,11 +1804,11 @@ Určite iný adresár. Orthographic rendering - Ortografické vykresľovanie + Ortografické vykresľovanie Perspective rendering - Perspektívne vykresľovanie + Perspektívne vykresľovanie @@ -1882,6 +1878,14 @@ Určite iný adresár. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4865,11 +4869,11 @@ Buďte opatrní pri klikaní na body. Delete macro - Odstrániť makro + Odstrániť makro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_sl.qm b/src/Gui/Language/FreeCAD_sl.qm index a586013d5046d926c154d115fc1384b9d643c25a..cb9cbb9139ab57ab8b41b96318c963252f0a71b0 100644 GIT binary patch delta 12831 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 delta 12513 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 Press middle mouse button - Pritisnite srednjo tipko miške + Pritisnite srednjo tipko na miški Scroll middle mouse button @@ -287,7 +287,7 @@ Press middle mouse button - Pritisnite srednjo tipko miške + Pritisnite srednjo tipko na miški Press middle and left or right mouse button @@ -322,7 +322,7 @@ kliknete na levi ali desni gumb in premikate miško gor in dol Gui::ControlSingleton Task panel - Opravilna plošča + Podokno opravil @@ -1234,16 +1234,12 @@ Prosim določite drugačno bližnjico. Gui::Dialog::DlgMacroExecute Execute macro - Izvedi makro + Zaženi makro Macro name: Ime makra: - - Macro destination: - Cilj makrov: - Execute Izvedi @@ -1266,15 +1262,15 @@ Prosim določite drugačno bližnjico. User macros - + Uporabniški makri System macros - + Sistemski makri User macros location: - + Mesto uporabniških makrov: @@ -1318,7 +1314,7 @@ This file already exists. Read-only - + Samo za branje @@ -1611,7 +1607,7 @@ Navedite drugo mapo. Extract project - Izvleči projekt + Izvleci projekt Source @@ -1807,11 +1803,11 @@ Navedite drugo mapo. Orthographic rendering - Ortografski izris + Ortografski izris Perspective rendering - Izris v perspektivi + Izris v perspektivi @@ -1881,6 +1877,14 @@ Navedite drugo mapo. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -2251,7 +2255,7 @@ Navedite drugo mapo. Pixel - sl. točk + sl. točk &Width: @@ -2446,7 +2450,7 @@ Navedite drugo mapo. Macro path - Makro pot + Pot makrov General macro settings @@ -2497,7 +2501,7 @@ Navedite drugo mapo. Imperial decimal (in/lb) - Angleške decimalke (palci/funti) + Angleške decimalne (palci/funti) @@ -3100,7 +3104,7 @@ Stolpec 'Stanje' prikazuje, ali je dokument mogoče obnoviti. Apply incremental changes to object placement - Uporabi prirastne spremembe postavitve objekta + Uporabi prirastne spr. postavitve objekta Apply @@ -3663,7 +3667,7 @@ Ali želite shraniti spremembe? Press middle mouse button - Pritisnite srednjo tipko miške + Pritisnite srednjo tipko na miški Press left mouse button @@ -4188,7 +4192,7 @@ Ali želite navesti drugo mapo? Automatic python modules documentation - Samodejna dokumentacija o modulih Python + Dokumentacija o samodejnih modulih Python Opens a browser to show the Python modules documentation @@ -4552,7 +4556,7 @@ Ali želite navesti drugo mapo? Cannot load workbench - Ni mogoče naložiti delovnega okolja + Delovnega okolja ni mogoče naložiti A general error occurred while loading the workbench @@ -4864,11 +4868,11 @@ Upoštevajte, da je mesto klika pomembno. Delete macro - Izbriši makro + Izbriši makro Not allowed to delete system-wide macros - + Sistemskih makrov ni dovoljeno izbrisati @@ -4890,11 +4894,11 @@ Upoštevajte, da je mesto klika pomembno. &About %1 - &O %1 + &O %1u About %1 - O %1 + O %1u @@ -4920,7 +4924,7 @@ Upoštevajte, da je mesto klika pomembno. Ne&xt - Nap&rej + Napr&ej Activate next window @@ -4965,7 +4969,7 @@ Upoštevajte, da je mesto klika pomembno. Arrange &Icons - &Razporedi ikone + R&azporedi ikone Arrange Icons @@ -5141,11 +5145,11 @@ Upoštevajte, da je mesto klika pomembno. Execute macro - Izvedi makro + Zaženi makro Execute the macro in the editor - Izvedi makro v urejevalniku + Zaženi makro v urejevalniku @@ -5205,7 +5209,7 @@ Upoštevajte, da je mesto klika pomembno. List of available dock panels - Seznam razpoložljivih usidrljivih plošč + Seznam razpoložljivih usidrljivih podoken @@ -5242,7 +5246,7 @@ Upoštevajte, da je mesto klika pomembno. Toggle &Edit mode - Preklopi način &urejanja + Pr&eklopi način urejanja Toggles the selected object's edit mode @@ -5706,7 +5710,7 @@ Upoštevajte, da je mesto klika pomembno. &Export PDF... - I&zvozi PDF … + Izvozi &PDF … Export the document as PDF @@ -5721,7 +5725,7 @@ Upoštevajte, da je mesto klika pomembno. &Print preview... - &Predogled tiskanja … + P&redogled tiskanja … Print the document @@ -5740,7 +5744,7 @@ Upoštevajte, da je mesto klika pomembno. Project i&nformation... - &Podatki o projektu … + Po&datki o projektu … Show details of the currently active project @@ -5886,7 +5890,7 @@ Upoštevajte, da je mesto klika pomembno. Save &As... - Shrani &kot … + Shr&ani kot … Save the active document under a new file name @@ -6598,11 +6602,11 @@ Upoštevajte, da je mesto klika pomembno. Workbench - Delovna miza + Delovno okolje Switch between workbenches - Preklopi med delovnimi mizami + Preklopi med delovnimi okolji @@ -6845,7 +6849,7 @@ Ali želite navesti namestitveno pot, če je že nameščen? &Windows - &Okna + O&kna &On-line help @@ -6890,7 +6894,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">Plošča opravil iis</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">Podokno opravil iis</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Ustvarjeno za Qt 4.3.x</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> @@ -6898,7 +6902,7 @@ p, li { white-space: pre-wrap; } Choose the style of the Task Panel - Izberite slog plošče opravil + Izberite slog podokna opravil Default diff --git a/src/Gui/Language/FreeCAD_sr.qm b/src/Gui/Language/FreeCAD_sr.qm index 2e9bb273702b8191f3995d27e680cfd47800f148..5e405b73c4e7e878f844124451761d8846e5e330 100644 GIT binary patch delta 12042 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 DA73C` delta 11666 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 Macro name: Име макронаредбе: - - Macro destination: - Дестинација макронаредбе: - Execute Изврши @@ -1264,15 +1260,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1316,7 +1312,7 @@ This file already exists. Read-only - + Read-only @@ -1804,11 +1800,11 @@ Specify another directory, please. Orthographic rendering - Ортографски приказ + Ортографски приказ Perspective rendering - Приказ 'Из перспективе' + Приказ 'Из перспективе' @@ -1878,6 +1874,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4862,11 +4866,11 @@ Be aware the point where you click matters. Delete macro - Обриши макронаредбу + Обриши макронаредбу Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_sv-SE.qm b/src/Gui/Language/FreeCAD_sv-SE.qm index c5b990ae0971de4d66f325fde18ecefc636a1fe9..6bd5a6743288dd2f225b2becb9ce2d3968b4513d 100644 GIT binary patch delta 12060 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 delta 11662 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ΝlOq^*2w=~0nnDtCia`!eU8-{54V4Ect2~jW@>*Aw1tV2np8}fk#m^_z z8($u&{Q6Gi&rFrSHmUqm$3l*lspRUbl(SVTYgOvYR2rRCn*3E(2vu2ew#rIpxFRz~ z&Q(rPZ&Y3XAJrLg)z_%kR!%BwHc?s2tg=o|mDc|a%(_&)wh>j!81^&fw$be_f)JwsezPq+siMiAFxGWTF#A7ZzbagUaaA$IjN zR}59e2|KiSn*;@4XJ-IdiMpP(kWE{r5$B#FTJTPzjX>RI<)qQ(wj+A3 z(^Pl`BX)hSsTtmg=$xmf_FjbGu2GtXYZ0)Pg7VLR-wkrA^;a^yn1Mf{bCy5cOQxA9%;H*1fGv3upXw`f3T*fMF2L_ z415S1s$Wer_|97h&kRk-bi{!z4>chfn9yt+&4?i!kqSBlDIv}V>(xU;$U z5lyt^haPC6KSv=XmT2amK{mYgQnTnG+(p@{SsJq)I%K-$fBYMwI@>hy16L5eYp+?E z0e5@dK$F~ODee!kkR`O%?40UF#6Q%eHOC6{o1@8!f{wd7MU!~=6uKrVoR24ZX60F+S*oAc=s(N zZ%56obY#yzCpEXUn?0abNCJK zFn>6N)Jnc_!~4Y6ZR4Bz&4Q*r%r^_mC9a7r?^+EZ-Nlh_c@svq>^tw_eiu?VmT%)z z69MZO-?kU%ca3lR!`uQ|GKueUq!;qBGv70_8_N&j&)^#S%>L?%Wo(CNe#Lp{^g@j(q&%Xkj*u8>}YlPq1 z-ilvpi-MNR(r9^B}4c`J<3nvE}s}C zpnFl9Uv~s6Ro#wX-)1RswVn9n8MBDy?B|mUR}sqy;**PVpdViH8xk<#?xFmKtEeNx zSMuhRf=5Uq9{kq0`q5ui{TnwTJbtz^HHClH7;$E{7ympwlGwO;{Hw(gx_m06pdkf6I8+s#W z1lDULQDl9At9}+G`$0kM$|DOl6qLlb#2W6lkP|x!6>C)`cBQpY@iGFCLj|Gwgm%On z|Cue+nj1=->t&%qUo1^sCOH1=NStn};PmA%nsjZ1W_yX~e6{$2RqC2M3$1p-rhROL zwmoqB+%Ca$6SDmHbwU@eIkB&egn&&(BCj3705@#hk;TG*?QptJfx>{>h$glCgn?EC z#8vAg1W$oQoNXk8eMyB6xdy&4bBR z5aK%LBCNTnvYGL;>AEKj0LTdXbM0;cl*^0M9>YLlx(3wJd zXT2ix`#a@xbB+~b8)8{mvD{Ds^tsYEk2sN6S4 zI6o9i*l4?Oad!yhONnqP)S9RQud-4d3t7j{!eu3iXuu`m3LZzN{uZw7vw;DW2oD;Y z{qchhgoj;*qaxj-GCfn}z9f|y)&Ju+mHUfT{#a=tXV+7uy_-<{2?M>GF1%3sqmDW# zl(=zNfqFtoK`C*X#ln}18&Nl17QQ}9ChB7?YRuN?>gb(BO(6Do@GFtOnoBG%Qq-@7 z&HvPi#`f5P=JQ13-9E%IPtmj#d%ewGtXSd#1z9XsD#;_-7$sKehbB&~7_muY5mZ4n3)wVxvB~>v zVvnzi&7xs^Vh7Q+4?gd*Np!t245jK#3)!M6Vn?@RVkx!FqStKbnOa#YodU&xT4lt> z8pMD$8BhV+#K1|224h9B*RgRZU9H4_97|CPr-=XDsg0=dUK}*&0MUW%;^4sRDBQBe z!J}Y|&Iw{j8`Q=J!6o&Hy#E!4aqu!>r8vx^J+YNL#Ze288rPa1ixHJE;)j34G1d}s z+<9?Aw=KlUMsZS0FLZ5+#mNq@hyo5;$fiCJrxuz}*fDXss6m(C*+N!-fEW`9*}`Xv z3(uaw5x~Dll&h#4n|XCg4Ov=QQ&^G`6~(c-yfFs>s7;`#aTf))40 zYu#Wo?dyow7U2Kd2a5$(V28$H!JYE^Tg8G$<@aBTHy!gJJa36Nn>nIf=@KB`%7HaT z*o$|fb`qQ1ht{DAuK%}P>lhB3$?d0gsR^6# zdaZ3*4b59alD63#>~S@wb+fritmiUqXCE(OcY?J(A>h9?wLU|Uk-Co7`lJscws)+y z>+OM93cGjO9#=aNyD>)_WOJYBeTcSqad%>yt+WH|%8=t;Xa_#~M4Uql?NI;65NKiA z&@1QyEP13Ibq_0(J6SvGQ8!}OPiP}NmtdW^KX?7;0Wm?Yhwuh~Bzd$SRN0 zZn}qPy6T*ENAO#sryklgr|&3-M{D;rz%JOH)b5X1g?tmGJie_@3eRKVRh3-YG2nwbUhKSeSH(=6kTQ^J7Zp;efJ_8Ql^%LEN-~= zYiSVlva9x6@gU-AUD1AThE*Ktr~R|H6j5=6_D>-O`tFC0|9T4BmZ=lwjwjaaj>AiI=A4bE&?C$8?<7&d^8|d0) z6cCG=t@Bz@g;>Z8o%aveL5WV+`6iCPHrCVybXZDk>1$oLe?MUU5udQfNzt_#HlnW0VW~+-C zh%LBUq?>;c0={LS%IFl`g2%Q*hg#|ubwodIn3KxTe!9g0E>N5Gbn#kyVh4}t;u|6w zTi?^ge~U)p@LZSRb)Q(H!Mdd0u%%ybbi0csoZ+q4rN-hoEnuX|v0=KjW!V9!jd)$g zPAn;xpvx4&{vULQpAI6bnXfw*cMf^MPGyra-La*OAo{NAjuo{)s^6$P_5!ZHWP$GV z9}zlyQv9(xF6Me|b(b|6#G3Tf6;42OA6Tp_zKo*R@wV=9PitZacI!U)PeZH!f4c8q z3eb&vB(a}R27CKS8h=>A*KU$9U>0oNMiM6MCsuEsq`2UI^XZbIVmo4et4I~YA#oPv zNtFicpgp6dO2=*zEt(=#-e`>l9lBbo{4EAM@L8(y{VO^pMyb}72;{SClAY&uq65Z8QZJYqduS!~ zw|fd@P)!vvgY_U!$Z&s{}aVC@F3de8=sWwAAc}C0-vXEw69F1DB~B zc0`IlI2V1!7t+c*_E6oIq%~b(Bfbe1a?amW{#8#}yP^-V+X>Q!U6^T)TGEz2khR9^ z(w4a)M5mibDgUB?8aqVVH3ibe?uwLl6%+juETsqe6AcEiS@x7;yrIY=aqJJ<_I(6bF z4$#a}E;{Y3Vy2XPt0!?%Bk3%Z1dH~P&OXUT)R-V$#L)ox9G3FZ5g%i+%~F29p~!1} zqzBc06IZ3L^r|_2xU82{lIQ`YUsEbs*At!96shbRmUh~6>07_;P=AinuV8G&XAhaZ zgx9P&C+i+zg*HBvrTD8vKibOjVNG z00QdF&T?}r*noX|xpmk&9I4sKt>3#48)z%H@xO_Pu94esN6K>eAbVYdO=YZ*y&wM# zcV90Dn5-d)uSb7F}p^29g8 zknc&JvI7F7*B3c@D5BWkb>(?!b`&3LThGk@kzlhaQhljj*pcct#ioAI+xHLiD`luhWR~0$cIR-$$lJ^$hAgbF$-sg<5eCsM_RKyrJ4wf?t5aXG16FGAMLQ}rf-~l zG!BF0IhEbNSjhRcmUCM95#4i;b8;{c=QHxj7kN0Xsv)151RapoQa&Gt#XNCc&g&kH z1A%E4ve-)Um7_P%PHQUX&rc?fza?KgftXwSqkJ#zKFS)0W%B(ESk1&fa{5 zqWYA(DreX$3Afr23yxIQ6pn=wj#S}1e>;2`DwJW(+?|FSWV^Q>dLNj8_?e$ZC26(-BCX-Q_^x%@WoHcp594#-{^^w zKFtGFkFT;fvN3}55M^&vH)M}gC1V8AP=fw zGL%<3Y{~CcO3Bmr=nnr--gd^o+;1sm=WY{650p>C@1w>zY9VV}2ErKc%~Za=*?>fw zqx@J|hQ{7S<y_n=p%;t+;ABhz)JIvG@B9akXH2TVq zV5PH<>203uhidiG*W02+0uIyHFK4|nm5ucJ2FH=UZm!ZdY#D;)a7BH?&-EcbFXHSyrf+Xpn=)05$;W)j% z`x+D_Bm3)n&gUQoo%BJ`Pf$^len2Gly6Q{)faE9t5@c+f|E{`OOdU~TjTZ*VU6 zpo{)qxC^niKKgqnHOP1N`sV>&aJNPJ*QwA%A^!SO1$+EO(SIJ-9?~RE|MhQt-$SSW zHgF|6mdEwq&C&LFf9{I@$ATx=`zZa7ud5(YPU(N!m9K!mK^Q$0p|!vuj)*|sOf%^H zZBPgNF;o{O5_^?zsO=4@;pkwfQ-B#=Z(yiPEYFqqiH7=uGAOn|L2IM;#= z`Sdlo){BAHgc-c*wu6f9Wia~>n}*tKnxT799NyhVdoNNLrr^6O5yY6W1E1 z_>G4|S!0;8^#alLt%hkHNLB??&4&2_aHmQu42#N}5ccVY#cQq;rRN&r2gW0W@`iO! z7!K;Y8dAnUvgj%sQr4d*jvH&(?uC`%hZ}a6VTO@k4SRbbUc|>3_O%^P?Bz4VVf(&l zYA!RJKGy~nQJBiTCJR}@ctdUt6fVx@SB7&fVHEf77|!hvLSJXM;lh?sVx?||OFcnp zmEm&j)j0lkG89}NgRbg&!<~u4i1p4eJlyFD;eEzXj5h|EtE=IS|2(3UsfIVt%0qOH z;k}gyR&s=qb$~7KK1O~&M4CG@^5x>M?hT_hAOCM2;A+(Q3?;7qWn-nz#n>w^V^w1) z(e44ps!oG2lfR8t8Tg|8IHTQ7gs$YX#s)X9sTzAonQ=n zaRYnP-}rY!ENR3UW6#Y*;d9KGs;k9k2daDKZ~g4edF$GuIQp>829F2pqEA%4?Gxyko(h^ zHFZDgd28eGdqs%lLyXtXuOxOd(fG6n)L(#)@mUkZj}d!}ulkiDzDUMb`{89@pBvw` zJcYMY8XMmqw1?o3nixNf2em(prEBw$e5x3~$3Q3?sA&8Z+X?4njpMsITbqv!GgWVd z-@iZHRDD-Il2;>>Rl+R<&RwQjjsM`3Yo@90-c^tZ$4s`1Vu-UzHrcg(j4eN8YS0Js zbF5}^DL;(LnQUs~8iQh5F}3US7AK_DO`bX&=T(a`d7kM+w7-L?!#Mba-fZf)(h91v znW=NK7j}x)ntb-dRBDVfb*o@sNLHL=+)*>vyX6TI0l*YskH9c+7o>Gl0xD61QrN}ZrR>zp=~O{$7Q6b6ATlO;jiEIbOSIhKALG8v>ei;rKRhTi(l V@vGTRhpaa_EK14xc!@Pn`#Cv diff --git a/src/Gui/Language/FreeCAD_sv-SE.ts b/src/Gui/Language/FreeCAD_sv-SE.ts index 9d42195fb..29695b15a 100644 --- a/src/Gui/Language/FreeCAD_sv-SE.ts +++ b/src/Gui/Language/FreeCAD_sv-SE.ts @@ -1239,10 +1239,6 @@ Definiera en annan genväg. Macro name: Makronamn: - - Macro destination: - Makro destination: - Execute Utför @@ -1265,15 +1261,15 @@ Definiera en annan genväg. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1318,7 +1314,7 @@ Denna fil finns redan. Read-only - + Read-only @@ -1807,11 +1803,11 @@ Ange en annan katalog. Orthographic rendering - Ortografisk rendering + Ortografisk rendering Perspective rendering - Perspektivrendering + Perspektivrendering @@ -1881,6 +1877,14 @@ Ange en annan katalog. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4862,11 +4866,11 @@ Tänk på att det har betydelse var du klickar. Delete macro - Radera makro + Radera makro Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_tr.qm b/src/Gui/Language/FreeCAD_tr.qm index e64acfa39b6c8a63f7a76b6b9b5536711c298c36..661cc964814aa57a7e6db0fcbcdfee66dbf61b59 100644 GIT binary patch delta 12085 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 delta 11792 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 diff --git a/src/Gui/Language/FreeCAD_tr.ts b/src/Gui/Language/FreeCAD_tr.ts index 73295d9a8..7b1b2f24f 100644 --- a/src/Gui/Language/FreeCAD_tr.ts +++ b/src/Gui/Language/FreeCAD_tr.ts @@ -1238,10 +1238,6 @@ Please define another shortcut. Macro name: Makro adı: - - Macro destination: - Makro konumu: - Execute Çalıştır @@ -1264,15 +1260,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1317,7 +1313,7 @@ Bu dosya zaten var. Read-only - + Read-only @@ -1806,11 +1802,11 @@ Lütfen başka bir dizin belirtin. Orthographic rendering - Ortografik işleme + Ortografik işleme Perspective rendering - Perspektif işleme + Perspektif işleme @@ -1880,6 +1876,14 @@ Lütfen başka bir dizin belirtin. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4854,11 +4858,11 @@ Be aware the point where you click matters. Delete macro - Makroyu sil + Makroyu sil Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_uk.qm b/src/Gui/Language/FreeCAD_uk.qm index 3f6d97f7aa9b04f0949df7d8d72c4134bee8b57b..ac6dff78284bdfed5a24100694873b72ea9a1981 100644 GIT binary patch delta 12121 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 delta 11754 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 Macro name: Назва макросу: - - Macro destination: - Призначення макросу: - Execute Виконати @@ -1265,15 +1261,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1318,7 +1314,7 @@ This file already exists. Read-only - + Read-only @@ -1806,11 +1802,11 @@ Specify another directory, please. Orthographic rendering - Ортогональна візуалізація + Ортогональна візуалізація Perspective rendering - Візуалізація в перспективі + Візуалізація в перспективі @@ -1880,6 +1876,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4859,11 +4863,11 @@ Be aware the point where you click matters. Delete macro - Видалити макрос + Видалити макрос Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_zh-CN.qm b/src/Gui/Language/FreeCAD_zh-CN.qm index 0b796ff034e7563a768e841d09125e270974c34a..3ae922076697d214ba80597b621d8e712b959863 100644 GIT binary patch delta 12115 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 z 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 f$v@}y&K|m;wj%pv!sl Macro name: 宏名称: - - Macro destination: - 宏目录: - Execute 执行 @@ -1264,15 +1260,15 @@ Please define another shortcut. User macros - + User macros System macros - + System macros User macros location: - + User macros location: @@ -1317,7 +1313,7 @@ This file already exists. Read-only - + Read-only @@ -1804,11 +1800,11 @@ Specify another directory, please. Orthographic rendering - 等轴侧渲染 + 等轴侧渲染 Perspective rendering - 透视渲染 + 透视渲染 @@ -1878,6 +1874,14 @@ Specify another directory, please. MSAA 8x MSAA 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -4852,11 +4856,11 @@ Be aware the point where you click matters. Delete macro - 删除宏 + 删除宏 Not allowed to delete system-wide macros - + Not allowed to delete system-wide macros diff --git a/src/Gui/Language/FreeCAD_zh-TW.qm b/src/Gui/Language/FreeCAD_zh-TW.qm index 730a5ed0499142ec39426d4eaffbfce3e7b7d77a..b3e479604d2c4d681f67482143c7128d6ede295a 100644 GIT binary patch delta 12496 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 QIh2n$;=qT+>`d_g0fUZEJpcdz diff --git a/src/Gui/Language/FreeCAD_zh-TW.ts b/src/Gui/Language/FreeCAD_zh-TW.ts index c374fcd5d..2790fa427 100644 --- a/src/Gui/Language/FreeCAD_zh-TW.ts +++ b/src/Gui/Language/FreeCAD_zh-TW.ts @@ -64,7 +64,7 @@ Test console output - Test console output + 測試主控台輸出 @@ -1237,10 +1237,6 @@ Please define another shortcut. Macro name: 巨集名稱: - - Macro destination: - 巨集目標: - Execute 執行 @@ -1263,15 +1259,15 @@ Please define another shortcut. User macros - + 使用者自訂巨集 System macros - + 系統自有巨集 User macros location: - + 使用者自訂巨集之位置: @@ -1315,7 +1311,7 @@ This file already exists. Read-only - + 唯讀 @@ -1802,11 +1798,11 @@ Specify another directory, please. Orthographic rendering - 正視圖角度的彩現 + 正視圖角度的彩現 Perspective rendering - 透視彩現 + 透視彩現 @@ -1876,6 +1872,14 @@ Specify another directory, please. MSAA 8x 反鋸齒 8x + + Or&thographic rendering + + + + Perspective renderin&g + + Gui::Dialog::DlgSettings3DViewImp @@ -3402,11 +3406,11 @@ The 'Status' column shows whether the document could be recovered. To python console - To python console + 至 python 主控台 Reveals this object and its subelements in the python console. - Reveals this object and its subelements in the python console. + 將此物件及其子元素於python主控台中顯示 @@ -4843,11 +4847,11 @@ Be aware the point where you click matters. Delete macro - 刪除巨集 + 刪除巨集 Not allowed to delete system-wide macros - + 不允取刪除系統自有之巨集 @@ -5184,7 +5188,7 @@ Be aware the point where you click matters. List of available dock panels - List of available dock panels + 可使用之面板清單 diff --git a/src/Mod/Arch/Resources/translations/Arch.ts b/src/Mod/Arch/Resources/translations/Arch.ts index dc87255c5..798c92805 100644 --- a/src/Mod/Arch/Resources/translations/Arch.ts +++ b/src/Mod/Arch/Resources/translations/Arch.ts @@ -3,7 +3,7 @@ Arch - + Components @@ -43,12 +43,12 @@ - + Remove - + Add @@ -318,47 +318,47 @@ - + Edit - + Create/update component - + Base 2D object - + Wires - + Create new component - + Name - + Type - + Thickness - + Z offset @@ -689,7 +689,7 @@ - + Unable to create component @@ -1359,27 +1359,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela - + Key - + Value - + Unit - + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : - + Create IFC properties spreadsheet @@ -1650,12 +1650,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcSpreadsheet - + Create IFC spreadsheet... - + Creates a spreadsheet to store ifc properties of an object. diff --git a/src/Mod/Arch/Resources/translations/Arch_af.qm b/src/Mod/Arch/Resources/translations/Arch_af.qm index 14346000c65d8152d4399c4275c43f7b0b5cc82c..96b3a0a0e673e8d28b6acfee6ede1a64b1328ed3 100644 GIT binary patch delta 6372 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 Z6Gabc-TaSTm3T5f%##)T_UMHC{{S+^G0gw~ delta 4263 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 upr&bv8Dc6!wPprq5B)&38UO&A{l diff --git a/src/Mod/Arch/Resources/translations/Arch_af.ts b/src/Mod/Arch/Resources/translations/Arch_af.ts index 6bed48c49..25de92797 100644 --- a/src/Mod/Arch/Resources/translations/Arch_af.ts +++ b/src/Mod/Arch/Resources/translations/Arch_af.ts @@ -4,7 +4,7 @@ Arch - + Components Komponente @@ -44,12 +44,12 @@ Die grootte van die asborrels - + Remove Verwyder - + Add Voeg by @@ -84,57 +84,57 @@ Vloer - + removing sketch support to avoid cross-referencing staak sketsondersteuning om kruisverwysings te vermy - + is not closed is nie gesluit nie - + is not valid is nie geldig nie - + doesn't contain any solid bevat nie enige soliede nie - + contains a non-closed solid bevat 'n nie-geslote soliede - + contains faces that are not part of any solid bevat vlakke wat nie deel is van 'n soliede nie - + Grouping Groepering - + Ungrouping Verdeel groepe - + Split Mesh Deel maas op - + Mesh to Shape Maas na Vorm - + All good! no problems found Alles in orde! Geen probleme gevind nie @@ -159,7 +159,7 @@ Voorwerpe - + closing Sketch edit sluit Sketswysiging @@ -219,27 +219,27 @@ Skep ligging - + Create Structure Skep struktuur - + The length of this element, if not based on a profile Die lengte van hierdie element, indien nie gebaseer op 'n profiel nie - + The width of this element, if not based on a profile Die breedte van hierdie element, indien nie gebaseer op 'n profiel nie - + The height or extrusion depth of this element. Keep 0 for automatic Die hoogte of strekdiepte van hierdie element. Behou 0 vir outomaties - + Axes systems this structure is built on Asstelsels waarop hierdie struktuur gebou is @@ -249,7 +249,7 @@ Die normale strekrigting van die voorwerp (behou (0,0,0) vir outomatiese normaallyn) - + The element numbers to exclude when this structure is based on axes Die elementgetalle om uit te sluit wanneer hierdie struktuur op asse gebaseer is @@ -309,57 +309,57 @@ Hierdie maas is 'n ongeldig soliede - + Create Window Skep venster - + the components of this window die komponente van hierdie venster - + Edit Wysig - + Create/update component Skep/opdateer die komponent - + Base 2D object Basis 2D-komponent - + Wires Drade - + Create new component Skep 'n nuwe komponent - + Name Naam - + Type Soort - + Thickness Dikte - + Z offset Z-verskuiwing @@ -405,12 +405,12 @@ The numbering style - + Add space boundary Add space boundary - + Remove space boundary Remove space boundary @@ -445,12 +445,12 @@ Create Frame - + Create Rebar Create Rebar - + Please select a base face on a structural object Please select a base face on a structural object @@ -579,22 +579,12 @@ The offset between the border of the stairs and the structure - - Wood - Wood - - - - Steel - Steel - - - + Structure options Structure options - + Preset Preset @@ -604,7 +594,7 @@ Lengte - + Rotate Roteer @@ -614,27 +604,27 @@ Con&tinue - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -674,39 +664,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Window options - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Unable to create component @@ -732,12 +722,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Create Structural System @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -817,12 +807,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -837,17 +827,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1062,12 +1052,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1179,12 +1169,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1304,27 +1294,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1364,7 +1354,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1384,47 +1374,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategorie + + + + Key + Key + + + + Value + Waarde + + + + Unit + Eenheid + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1483,12 +1508,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Voeg komponent by - + Adds the selected components to the active object Voeg die gekose komponente by die aktiewe voorwerp @@ -1509,12 +1534,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1535,17 +1560,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Check - + Checks the selected objects for problems Checks the selected objects for problems - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1553,12 +1578,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Close holes - + Closes holes in open shapes, turning them solids Closes holes in open shapes, turning them solids @@ -1566,12 +1591,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1631,12 +1656,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1644,11 +1669,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1678,12 +1716,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Maas na Vorm - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1704,12 +1742,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Rebar - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1717,12 +1755,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Verwyder komponent - + Remove the selected components from their parents, or create a hole in a component Verwyder die gekose komponente van hulle moederkomponente, of skep 'n gat in 'n komponent @@ -1730,12 +1768,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Verwyder Vorm van Boog - + Removes cubic shapes from Arch components Verwyder kubiese vorms van boogkomponente @@ -1782,12 +1820,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Kies nie-menigvoudige mase - + Selects all non-manifold meshes from the document or from the selected groups Selekteer al die nie-menigvoudige mase van die dokument of van die gekose groepe @@ -1826,12 +1864,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Deel maas op - + Splits selected meshes into independent components Deel gekose mase op in onafhanklike komponente @@ -1847,12 +1885,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Struktuur - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Skep 'n struktuurvoorwerp opnuut of van 'n gekose voorwerp (skets, draad, oppervlak of soliede) @@ -1860,12 +1898,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1873,12 +1911,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2085,27 +2123,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Hierdie is die verstekkleur vir nuwe struktuurvoorwerpe - + 2D rendering 2D rendering - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2174,11 +2212,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2195,82 +2228,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Fast conversion - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2320,22 +2353,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Deursigtigheid: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2365,27 +2398,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Dikte - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2395,7 +2428,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2405,102 +2438,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2610,25 +2643,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_cs.qm b/src/Mod/Arch/Resources/translations/Arch_cs.qm index 54aecffee4f7200af856089e9c7bee19e4ede062..83bd0c48b352d9dbf0005920e6a2d37d2cbade5b 100644 GIT binary patch delta 10536 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 bIxAb}iWzN#*d*jehs^ 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 W5g%{&icX416~~-v;1u6HSN Arch - + Components Komponenty @@ -44,12 +44,12 @@ Velikost bubliny osy - + Remove Odstranit - + Add Přidat @@ -84,57 +84,57 @@ Podlaha - + removing sketch support to avoid cross-referencing Odstraní rovinu náčrtu pro předejití křížového odkazu - + is not closed není uzavřeno - + is not valid není platný - + doesn't contain any solid neobsahuje žádné těleso - + contains a non-closed solid obsahuje neuzavřené těleso - + contains faces that are not part of any solid obsahuje plochy které nejsou součástí žádného tělesa - + Grouping Seskupování - + Ungrouping Rozdělit skupinu - + Split Mesh Rozdělit síť - + Mesh to Shape Síť na Tvar - + All good! no problems found Vše v pořádku! nebyly zjištěny žádné problémy @@ -159,7 +159,7 @@ Objekty - + closing Sketch edit Ukončit úpravu náčrtu @@ -219,27 +219,27 @@ Vytvořit parcelu - + Create Structure Vytvořit strukturu - + The length of this element, if not based on a profile Délka tohoto prvku, není-li založena na profilu - + The width of this element, if not based on a profile Šířka tohoto prvku, není-li založena na profilu - + The height or extrusion depth of this element. Keep 0 for automatic Výška tohoto prvku, není-li založena na profilu - + Axes systems this structure is built on Systém os této konstrukce je založen na @@ -249,7 +249,7 @@ Normálový směr vytažení tohoto objektu (pro (0,0,0) automatická normála) - + The element numbers to exclude when this structure is based on axes Počet elementů pro vyjmutí když tato struktura je založena na ose @@ -309,57 +309,57 @@ Tato síť netvoří platné těleso - + Create Window Vytvořit okno - + the components of this window součásti tohoto okna - + Edit Upravit - + Create/update component Vytvořit/aktualizovat díl - + Base 2D object Základní 2D objekt - + Wires Dráty - + Create new component Vytvořit nový díl - + Name Jméno - + Type Typ - + Thickness Tloušťka - + Z offset Z posun @@ -405,12 +405,12 @@ Styl číslování - + Add space boundary Přidat hranici prostoru - + Remove space boundary Odstranit hranici prostoru @@ -445,12 +445,12 @@ Vytvořit rám - + Create Rebar Vytvoř výztuž - + Please select a base face on a structural object Vyberte prosím základní plochu na konstrukčním objektu @@ -579,22 +579,12 @@ Odsazení mezi hranou schodiště a konstrukcí - - Wood - Dřevo - - - - Steel - Ocel - - - + Structure options Volba struktury - + Preset Předvolba @@ -604,7 +594,7 @@ Délka - + Rotate Rotace @@ -614,27 +604,27 @@ Pokračovat - + An optional extrusion path for this element Volitelná dráha vytažení pro tento prvek - + Armatures contained in this element Armatury obsažené v tomto prvku - + The structural nodes of this element Konstrukční uzly tohoto prvku - + Error: The base shape couldn't be extruded along this tool object Chyba: Základní tvar nemůže být vysunut podél tohoto objektu - + Couldn't compute a shape Nemohu vyřešit plochu @@ -674,39 +664,39 @@ Odsazení mezi touto zdí a základní linií (pouze pro levé a pravé zarovnání) - + Pick a face on an existing object or select a preset Vyberte povrch existujícího objektu nebo vyberte aktuální - + Window options Volby okna - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Hloubka díry kterou toto okno udělá v objektu. Zadání 0 pro automaticky. - + The width of this window (for preset windows only) Šířka tohoto okna (jen pro aktuální okna) - + The height of this window (for preset windows only) Výška tohoto okna (pouze aktuální okna) - + The normal direction of this window Normálový směr tohoto okna - + Unable to create component Nelze vytvořit komponentu @@ -732,12 +722,12 @@ Vzdálenosti (mm) a úhly (deg) mezi osami - + Error computing the shape of this object Chyba při výpočtu tvaru tohoto objektu - + Create Structural System Vytvořit konstrukční systém @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Nalezený tvar obsahuje křivky, triangulace - + Invalid cutplane Neplatná rovina řezu - + No objects are cut by the plane Rovina neprotíná žádné objekty - + Object doesn't have settable IFC Attributes Objekt nemá nastavitelné IFC atributy - + Disabling Brep force flag of object Vypnutí vynuceného značení objektů Brep - + Enabling Brep force flag of object Zapnutí vynuceného značení objektů Brep @@ -817,12 +807,12 @@ Volitelný štítek pro tuto komponentu - + Custom IFC properties and attributes Uživatelské vlastnosti a atributy IFC - + A material for this object Materiál pro tento objekt @@ -837,17 +827,17 @@ Určuje, jestli se má tento objekt přesunout spolu s jeho nadřazeným objektem - + has no solid nemá objemové těleso - + has an invalid shape nemá platný tvar - + has a null shape má neplatný tvar @@ -1062,12 +1052,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Ukaž příponu jednotek - + A description of the standard profile this element is based upon Popis standardního profilu, na kterém je tento element založen - + Sill height Výška parapetu @@ -1179,12 +1169,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Typ budovy - + removing sketch external reference to avoid cross-referencing odstraňování vnější reference náčrtu, aby se zabránilo křížení referencí - + Create Component Vytvořit komponentu @@ -1304,27 +1294,27 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Zobrazit řez ve 3D pohledu - + This document is not saved. Please save it first Tento dokument není uložen. Nejdříve jej prosím uložte - + The Python Git module was not found. Please install the python-git package. Python Git modul nebyl nalezen. Nainstalujte prosím balík python-git. - + This document doesn't appear to be part of a Git repository. Tento dokument nevypadá jako součást Git repozitáře. - + Warning: no remote repositories. Unable to push Varování: žádné vzdálené repozitáře. Není možné odesílat - + The Git repository cannot handle this document. Git repozitář nemůže manipulovat s tímto dokumentem. @@ -1364,7 +1354,7 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Zdi mohou být založeny jen na objektech součásti nebo sítě - + an optional object that defines a volume to be subtracted from hosts of this window volitelný objekt, který definuje objem odečtený z hostitelů tohoto okna @@ -1376,55 +1366,90 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Objects seen by this section plane - Objects seen by this section plane + Objekty viditelné touto rovinou řezu Set text position - Set text position + Nastavit pozici textu - + Unable to extrude the base shape - Unable to extrude the base shape + Nelze vysunout základní tvar + + + Category + Kategorie + + + + Key + Key + + + + Value + Hodnota + + + + Unit + Jednotka + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + Objektn nemá atribut Ifc vlastností. Zrušit vytváření tabulky pro objekt: + + + + Create IFC properties spreadsheet + Vytvořit tabulku IFC vlastností + + + + Auto include in host object + Atomaticky zahrnout do hostitelského objektu + ArchGitOptions - + Git Options Git možnosti - + What to commit What to commit - - - All files in folder - All files in folder - - Only this .FcStd file - Only this .FcStd file + All files in folder + Všechny soubory ve složce + Only this .FcStd file + Jen tento .FcStd soubor + + + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1434,12 +1459,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch material - Arch material + Architektonický materiál Choose preset... - Choose preset... + Vyberte předvolbu... @@ -1483,12 +1508,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Add - + Add component Přidat komponentu - + Adds the selected components to the active object Přidá vybrané komponenty do aktivního objektu @@ -1509,14 +1534,14 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Bimserver - + BIM server - BIM server + BIM server - + Opens a browser window and connects to a BIM server instance - Opens a browser window and connects to a BIM server instance + Otevře okno prohlížeče a připojí se k instanci BIM serveru @@ -1535,17 +1560,17 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Check - + Check Zkontroluj - + Checks the selected objects for problems Zkontroluje vybrané objekty na problémy - + Explore the contents of an Ifc file Procházej obsah souboru Ifc @@ -1553,12 +1578,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_CloseHoles - + Close holes Uzavřít díry - + Closes holes in open shapes, turning them solids Uzavřít díry v otevřených plochách, vytvoření tělesa @@ -1566,14 +1591,14 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Component - + Component - Component + Komponenta - + Creates an undefined architectural component - Creates an undefined architectural component + Vytvoří nedefinovanou architektonickou komponentu @@ -1631,12 +1656,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1644,22 +1669,35 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_IfcExplorer - + Ifc Explorer Ifc prohlížeč + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Vytvořit tabulku IFC... + + + + Creates a spreadsheet to store ifc properties of an object. + Vytvoří tabulku s ifc vlastnostmi objektu. + + Arch_Material Set material... - Set material... + Nastavit materiál... Creates or edits the material definition of a selected object. - Creates or edits the material definition of a selected object. + Vytvoří nebo upraví definici materiálu vybraného objektu. @@ -1678,12 +1716,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_MeshToShape - + Mesh to Shape Síť na Tvar - + Turns selected meshes into Part Shape objects Převede vybrané objekty sítě na objekty tvaru @@ -1704,12 +1742,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Rebar - + Rebar Výztuž - + Creates a Reinforcement bar from the selected face of a structural object Vytvoří vyztužující prut z vybrané plochy konstrukčního objektu @@ -1717,12 +1755,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Remove - + Remove component Odstranit komponent - + Remove the selected components from their parents, or create a hole in a component Odstranit vybrané komponenty z jejich rodičů, nebo vytvořit díry v komponentě @@ -1730,12 +1768,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_RemoveShape - + Remove Shape from Arch Odstranění Tvaru ze Stavby - + Removes cubic shapes from Arch components Odstraní krychlové tvary z komponent Stavby @@ -1758,12 +1796,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Create schedule... - Create schedule... + Vytvořit plán... Creates a materials or areas schedule. - Creates a materials or areas schedule. + Vytovří materiály nebo plán území. @@ -1782,14 +1820,14 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Select non-manifold meshes + Vyberte non-manifold sítě - + Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups + Vybere všechny non-manifold sítě z dokumentu nebo z vybraných skupin @@ -1826,12 +1864,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_SplitMesh - + Split Mesh Rozdělit síť - + Splits selected meshes into independent components Rozdělí vybrané sítě na nezávislé komponenty @@ -1847,12 +1885,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Structure - + Structure Struktura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Vytvoří konstrukční objekt kompoletně nebo z vybraného objektu (náčrt, drát, povrch nebo těleso) @@ -1860,12 +1898,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_Survey - + Survey Prohlížení - + Starts survey Začne prohlížení @@ -1873,12 +1911,12 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Přepnout IFC Brep znak - + Force an object to be exported as Brep or not Vynutit nebo ne nevynutit export objektu jako Brep @@ -1924,22 +1962,22 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Quantities - Quantities + Množství Spaces - Spaces + Prostory Doors and windows - Doors and windows + Dveře a okna Start cell - Start cell + Počáteční buňka @@ -1949,87 +1987,87 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Area unit - Area unit + Plošná jednotka m² - + Volume unit - Volume unit + Objemová jednotka m³ - + Currency unit - Currency unit + Jednotka měny This must match what is stored in the project materials. No conversion will be done. - This must match what is stored in the project materials. No conversion will be done. + Toto musí odpovídat materiálům projektu. Nebude proveden převod. € - + Only show totals - Only show totals + Zobrazit jen celky Add material description - Add material description + Přidat popis materiálu Add material color - Add material color + Přidat barvu materiálu Add material finish - Add material finish + Přidat dokončení materiálu Add material URL - Add material URL + Přidat URL materiálu Add price calculation - Add price calculation + Přidat výpočet ceny Add structures - Add structures + Přidat konstrukce Add stairs - Add stairs + Přidat schody Add walls - Add walls + Přidat zdi Add all other roles - Add all other roles + Přidat všechyn ostatní role @@ -2064,7 +2102,7 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Add furniture - Add furniture + Přidat nábitek @@ -2085,27 +2123,27 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Toto je přednastavená barva pro nový objekt struktury - + 2D rendering 2D vykreslování - + Show debug information during 2D rendering Zobrazit ladicí informace během 2D vykreslování - + Show renderer debug messages Zobrazit ladící zprávy vykreslování - + Cut areas line thickness ratio Poměr tlouštěk čar řezajících plochy - + Specifies how many times the viewed line thickness must be applied to cut lines Určuje kolikanásobně se má zobrazit tloušťka řezných čar @@ -2174,11 +2212,6 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Snapping Přichycení - - - Walls drawing - Kreslení zdí - Auto-join walls @@ -2195,82 +2228,82 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Sloučit základní náčrty zdí, pokud je to možné - + Mesh to Shape Conversion Převedení sítě na tvar - + If this is checked, conversion is faster but the result might still contain triangulated faces Je-li zaškrtnuto, konverze je rychlejší, ale výsledek může stále obsahovat trojúhelníkové stěny - + Fast conversion Rychlá konverze - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Hodnota tolerance používaná při kontrole, zda jsou dvě přilehlé stěny rovinné - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Je-li zaškrtnuto, skupiny plochých stěn budou vyhlazeny, což může vést k mezerám a ne-tělesovým výsledkům - + Force flat faces Umělé rovinné plochy - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Při zaškrtnutí díry v plochách budou provedeny odečtením, jinak orientací drátu - + Cut method Metoda řezu - + Show debug messages Zobrazit zprávy ladění - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Je-li zaškrtnuto, otvory budou importovány jako odečítání, jinak již budou mít tvary zdí své otvory odečtené - + Separate openings Separovat otvory - + If this is checked, object names will be prefixed with the IFC ID number Je-li zaškrtuto, názvy objektů budou mít předponu IFC ID čísla - + Prefix names with ID number Předřaď jménu ID - + Exclude list: Seznam vyloučení: - + A comma-separated list of Ifc entities to exclude from import Čárkami oddělený seznam Ifc entit, pro vyloučení z importu @@ -2320,22 +2353,22 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Průhlednost: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Některé IFC prohlížeče nemají rády objekty exportované jako extruze. Použijte tohoto k vynucenému exportu všech objektů jako BREP geometrie. - + Hidden geomety pattern Vzor skryté geometrie - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Toto je typ čáry (vlastnost SVG stroke-dasharray) pro skryté objekty. - + 30, 10 30, 10 @@ -2365,37 +2398,37 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Tloušťka - + Force export as Brep Vynutit export jako Brep - + Bim server - Bim server + Bim server - + Address - Address + Adresa - + The URL of a bim server instance (www.bimserver.org) to connect to. - The URL of a bim server instance (www.bimserver.org) to connect to. + URL instance bim serveru (www.bimserver.org) k připojení. - + http://localhost:8082 - http://localhost:8082 + http://localhost:8082 DAE - DAE + DAE - + Export options Možnosti exportu @@ -2405,119 +2438,119 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak IFC - + General options Obecné nastavení - + Show verbose information during import and export of IFC files - Show verbose information during import and export of IFC files + Zobrazit podrobné informace během importu a exportu IFC souborů - + Import options Možnosti importu - + Import arch IFC objects as Importovat arch IFC objekty jako - + Specifies what kind of objects will be created in FreeCAD Určuje, jaký druh objektů bude vytvořen v FreeCAD - + Parametric Arch objects Parametrické Arch objekty - + Non-parametric Arch objects Neparametrické Arch objekty - + Simple Part shapes Jednoduché tvary součásti - + One compound per floor - One compound per floor + Jedna složenina na patro - + Do not import Arch objects Neimportujte Arch objekty - + Import struct IFC objects as Import objektů IFC struct jako - + One compound for all - One compound for all + Jedna složenina pro všechno - + Do not import structural objects Neimportovat stavební objekty - + Root element: Kořenový prvek: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. + Importovány budou jenom podtypy tohoto elementu. Hodnota zůstane jako "IfcProduct" pro import všech stavebních elementů. - + IfcProduct - IfcProduct + IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... - If this is checked, the importer will try to detect extrusions. This might slow things down... + Je-li zaškrtnuto, import se bude automaticky snažit detekovat vytažení. To může vést ke zpomalení... - + Detect extrusions - Detect extrusions + Detekovat vytažení - + If several materials with the same name are found in the IFC file, they will be treated as one. - If several materials with the same name are found in the IFC file, they will be treated as one. + Je-li v IFC souboru nalezeno několik materiálů se stejným jménem, budou zpracovány jako jeden. - + Merge materials with same name - Merge materials with same name + Sloučit materiály se stejným jménem Mesher - Mesher + Algoritmus síťování The mesher to use. If using netgen, make sure netgen is enabled in the Mesh module - The mesher to use. If using netgen, make sure netgen is enabled in the Mesh module + Použitý algoritmus síťování. Při použití Netgenu se ujistěte, že je Netgen povolen v modulu Síť Builtin - Builtin + Vestavěný @@ -2532,7 +2565,7 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Builtin and mefisto mesher options - Builtin and mefisto mesher options + Možnosti Mefisto a vestavěného síťovacího algoritmu @@ -2542,47 +2575,47 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak The tessellation value to use with the builtin and mefisto meshers - The tessellation value to use with the builtin and mefisto meshers + Hodnota teselace (mozaikování) použitá ve vestavěném a Mefisto síťovacím algoritmu Netgen mesher options - Netgen mesher options + Možnosti síťovacího algoritmu Netgen Grading - Grading + Stupňování The grading value to use for netgen meshing - The grading value to use for netgen meshing + Hodnota stupňování použitá v síťovacím algoritmu Netgen Segments per edge - Segments per edge + Segmentů na hraně The maximum number of segments per edge - The maximum number of segments per edge + Maximální počet segmentů na hraně Segments per radius - Segments per radius + Segmentů na poloměru The number of segments per radius - The number of segments per radius + Počet segmentů na poloměru Allow second order - Allow second order + Povolit druhý řád @@ -2592,7 +2625,7 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Allows optimization - Allows optimization + Povolí optimalizaci @@ -2602,32 +2635,67 @@ Je-li Horizontální rozměr = 0, pak je počátán Horizontální rozměr, tak Allow quad faces - Allow quad faces + Povolí čtyřúhelníkové plochy Allow quads - Allow quads + Povolit čtyřúhelníky - + Use triangulation options set in the DAE options page - Use triangulation options set in the DAE options page + Použít možnosti triangulace nastavení na straně nastavení DAE - + Use DAE triangulation options - Use DAE triangulation options + Použít triangulaci nastavení DAE - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. + Zakřivené tvary nemohou být reprezentovány, protože zakřivení jsou v IFC složeny z rovných ploch. Je-li toto zaškrtnuto, ke spojení koplanárních (ležicí v jedné rovině) ploch budou použitý dodatečné výpočty. - + Join coplanar facets when triangulating - Join coplanar facets when triangulating + Sloučit koplanární plochy při triangulaci + + + + Object creation + Vytvoření objektu + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Dvě možné strategie pro předejití kruhových závislostí: Vytovřit jeden další objekt (nezaškrtnuto) nebo odstranit vnější geometrii základního náčrtu (zaškrtnuto) + + + + Remove external geometry of base sketches when needed + Odstranit vnější geometrii základních náčrtů, když je potřeba + + + + Create clones when objects have shared geometry + Vytovřit klony, když mají objekty společnou geometrii + + + + Show this dialog when importing and exporting + Zobrazit tento dialog při importu a exportu + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Je-li zaškrtnuto, každý objekt bude mít své Ifc vlastnosti v tabulce objektu. + + + + Import Ifc Properties in spreadsheet + Importovat Ifc vlastnosti do tabulky diff --git a/src/Mod/Arch/Resources/translations/Arch_de.qm b/src/Mod/Arch/Resources/translations/Arch_de.qm index ff20caa594123e197d247c304eaabb39cf24f35e..f8c0bbf8a46c54551dc7288ee50d48ecddf2ec28 100644 GIT binary patch delta 7451 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 Qc6s|0O#ZG%N=7UGFUHwsD*ylh delta 5162 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 OM7(IdFV96Vss9Ucb03NT diff --git a/src/Mod/Arch/Resources/translations/Arch_de.ts b/src/Mod/Arch/Resources/translations/Arch_de.ts index cb68d9c1d..afb4b7701 100644 --- a/src/Mod/Arch/Resources/translations/Arch_de.ts +++ b/src/Mod/Arch/Resources/translations/Arch_de.ts @@ -4,7 +4,7 @@ Arch - + Components Komponenten @@ -44,12 +44,12 @@ Die Größe der Achsen-Blasen - + Remove Entfernen - + Add Hinzufügen @@ -84,57 +84,57 @@ Geschoss - + removing sketch support to avoid cross-referencing Entfernen der unterstützenden Skizze um Querverweise zu vermeiden - + is not closed ist nicht geschlossen - + is not valid ist ungültig - + doesn't contain any solid Enthält keinen Volumenkörper - + contains a non-closed solid Enthält einen nicht geschlossenen Volumenkörper - + contains faces that are not part of any solid Enthält Flächen, die nicht Teil eines Volumenkörpers sind - + Grouping Gruppierung - + Ungrouping Aufheben der Gruppierung - + Split Mesh Netz zerlegen - + Mesh to Shape Wandelt Netz in Form um - + All good! no problems found Alles gut! Keine Probleme gefunden @@ -159,7 +159,7 @@ Objekte - + closing Sketch edit Schließe Skizzenbearbeitung @@ -219,27 +219,27 @@ Seite erstellen - + Create Structure Struktur erzeugen - + The length of this element, if not based on a profile Die Länge dieses Elements, wenn es nicht auf einem Profil basiert - + The width of this element, if not based on a profile Die Breite dieses Elements, wenn es nicht auf einem Profil basiert - + The height or extrusion depth of this element. Keep 0 for automatic Höhe oder Extrusionstiefe dieses Elements (0 für automatisch) - + Axes systems this structure is built on Achsensysteme, auf denen diese Struktur basiert @@ -249,7 +249,7 @@ Richtung der Normalen-Extrusion dieses Objekts ((0,0,0) für automatisch) - + The element numbers to exclude when this structure is based on axes Die Element-Nummern ausschließen, wenn diese Struktur auf Achsen basiert @@ -309,57 +309,57 @@ Dieses Polygonnetz ist ein ungültiger Volumenkörper - + Create Window Fenster erzeugen - + the components of this window Die Komponenten dieses Fensters - + Edit Bearbeiten - + Create/update component Erstelle / aktualisiere Komponente - + Base 2D object 2D Basisobjekt - + Wires Kantenzüge - + Create new component Neue Komponente erstellen - + Name Name - + Type Typ - + Thickness Dicke - + Z offset Z-Abstand @@ -403,12 +403,12 @@ Das Nummerierungsformat - + Add space boundary Hinzufügen von Raum-Grenzen - + Remove space boundary Raum-Grenzen entfernen @@ -443,12 +443,12 @@ Rahmen erstellen - + Create Rebar Bewehrung erstellen - + Please select a base face on a structural object Bitte eine Basisfläche auf einem Strukturelement auswählen @@ -577,22 +577,12 @@ Der Versatz zwischen Treppenrand und Treppenwange - - Wood - Holz - - - - Steel - Stahl - - - + Structure options Optionen Struktur - + Preset Voreinstellung @@ -602,37 +592,37 @@ Länge - + Rotate Drehen Con&tinue - For&tfahren + Fortfahren - + An optional extrusion path for this element Ein optionaler Extrusionspfad für dieses Objekt - + Armatures contained in this element In diesem Bauteil enthaltene Einbauteile - + The structural nodes of this element Die strukturellen Knoten dieses Elements - + Error: The base shape couldn't be extruded along this tool object Fehler: Die Basisform konnte nicht entlang des Hilfsobjektes extrudiert werden - + Couldn't compute a shape Form konnte nicht berechnet werden @@ -672,38 +662,38 @@ Der Versatz zwischen Wand und Grundlinie (nur für linke und rechte Ausrichtungen) - + Pick a face on an existing object or select a preset Wählen Sie die Oberfläche eines vorhandenen Objekt oder wählen Sie eine Vorgabe - + Window options Optionen Fenster - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Die Tiefe der Öffnung, die dieses Fenster im Grundobjekt erzeugt. Behalten Sie 0 für Automatik. - + The width of this window (for preset windows only) Die Breite des Fensters (Nur für Fenster aus Vorlagen) - + The height of this window (for preset windows only) Die Höhe des Fensters (Nur für Fenster aus Vorlagen) - + The normal direction of this window Die normale Ausrichtung dieses Fensters - + Unable to create component Konnte Komponente nicht erstellen @@ -728,12 +718,12 @@ Abstand (mm) und Winkel (deg) zwischen den Achsen - + Error computing the shape of this object Fehler, die Form des Objektes konnte nicht ermittelt werden - + Create Structural System Erstelle ein Strukturelles System @@ -751,37 +741,37 @@ - + Found a shape containing curves, triangulating Shape mit Kurven gefunden, Triangulierung (Zerteilung in Geraden) - + Invalid cutplane Ungültige Schnittebene - + No objects are cut by the plane Die Ebene schneidet keine Objekte - + Object doesn't have settable IFC Attributes Objekt hat keine festlegbaren IFC Attribute - + Disabling Brep force flag of object Deaktiviere erzwungene Darstellung durch Begrenzungsflächen für dieses Objekt - + Enabling Brep force flag of object Aktiviere erzwungene Darstellung durch Begrenzungsflächen für dieses Objekt @@ -808,15 +798,15 @@ An optional tag for this component - Ein optionales Tag für diese Komponente + Eine optionale markierung für diese Komponente - + Custom IFC properties and attributes - Benutzerdefinierte IFC Eigenschaften und Attribute + Benutzerdefinierte IFC-Eigenschaften und Attribute - + A material for this object Ein Material für dieses Objekt @@ -831,17 +821,17 @@ Gibt an, ob dieses Objekt gemeinsam bewegt werden muss, wenn das Grundobjekt verschoben wird - + has no solid enthält keinen Volumenkörper - + has an invalid shape hat eine ungültige Form - + has a null shape hat eine ungültige Form @@ -878,7 +868,7 @@ This operation can take a long time. Proceed? - Dieser Vorgang kann lange andauern. Fortfahren? + Dieser Vorgang kann etwas länger dauern. Fortfahren? @@ -923,7 +913,7 @@ The offset between this panel and its baseline - Der Versatz zwischen diesem Panel und der Basislinie + Der Versatz zwischen diesem Paneel und der Grundlinie @@ -1056,12 +1046,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Zeige Einheiten Suffix - + A description of the standard profile this element is based upon - Beschreibung des Standard Profils auf welchem diese Element basiert + Beschreibung des Standard Profils auf welchem dieses Element basiert - + Sill height Brüstungshöhe @@ -1073,12 +1063,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil CutPlane - Schnittebene + SchnittEbene PreviewCutVolume - Vorschau Schnittvolumen + VorschauSchnittVolumen @@ -1172,19 +1162,19 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Der Typ von diesem Gebäude - + removing sketch external reference to avoid cross-referencing - entfernen von externen Skizzen Referenzen, um Kreuz-Querverweise zu vermeiden + entfernen von externen Referenzen, um Querverweise zu vermeiden - + Create Component Komponente erstellen The object this component is cloning - Das Objekt, das von dieser Komponente geklont wird + Das Objekt wird von dieser Komponente geklont @@ -1289,7 +1279,7 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Total - Summe + Insgesamt @@ -1297,27 +1287,27 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Zeigen Sie den Schnitt in der 3D-Ansicht - + This document is not saved. Please save it first Dieses Dokument wurde noch nicht gespeichert. Bitte speichern Sie es zuerst - + The Python Git module was not found. Please install the python-git package. Das Python-Git-Modul wurde nicht gefunden. Bitte installieren Sie das Paket Python-Git. - + This document doesn't appear to be part of a Git repository. Dieses Dokument scheint kein Teil eines Git Repositories zu sein. - + Warning: no remote repositories. Unable to push Warnung: keine externen Bibliotheken. Schieben nicht möglich - + The Git repository cannot handle this document. Das Git Repository kann dieses Dokument nicht bearbeiten. @@ -1357,7 +1347,7 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Wände konnen nur auf Volumenkörper oder Netz-Körper aufbauen - + an optional object that defines a volume to be subtracted from hosts of this window ein zusätzliches Objekt zur Definition des Volumens, das vom Basiskörper des Fensters abgezogen wird @@ -1377,49 +1367,84 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Textposition festlegen - + Unable to extrude the base shape Grundform nicht extrudierbar + + + Category + Kategorie + + + + Key + Schlüssel + + + + Value + Wert + + + + Unit + Einheit + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + Das Objekt weist kein IFC-Eigenschaften Attribut auf. Die Erstellung einer Kalulationstabelle für dieses Objekt abbrechen: + + + + Create IFC properties spreadsheet + Erstelle Kalkulationstabelle für IFC-Eigenschaften + + + + Auto include in host object + Automatisch in Hostobjekt einfügen + ArchGitOptions - + Git Options Optionen Git - + What to commit Was commitet werden soll - + All files in folder Alle Dateien im Ordner - + Only this .FcStd file Nur diese .FcStd Datei - + Commit message Commit Nachricht - + commit Commit - + Push to default remote repository - Zum Standard Repository pushen + Zum externen Standard Repository hinzufügen @@ -1427,7 +1452,7 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch material - Arch Material + Bogenmaterial @@ -1476,12 +1501,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Add - + Add component Komponente hinzufügen - + Adds the selected components to the active object Fügt ausgewählte Komponenten zu den aktiven Objekten hinzu @@ -1502,12 +1527,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Bimserver - + BIM server BIM Server - + Opens a browser window and connects to a BIM server instance Ein Browserfenster öffnen und mit einer BIM-Server-Instanz verbinden @@ -1528,17 +1553,17 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Check - + Check Überprüfung - + Checks the selected objects for problems Überprüft die ausgewählten Objekte auf Probleme - + Explore the contents of an Ifc file Den Inhalt von Ifc-Dateien untersuchen @@ -1546,25 +1571,25 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_CloseHoles - + Close holes Schließt Löcher - + Closes holes in open shapes, turning them solids - Schließt Löcher in Formen und wandelt sie um in Volumenkörper + Schließt Löcher in offenen Formen und wandelt sie in Volumenkörper um Arch_Component - + Component Komponente - + Creates an undefined architectural component Erstellt eine undefinierte Architekturkomponente @@ -1624,12 +1649,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Git - + Commit with Git Commit mit Git - + Commits the current document Das aktuelle Dokument commiten @@ -1637,11 +1662,24 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Erstelle IFC Kalulationstabelle... + + + + Creates a spreadsheet to store ifc properties of an object. + Erstellt eine Kalulationstabelle um IFC-Eigenschaften eines Objekts zu speichern. + + Arch_Material @@ -1671,12 +1709,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_MeshToShape - + Mesh to Shape Wandelt Netz in Form um - + Turns selected meshes into Part Shape objects Wandelt gewählte Netze in Part Form Objekte um @@ -1697,12 +1735,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Rebar - + Rebar Bewehrung - + Creates a Reinforcement bar from the selected face of a structural object Erzeugt einen Bewehrungsstab basierend auf der markierten Fläche eines Strukturobjektes @@ -1710,25 +1748,25 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Remove - + Remove component Komponente entfernen - + Remove the selected components from their parents, or create a hole in a component - Entferne die ausgewählten Komponenten von ihrem Elternobjekt, oder erstelle ein Loch in einer Komponente + Entferne die ausgewählten Komponenten von ihrem Elternobjekt, oder erstelle eine Öffnung in einer Komponente Arch_RemoveShape - + Remove Shape from Arch Entfernt Formen aus Architektur - + Removes cubic shapes from Arch components Entfernt kubische Formen von Architektur-Komponenten @@ -1775,12 +1813,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_SelectNonSolidMeshes - + Select non-manifold meshes Wähle nicht-mehrfache Polygonnetze - + Selects all non-manifold meshes from the document or from the selected groups Wählt alle nichtmannigfaltigen Polygonnetze aus dem Dokument oder aus der ausgewählten Gruppe @@ -1819,12 +1857,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_SplitMesh - + Split Mesh Netz zerlegen - + Splits selected meshes into independent components Zerlegt ausgewählte Netze in unabhängige Komponenten @@ -1840,12 +1878,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Structure - + Structure Struktur - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Erzeugt ein Strukturobjekt von Grund auf neu oder von einem ausgewählten Objekt (Skizze, Kantenzug, Oberfläche oder Volumenkörper) @@ -1853,12 +1891,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_Survey - + Survey Messen - + Starts survey Messen starten @@ -1866,12 +1904,12 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag IFC Brep Kennzeichen Umschalten - + Force an object to be exported as Brep or not Erzwingen den Exports eines Objekts als Brep (oder nicht) @@ -2078,27 +2116,27 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Dies ist die Standardfarbe für neue Strukturobjekte - + 2D rendering 2D Rendering - + Show debug information during 2D rendering Debuginformationen während des 2D-Renderns anzeigen - + Show renderer debug messages Renderer-Debug-Nachrichten anzeigen - + Cut areas line thickness ratio Flächen Linien Dicke Verhältnis schneiden - + Specifies how many times the viewed line thickness must be applied to cut lines Gibt an wie oft die Linienstärke angewendet werden muss um Linien zu durchtrennen @@ -2167,11 +2205,6 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Snapping Objektfang - - - Walls drawing - Einstellungen für das Erzeugen von Wänden - Auto-join walls @@ -2180,7 +2213,7 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil If this is checked, when 2 similar walls are being connected, their underlying sketches will be joined into one, and the two walls will become one - Wenn aktiviert, dann wird versucht beim Verbinden von ähnlichen Wänden die zugrunde liegenden Skizzen auch zu vereinigen. Die beiden Wände werden zu einer Wand + Wenn aktiviert; Werden zwei ähnlichen Wände verbunden so werden die zugrundeliegenden Skizzen auch vereinigen. Die beiden Wände werden zu einer Wand @@ -2188,84 +2221,84 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Vereinige die Basisskizzen von Wänden wenn möglich - + Mesh to Shape Conversion Netz zu Form umwandeln - + If this is checked, conversion is faster but the result might still contain triangulated faces Wenn aktiviert, ist die Umwandlung schneller, aber das Ergebnis kann noch triangulierte Flächen enthalten - + Fast conversion Schnelle Umwandlung - + Tolerance: Toleranz: - + Tolerance value to use when checking if 2 adjacent faces as planar Toleranz, die verwendet wird um zu prüfen, ob zwei angrenzende Flächen koplanar sind - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Wenn diese Option aktiviert ist wird die Planheit von Flächen erzwungen, was zu Lücken und ungültigen Ergebnissen führen kann - + Force flat faces Erzwinge plane Flächen - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - Falls aktiviert werden Löcher in Flächen durch Subtraktion anstatt durch Verwendung der Kantenrichtung realisiert + Wenn aktiviert, werden Löcher in Flächen durch Subtraktion anstatt durch Verwendung der Kantenrichtung realisiert - + Cut method Schnittmethode - + Show debug messages Debugmeldungen anzeigen - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Falls diese Option aktiviert ist, werden Öffnungen als Subtraktionen importiert, falls nicht werden Wände mit Öffnungen importiert - + Separate openings Separate Öffnungen - + If this is checked, object names will be prefixed with the IFC ID number - Hier aktivieren um den Objektnamen die Ifc-ID-Nummer voranzustellen + Wenn aktiviert, wird den Objektnamen die IFC-ID-Nummer vorangestellt - + Prefix names with ID number - Objektnamen mit Ifc-ID-Nummern + Setze ID-Nummer vor die Namen - + Exclude list: Ausschluß-Liste: - + A comma-separated list of Ifc entities to exclude from import - Eine durch Kommas getrennte Liste von Ifc-Objekten, die beim Import ausgeschlossen werden + Eine durch Kommas getrennte Liste von IFC-Objekten, die beim Import ausgeschlossen werden @@ -2295,7 +2328,7 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Structures - Bauteil + Strukturen @@ -2313,22 +2346,22 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Transparenz: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - Einige IFCViewer haben Probleme mit Austragungen. Mit dieser Einstellung werden alle Objekte als BREP-Geometrie exportiert. + Einige IFC-Viewer haben Probleme mit Objekten die als Extrusionen exportiert werden. Mit dieser Einstellung werden alle Objekte als BREP-Geometrie exportiert. - + Hidden geomety pattern Verstecktes Geometrie Muster - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. - Dies ist die SVG stroke-dasharray (gestrichelte Linie) Eigenschaft welche auf die Projektionen verborgener Objekte angewendet wird. + Dies ist die SVG stroke-dasharray (gestrichelte Linie) Eigenschaft welche auf die Projektionen verborgener Objekte angewandt wird. - + 30, 10 30, 10 @@ -2358,27 +2391,27 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Dicke - + Force export as Brep Export als Brep erzwingen - + Bim server BIM Server - + Address Adresse - + The URL of a bim server instance (www.bimserver.org) to connect to. Die URL der BIM-Server-Instanz (www.bimserver.org) zu der eine Verbindung aufgebaut werden soll. - + http://localhost:8082 http://localhost:8082 @@ -2388,7 +2421,7 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil DAE - + Export options Export Einstellungen @@ -2398,102 +2431,102 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil IFC - + General options Allgemeine Einstellungen - + Show verbose information during import and export of IFC files Ausführliche Informationen beim Import und Export von IFC-Dateien anzeigen - + Import options Import Einstellungen - + Import arch IFC objects as Importiere architektonische IFC-Objekte als - + Specifies what kind of objects will be created in FreeCAD Legt fest, welcher Objekttyp in FreeCAD erstellt wird - + Parametric Arch objects Parametrische Arch-Objekte - + Non-parametric Arch objects Nichtparametrische Arch-Objekte - + Simple Part shapes Einfache Grundkörper-Formen - + One compound per floor ein Verbundobjekt für alle Objekte eines Geschosses - + Do not import Arch objects architektonische IFC-Objekte nicht importieren - + Import struct IFC objects as Importiere analytische IFC-Objekte als - + One compound for all ein Verbundobjekt für alle Objekte - + Do not import structural objects Keine Struktur-Objekte importieren - + Root element: Root-Element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Nur Subtypen dieses Elements werden importiert. Um alle Bauteile zu importieren den Eintrag auf "IfcProduct" belassen. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... - Wenn diese Option aktiviert ist, versucht der Importer Austragungen zu erkennen. Dies könnte den Import verlangsamen... + Wenn diese Option aktiviert ist, versucht der Importer Extrusionen zu erkennen. Dies könnte den Import verlangsamen ... - + Detect extrusions - Erkenne Austragungen + Erkenne Extrusionen - + If several materials with the same name are found in the IFC file, they will be treated as one. Wenn mehrere Materialien mit dem gleichen Namen in der IFC-Datei gefunden werden, werden sie als ein Material behandelt. - + Merge materials with same name Zusammenführen von Materialien mit gleichem Namen @@ -2525,7 +2558,7 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Builtin and mefisto mesher options - Optionen interner- und Mefisto-Netzgenerator + Optionen interner- und des Mefisto-Netzgenerators @@ -2603,25 +2636,60 @@ Wenn Run = 0 wird Run so berechnet, das die Höhe identisch zum relativen Profil Nutze Vierecke - + Use triangulation options set in the DAE options page - DAE Netzgeneratoroptionen des DAE-Optionen-Tabs werden verwendet + Verwende triangulationsoptionen des DAE-Optionen-Tabs - + Use DAE triangulation options - Verwende DAE Netzgeneratoroptionen + Verwende DAE triangulationsoptionen - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Geschwungene Formen, die in IFC nicht als Wölbung dargestellt werden können, werden als ebene Facetten zerlegt. Wenn diese Option aktiviert ist, werden zusätzliche Berechnungen durchgeführt um koplanare Facetten zu erzeugen. - + Join coplanar facets when triangulating Vereinige planparallele Netzelemente während Netzgenerierung + + + Object creation + Objekterstellung + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Zwei mögliche Strategien um kreisförmige Abhängigkeiten zu vermeiden: Erstelle ein weiteres Objekt (deaktiviert) oder entferne die externe Geometrie der Grundskizze (aktiviert) + + + + Remove external geometry of base sketches when needed + Entferne bei Bedarf die externe Geometrie der Grundskizze + + + + Create clones when objects have shared geometry + Erstelle Klone wenn Objekte eine geteilte Geometrie besitzen + + + + Show this dialog when importing and exporting + Diesen Dialog beim importieren und exportieren anzeigen + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Wenn aktiviert werden die IFC-Eigenschaften eines jeden Objekts in einer Kalkulationstabelle gespeichert. + + + + Import Ifc Properties in spreadsheet + Importiere IFC-Eigenschaften in eine Kalkulationstabelle + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_el.qm b/src/Mod/Arch/Resources/translations/Arch_el.qm index b4f9f46e2d98805646cdd6a3249d1de092e773e8..1089fd543183fd671884e14358ec52a4b7cf291d 100644 GIT binary patch delta 6379 zcmaJ_cR*9;*FMS3%^oV?E(8TfwQi|Ci->qbdJa*2*d6%mxq*lsNYpEs=;yIS0qcnl zDTxLgC-PDeg+vlr9y{&KF+}m_iMHQ>y#V`>=)o!Y@gR|HVLp-k7>O1!M2ZD4n-d#eMAYyKu_=Rz ze7ZR8Y6G$9@U!+cu?ILLHkH`J@E21+HujgsM41Oko{x$G;z+#{l|-zd$~}^ag5Ob9 zJ*qD~NZt)lUD9i6_S{1BXK!jz7Y^U7qc)c3L>Es{+Z!#34g^!%=ZA?5KGbe)6j53p zbq|_BRC1Df1$q<7x=^oNUm|61@_(30G%wIbz4f8EQRuWY@+rUv*Y4+?c1c4Dn2icO zN}P6SV+u$aM5L8czZHAYnk_Uq33kOh8k#$uXq6X*)VCA0Sw$gZkihB}6cUa?*89@% zv6E4GZ5k2fPLwl@MkMAC#oD}RWFj(;tKzh;deg|anM4!M(I_ce6Yod5ZFnA_rqEQ} zZ@boM*H0kB<_AP|c9JpWdm{5>nludoiVx6~B`w6BGqYnby;ghZm9odt@-BqIHGLFHZyQCL5L>kK@vIz~_<5Rkhx5_BEZj;KYhz<(_Y8TVKa z+~_4y<+%bb1M45R62wtD@)Xn>eMg|Dh7lHMT%7V?4w-N0>BiJ(K z7J6M>kiGf>(QnNJTe~9glt96uccX}&>=K*`uS>M$l;Cw{BGDgP1b@aM0YL+yz=rkh z{Dty2xbE;lsEot9!bQTCo@;P_y0GuDp*AA!f-t0a5K-Sc!ckKopN6Z1qjJ6`%1aZD zK0b`-hb=VFfQK>pqID4-gB+L~qdW!eG zQ-zDW;61MwPMdO3xU6bxqK?Of8TBnhmp2JF&$3-aWu?L$mr!BeYhlj3Cq((N!rW{t z$TU!xw*>6B7YPrXtb4 zD*Z+D><}X>ctKR-E2h>Jv@-TO<39K{QM8n)w*&fjl`;)&lUfmpeVMO+E5KmLU>e_d zfNb}eZj10@wN*@yTL_>QFrl})U|^hK<|PC{Mw!gg0XKm}9VXd~go-*a>mC8x*i>ep z9K+@OJLX~?E77cM=1!MnBF$Uot^n`-{F?cLP)MbZ%(EMa?MH_D#5I9qmd445P)H~7kr$(aIcSSkVQP|9DqI~WGQLBzNQGN^@3_Tz^ zy8B0r)TyGv{wu)tfudqJGe&L=(dDTviMmCIu6lOD1oIO;&;hBXqeKti!;y9zE0f`Q zcvV*8jewzR+3Hu&ip6nkjUMQ|FqHL*!nzaRu#E#DU$3TYhc$;Vu>9DrV{Q{|v@K)% zZUO5r&S3-o0wk@Tupu%)IcP9D;xYmiPhlf^B@+GGiH+!sK$pW=6XE(=Q#NiT$fql1 zCmzSTRt|Qa*`4TKOLpFDJJFSO?0mn&sCYZOuxb$|>0EYUrz()`Gj?GzOEmo*yLitn z=)YbzYZr-#T86MG{H*t}up8s^iMBOiHzmMP+h3e^!#JnC8^UI#K_weQ*&Hul>;Rx;zp$--N^_z7@B)g@AAL z;?^RDDA8X$Bx(i*Ph;`W*kwQ@NNfz8L{#gD*jR|dCVwrSum}Dpn8fDZ$=Gxri!I4# zhz_n4$Jeny|66q8DSoIlTO*#b2Cdk(Se&o{PzST(1?_yH<5uG3a&Y6htN44 z-q;#qV`k7}!A~%0EUlS}2kFs)=S7N>sywaRvyHs88MkdG9pYm=D>DI4;zEZh6hUqRWTs*K9V8t(1OlV$%qnEI4MywrY`y@+xdJ&!Vk}P%G zKs2>jlA=K1*5682xU?YJ)m&m*@f81<(^;~4J}PwlDao#hfLoF!TlclbX-6;F=7)?g zSCO1}GYbPKUMgH21yy)Ry$TQ@DMspbH3nq6AoZSxYu7+&`#BeZM2fWA{P}=$-(;fkm84N#qp-XAN-g2;*tgT9Ns={0 zcT1(4OJx`^tEE|U`=SLyrP~~OKxvQ`EcM5rNtYhJg+wEJN{{rjV;k=vJ#ice^p;5P zr!Y{5Mtc7aIFdU``ZgB`)E*;KPDG*mE6eJCQyqiIHdofHOHIh{gsfT81?V$f77+dc zqu1cHGoH(aXXg{WcqY@g$O1Ws$&6V)fWc2cKgwb1lhq!S1|eB z$qw&7K~(dN?BYNqRyR#nY<>xOU6Yl#1QWfSB>T1FGH~R*th6Q|KWmZQT7iJGp2;4s z!1M1T|&Ms#s=ba>nGP2xS$np&KOO?7j9uo_G*=ohs4noMPhGJ{(9mr#}V)t)&AJT-!hBhD+{PR4pkf2A-B zqj~NSrSO#zqkf}OVw-poyVbYKs+y^|aY^Z3h;8_aR_WadiKRDJc5Z^irl%|WTnE__ z`Y8ib>!Qaw%EXVGaKQLZxvcR9q6WpvZ-ltxL*%LQL2FdLHCy@S272^Wj`H1d zF*cFj$`6eLa9}v064YynGh8JVQ*S3eSU#$l#kYtG3REHq0&c9Ok}iHuG^SLg%FH1; z-BIO!1^!hdRn4}&fjmo9?c4hkZCI`9q&lyQ z2UI>?RrnVVsgJ6p4g&TZu6o?h3%lNI)wAn51d3LRb~&(po>P02yu_|(P-{oDLT?|a z8?XkVm0znHx!Hlx19js&Xo;n}x{nKxrGDzZje>~wZd3<8fZuwz)x#2ykgfkIbx3$V z(W7*=u0BijFkWq(G$_srHomkzx&4yFmRSIEH9gsrt>{zwlu} z>i0eiiB3M#xMU~c=+#kEwKv|M@Iq7V=z4tHC1~77qOiR7nmTe^SDC759N7@MU#e+) z5`KTp&~(oVh5k!anjWFg0g0<7_}~x>oIRSbAM`}`ZJO{+VEqtIGj8D(oO1VT;%{Ny z{CAq^KlZ?;m7qyH6ADO&YZlt;;*%;slUyVt3TmcVvCe{?FV>`8MN8zPH0!GRLJfsZ z`=pU3Hwm-<+Xb4uSzS@-l3|*{w%x(zY)vU&$(1{rJ60=>Oft>mF)Y~JL-Q);B?33q zy!wsS7+tIP3CyV)mll6svG%|8BuhI&DjTdd14Aif4XBpya+tw$Xfoor>~iV1FgTG zuQu9jissB#BWKZCqH)_`iQqV^V}Qpn7gsU$!F%!L?=gM2ct=``Qa8t@UOj6!&!RzP zuC*vCl*VGI9trS8>L?ahT0mebyW>w`c-G%O(yN-yiaTb&6IuopM@_KK7jN)zaR5w< zg#RUZ+}D>EX@uV>+zEpq6r~L_ng90GPHS&Ep}OO(A=tf^l1W2<_Ayz^ z&I%n81xFdJ_HKzis!5p*%x-2clU<$@J6IPPi?yE+HR#xa=lO|0t8px%qSsyVP)dqcTt$?R(Y=w~az8UfX|Ao1e%%E%;(oQ1t zz0{WV$b?@G9k8OG9Qww0A`HLiroH*v8iU$9v$JS*UqA}lTdXECNFS!JNI+AVRu}aN zXBu&3#N;Vbks5r0pUKJVLRUs91MY|8O%sjBFHg_U zoNxLGV11-13L1%v;P?z{@`SQD8D)vknK^?toHLE*tmb&TAkW*8lYd`k+k{T?Xz0t5 z(bG6M=R@&ADJ|}4{d)HXTa;J*4)E`&>7x~XU;$vX^)P~XF?_XQX zwuJ2fL z`n|%|3-yl&LwJqybK(EbpC6e2k!(5Jz5K^Vo6KeUt(Xupsla`n__ce+811q=cSq`F zjku*d_4{H#{bP`nyVvw{4hl%#?s=h+W7CZYk!marM90RX3d}Tn;Q}|ee^3QkgZ1{D zs|}m+^y7PszjCLo2Xf<07(CoWD`$?j4{W*5P2USXdYs1 zSv&Y0@1GKC0JppYe#iS;a1F~=@qzd^Dm2peuZ_gIP$Xt4^KK~U6Otqd}`Tn)NY}IQf5Of_8s$ob4VMivmoR+&I$oH`1_?YI_>^zmB6w2-Am#B0BFZT A?EnA( delta 4266 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 diff --git a/src/Mod/Arch/Resources/translations/Arch_el.ts b/src/Mod/Arch/Resources/translations/Arch_el.ts index 925a3f8b4..2b6d7e24f 100644 --- a/src/Mod/Arch/Resources/translations/Arch_el.ts +++ b/src/Mod/Arch/Resources/translations/Arch_el.ts @@ -4,7 +4,7 @@ Arch - + Components Components @@ -44,12 +44,12 @@ Το μέγεθος των φυσαλίδων άξονα - + Remove Απομάκρυνση - + Add Προσθήκη @@ -84,57 +84,57 @@ Πάτωμα - + removing sketch support to avoid cross-referencing αφαίρεση Σκίτσου υποστήριξης για αποφυγή διασταύρωσης - + is not closed δεν είναι κλειστό - + is not valid δεν είναι έγκυρη - + doesn't contain any solid δεν περιέχει κανένα στερεό - + contains a non-closed solid περιέχει ένα μη κλειστό στερεό - + contains faces that are not part of any solid περιέχει επιφάνειες που δεν είναι μέρος κανενός στερεού - + Grouping Ομαδοποίηση - + Ungrouping Κατάργηση ομαδοποίησης - + Split Mesh Split Mesh - + Mesh to Shape Mesh to Shape - + All good! no problems found Όλα καλά! Δεν βρέθηκαν προβλήματα @@ -159,7 +159,7 @@ Αντικείμενα - + closing Sketch edit κλείσιμο επεξεργασίας σκίτσου @@ -219,27 +219,27 @@ Δημιουργία τοποθεσίας - + Create Structure Δημιουργία δομής - + The length of this element, if not based on a profile Το μήκος του στοιχείου αυτού, εάν δεν βασίζεται σε ένα προφίλ - + The width of this element, if not based on a profile Το πλάτος του στοιχείου αυτού, εάν δεν βασίζεται σε ένα προφίλ - + The height or extrusion depth of this element. Keep 0 for automatic Το ύψος ή το βάθος εξώθησης του στοιχείου αυτού. Κρατήστε 0 για αυτόματη - + Axes systems this structure is built on Ενσωματωμένο σύστημα αξώνων στην κατασκευή @@ -249,7 +249,7 @@ Η σύνηθης κατεύθυνση της εκβολής του αντικειμένου (διατηρήστε (0, 0, 0) για αυτόματη κανονική) - + The element numbers to exclude when this structure is based on axes Οι αριθμοί των στοιχείων που θα εξαιρεθούν όταν η κατασκευή βασίζεται σε άξονες @@ -309,57 +309,57 @@ Αυτό το πλέγμα είναι ένα μη έγκυρο στερεό - + Create Window Δημιουργία παραθύρου - + the components of this window τα στοιχεία αυτού του παραθύρου - + Edit Επεξεργασία - + Create/update component Δημιουργία/ενημέρωση στοιχείων - + Base 2D object Βασικό αντικείμενο 2D - + Wires Νήματα - + Create new component Δημιουργία νέου αντικειμένου - + Name Όνομα - + Type Είδος - + Thickness Πάχος - + Z offset Οφσετ Z @@ -405,12 +405,12 @@ Το στυλ αρίθμησης - + Add space boundary Προσθήκη χωρικού ορίου - + Remove space boundary Αφαίρεση χωρικού ορίου @@ -445,12 +445,12 @@ Δημιουργία πλαισίου - + Create Rebar Ενισχυμένη δοκός - + Please select a base face on a structural object Παρακαλώ επιλέξτε μία όψη ενός αντικειμένου @@ -579,22 +579,12 @@ The offset between the border of the stairs and the structure - - Wood - Ξύλο - - - - Steel - Χάλυβας - - - + Structure options Επιλογές Δομής - + Preset Προκαθορισμένο @@ -604,7 +594,7 @@ Μήκος - + Rotate Περιστροφή @@ -614,27 +604,27 @@ Con&tinue - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -674,39 +664,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Επιλογές παραθύρου - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Αδυναμία δημιουργίας στοιχείου @@ -732,12 +722,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Create Structural System @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -817,12 +807,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -837,17 +827,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1062,12 +1052,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Ύψος περβαζιού @@ -1179,12 +1169,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1304,27 +1294,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1364,7 +1354,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1384,47 +1374,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Κατηγορία + + + + Key + Key + + + + Value + Τιμή + + + + Unit + Μονάδα + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1483,12 +1508,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Add component - + Adds the selected components to the active object Adds the selected components to the active object @@ -1509,12 +1534,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1535,17 +1560,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Έλεγχος - + Checks the selected objects for problems Έλεγχος των επιλεγμένων αντικειμένων για προβλήματα - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1553,12 +1578,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Close holes - + Closes holes in open shapes, turning them solids Closes holes in open shapes, turning them solids @@ -1566,12 +1591,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1631,12 +1656,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1644,11 +1669,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1678,12 +1716,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Mesh to Shape - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1704,12 +1742,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Rebar - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1717,12 +1755,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Remove component - + Remove the selected components from their parents, or create a hole in a component Remove the selected components from their parents, or create a hole in a component @@ -1730,12 +1768,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Remove Shape from Arch - + Removes cubic shapes from Arch components Removes cubic shapes from Arch components @@ -1782,12 +1820,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Select non-manifold meshes - + Selects all non-manifold meshes from the document or from the selected groups Selects all non-manifold meshes from the document or from the selected groups @@ -1826,12 +1864,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Split Mesh - + Splits selected meshes into independent components Splits selected meshes into independent components @@ -1847,12 +1885,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Structure - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) @@ -1860,12 +1898,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1873,12 +1911,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2085,27 +2123,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela This is the default color for new Structure objects - + 2D rendering 2D rendering - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2174,11 +2212,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2195,82 +2228,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Γρήγορη μετατροπή - + Tolerance: Ανοχή: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Αν αυτό έχει τσεκαριστεί, οι τρύπες στις επιφάνειες θα εφαρμοστούν με αφαίρεση αντί χρησιμοποιώντας προσανατολισμό συρμάτων - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Αν αυτό έχει τσεκαριστεί, τα ανοίγματα θα εισαχθούν ως αφαιρέσεις, αλλιώς θα έχουν αφαιρεθεί από πριν τα ανοίγματα των σχημάτων των τοίχων - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2320,22 +2353,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Διαφάνεια: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2365,27 +2398,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Πάχος - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2395,7 +2428,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2405,102 +2438,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2610,25 +2643,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_es-ES.qm b/src/Mod/Arch/Resources/translations/Arch_es-ES.qm index ebf52c8ef20d5b8f3163533a7cca1de9bf125b71..60effa37ff9fdef0425958b2ba9dacd1edf00d26 100644 GIT binary patch delta 6495 zcma)A30RG3`@hffo_%3b*78P0BR*pnA_;{o36u47&RZRF4(FUo1_x#A>rvUp*fOFi zBTKR?OBgbiW-vsSvCU_RvHO1SImG<0`Cs36xvuW>KJW9~>+g5p&+Al%_}@8Vd&dGp ztrP!VmHxALy#u4x?)$wfQ8gkG2NP}m4YHD`fgh2y6A8p_M2$KT6*5FUHV{d$uV)ld zF%I-uPjs>#QU4Mm-w>kc1frzZE;(lvQOYkwyMKT@2YHO>-YLjCB(^UoB2q3Q@j?-i zigU^N5)x-+5zRhM;!Th>Uy^u_n5cF!i7(D4+Ifr^#XcDFAf{()BEL;8IcE$paTkcb zd_YXbAfk4)TynjJm^IMz!(Czya&T-8F-M?p!ZxxqzXlNHjUh!5BI(J8BOKyT6iXVWpkI^)Xo3=#sNvQlB<>t{>x) z8UEB~79wP)yJTiN>XR`L&zq_5vb`wHa2k{bxjKo46ig@jejPVErPB zjzb{XaWr)FBt-5Pl>wkq)TTm5NW=n=V#rCwt3U* zQ*OveQ+hWHvWYvrAD>FJ*I%GaO+%{ng6cg*M8>9q8Z+?TD) zLD*UZVmc{^YVwTeiy#4)h5awC2vTY;B|A-jFGxv8N-T_E%9i~^Bd-b8UjXV0uL-tH z+Dde6wcy9e6+r)HLGE|wh@Nf|~6D*hC1nQ1={6c-A&l~urCnQ+J4 zKZ#E56c*�H%w=1B-$FWp{-KPc}d)3WP1t z@2=Ft!Yr{m0Q9+CF76fhm?*Blc=&E9(T^9!1~Ckbek)EA!qFvD#52bL%@5Z(rGU9F zp8Kd9=o=(nc|k;UzpZ#4KO@Oyy=(aMB|T&e|l^rYP(mwV>$wxTVGtn zog-@f&@L`Ygo2^r;$yqBk%`9Q(tgW`yxxc}x?4yfS}*=>N=u?{N5z-DgV4b|#P@W_ zRA#LB{#z*WmNRlW-W$sqtuG9698>EON|CN(YKNls!i|iN3H#0+Vge#SUtc5BarI#| ztUxAs)J+6v_h5Se2-IJl%=CGMl(bpJM9Y!NL3^2Dzrj%XG$y`hD$#>*CcZZeRb(?} z!tFAYj|=Fe#4HH<0 zB&VF&;S+*=cIMz9DEfCHbL>6_%OA70+_x> zQr7V)(NDJ}xBrFpF0Uka215UlYm!Qly$FWWC2w`u*e_QqE;>%6nfV~w<( zs1;GsE@?Y0-X~m_c5-k;G49f!4V6SzhcwhKLS)0AN(X*nAR2f2Ru zilHx5y10iA(XWf7OWZdg6QiXWN*Hddl`eB@L9{#-)VTRaa`76 z_IYIROIg=>^UyK%vYx}-iKZ3G!b5SJ%1f6GSY8S?9Fz?UgWli0>@u!*I+6L6%;Yly z(`}^88s~+%9Vknat_GbVWLs{?kpZhLXHIXFV3}-dzMg1oD_QZ9Ff^J{*^vr3YHlk# z+Sh?G-d%R01R3Z(Uv@V`gz=jqyL$^5IhZSZU4RUD%H*mE2=wR~d84Mai00Uj%A0qo zgHB|UH%~hUey))BiF=3E%ev$ofBDedA`%FC%JnUBK(||RW6lpi@i+2>1W5M0+);ZR z6k6mfZSBE^>++RbZlYuMlz)HfDkASD-<0tu(b;P9U3`nK>?_~B9gaMDA}_oR$L%?h z@`Hinu95N^ zb&&F3ugfcz!Qi}p@`uZ!h_dP^w98>|cCw;I;(E}suEKq`9_Y_hc*ddkzn!k|I)&kt z+EL+cSONaOYN7~|q+)!&RdlX@5ko<&=-k8?@;gQ6;fT0~L=ln{f!pmMg}&Ggr8upy z|G6IbfpEq2%D;#%dn@Km+lKxTs#qGNK~484maaLCevzm6VMG>MutJf27??^BC~^+N z(E;5RJCCnG>ozG4bk~6YNqLH6o1vKPtvI<=ib&5WE=tpongqp@GGwOHYQ;-W6H!oa zrJ@LmBz9$+SQyyeNZC$}eLJ2h`!`2#U)xXlbr&n{c4f+uLjbO@7$q0vL&T&j=Vv;I zULR7f8hQtrl`GesF94gSDs%PrNTSDYm3bY7pp~~WuizHw(OJ3s4;)y#OSxwu9LRT5 z9zW)W@fof>9TZBmGDdl(86xqtDob~w6wztQs}KE&mijAiRm{N@ZKS*}nn;v9P5Iae zFpf-8zMh2rGMP%4gVwy@tV;OYh*lr3lG-Pn$F%ZPd1$9#Axq^|iZOgMUgaAE$FiQP zIyZx3-zKPfT?N=u|58P)1c85%Y&kEIxSR-r7)P| zP|FrQ#SBPNt2gZ+x_ChCbqV@4ZPm@Uz99NWqwdfl3|HVg>LB(Q(UhKcb@29d3>!|} zcZ-GSmv!oK4*)vf67|%p09V37^|vcRz>a(B#dU!0P=k7LjyphCqRz;yL?76uUY4;G zol>XXPz^Vtk=4{$<9&(3lhm66TjO(Vsycgv9-neA)VW>W5iP%}&dWmPlHaNiP40n= z*k7oNM_PgYLUr-+j%XM!)TOWBvA;!qr2!0vJybvJ>jTd(sh?ccVfvM7#5?mbK8I@R zUwH-^7HZgGtx(%sO=HG@50MR;Cho}KrCFMQTPR6Vgr=7pGD|%)y_-a0=nT_D+=Jf6 z4K!a*g+unpL7M2eBHYKrHM&L&(O=ay#+hzJ8~ikumhSju>ZGwefSj(>Bu9xb-?f^w zZlKwU!EXL zeXTig4f{^?)f7(>f&X_SG)HU0Q|`Xz=XQv6$$ri0%QNsHqSTaU%qIG-h30{BHNMr{ zG?h__M8l?QUhI8E)G}7{w#@>f3!}AexoNlwJ=1!GTl3g@qD76hUc(XCad&M4 z1)kkJv;hhJ;C(A?`;*Z7V4t>IP7L^edzv;h<|#g{2Wq1Z4MxKW(#HOvN2`3PjoS>= zM~k#$7F@zDcds_30{a%{YNuz1Vrc!UO+6ihl)7mbI2z)b?W;|{AjkaQs9m`P*9V^l%vO)XCo*o?cIMoS^4@=Jn>ga#j&Hgb!J|2XKzk0fk-FjF^a28~o^CX`P zmk(xGAC2F9xdMr;3SiK{c#bv4jOO$3XJ z=MvZkpVDJv^?U-2W)mB0wtUnS$mV|)x6iANilPvS5kBfZE510&WOO`g=kBPS(V@12 z2H_>|w57@^W{@r+F`xZ*r6~XA>=kwGLI17B|BwJ@nUPNXtI}KhvtoZ1LbGPg&`!uL z*rJagiP$5nif%$X#D|#3y$~Odl%n{|1zwlJ(rT0Zplj zi1&tPt{J|$T;V~abG+Z?ZRZJS0tI0{>v(5HxUNz({MaCPa`LqO zd);_dR>$eCo^}`IK9caCDfp?3QDL#HKAzK$L5!SEAODdg$;N~PR|0JDoYBIwj{S^w z&Keu|-uU5k; z@y*p-<$db`+*mU@88^YkSxmZwDqyi-NQ}5z?W3p< ztn#q3ICZnm`Ne~Vue8zGXwA;S#Dfl8ae|4Tf-ZO(olM}zmg`K4vj!8ujt^^9o;Hn) zHz%{Uc%zjy7>tCx~^L;<*rmvb(_WsU2}hzR}4Up87nL`O(btf&Z(o(!u}YS;kKkKE=EqOb(J) z&09x#a82!4*+aMzNwGJQd3e_7WTR_KxBAdw<=X*>7$?=icvGws0;(uyn`^t$pU%y7cp| z^^c9&bmT@Cz?=yPoq=o{WfjoyDIj$O-VXtqQtp2S^wX9sR&~D6`=Vth#7+c&-`k+{vE`P)U%}oVnG-k zvxE4bR=}=6i1!8ovqV^A8zTwGg|d$kL;yAX(t)7w;S`br+&K;RW=3G)Y_xe51$-Qd zwvDOq!!dY8y#mUuXn(66P}l?QU!4R(r^9>GWMI87x(!?a+^j&)0CzxNg`Rm`0pmvW zdb}1`HUPat#`5{IrTRxw5c+!Zg>&<2nVN*Yix{CxuWFf=fxa2^*ku~}WgZ4x-7q+j z@|Q6fk~be%n~Y&iQ-StBV%QiuuwfR4g)@+C{V{A8&w1~~@CkE(sBDaw>I5*= zH4{~x2YCZ+OH{o!F@Q<^Re>#Ev!0?VY#Yx%JEDrMl?KF*RK=z<15=i&=I%NQ3r2>i zwp?MCA1G4onv)Bh*s1zGu9DsUOqKI%2|ISNYIkQEp6jDJ@o5zBB2aZMyfKjbLG?B( z0eH1U^?n8&P&HAjEIj|Cr&@l;XCFtkaR$$o)K#~0UC;M1YX8$j(71N$VZ8?uF@4pe z;)*Pcu$Ow&{uY33k$QB|Q0A+pI_zv1(5XNjYjt2vL)3A3RNOmM9Y4AjFu%Qe{vt-I ztX3~NEVKEt)yrS-d-q87icb8_t-M;Uexgou@}MJstG6|c0xIIvyOK)TykFIO%Nd}p zQoVnv*Ap89kEQ`zgX`nCua(-CLRpVDl14;|c*vd{U#Ujnp_>M=rRQ&GPe$8_*5W6Lsm$y9F1M4+kD(dsO zpI~Z5wA{1^eY{@~uH}MdWWEIKC=fyg8W^7-Ojpy>F@f<1apU=P+#R;~s65xjv!4|{s zhZGB^@^>&3&4l8g$g&M=7NN{B5_tDOxH`8T&~>?R-PMPT1>sRJQKS6?OEp{GrhXF$L z|NSVRr;2?)Fe4rv#bJ78GSIR>9C4L~uG)#?dnN#tEyeNvG*sawP63~9brWZ-VbcXy zi8G6M&ZDNdG}0M(I7eK%C>6L7Cnk44$%xyEDNa{_!9`+9&021tsBLi@l@nJuUc+jQ!O8)i`nanfUGm(ez&fGH9{;H zOhxzBil-i*0&Y8r7k?@Tp3E1^IxwQ?JH&E%9|zS$@z$Y3%;-q*cAsz#vE}0DM$q^elFXwrwR1ei*Oy z5HyTrsWxcx0uoNFcF6QJX5?pWM8GVdo}V_Nn32V`&`vuZ#rH)qyBjsR<$1()mHMfAHmu0FM0NF0(6g%yfi-mM{Saqng34+mpZ0~(ZE{CXKNKR zQAhIAu-k{nN`q>K(((0D&?lClldCkMf&tDBlEzpX({odx6xx;scVCvq-OVTNou$Y} zJh1htG*h(?NVk&`21EmO{G=6mg;bdE8uZAOGVR*}huTS* zFDRG1kai_Au!BWXPF>o`Jt*xy;=v{6Cn>i(9lickvYdIBM8avVb1S6c1^0Ds*JFUE z19a~5_-wyi_v7MHMxLwdlAKIt?5pcJ!jT4R>w5cL^)Bo;S)n@)8}EM|S1#1g_SQQtTG z3pb|w)iNnbKRm|Q%Q>V^8_v#xP* z>90R|^bAmUvA%Qw9cw&KUl#eA4h_;**ay;)lluR5OanUC*H>oJ&f*;X(@eg%Y!YPi z8X8)7MRthU0yz97J1!1kH_wwBgpb>|1s9`dQ3RP16epUssRS%zFD zB?5EK$S=#8i4NiN`v#MNj*bS|Mm<`K!E@XNHeC&amx<^0+%oiULu&rj+c30K6j!k0 zhS5X9i2t4~4PicRfS7JrwmKDfx!JI8_qjNFGXvJHjyAK`Pbi?TT9UV(JW9)O2%{4F37_hc6-v=2JzV76HFyENgYAeue zhjFzV9e1i_TvuTwBQ3Cx;ttU$2m2%Z-J_@!W8}7)x5Q#zpqVvds?UgEV9L zPAV`jG2R;H%=?0`@sS53x7r!s-C~IvI2%8$=51tptno{$zU%>4ld4HO^20KdrpZ2z z?Ld=eMI~@5$0SI!mlbEyt#}2D`DC(~vi1YT6HU(7Xuy_v@+X~ zO?TLovAT*>?Pbc$NaKa$m}#pW7n%_nrft*Qxl#GjzPAVPQ!mqwts$INf0=SRePNAH zn|5zw>S7X1$K!f1wS!HCqobIC8m7Y29mo%VnTkJrOR2r7q7e=DJYag-&y7RNY@EETIJfh+zHf3l$9U9=G3=6k$jc%y~Hxpd^ycZ)~QD3=meF0Nls@%?446LcI zJTa_i(@s;W0%Lg5&?)Z@f8c#UQa*d802iIi_Bn~%oMxMydh`3pS>{@&wh;fz7Mh($ zGBTU1xskkuL~_I2YEpCJ{G+-3St_nvZ|;^omP=zpv)|ZP9MiAOfyaY58$|QC-$KZY z*UaHN+4Vt-%@b3uaY@~6j;-Xmx~ zZ(?3^Ot&__nH>gb#zpXknrf|U=WMX%)T>lk3mXj3q+V~RSogX9Zf{NU$a1PHqccJf zhDc1&vD*LK;l+W`VPTW3uKq{rTU{sYc20f2sIztK;$%%dBl;p3q5qr@{{ML)Xv&mO z>+R&Mde%=nUbtJ&7VnU)r4=oW*1U%aTI+`A2L!9%n*o9~@S}sn!LS;tODgY1=*HXi zSj1ogrl8?JIvZjtwMSC>Hw#h!*KZ06o-`?{VQ6IVjEKqMsjlamq!xS@4tm?GJT(6U D#)u&G diff --git a/src/Mod/Arch/Resources/translations/Arch_es-ES.ts b/src/Mod/Arch/Resources/translations/Arch_es-ES.ts index 837491131..859a0e460 100644 --- a/src/Mod/Arch/Resources/translations/Arch_es-ES.ts +++ b/src/Mod/Arch/Resources/translations/Arch_es-ES.ts @@ -4,7 +4,7 @@ Arch - + Components Componentes @@ -44,12 +44,12 @@ El tamaño de los globos de eje - + Remove Quitar - + Add Añadir @@ -84,57 +84,57 @@ Suelo - + removing sketch support to avoid cross-referencing removiendo dibujo de soporte para evitar referencias cruzadas - + is not closed no está cerrada - + is not valid no es válido - + doesn't contain any solid no contiene ningún sólido - + contains a non-closed solid contiene un sólido no cerrado - + contains faces that are not part of any solid contiene caras que no son parte de ningún sólido - + Grouping Agrupación - + Ungrouping Desagrupar - + Split Mesh Dividir malla - + Mesh to Shape Malla a forma - + All good! no problems found ¡Todo bien! no se encontraron problemas @@ -159,7 +159,7 @@ Objetos - + closing Sketch edit cerrando edición de Dibujo @@ -219,27 +219,27 @@ Crear sitio - + Create Structure Crear estructura - + The length of this element, if not based on a profile La longitud de este elemento, si no está basado en un perfil - + The width of this element, if not based on a profile La anchura de este elemento, si no está basado en un perfil - + The height or extrusion depth of this element. Keep 0 for automatic La altura o profundidad de extrusión de este elemento. Mantener 0 para automático - + Axes systems this structure is built on Los sistemas de ejes de esta estructura estan basados en @@ -249,7 +249,7 @@ Dirección de extrusión normal de este objeto (mantener (0,0,0) para automática normal) - + The element numbers to exclude when this structure is based on axes El número de elementos a excluir cuando esta estructura se base en ejes @@ -309,57 +309,57 @@ Esta malla es un sólido no válido - + Create Window Crear la ventana - + the components of this window los componentes de esta ventana - + Edit Editar - + Create/update component Crear/actualizar componente - + Base 2D object Objeto base 2D - + Wires Alambres - + Create new component Crear nuevo componente - + Name Nombre - + Type Tipo - + Thickness Espesor - + Z offset Desplazamiento en eje z @@ -403,12 +403,12 @@ El estilo de numeración - + Add space boundary Añadir límite espacial - + Remove space boundary Remover límite espacial @@ -443,12 +443,12 @@ Crear Marco - + Create Rebar Crear Ferralla - + Please select a base face on a structural object Por favor seleccione una cara base en un objeto estructural @@ -575,22 +575,12 @@ La distancia entre el borde de las escaleras y la estructura - - Wood - Madera - - - - Steel - Acero - - - + Structure options Opciones de la estructura - + Preset Ajuste @@ -600,7 +590,7 @@ Longitud - + Rotate Girar @@ -610,27 +600,27 @@ Con&tinuar - + An optional extrusion path for this element Una ruta de extrusión opcional para este elemento - + Armatures contained in this element Armaduras contenidas en este elemento - + The structural nodes of this element Los nodos estructurales de este elemento - + Error: The base shape couldn't be extruded along this tool object Error: La figura base no pudo ser extruída a lo largo del objeto guía - + Couldn't compute a shape No se pudo procesar una figura @@ -670,39 +660,39 @@ Separación entre esta pared y su linea de fondo (solo para alinear a derecha e izquierda) - + Pick a face on an existing object or select a preset Elige una cara en un objeto existente o seleccione por defecto - + Window options Opciones de ventana - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Profundidad del hueco de la ventana. Si el valor es 0 se calculará automáticamente. - + The width of this window (for preset windows only) Ancho de la ventana (solo para ventanas predefinidas) - + The height of this window (for preset windows only) Altura de la ventana (solo para ventanas predefinidas) - + The normal direction of this window Dirección normal de la ventana - + Unable to create component No se ha podido crear el componente @@ -728,12 +718,12 @@ Distancias (mm) y ángulos (grados) entre ejes - + Error computing the shape of this object Error al calcular la forma del objeto - + Create Structural System Crear sistema estructural @@ -752,38 +742,38 @@ - + Found a shape containing curves, triangulating Se ha encontrado una forma que contiene curvas, triangulando - + Invalid cutplane Plano de corte no válido - + No objects are cut by the plane No hay objetos cortados por el plano - + Object doesn't have settable IFC Attributes Objeto no tiene atributos configurables de IFC - + Disabling Brep force flag of object Desactivar indicador de fuerza Brep del objeto - + Enabling Brep force flag of object Activar indicador de fuerza Brep del objeto @@ -813,12 +803,12 @@ Una etiqueta opcional para este componente - + Custom IFC properties and attributes Atributos y propiedades personalizadas de IFC - + A material for this object Un material para este objeto @@ -833,17 +823,17 @@ Especifica si este objeto debe moverse cuando su anfitrión se mueve - + has no solid No tiene ningún sólido - + has an invalid shape tiene una forma no válida - + has a null shape tiene una forma nula @@ -1058,12 +1048,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Mostrar el sufijo de la unidad - + A description of the standard profile this element is based upon Una descripcion del perfil estándar en el que este elemento se basa - + Sill height Altura del travesaño @@ -1175,12 +1165,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Tipo de edificio - + removing sketch external reference to avoid cross-referencing remover referencia externa del croquis para evitar referenciado cruzado - + Create Component Crear componente @@ -1300,27 +1290,27 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Mostrar el corte en la vista 3D - + This document is not saved. Please save it first Este documento no se ha guardado. Por favor guárdelo primero - + The Python Git module was not found. Please install the python-git package. No se encontró el módulo Python Git. Por favor, instale el paquete python-git. - + This document doesn't appear to be part of a Git repository. Este documento no parece ser parte de un repositorio de Git. - + Warning: no remote repositories. Unable to push ADVERTENCIA: no hay repositorios remotos. No se puede hacer 'push' - + The Git repository cannot handle this document. El repositorio Git no puede manejar este documento. @@ -1360,7 +1350,7 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Las paredes sólo pueden basarse en objetos de tipo malla o parte - + an optional object that defines a volume to be subtracted from hosts of this window un objeto opcional que define un volumen para ser sustraído de los huéspedes de esta ventana @@ -1380,47 +1370,82 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Establecer la posición del texto - + Unable to extrude the base shape No puede extruir la forma de base + + + Category + Categoría + + + + Key + Clave + + + + Value + Valor + + + + Unit + Unidad + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + El objeto no contiene el atributo IfcProperties. Cancelar la creación de hojas de cálculo para el objeto: + + + + Create IFC properties spreadsheet + Crear la hoja de cálculo de propiedades IFC + + + + Auto include in host object + Auto incluir en el objeto huésped + ArchGitOptions - + Git Options Opciones de Git - + What to commit Lo que comprometer - + All files in folder Todos los archivos de la carpeta - + Only this .FcStd file Sólo este archivo .FcStd - + Commit message Crear mensaje - + commit comprometer - + Push to default remote repository Presiona para hacer repositorio remoto por defecto @@ -1479,12 +1504,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Add - + Add component Agregar componente - + Adds the selected components to the active object Añade los componentes seleccionados al objeto activo @@ -1505,12 +1530,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Bimserver - + BIM server Servidor BIM - + Opens a browser window and connects to a BIM server instance Se abre una ventana de navegador y se conecta a un instancia del servidor BIM @@ -1531,17 +1556,17 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Check - + Check Verifica - + Checks the selected objects for problems Verificar problemas de los objetos seleccionados - + Explore the contents of an Ifc file Explorar el contenido de un archivo Ifc @@ -1549,12 +1574,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_CloseHoles - + Close holes Cerrar orificios - + Closes holes in open shapes, turning them solids Cierra agujeros en formas abiertas, convirtiéndolas en sólidos @@ -1562,12 +1587,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Component - + Component Componente - + Creates an undefined architectural component Crea un Componente arquitectónico indefinido @@ -1627,12 +1652,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Git - + Commit with Git Proponer con Git - + Commits the current document Propone el documento actual @@ -1640,11 +1665,24 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Crear la hoja de cálculo IFC... + + + + Creates a spreadsheet to store ifc properties of an object. + Crea una hoja de cálculo para almacenar las propiedades ifc de un objeto. + + Arch_Material @@ -1674,12 +1712,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_MeshToShape - + Mesh to Shape Malla a forma - + Turns selected meshes into Part Shape objects Convierte las mallas seleccionadas en convierte en objetos forma de pieza @@ -1700,12 +1738,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Rebar - + Rebar Ferralla - + Creates a Reinforcement bar from the selected face of a structural object Crea una barra de refuerzo de la cara seleccionada de un objeto estructural @@ -1713,12 +1751,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Remove - + Remove component Eliminar componente - + Remove the selected components from their parents, or create a hole in a component Eliminar los componentes seleccionados de sus padres, o crear un agujero en un componente @@ -1726,12 +1764,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_RemoveShape - + Remove Shape from Arch Eliminar forma de arco - + Removes cubic shapes from Arch components Quita formas cúbicas de componentes Arco @@ -1778,12 +1816,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_SelectNonSolidMeshes - + Select non-manifold meshes Seleccionar mallas no-múltiples - + Selects all non-manifold meshes from the document or from the selected groups Selecciona todas las mallas no-múltiples del documento o de los grupos seleccionados @@ -1822,12 +1860,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_SplitMesh - + Split Mesh Dividir malla - + Splits selected meshes into independent components Divide las mallas seleccionadas en componentes independientes @@ -1843,12 +1881,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Structure - + Structure Estructura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Crea un objeto de estructura a partir de cero o a partir de un objeto seleccionado (croquis, contorno, cara o sólido) @@ -1856,12 +1894,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_Survey - + Survey Encuesta - + Starts survey Iniciar encuesta @@ -1869,12 +1907,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Alternar IFG Brep flag - + Force an object to be exported as Brep or not Forzar a un objeto para ser exportado como Brep o no @@ -2081,27 +2119,27 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Este es el color predeterminado para los nuevos objetos Estructura - + 2D rendering Representación 2D - + Show debug information during 2D rendering Mostrar información de depuración durante la representación 2D - + Show renderer debug messages Mostrar mensajes de depuración del renderizador - + Cut areas line thickness ratio Relación entre anchos de línea de áreas de corte - + Specifies how many times the viewed line thickness must be applied to cut lines Especifica cuántas veces el grosor de la línea visualizada debe aplicarse para cortar líneas @@ -2170,11 +2208,6 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Snapping Ajuste - - - Walls drawing - Dibujo de paredes - Auto-join walls @@ -2191,82 +2224,82 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Unir los bocetos base de las paredes cuando sea posible - + Mesh to Shape Conversion Conversión de Malla a Forma - + If this is checked, conversion is faster but the result might still contain triangulated faces Si está seleccionado, la conversión será más rápida pero el resultado puede contener aún caras triangulares - + Fast conversion Conversión rápida - + Tolerance: Tolerancia: - + Tolerance value to use when checking if 2 adjacent faces as planar Valor de tolerancia a utilizar para comprobar si se enfrenta a 2 adyacentes son planas - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Si está seleccionado, se forzará la conversión de grupos de caras planas a planos, pudiendo aparecer huecos y resultados no sólidos - + Force flat faces Forzar caras planas - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Si marca esta opción, los agujeros en las caras serán realizadas por sustraccion en lugar de utilizar la orientación de Wires - + Cut method Método de corte - + Show debug messages Mostrar mensajes de depuración - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Si marca esta opción, las aberturas se importan como sustracciones, en contrario las paredes tendran sus aberturas restadas - + Separate openings Aberturas separadas - + If this is checked, object names will be prefixed with the IFC ID number Si es activado, se utilizará el IFC ID number como prefijo de los nombres de objeto - + Prefix names with ID number Nombres con prefijo ID number - + Exclude list: Excluir lista: - + A comma-separated list of Ifc entities to exclude from import Una lista separada por comas de entidades Ifc a excluir de la importación @@ -2316,22 +2349,22 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Transparencia: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Algunos visores IFC no admiten los objetos exportados como extrusiones. Con esto se fuerza a todos los objetos a ser exportados como geometría BREP. - + Hidden geomety pattern Esconder la geometria del patron - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Esta es la propiedad SVG trazo-matriz de puntos que se aplica a las proyecciones de objetos ocultos. - + 30, 10 30,10 @@ -2361,27 +2394,27 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Espesor - + Force export as Brep Forzar exportar como Brep - + Bim server Servidor Bim - + Address Dirección - + The URL of a bim server instance (www.bimserver.org) to connect to. La URL de una instancia de servidor bim (www.bimserver.org) para conectarse. - + http://localhost:8082 http://localhost:8082 @@ -2391,7 +2424,7 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu DAE - + Export options Opciones de exportación @@ -2401,102 +2434,102 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu IFC - + General options Opciones Generales - + Show verbose information during import and export of IFC files Muestra información detallada durante la importación y exportación de archivos IFC - + Import options Importar opciones - + Import arch IFC objects as Importar arcos de objeto IFC como - + Specifies what kind of objects will be created in FreeCAD Especifica qué objetos se crearán en FreeCAD - + Parametric Arch objects Objetos Arch paramétricos - + Non-parametric Arch objects Objetos Arch no-paramétricos - + Simple Part shapes Formas de piezas simples - + One compound per floor Uno compuesto por piso - + Do not import Arch objects No importar arcos de objetos - + Import struct IFC objects as Importar estructura de objeto IFC como - + One compound for all Uno compuesto por todos - + Do not import structural objects No importar objetos estructurales - + Root element: Elemento raíz: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Se importarán sólo subtipos de este elemento. Mantener el valor como "ProductoIfc" para importar todos los elementos de construcción. - + IfcProduct ProductoIfc - + If this is checked, the importer will try to detect extrusions. This might slow things down... Sí esto se comprueba, el importador intentará detectar extrusiones. Esto puede ralentizar el uso... - + Detect extrusions Detectar extruciones - + If several materials with the same name are found in the IFC file, they will be treated as one. Si varios materiales con el mismo nombre se encuentran en el archivo IFC, se tratará como uno. - + Merge materials with same name Combinar materiales con el mismo nombre @@ -2606,25 +2639,60 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Permitir cuadrados - + Use triangulation options set in the DAE options page Usar opciones de triangulación que figuran en la página de opciones DAE - + Use DAE triangulation options Utiliar opciones de triangulación DAE - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Formas curvas que no se pueden ser representadas como curvas en IFC se descomponen en facetas planas. Sí se comprueba, se realizarán algunos cálculos adicionales para unir facetas coplanares. - + Join coplanar facets when triangulating Unir facetas coplanares cuando triangule + + + Object creation + Creación de objeto + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Dos estrategias posibles para evitar dependencias circulares: Crear un objeto más (sin comprobar) o remover la geometría externa del croquis base (comprobado) + + + + Remove external geometry of base sketches when needed + Remover la geometría externa de los croquis base cuando sea necesario + + + + Create clones when objects have shared geometry + Crear clones cuando los objetos tengan una geometría compartida + + + + Show this dialog when importing and exporting + Mostrar éste diálogo cuando se importe y exporte + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Si se marca esta casilla, cada objeto tendrá sus propiedades Ifc almacenadas en un objeto de hoja de cálculo. + + + + Import Ifc Properties in spreadsheet + Importar las propiedades ifc en la hoja de cálculo + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_fi.qm b/src/Mod/Arch/Resources/translations/Arch_fi.qm index fc022f2ba0c3a5dac2d43185a08c23736b54f490..1d46de57a29b081c0463192f30e258cf230f42fc 100644 GIT binary patch delta 6538 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 diff --git a/src/Mod/Arch/Resources/translations/Arch_fi.ts b/src/Mod/Arch/Resources/translations/Arch_fi.ts index a3ad51652..fa029d89e 100644 --- a/src/Mod/Arch/Resources/translations/Arch_fi.ts +++ b/src/Mod/Arch/Resources/translations/Arch_fi.ts @@ -4,7 +4,7 @@ Arch - + Components Osat @@ -44,12 +44,12 @@ Akselikuplien koot - + Remove Poista - + Add Lisää @@ -84,57 +84,57 @@ Lattia - + removing sketch support to avoid cross-referencing poista luonnostuki välttääksesi ristiinviittaukset - + is not closed ei ole suljettu - + is not valid ei ole kelvollinen - + doesn't contain any solid ei sisällä yhtään monitahokasta - + contains a non-closed solid sisältää avoimen monitahokkaan - + contains faces that are not part of any solid sisältää tahkoja jotka eivät ole minkään monitahokkaan osana - + Grouping Ryhmittely - + Ungrouping Ryhmittelyn purkaminen - + Split Mesh Jaa verkko - + Mesh to Shape Verkko Muodolle - + All good! no problems found Kaikki hyvin! Ei ongelmia @@ -159,7 +159,7 @@ Objektit - + closing Sketch edit sulje luonnosmuokkaus @@ -219,27 +219,27 @@ Luo kohde - + Create Structure Luo rakenne - + The length of this element, if not based on a profile Tämän elementin pituus, jos se ei perustu profiiliin - + The width of this element, if not based on a profile Tämän elementin leveys, jos se ei perustu profiiliin - + The height or extrusion depth of this element. Keep 0 for automatic Tämän elementin korkeus tai puristussyvyys. 0 tarkoittaa automaattitoimintoa - + Axes systems this structure is built on Akselijärjestelmä johon tämä rakenne perustuu @@ -249,7 +249,7 @@ Tämän objektin normaali puristussuunta (pidä (0,0,0) jos haluat normaalin suunnan määräytyvän automaattisesti) - + The element numbers to exclude when this structure is based on axes Montako elementtiä puristetaan, kun tämän rakenteen perustana on akselit @@ -309,57 +309,57 @@ Tämä verkkopinta ei ole monitahokas - + Create Window Luo ikkuna - + the components of this window tämän ikkunan osat - + Edit Muokkaa - + Create/update component Luo/päivitä osa - + Base 2D object Perustana oleva 2D objekti - + Wires Langat - + Create new component Luo uusi komponentti - + Name Nimi - + Type Tyyppi - + Thickness Paksuus - + Z offset Z siirtymä @@ -405,12 +405,12 @@ Numerointityyli - + Add space boundary Lisää tilan raja - + Remove space boundary Poista tilan raja @@ -445,12 +445,12 @@ Luo kehys - + Create Rebar Luo raudoitustanko - + Please select a base face on a structural object Valitse rakenteellisen kohteen peruspinta @@ -579,22 +579,12 @@ Rakenteiden ja portaikon rajan välissä oleva poikkeama - - Wood - Puu - - - - Steel - Teräs - - - + Structure options Rakenteen vaihtoehdot - + Preset Esiasetus @@ -604,7 +594,7 @@ Pituus - + Rotate Pyöritä @@ -614,27 +604,27 @@ Jatka - + An optional extrusion path for this element Valinnainen puristusreitti tälle elementille - + Armatures contained in this element Tämän elementin sisältämät ankkurit - + The structural nodes of this element Tämän elementin rakenteelliset solmukohdat - + Error: The base shape couldn't be extruded along this tool object Virhe: Pohjamuotoa ei voitu puristaa pitkin tätä työkalun kohdetta - + Couldn't compute a shape Ei voitu laskea muotoa @@ -674,7 +664,7 @@ Tämän seinän ja sen peruslinjan välinen siirtymä (vain vasempaan ja oikeaan tasaukseen) - + Pick a face on an existing object or select a preset Valitse olemassa olevan kohteen näkymäpinta tai valitse esiasetus @@ -682,33 +672,33 @@ - + Window options Ikkunan asetukset - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Reiän syvyys, jonka tämä ikkuna tekee isäntäkohteessa. Pidä 0 automaattiseen toimintoon. - + The width of this window (for preset windows only) Tämän ikkunan leveys (vain esiasetuksien ikkunoille) - + The height of this window (for preset windows only) Tämän ikkunan leveys (vain esiasetuksien ikkunoille) - + The normal direction of this window Tämän ikkunan normaali suunta - + Unable to create component Osaa ei voitu luoda @@ -734,12 +724,12 @@ Pidä 0 automaattiseen toimintoon. Etäisyydet (mm) ja kulmat (astetta) akselien väliselle - + Error computing the shape of this object Virhe laskettaessa tämän kohteen muotoa - + Create Structural System Luo rakenteellinen järjestelmä @@ -758,38 +748,38 @@ Pidä 0 automaattiseen toimintoon. - + Found a shape containing curves, triangulating Löytyi käyriä sisältävä muoto, kolmiomittauksessa - + Invalid cutplane Virheellinen leikkaustaso - + No objects are cut by the plane Taso ei leikkaa yhtään kohdetta - + Object doesn't have settable IFC Attributes Kohteessa ei ole asetettavia IFC määritteitä - + Disabling Brep force flag of object Kytkee pois kohteen Brep voiman lipun - + Enabling Brep force flag of object Kytkee päälle kohteen Brep voiman lipun @@ -819,12 +809,12 @@ Pidä 0 automaattiseen toimintoon. Vaihtoehtoinen tunniste tälle osalle - + Custom IFC properties and attributes Mukautetun IFC ominaisuuksia ja määritteitä - + A material for this object Materiaali tälle kohteelle @@ -839,17 +829,17 @@ Pidä 0 automaattiseen toimintoon. Määrittää, onko tämän kohteen siirryttävä yhdessä, kun sen isäntää siirretään - + has no solid ei ole yhtenäinen - + has an invalid shape on virheellinen muoto - + has a null shape on tyhjä muoto @@ -1064,12 +1054,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Näytä yksikön jälkipääte - + A description of the standard profile this element is based upon Kuvaus standardiprofiilista, johon tämä osa perustuu - + Sill height Ikkunalaudan/kynnyksen korkeus @@ -1181,12 +1171,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1306,27 +1296,27 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1366,7 +1356,7 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1386,47 +1376,82 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategoria + + + + Key + Key + + + + Value + Arvo + + + + Unit + Yksikkö + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1485,12 +1510,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Add - + Add component Lisää osa - + Adds the selected components to the active object Lisää valitut osat Aktiiviseen objektiin @@ -1511,12 +1536,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1537,17 +1562,17 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Check - + Check Tarkista - + Checks the selected objects for problems Tarkistaa valitut objektit ongelmien varalta - + Explore the contents of an Ifc file Tutustu Ifc-tiedoston sisältöön @@ -1555,12 +1580,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_CloseHoles - + Close holes Sulje reiät - + Closes holes in open shapes, turning them solids Sulkee reijät avoimissa muodoissa tehden niistä monitahokkaita @@ -1568,12 +1593,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1633,12 +1658,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1646,11 +1671,24 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_IfcExplorer - + Ifc Explorer IFC selain + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1680,12 +1718,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_MeshToShape - + Mesh to Shape Verkko Muodolle - + Turns selected meshes into Part Shape objects Muuttaa valitut verkkopinnat Osa Muoto (Part Shape) objekteiksi @@ -1706,12 +1744,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Rebar - + Rebar raudoitustanko - + Creates a Reinforcement bar from the selected face of a structural object Luo betoniterästangon valitusta rakenteellisen kohteen näkymäpinnasta @@ -1719,12 +1757,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Remove - + Remove component Poista osa - + Remove the selected components from their parents, or create a hole in a component Poistaa valitut komponentit vanhemmiltaan tai luo reiän komponentissa @@ -1732,12 +1770,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_RemoveShape - + Remove Shape from Arch Muodon poistaminen Arkkitehtuurista - + Removes cubic shapes from Arch components Poistaa kuutiomuodot Arkkitehtuurisista komponenteista @@ -1784,12 +1822,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_SelectNonSolidMeshes - + Select non-manifold meshes Valitse ei-moninaiset verkot - + Selects all non-manifold meshes from the document or from the selected groups Valitsee kaikki ei-moninaiset verkot asiakirjasta tai valituista ryhmistä @@ -1828,12 +1866,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_SplitMesh - + Split Mesh Jaa verkko - + Splits selected meshes into independent components Jakaa valitut verkot riippumattomiin komponentteihin @@ -1849,12 +1887,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Structure - + Structure Rakenne - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Luo rakenne-objektin piirrosta tai valitusta objektista (sketsi, lanka, pinta tai monitahokas) @@ -1862,12 +1900,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_Survey - + Survey Tutkimus - + Starts survey Aloittaa tutkimuksen @@ -1875,12 +1913,12 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Näytä tai piilota IFC Brep lippu - + Force an object to be exported as Brep or not Pakota kohde vietäväksi Brep -muodossa tai ei @@ -2087,27 +2125,27 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Tämä on oletusarvoinen väri uusille rakenneobjekteille - + 2D rendering 2D renderöinti - + Show debug information during 2D rendering Näytä debug tietoja 2D renderöinnin aikana - + Show renderer debug messages Näytä renderöijän debug viestit - + Cut areas line thickness ratio Leikkaavan alueen viivan paksuuden suhde - + Specifies how many times the viewed line thickness must be applied to cut lines Määrittää montko kertaa näytetyn viivan paksuutta pitää soveltaa leikattuihin viivoihin @@ -2176,11 +2214,6 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Snapping Katkaiseva - - - Walls drawing - Seinien piirros - Auto-join walls @@ -2197,82 +2230,82 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Liitä seinien pohjaluonnokset mahdollisuuksien mukaan - + Mesh to Shape Conversion Verkkopinnasta muodoksi muunnos - + If this is checked, conversion is faster but the result might still contain triangulated faces Jos tämä on valittu, muuntaminen on nopeampi mutta tulos saattaa vielä sisältää kolmioituja näkymäpintoja - + Fast conversion Nopea muuntaminen - + Tolerance: Toleranssi: - + Tolerance value to use when checking if 2 adjacent faces as planar Tätä toleranssiarvoa käytetään, kun tarkistetaan, onko 2 viereistä näkymäpintaa tasossa - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Jos tämä on valittuna, näkymien tasoryhmiä pakotetaan litteäksi, jolloin seurauksena voi olla mahdollisia aukkoja ja ei-ehjiä tuloksia - + Force flat faces Pakota tasomaiset näkymät - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Jos tämä on valittuna, reiät näkymissä esitetään mielummin vähentämällä kuin käyttämällä langoitussuuntaa - + Cut method Leikkaus menetelmä - + Show debug messages Näytä debug-viestit - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Jos tämä on valittuna, aukot tuodaan vähennyslaskulla, muuten seinämuodoissa on jo niiden aukot vähennetty - + Separate openings Erillinen aukot - + If this is checked, object names will be prefixed with the IFC ID number Jos tämä on valittuna, kohteiden nimet ovat etuliitteellä IFC tunnus - + Prefix names with ID number Lisää tunnusnumero nimien eteen - + Exclude list: Pois luettelosta: - + A comma-separated list of Ifc entities to exclude from import Pilkuin erotettu Ifc -kohteiden lista, mitkä jätetään pois tuonnista @@ -2322,22 +2355,22 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Läpinäkyvyys: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Jotkut IFC katseluohjelmat eivät pidä kohteiden viemisestä puristeina. Tämän avulla voit pakottaa kaikki kohteet vietäväksi BREP geometriassa. - + Hidden geomety pattern Piilotettu geometria malli - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Tämä on SVG stroke-dasharray /-iskuviivamatriisi ominaisuus, jota käytetään piilotettujen kohteiden projektioihin. - + 30, 10 30, 10 @@ -2367,27 +2400,27 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Paksuus - + Force export as Brep Pakota vienti Brep muodossa - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2397,7 +2430,7 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel DAE - + Export options Export options @@ -2407,102 +2440,102 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2612,25 +2645,60 @@ Jos juoksu = 0 sitten juoksu lasketaan siten, että korkeus on sama kuin suhteel Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_fr.qm b/src/Mod/Arch/Resources/translations/Arch_fr.qm index 86a3c186981e7c81fd0fe7899b304de8abf60b53..a4a7f5d72af54a83b70f68c9e27f076fc558c31e 100644 GIT binary patch delta 6601 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 delta 4328 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 F{{a5UH+cX6 diff --git a/src/Mod/Arch/Resources/translations/Arch_fr.ts b/src/Mod/Arch/Resources/translations/Arch_fr.ts index 0f6ddd1e3..e87e53802 100644 --- a/src/Mod/Arch/Resources/translations/Arch_fr.ts +++ b/src/Mod/Arch/Resources/translations/Arch_fr.ts @@ -4,7 +4,7 @@ Arch - + Components Composants @@ -44,12 +44,12 @@ La taille des bulles d'axe - + Remove Enlever - + Add Ajouter @@ -84,57 +84,57 @@ Étage - + removing sketch support to avoid cross-referencing Le support de l'esquisse de base a été retiré pour éviter une référence croisée - + is not closed n'est pas fermé - + is not valid n'est pas valide - + doesn't contain any solid ne contient aucun solide - + contains a non-closed solid contient un solide non fermé - + contains faces that are not part of any solid contient des faces qui ne font pas partie d'un solide - + Grouping Regroupement - + Ungrouping Dégroupement - + Split Mesh Diviser un maillage - + Mesh to Shape Maillage vers Forme - + All good! no problems found Tout est en ordre! aucun problème constaté @@ -159,7 +159,7 @@ Objets - + closing Sketch edit fermeture de l'édition de l'esquisse @@ -219,27 +219,27 @@ Création d'un Site - + Create Structure Création d'une structure - + The length of this element, if not based on a profile La longueur de cet élément, si il n'est pas basé sur un profil - + The width of this element, if not based on a profile La largeur de cet élément, si il n'est pas basé sur un profil - + The height or extrusion depth of this element. Keep 0 for automatic La hauteur ou profondeur d'extrusion de cet élément. Mettre 0 pour automatique - + Axes systems this structure is built on Systèmes d'axes sur lesquels cette structure est basée @@ -249,7 +249,7 @@ La direction d'extrusion normale de cet objet (mettre (0,0,0) pour normale automatique) - + The element numbers to exclude when this structure is based on axes Les numéros d'ordres des éléments à exclure quand cette structure est basée sur des axes @@ -309,57 +309,57 @@ Ce maillage n'est pas un solide valide - + Create Window Création d'une fenêtre - + the components of this window les composants de cette fenêtre - + Edit Éditer - + Create/update component Créer ou mettre le composant à jour - + Base 2D object Objet 2D de base - + Wires Filaires - + Create new component Créer un nouveau composant - + Name Nom - + Type Type - + Thickness Épaisseur - + Z offset Décalage Z @@ -403,12 +403,12 @@ Le style de numérotation - + Add space boundary Ajouter une frontière spatiale - + Remove space boundary Enlever une frontière spatiale @@ -443,12 +443,12 @@ Créer une ossature - + Create Rebar Créer des barres d'armature - + Please select a base face on a structural object Veuillez sélectionner une face support sur un objet de structure @@ -577,22 +577,12 @@ Le décalage entre le bord de l'escalier et la structure - - Wood - Bois - - - - Steel - Acier - - - + Structure options Options de la structure - + Preset Préconfiguration @@ -602,7 +592,7 @@ Longueur - + Rotate Pivoter @@ -612,27 +602,27 @@ Continuer - + An optional extrusion path for this element Un chemin d'extrusion facultatif pour cet élément - + Armatures contained in this element Armatures contenues dans cet élément - + The structural nodes of this element Les nœuds structurels de cet élément - + Error: The base shape couldn't be extruded along this tool object Erreur : la forme support ne peut pas être extrudée le long de cet outil object - + Couldn't compute a shape Forme incalculable @@ -672,38 +662,38 @@ Le décalage entre ce mur et sa ligne de référence (uniquement pour les alignements gauche et droite) - + Pick a face on an existing object or select a preset Choisissez une face sur un objet existant, ou sélectionnez un paramètre prédéfini - + Window options Options de la fenêtre - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. La profondeur de la cavité que fait cette fenêtre dans son objet hôte. Laisser 0 pour automatique. - + The width of this window (for preset windows only) La largeur de cette fenêtre (pour fenêtres prédéfini uniquement) - + The height of this window (for preset windows only) La hauteur de cette fenêtre (pour fenêtres prédéfini uniquement) - + The normal direction of this window La direction de la normale à cette fenêtre - + Unable to create component Impossible de créer le composant @@ -727,12 +717,12 @@ Distances (mm) et angles (degrés) entre les axes - + Error computing the shape of this object Erreur lors du calcul de la forme de cet objet - + Create Structural System Créer un système structurel @@ -751,38 +741,38 @@ - + Found a shape containing curves, triangulating Forme contenant des courbes: Triangulation - + Invalid cutplane Plan de coupe non valide - + No objects are cut by the plane Aucun objets coupés par le plan - + Object doesn't have settable IFC Attributes L'objet n'a pas d'Attributs IFC définissables - + Disabling Brep force flag of object Désactivation du marqueur de forçage Brep de l'objet - + Enabling Brep force flag of object Activation du marqueur de forçage Brep de l'objet @@ -812,12 +802,12 @@ Une balise facultative pour ce composant - + Custom IFC properties and attributes Attributs et propriétés IFC personnalisées - + A material for this object Un matériau pour cet objet @@ -832,17 +822,17 @@ Spécifie si cet objet doit se déplacer avec son hôte lorsque ce dernier est déplacé - + has no solid n'a aucun solide - + has an invalid shape a une forme non valide - + has a null shape a une forme nulle @@ -1057,12 +1047,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Afficher le suffixe de l'unité - + A description of the standard profile this element is based upon Une description du profil standard sur lequel est basé cet élément - + Sill height Hauteur d'allège @@ -1174,12 +1164,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Le type de ce bâtiment - + removing sketch external reference to avoid cross-referencing suppression de la référence externe à une esquisse pour prévenir un référencement croisé - + Create Component Créer un composant @@ -1299,27 +1289,27 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Montrer la coupe dans la vue 3D - + This document is not saved. Please save it first Ce document n'est pas enregistré. Enregistrez-le d'abord - + The Python Git module was not found. Please install the python-git package. Le module Python Git n'a pas été trouvé. Veuillez installer le paquet python-git. - + This document doesn't appear to be part of a Git repository. Ce document ne paraît pas faire partie d'un dépôt Git. - + Warning: no remote repositories. Unable to push Avertissement : pas de dépôt distant. Impossible de téléverser - + The Git repository cannot handle this document. Le dépôt Git ne peut pas gérer ce document. @@ -1359,7 +1349,7 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Les murs ne peuvent être créés qu'à l'aide d'objets Part ou Mesh - + an optional object that defines a volume to be subtracted from hosts of this window un objet de votre choix définissant un volume à soustraire aux éléments de cette fenêtre @@ -1379,47 +1369,82 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Position du texte - + Unable to extrude the base shape Impossible d'extruder la forme de base + + + Category + Catégorie + + + + Key + Clé + + + + Value + Valeur + + + + Unit + Unité + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + L'objet ne possède pas l'attribut IfcProperties. Annuler la création de la feuille de calcul pour l'objet : + + + + Create IFC properties spreadsheet + Création d'une feuille de calcul de propriétés Ifc + + + + Auto include in host object + Inclure automatiquement dans l'objet hôte + ArchGitOptions - + Git Options Options Git - + What to commit Que valider - + All files in folder Tous les fichiers du répertoire - + Only this .FcStd file Seulement ce fichier .FcStd - + Commit message Valider le message - + commit valider - + Push to default remote repository Téléverser sur le dépôt distant par défaut @@ -1478,12 +1503,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Add - + Add component Ajouter un composant - + Adds the selected components to the active object Ajoute les composants sélectionnés à l'objet actif @@ -1504,12 +1529,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Bimserver - + BIM server Serveur BIM - + Opens a browser window and connects to a BIM server instance Ouvrir une fenêtre de navigateur et se connecter a un serveur BIM @@ -1530,17 +1555,17 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Check - + Check Vérifier - + Checks the selected objects for problems Vérifie si les objets sélectionnés présentent un problème - + Explore the contents of an Ifc file Explorer le contenu d'un fichier Ifc @@ -1548,12 +1573,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_CloseHoles - + Close holes Fermer les trous - + Closes holes in open shapes, turning them solids Convertit les formes ouvertes en solides, en fermant leurs trous @@ -1561,12 +1586,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Component - + Component Composant - + Creates an undefined architectural component Crée un élément architectural non défini @@ -1626,12 +1651,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Git - + Commit with Git Valider sur Git - + Commits the current document Valide le document actuel @@ -1639,11 +1664,24 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_IfcExplorer - + Ifc Explorer Explorateur IFC + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Créer une feuille de calcul Ifc... + + + + Creates a spreadsheet to store ifc properties of an object. + Crée une feuille de calcul pour stocker les propriétés Ifc d'un objet. + + Arch_Material @@ -1673,12 +1711,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_MeshToShape - + Mesh to Shape Maillage vers Forme - + Turns selected meshes into Part Shape objects Transforme les maillages sélectionnées en formes @@ -1699,12 +1737,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Rebar - + Rebar Barres d'armature - + Creates a Reinforcement bar from the selected face of a structural object Crée une barre de renfort par rapport à la face sélectionnée d'un objet structurel @@ -1712,12 +1750,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Remove - + Remove component Enlever une composante - + Remove the selected components from their parents, or create a hole in a component Retirer les composants sélectionnés de leurs parents, ou créer un trou dans un composant @@ -1725,12 +1763,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_RemoveShape - + Remove Shape from Arch Supprimer la forme - + Removes cubic shapes from Arch components Supprime les formes cubiques des composants Arch @@ -1777,12 +1815,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_SelectNonSolidMeshes - + Select non-manifold meshes Sélectionner les maillages non-manifold - + Selects all non-manifold meshes from the document or from the selected groups Sélectionne tous les maillages non-manifold du document ou des groupes sélectionnés @@ -1821,12 +1859,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_SplitMesh - + Split Mesh Diviser une maille - + Splits selected meshes into independent components Divise les maillages sélectionnés en composantes indépendantes @@ -1842,12 +1880,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Structure - + Structure Structure - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Crée un objet de structure à partir de zéro ou d'un objet sélectionné (esquisse, ligne, face ou solide) @@ -1855,12 +1893,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_Survey - + Survey Prise de côtes - + Starts survey Démarre l'étude @@ -1868,12 +1906,12 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Activer/désactiver le marqueur Brep IFC - + Force an object to be exported as Brep or not Force (ou non) un objet à être exporté en tant que Brep @@ -2080,27 +2118,27 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Ceci est la couleur par défaut des nouveaux objets Structure - + 2D rendering Rendu 2D - + Show debug information during 2D rendering Afficher les informations de débogage pendant le rendu 2D - + Show renderer debug messages Messages de débogage du moteur de rendu - + Cut areas line thickness ratio Proportion d'épaisseur des lignes en coupe - + Specifies how many times the viewed line thickness must be applied to cut lines Spécifie combien de fois l'épaisseur des lignes en vue doit être appliquée aux lignes en coupe @@ -2169,11 +2207,6 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Snapping Instantané - - - Walls drawing - Tracé des murs - Auto-join walls @@ -2187,85 +2220,85 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Join walls base sketches when possible - Relier les esquisses des murs et fondations quand c'est possible + Relier les esquisses de base des murs quand c'est possible - + Mesh to Shape Conversion Conversion Maillage vers Solide - + If this is checked, conversion is faster but the result might still contain triangulated faces Si cette case est cochée, la conversion est plus rapide mais le résultat pourrait encore contenir des faces triangulées - + Fast conversion Conversion rapide - + Tolerance: Tolérance : - + Tolerance value to use when checking if 2 adjacent faces as planar Valeur de la tolérance admise pour la vérification de la co-planéité deux faces adjacentes - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Si cette case est cochée, le programme force les groupements de faces planes à être dans un même plan ; il peut en résulter des solutions de continuité et des parties non pleines - + Force flat faces Forcer les faces à être coplanaires - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Si cette case est cochée, les trous dans les faces seront réalisés par une soustraction plutôt qu'à l'aide de l'orientation des arêtes - + Cut method Méthode de soustraction - + Show debug messages Afficher les messages de débogage - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Si cette case est cochée, les ouvertures seront importées comme étant des soustractions ; sinon les ouvertures sont déjà soustraites de la forme du mur - + Separate openings Séparer des ouvertures - + If this is checked, object names will be prefixed with the IFC ID number Si cette case est cochée, des noms d'objets seront précédés du numéro d'identification IFC - + Prefix names with ID number Préfixe des noms avec numéro ID - + Exclude list: Liste d'exclusion : - + A comma-separated list of Ifc entities to exclude from import Une liste, séparée par des virgules, des entités IFC à exclure lors de l'importation @@ -2315,22 +2348,22 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Transparence : - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Certains visualiseurs IFC n'aiment pas les objets exportés en tant qu'extrusions. Utiliser cette fonctionnalité pour forcer tous les objets à être exportés avec une géométrie BREP. - + Hidden geomety pattern Géométrie de texture cachée - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Il s'agit de la propriété SVG « stroke-dasharray » à appliquer pour les projections d'objets cachés. - + 30, 10 30, 10 @@ -2360,27 +2393,27 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Épaisseur - + Force export as Brep Forcer l'export en Brep - + Bim server Serveur BIM - + Address Adresse - + The URL of a bim server instance (www.bimserver.org) to connect to. L'URL d'une instance de serveur BIM ( www.bimserver.org) auquel se connecter. - + http://localhost:8082 http://localhost:8082 @@ -2390,9 +2423,9 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du DAE - + Export options - Exporter les options + Options d'export @@ -2400,102 +2433,102 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du IFC - + General options Options générales - + Show verbose information during import and export of IFC files Afficher des informations détaillées lors de l'importation ou de l'exportation de fichiers IFC - + Import options - Importer les options + Options d'import - + Import arch IFC objects as Importer des objets d'architecture IFC comme - + Specifies what kind of objects will be created in FreeCAD Définit le type des objets qui seront créés dans FreeCAD - + Parametric Arch objects Objets Arch à paramétrer - + Non-parametric Arch objects Objets Arch non paramétrables - + Simple Part shapes Formes de pièce simples - + One compound per floor Un élément composé par plancher - + Do not import Arch objects Ne pas importer d'objets Arch - + Import struct IFC objects as Importer en tant qu'objets de structure IFC - + One compound for all Un élément composé pour tout - + Do not import structural objects Ne pas importer les objets structurels - + Root element: Élément racine : - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Seuls les sous-types de cet élément seront importés. Conserver une valeur comme « IfcProduct » pour importer tous les éléments de construction. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... Si cette case est cochée, le programme va essayer de détecter les extrusions au cours de l'importation. Cela pourrait ralentir les choses... - + Detect extrusions Détecter les extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. Si divers matériaux portant le même nom sont trouvés dans le fichier IFC, ils seront considérés comme un matériau unique. - + Merge materials with same name Fusionner les matériaux de même nom @@ -2605,25 +2638,60 @@ Si Largeur = 0 alors la largeur est calculée de façon à ce que la hauteur du Autoriser les polygones à quatre faces - + Use triangulation options set in the DAE options page Utiliser l'option de triangulation actif dans les options du DAE - + Use DAE triangulation options Utiliser les options de triangulation DAE - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Les formes courbes qui ne peuvent pas être représentées dans un IFC sont décomposées en plusieurs facettes. Si cette case est cochée, des calculs supplémentaires seront exécutés pour joindre les facettes coplanaires. - + Join coplanar facets when triangulating Joindre les faces coplanaires pendant la triangulation + + + Object creation + Création d'objets + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Deux stratégies possibles afin d'éviter des dépendances circulaires : créer un objet intermédiaire en plus (non cochée) ou supprimer les géométries externe des esquisses de base (cochée) + + + + Remove external geometry of base sketches when needed + Supprimer les géométries externes des esquisses de base si nécessaire + + + + Create clones when objects have shared geometry + Créez des clones quand les objets partagent une géométrie + + + + Show this dialog when importing and exporting + Afficher cette boîte de dialogue lors de l'importation et l'exportation + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Si cette case est cochée chaque objet aura ses propriétés IFC stockées dans une feuille de calcul. + + + + Import Ifc Properties in spreadsheet + Importer les propriétés Ifc dans une feuille de calcul + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_hr.qm b/src/Mod/Arch/Resources/translations/Arch_hr.qm index c970857282c5cafdbdb85be65e9c129ff4615955..af9c830d2af6cc66c59f5d463f466b3b9fd69de1 100644 GIT binary patch delta 6377 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 UdVlV!V9x3L1+t<8zaE$W4{s|qzyJUM delta 4257 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 hDi&dgK Arch - + Components Komponente @@ -44,12 +44,12 @@ Veličina mjehurića na osi - + Remove Ukloniti - + Add Dodaj @@ -84,57 +84,57 @@ Kat - + removing sketch support to avoid cross-referencing uklanjanje podrške za skicu zbog izbjegavanja unakrznog referenciranja - + is not closed nije zatvoren - + is not valid nije valjano - + doesn't contain any solid ne sadrži niti jedno čvrsto tijelo - + contains a non-closed solid Sadrži otvoreno čvrsto tijelo - + contains faces that are not part of any solid sadrži površine koje nisu dio niti jednog tijela - + Grouping Grupiranje - + Ungrouping Razgrupiranje - + Split Mesh Podijeli Mesh - + Mesh to Shape Mesh u oblik - + All good! no problems found Sve je dobro! Problemi nisu pronađeni @@ -159,7 +159,7 @@ Objekti - + closing Sketch edit Zatvaranje uređivanja skice @@ -219,27 +219,27 @@ Stvori Mjesto - + Create Structure Stvori Strukturu - + The length of this element, if not based on a profile Duljina ovog elementa, ako se ne temelji na profilu - + The width of this element, if not based on a profile Širina ovog elementa, ako se ne temelji na profilu - + The height or extrusion depth of this element. Keep 0 for automatic Visina ili ekstruzija ovog elementa. Ostavi 0 za automatski - + Axes systems this structure is built on Koordinatni sustav na kojem se temelji struktura @@ -249,7 +249,7 @@ Normala za ekstruziju ovog objekta (ostavi (0,0,0) za automatsko) - + The element numbers to exclude when this structure is based on axes Broj elemenata za zanemariti kada se ova struktura temelji na osima @@ -309,57 +309,57 @@ Ova mreža nije ispravno tijelo - + Create Window Napravi prozor - + the components of this window Komponente ovog prozora - + Edit Uredi - + Create/update component Kreiraj/osvježi komponentu - + Base 2D object Temeljni 2D objekt - + Wires Žice - + Create new component Kreiraj novu komponentu - + Name Ime - + Type Tip - + Thickness Debljina - + Z offset Z odmak @@ -403,12 +403,12 @@ The numbering style - + Add space boundary Add space boundary - + Remove space boundary Remove space boundary @@ -443,12 +443,12 @@ Create Frame - + Create Rebar Create Rebar - + Please select a base face on a structural object Please select a base face on a structural object @@ -577,22 +577,12 @@ The offset between the border of the stairs and the structure - - Wood - Wood - - - - Steel - Steel - - - + Structure options Structure options - + Preset Preset @@ -602,7 +592,7 @@ Dužina - + Rotate Rotiraj @@ -612,27 +602,27 @@ Con&tinue - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -672,39 +662,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Window options - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Unable to create component @@ -730,12 +720,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Create Structural System @@ -754,38 +744,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -815,12 +805,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -835,17 +825,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1060,12 +1050,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1177,12 +1167,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1302,27 +1292,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1362,7 +1352,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1382,47 +1372,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategorija + + + + Key + Key + + + + Value + Vrijednost + + + + Unit + Jedinica + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1481,12 +1506,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Dodaj komponentu - + Adds the selected components to the active object Dodaje odabrane komponente aktivnom objektu @@ -1507,12 +1532,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1533,17 +1558,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Provjeri - + Checks the selected objects for problems Provjerava probleme na selektiranim objektima - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1551,12 +1576,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Zatvori rupe - + Closes holes in open shapes, turning them solids Zatvara rupe u otvorenim oblicima i pretvara ih u 3D tijela @@ -1564,12 +1589,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1629,12 +1654,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1642,11 +1667,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1676,12 +1714,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Mesh u oblik - + Turns selected meshes into Part Shape objects Pretvara odabrane mreže u čvrste dijelove @@ -1702,12 +1740,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Rebar - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1715,12 +1753,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Ukloni komponentu - + Remove the selected components from their parents, or create a hole in a component Ukloni odabrane komponente iz njihovih roditelja, ili stvori rupu u komponenti @@ -1728,12 +1766,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Ukloni oblik iz Arch-a - + Removes cubic shapes from Arch components Uklanja prostorne oblika iz Arch komponenti @@ -1780,12 +1818,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Odaberite jednostruke MESH-eve - + Selects all non-manifold meshes from the document or from the selected groups Odabire sve jednostruke MESH-eve iz dokumenta ili iz odabrane grupe @@ -1824,12 +1862,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Podijeli Mesh - + Splits selected meshes into independent components Dijeli odabrane MESH-eve u nezavisne komponente @@ -1845,12 +1883,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Struktura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Stvara strukture objekta od nule ili od odabranog objekta (skica, žica, površina ili tijelo) @@ -1858,12 +1896,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1871,12 +1909,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2083,27 +2121,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Ovo je zadana boja za strukture - + 2D rendering 2D renderiranje - + Show debug information during 2D rendering Prikaži debug informacije tijekom 2D renderiranja - + Show renderer debug messages Prikaži debug poruke renderera - + Cut areas line thickness ratio Debljina linije prilikom rezanja - + Specifies how many times the viewed line thickness must be applied to cut lines Označava koliko puta debljina linije mora biti primjenjena da bi se linija presjekla @@ -2172,11 +2210,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2193,82 +2226,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Fast conversion - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2318,22 +2351,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Prozirnost: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2363,27 +2396,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Debljina - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2393,7 +2426,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2403,102 +2436,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2608,25 +2641,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_hu.qm b/src/Mod/Arch/Resources/translations/Arch_hu.qm index 67d4c4d2d63523d5718c1628afb6e77174050f62..bc84a3b41e56168efa5bc3e38e879195456d34ee 100644 GIT binary patch delta 10477 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 delta 7850 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 B9cBOk diff --git a/src/Mod/Arch/Resources/translations/Arch_hu.ts b/src/Mod/Arch/Resources/translations/Arch_hu.ts index d100162a4..927f904dd 100644 --- a/src/Mod/Arch/Resources/translations/Arch_hu.ts +++ b/src/Mod/Arch/Resources/translations/Arch_hu.ts @@ -4,7 +4,7 @@ Arch - + Components Összetevők @@ -21,7 +21,7 @@ Create Axis - Tengely létrehozása + Tengelyek létrehozása @@ -44,12 +44,12 @@ A tengely buborékok mérete - + Remove Törlés - + Add Hozzáad @@ -84,57 +84,57 @@ Szint - + removing sketch support to avoid cross-referencing Vázlat támogatás eltávolítása kereszthivatkozás elkerülése végett - + is not closed nincs lezárva - + is not valid Érvénytelen - + doesn't contain any solid nem tartalmazhat semmilyen szilárd testet - + contains a non-closed solid le nem zárt szilárd testet tartalmaz - + contains faces that are not part of any solid tartalmaz felületet, amelyek nem tartoznak semmilyen szilárd testhez - + Grouping Csoportosítás - + Ungrouping Csoportbontás - + Split Mesh Háló osztása - + Mesh to Shape Hálókat alakzatokká - + All good! no problems found Minden jó! nincs probléma @@ -159,7 +159,7 @@ Objektumok - + closing Sketch edit Vázlat szerkesztés bezárása @@ -219,27 +219,27 @@ Oldal létrehozása - + Create Structure Struktúra létrehozása - + The length of this element, if not based on a profile Ennek az elemnek a hossza, ha nem profilon áll - + The width of this element, if not based on a profile Ennek az elemnek a szélessége, ha nem profilon áll - + The height or extrusion depth of this element. Keep 0 for automatic Ez az elem magassága vagy kihúzás nagysága. 0 megtartása automatikushoz - + Axes systems this structure is built on Ez a struktúrának erre a tengelyek rendszerre épül @@ -249,7 +249,7 @@ Ennek az objektumnak a normál kihúzás iránya (automatikus normál (0,0,0) megtartása) - + The element numbers to exclude when this structure is based on axes A kihúzandó elemek száma, ha az tengelyeken alapul @@ -309,57 +309,57 @@ A háló egy érvénytelen szilárd test - + Create Window Ablak létrehozása - + the components of this window Összetevők ebben az ablakban - + Edit Szerkesztés - + Create/update component Létrehozni/frissíteni összetevőt - + Base 2D object Alap 2D objektumot - + Wires Vonalak - + Create new component Új összetevő létrehozásához - + Name Név - + Type Típus - + Thickness Vastagság - + Z offset Z-eltolás @@ -403,12 +403,12 @@ Számozási stíus - + Add space boundary Hely határvonal hozzáadása - + Remove space boundary Távolítsa el a hely határvonalán @@ -443,12 +443,12 @@ Keret létrehozása - + Create Rebar Új háló létrehozása - + Please select a base face on a structural object Válasszon egy alap nézetet a strukturális objektumon @@ -577,22 +577,12 @@ Az eltolás a lépcső szegélye és a szerkezet között - - Wood - Fa - - - - Steel - Acél - - - + Structure options Szerkezet lehetőségek - + Preset Előre beállított @@ -602,7 +592,7 @@ Hossz - + Rotate Forgatás @@ -612,27 +602,27 @@ Folytatás - + An optional extrusion path for this element Egy választható kihúzási útvonalat ehhez az elemhez - + Armatures contained in this element Ebben az elemben található szerkezeti elemek - + The structural nodes of this element Ennek az elemnek a szerkezeti csomópontjai - + Error: The base shape couldn't be extruded along this tool object Hiba: Az alap alakzatot nem lehet kihúzni ennek az eszköz objektumnak a mentén - + Couldn't compute a shape Nem tudott létrehozni alakzatot @@ -672,39 +662,39 @@ Ennek a falnak és az alap vonalának az eltolása (csak a bal- és a jobb nyomvonal igazításhoz) - + Pick a face on an existing object or select a preset Válasszon egy felületet a meglévő objektumon vagy válasszon egy előre beállítottat - + Window options Ablakbeállítások - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. A furat mélysége melyet ez az ablak képez a hordozó felületen. Automatikushoz hagyja 0-án. - + The width of this window (for preset windows only) Az ablak szélessége (csak előre beállított ablakok) - + The height of this window (for preset windows only) Az ablak szélessége (csak előre beállított ablakok) - + The normal direction of this window Ez az ablak normál iránya - + Unable to create component Nem lehet létrehozni összetevőt @@ -730,12 +720,12 @@ Tengelyek közti távolságok (mm) és szögek (fokban) - + Error computing the shape of this object Hiba a tárgy alakjának számítása közben - + Create Structural System Szerkezeti rendszer létrehozása @@ -754,180 +744,180 @@ - + Found a shape containing curves, triangulating Találtam egy görbét tartalmazó alakzatot, háromszögelés - + Invalid cutplane - Invalid cutplane + Érvénytelen kivágási séma - + No objects are cut by the plane - No objects are cut by the plane + Tárgyakat nem vágott a sík - + Object doesn't have settable IFC Attributes - Object doesn't have settable IFC Attributes + Objektum nem rendelkezik beállítható IFC-jellemzőkkel - + Disabling Brep force flag of object - Disabling Brep force flag of object + Brep erő zászló letiltása a tárgyon - + Enabling Brep force flag of object - Enabling Brep force flag of object + Brep erő jelző engedélyezése a tárgyon The base object this component is built upon - The base object this component is built upon + Összetevő szülő tárgya ebből épült Other shapes that are appended to this object - Other shapes that are appended to this object + Ehhez a tárgyhoz csatolt egyéb alakzatok Other shapes that are subtracted from this object - Other shapes that are subtracted from this object + Ebből a tárgyból kivált egyéb alakzatok An optional description for this component - An optional description for this component + Egy lehetséges leírás ehhez az összetevőhöz An optional tag for this component - An optional tag for this component + Egy lehetséges címke ehhez az összetevőhöz - + Custom IFC properties and attributes - Custom IFC properties and attributes + Egyéni IFC tulajdonságai és attribútumai - + A material for this object - A material for this object + Egy anyag ehhez a tárgyhoz The role of this object - The role of this object + Ennek a tárgynak a szerepe Specifies if this object must move together when its host is moved - Specifies if this object must move together when its host is moved - - - - has no solid - has no solid + Itt adható meg, ha ennek a tárgynak együtt kell mozognia a gazda áthelyezésével - has an invalid shape - has an invalid shape + has no solid + nem szilárd test + has an invalid shape + egy érvénytelen alak + + + has a null shape - has a null shape + van egy null alakja Cutting - Cutting + Vágás You must select a base object first! - You must select a base object first! + Ki kell választania először egy alapobjektumot! Create Equipment - Create Equipment + Berendezési tárgy létrehozás You must select exactly one base object - You must select exactly one base object + Pontosan egy alap tárgyat kell kijelölnie The selected object must be a mesh - The selected object must be a mesh + A kijelölt objektumnak hálónak kell lennie This mesh has more than 1000 facets. - This mesh has more than 1000 facets. + Ez a háló több mint 1000 élből áll. This operation can take a long time. Proceed? - This operation can take a long time. Proceed? + Ez a művelet hosszú ideig tarthat. Folytatja? The mesh has more than 500 facets. This will take a couple of minutes... - The mesh has more than 500 facets. This will take a couple of minutes... + A háló több mint 500 élből áll. Ez eltart egy pár percig... Create 3 views - Create 3 views + 3 nézet létrehozása The model description of this equipment - The model description of this equipment + Ennek a berendezési tárgynak a modell leírása The url of the product page of this equipment - The url of the product page of this equipment + Ennek a berendezési tárgy termék oldalának url elérési címe Create Panel - Create Panel + Panel létrehozása Panel options - Panel options + Panel beállításai The thickness or extrusion depth of this element - The thickness or extrusion depth of this element + Ennek az elemnek a vastagsága vagy kihúzás mélysége The number of sheets to use - The number of sheets to use + A használandó burkolólapok száma The offset between this panel and its baseline - The offset between this panel and its baseline + A panel és az alapvonal közötti eltolás @@ -942,67 +932,67 @@ If Angle = 0 and Run = 0 then profile is identical to the relative profile. If Angle = 0 then angle is calculated so that the height is the same one as the relative profile. If Run = 0 then Run is calculated so that the height is the same one as the relative profile. - Parameters of the profiles of the roof: -* Angle : slope in degrees compared to the horizontal one. -* Run : outdistance between the wall and the ridge sheathing. -* Thickness : thickness of the side of roof. -* Overhang : outdistance between the sewer and the wall. -* Height : height of the ridge sheathing (calculated automatically) -* IdRel : Relative Id for calculations automatic. + A tető profil paraméterei: +* Szög : lejtő fokokban a vízszintes síkhoz képest. +* Futás : kiugrás a fal és a tető orom él közt. +* Vastagság : a tető oldalának a vastagsága. +* Kiállás : kiugrás a fal és az eresz közt. +* Magasság : orom élmagassága (automatikusan számolt) +* IdRel : Relatív Id az automatikus számoláshoz. --- -If Angle = 0 and Run = 0 then profile is identical to the relative profile. -If Angle = 0 then angle is calculated so that the height is the same one as the relative profile. -If Run = 0 then Run is calculated so that the height is the same one as the relative profile. +Ha a Szög = 0 és a Futás = 0 akkor a profil megegyezik a relatív profillal. +Ha a Szög = 0 akkor a szöget úgy számolja, hogy a magasság ugyanaz mint a relatív profil magasság. +Ha a Futás = 0 akkor a Futást úgy számolja, hogy a magasság ugyanaz mint a relatív profil magasság. Id - Id + Azonosító IdRel - IdRel + IdRel If false, non-solids will be cut too, with possible wrong results. - If false, non-solids will be cut too, with possible wrong results. + Ha hamis, nem szilárd testeket is elvág, lehetséges rossz eredménnyel. The display length of this section plane - The display length of this section plane + A metszősík megjelenítési hossza The display height of this section plane - The display height of this section plane + A metszősík megjelenítési magassága The size of the arrows of this section plane - The size of the arrows of this section plane + Metszősík nyilainak a nagysága The computed floor area of this space - The computed floor area of this space + A hely számított alapterülete The finishing of the floor of this space - The finishing of the floor of this space + Ennek a területnek a szintjének a kidolgozása The finishing of the walls of this space - The finishing of the walls of this space + Ennek a területnek a falának a kidolgozása The finishing of the ceiling of this space - The finishing of the ceiling of this space + Ennek a területnek a mennyezetének a kidolgozása @@ -1017,7 +1007,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The name of the font - The name of the font + Betűtípus @@ -1027,7 +1017,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The size of the text font - The size of the text font + A betűtípus mérete @@ -1060,12 +1050,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1177,12 +1167,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1234,12 +1224,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela URL - URL + URL Item - Item + Elem @@ -1302,27 +1292,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1362,7 +1352,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1382,47 +1372,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategória + + + + Key + Key + + + + Value + Érték + + + + Unit + Egység + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1432,7 +1457,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch material - Arch material + Építészeti anyag @@ -1457,12 +1482,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Code - Code + Kód URL - URL + URL @@ -1481,12 +1506,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Összetevő hozzáadása - + Adds the selected components to the active object A kijelölt összetevőket hozzáadja az aktív objektumhoz @@ -1507,12 +1532,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1533,17 +1558,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Ellenőrzés - + Checks the selected objects for problems Ellenőrzi a kijelölt objektumok problémáit - + Explore the contents of an Ifc file Fedezze fel az Ifc fájl tartalmát @@ -1551,12 +1576,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Lyukak bezárása - + Closes holes in open shapes, turning them solids Bezárja a nyitott alakzatokat, szilárd testé változtatja azokat @@ -1564,12 +1589,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1629,12 +1654,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1642,11 +1667,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer IFC Böngésző + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1676,12 +1714,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Hálókat alakzatokká - + Turns selected meshes into Part Shape objects A kiválasztott hálókat alakzat objektumokká alakítja @@ -1702,12 +1740,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Újrahálózás - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1715,12 +1753,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Összetevő törlése - + Remove the selected components from their parents, or create a hole in a component A kijelölt alkatrészek eltávolítása a szülőktől, vagy egy lyuk létrehozása alkatrészen @@ -1728,12 +1766,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch - Alakzat elhagyása az Arch-ból + Alakzat elhagyása az Építészet-ből - + Removes cubic shapes from Arch components Eltávolítja a harmadfokú alakzatokat az Arch alkatrészekből @@ -1780,12 +1818,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Válassza ki a nem-sokrétű hálózatot - + Selects all non-manifold meshes from the document or from the selected groups Kiválasztja az összes nem-sokrétű hálózatot a dokumentumból vagy a kijelölt csoportokból @@ -1824,12 +1862,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Háló osztása - + Splits selected meshes into independent components A kiválasztott hálót független összetevőkre osztja @@ -1845,12 +1883,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Felépítés - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Létrehoz egy objektum struktúrát vázlatból vagy egy kijelölt objektumból (vázlat, vonal, felület vagy szilárd test) @@ -1858,12 +1896,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1871,12 +1909,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2083,27 +2121,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Ez az alapértelmezett szín az új struktúra tárgyakhoz - + 2D rendering 2D-leképezés - + Show debug information during 2D rendering Hibakeresési információ megjelenítése a 2D visszaadás során - + Show renderer debug messages Hibakeresési üzenetek megjelenítése a leképzéshez - + Cut areas line thickness ratio Területek vonal vastagság arányának levágása - + Specifies how many times the viewed line thickness must be applied to cut lines Itt adható meg, a látható vonal vastagságból hányat kell alkalmazni a kivágás végrehalytásához @@ -2172,11 +2210,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2193,82 +2226,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Fast conversion - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2318,22 +2351,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Átlátszóság: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2363,27 +2396,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Vastagság - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2393,7 +2426,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2403,102 +2436,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2608,37 +2641,72 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench Arch tools - Arch tools + Építészeti eszközök Draft tools - Draft tools + Tervrajz eszközök @@ -2651,12 +2719,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela &Architecture - &Architektúra + Építészet &Draft - Vázrajz + Tervrajz diff --git a/src/Mod/Arch/Resources/translations/Arch_it.qm b/src/Mod/Arch/Resources/translations/Arch_it.qm index 845d34dd240181f2043311280e94ecb6852b49fe..2b42d665ebebc7e04a8aa9be192e8744ed7dcf6f 100644 GIT binary patch delta 6287 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 Arch - + Components Componenti @@ -44,12 +44,12 @@ La dimensione delle bolle dell'asse - + Remove Rimuovi - + Add Aggiungi @@ -84,57 +84,57 @@ Piano - + removing sketch support to avoid cross-referencing rimozione degli sketch di supporto per evitare riferimenti incrociati - + is not closed non è chiuso - + is not valid non è valido - + doesn't contain any solid non contiene nessun solido - + contains a non-closed solid contiene un solido non chiuso - + contains faces that are not part of any solid contiene delle facce che non fanno parte di nessun solido - + Grouping Raggruppa - + Ungrouping Separa - + Split Mesh Dividi Mesh - + Mesh to Shape Da Mesh a Forma - + All good! no problems found Tutto bene! Nessun problema riscontrato @@ -159,7 +159,7 @@ Oggetti - + closing Sketch edit Chiudi modifica Sketch @@ -219,27 +219,27 @@ Crea Sito - + Create Structure Crea Struttura - + The length of this element, if not based on a profile La lunghezza di questo elemento, se non è basato su un profilo - + The width of this element, if not based on a profile La larghezza di questo elemento, se non è basato su un profilo - + The height or extrusion depth of this element. Keep 0 for automatic L'altezza o la profondità di estrusione di questo elemento. Lasciare 0 per automatico - + Axes systems this structure is built on Sistemi di assi su cui è costruita questa struttura @@ -249,7 +249,7 @@ La direzione di estrusione normale di questo oggetto (lasciare (0, 0,0) per normale in automatico) - + The element numbers to exclude when this structure is based on axes Il numero d'ordine degli elementi da escludere quando questa struttura è basata su assi @@ -309,57 +309,57 @@ Questa mesh non è un solido valido - + Create Window Crea Finestra - + the components of this window i componenti di questa finestra - + Edit Modifica - + Create/update component Crea o aggiorna componente - + Base 2D object Oggetto 2D di base - + Wires Polilinea - + Create new component Crea nuovo componente - + Name Nome - + Type Tipo - + Thickness Spessore - + Z offset Offset Z @@ -404,12 +404,12 @@ Lo stile di numerazione - + Add space boundary Aggiungi limite di spazio - + Remove space boundary Rimuovi il limite di spazio @@ -444,12 +444,12 @@ Crea Telaio - + Create Rebar Crea Armatura - + Please select a base face on a structural object Selezionare una faccia di base su un oggetto strutturale @@ -577,22 +577,12 @@ La distanza tra il bordo degli scalini e la struttura o i montanti - - Wood - Legno - - - - Steel - Acciaio - - - + Structure options Opzioni struttura - + Preset Preimpostato @@ -602,7 +592,7 @@ Lunghezza - + Rotate Ruota @@ -612,27 +602,27 @@ Con&tinua - + An optional extrusion path for this element Un percorso di estrusione opzionale per questo elemento - + Armatures contained in this element Armature contenute in questo elemento - + The structural nodes of this element I nodi strutturali di questo elemento - + Error: The base shape couldn't be extruded along this tool object Errore: La forma base non può essere estrusa lungo questo oggetto strumento - + Couldn't compute a shape Non è possibile computare una forma @@ -672,39 +662,39 @@ L'offset tra questa parete e la sua linea guida (solo per gli allineamenti destro e sinistro) - + Pick a face on an existing object or select a preset Scegliere una faccia su un oggetto esistente o selezionare un preimpostato - + Window options Opzioni finestra - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. La profondità del foro che questa finestra crea nel suo oggetto ospitante. Lasciare 0 per automatica. - + The width of this window (for preset windows only) La larghezza della finestra (solo per le finestre preimpostate) - + The height of this window (for preset windows only) L'altezza della finestra (solo per le finestre preimpostate) - + The normal direction of this window Direzione normale di questa finestra - + Unable to create component Impossibile creare il componente @@ -727,12 +717,12 @@ Distanze (mm) ed angoli (gradi) tra gli assi - + Error computing the shape of this object Errore di calcolo della forma di questo oggetto - + Create Structural System Crea sistema strutturale @@ -749,38 +739,38 @@ Errore: la versione IfcOpenShell è troppo vecchia - + Found a shape containing curves, triangulating Trovata una forma contenente curve: triangolazione - + Invalid cutplane Piano di taglio non valido - + No objects are cut by the plane Non ci sono oggetti tagliati dal piano - + Object doesn't have settable IFC Attributes L'oggetto non ha attributi IFC impostabili - + Disabling Brep force flag of object Disabilita la rappresentazione Brep forzata dell'oggetto - + Enabling Brep force flag of object Abilita la rappresentazione Brep forzata dell'oggetto @@ -810,12 +800,12 @@ Un tag opzionale per questo componente - + Custom IFC properties and attributes Attributi e proprietà IFC personalizzate - + A material for this object Un materiale per questo oggetto @@ -830,17 +820,17 @@ Specifica se questo oggetto deve essere spostato con il suo ospite quando quest'ultimo viene spostato - + has no solid non ha nessun solido - + has an invalid shape ha una forma non valida - + has a null shape ha una forma nulla @@ -1055,12 +1045,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Visualizza il suffisso dell'unità - + A description of the standard profile this element is based upon Una descrizione del profilo standard su cui è basato questo elemento - + Sill height Altezza del davanzale @@ -1172,12 +1162,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Tipo di edificio - + removing sketch external reference to avoid cross-referencing rimuovendo i riferimenti esterni dello schizzo per evitare riferimenti incrociati - + Create Component Crea componente @@ -1297,27 +1287,27 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Visualizza la sezione nella vista 3D - + This document is not saved. Please save it first Questo documento non è stato salvato. Si prega di salvarlo - + The Python Git module was not found. Please install the python-git package. Non è stato trovato il modulo Python Git. Si prega di installare il pacchetto python-git. - + This document doesn't appear to be part of a Git repository. Questo documento non sembra una parte di un repository Git. - + Warning: no remote repositories. Unable to push Avviso: nessun repository remoto. Impossibile conferire - + The Git repository cannot handle this document. Il repository Git non può gestire questo documento. @@ -1357,7 +1347,7 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Le pareti possono essere basate solo su oggetti Parte o Mesh - + an optional object that defines a volume to be subtracted from hosts of this window un oggetto opzionale che definisce un volume da sottrarre per ospitare questa finestra @@ -1377,47 +1367,82 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Posizione del testo - + Unable to extrude the base shape Impossibile estrudere la forma base + + + Category + Categoria + + + + Key + Chiave + + + + Value + Valore + + + + Unit + Unità + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + L'oggetto non possiede gli attributi IfcProperties. Annulla la creazione del foglio di calcolo per l'oggetto: + + + + Create IFC properties spreadsheet + Crea un foglio di calcolo di proprietà IFC + + + + Auto include in host object + Includi automaticamente nell'oggetto ospite + ArchGitOptions - + Git Options Opzioni di git - + What to commit Ciò che è da conferire - + All files in folder Tutti i file della cartella - + Only this .FcStd file Solo questo file .FcStd - + Commit message Messaggio di commit - + commit commit - + Push to default remote repository Conferire al repository remoto predefinito @@ -1476,12 +1501,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Add - + Add component Aggiungi componente - + Adds the selected components to the active object Aggiunge i componenti selezionati all'oggetto attivo @@ -1502,12 +1527,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Apre una finestra del browser e si connette a un'istanza del server BIM @@ -1528,17 +1553,17 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Check - + Check Controlla - + Checks the selected objects for problems Controlla se gli oggetti selezionati hanno dei problemi - + Explore the contents of an Ifc file Esplora il contenuto di un file Ifc @@ -1546,12 +1571,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_CloseHoles - + Close holes Chiudi fori - + Closes holes in open shapes, turning them solids Chiude i fori nelle forme aperte, trasformandole in solidi @@ -1559,12 +1584,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Component - + Component Componente - + Creates an undefined architectural component Crea un componente architettonico non definito @@ -1624,12 +1649,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Git - + Commit with Git Commit con Git - + Commits the current document Esegue il commit del documento corrente @@ -1637,11 +1662,24 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_IfcExplorer - + Ifc Explorer Explorer ifc + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Crea un foglio di calcolo IFC... + + + + Creates a spreadsheet to store ifc properties of an object. + Crea un foglio di calcolo per archiviare le proprietà ifc di un oggetto. + + Arch_Material @@ -1671,12 +1709,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_MeshToShape - + Mesh to Shape Da Mesh a Forma - + Turns selected meshes into Part Shape objects Trasforma le mesh selezionate in oggetti Part Shape @@ -1697,12 +1735,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Rebar - + Rebar Armatura - + Creates a Reinforcement bar from the selected face of a structural object Crea una barra di rinforzo dalla faccia selezionata di un oggetto strutturale @@ -1710,12 +1748,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Remove - + Remove component Rimuovi componente - + Remove the selected components from their parents, or create a hole in a component Rimuove i componenti selezionati dai loro genitori, o crea un buco in un componente @@ -1723,12 +1761,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_RemoveShape - + Remove Shape from Arch Rimuovi Forma da Arch - + Removes cubic shapes from Arch components Rimuove le forme cubiche dai componenti Arch @@ -1775,12 +1813,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_SelectNonSolidMeshes - + Select non-manifold meshes Seleziona le mesh non-manifold - + Selects all non-manifold meshes from the document or from the selected groups Seleziona tutte le mesh non-manifold nel documento o nei gruppi selezionati @@ -1819,12 +1857,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_SplitMesh - + Split Mesh Dividi Mesh - + Splits selected meshes into independent components Divide le Mesh selezionate in componenti indipendenti @@ -1840,12 +1878,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Structure - + Structure Struttura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Crea un oggetto struttura da zero o da un oggetto selezionato (schizzo, wire, faccia o solido) @@ -1853,12 +1891,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_Survey - + Survey Ispeziona - + Starts survey Avvia ispezione @@ -1866,12 +1904,12 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Attiva/Disattiva IFC Brep - + Force an object to be exported as Brep or not Forza, o non, l'esportazione di un oggetto come Brep @@ -2078,27 +2116,27 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Questo è il colore predefinito per i nuovi oggetti Struttura - + 2D rendering Rendering 2D - + Show debug information during 2D rendering Visualizza le informazioni di debug durante il rendering 2D - + Show renderer debug messages Visualizza i messaggi di debug del render - + Cut areas line thickness ratio Rapporto di spessore per le linee di taglio delle aree - + Specifies how many times the viewed line thickness must be applied to cut lines Specifica quante volte lo spessore di linea visualizzato deve essere applicato alle linee di taglio @@ -2167,11 +2205,6 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Snapping Aggancio - - - Walls drawing - Disegno pareti - Auto-join walls @@ -2188,82 +2221,82 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Unisci gli schizzi di base delle pareti, quando possibile - + Mesh to Shape Conversion Conversione da mesh a forma - + If this is checked, conversion is faster but the result might still contain triangulated faces Se selezionato, la conversione è più veloce ma il risultato potrebbe ancora contenere facce triangolate - + Fast conversion Conversione veloce - + Tolerance: Tolleranza: - + Tolerance value to use when checking if 2 adjacent faces as planar Valore di tolleranza da utilizzare quando si verifica se 2 facce adiacenti sono planari - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Se selezionato, i gruppi di facce piane saranno appiattiti forzatamente, con conseguente possibili lacune e risultati non solidi - + Force flat faces Forza facce piane - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Se selezionato, i fori nelle facce sono creati mediante sottrazione invece di utilizzare l'orientamento degli spigoli - + Cut method Metodo di taglio - + Show debug messages Visualizza i messaggi di debug - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Se selezionato, le aperture sono importate come elementi sottrazioni, altrimenti le aperture sono già sottratte dalle forme pareti - + Separate openings Separa aperture - + If this is checked, object names will be prefixed with the IFC ID number Se selezionato, i nomi degli oggetti saranno preceduti dal numero di identificazione IFC - + Prefix names with ID number Prefisso nomi con numero ID - + Exclude list: Lista esclusioni: - + A comma-separated list of Ifc entities to exclude from import Un elenco separato da virgole delle entità Ifc da escludere dall'importazione @@ -2313,22 +2346,22 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Trasparenza: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Ad alcuni visualizzatori IFC non piacciono gli oggetti esportati come estrusioni. Usatelo per forzare l'esportazione di tutti gli oggetti come geometrieaBREP. - + Hidden geomety pattern Nascondi la geometria del modello - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Questa è la proprietà stroke-dasharray SVG che si applica alle proiezioni degli oggetti nascosti. - + 30, 10 30, 10 @@ -2358,27 +2391,27 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Spessore - + Force export as Brep Forza l'esportazione come Brep - + Bim server Server Bim - + Address Indirizzo - + The URL of a bim server instance (www.bimserver.org) to connect to. L'URL di un'istanza del server bim a cui connettersi (www.bimserver.org). - + http://localhost:8082 http://localhost:8082 @@ -2388,7 +2421,7 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi DAE - + Export options Opzioni di esportazione @@ -2398,102 +2431,102 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi IFC - + General options Opzioni generali - + Show verbose information during import and export of IFC files Visualizza informazioni dettagliate durante l'importazione e l'esportazione dei file IFC - + Import options Opzioni di importazione - + Import arch IFC objects as Importare gli oggetti IFC di Arch come - + Specifies what kind of objects will be created in FreeCAD Specifica che tipo di oggetto verrà creato in FreeCAD - + Parametric Arch objects Oggetti parametrici di Arch - + Non-parametric Arch objects Oggetti Arch non-parametrici - + Simple Part shapes Forme semplici di Parte - + One compound per floor Un composto per piano - + Do not import Arch objects Non importare oggetti Arch - + Import struct IFC objects as Importare oggetti struttura IFC come - + One compound for all Un composto per tutti - + Do not import structural objects Non importare oggetti strutturali - + Root element: Elemento radice: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Verranno importati solo i sottotipi di questo elemento. Mantenere il valore "IfcProduct" per importare tutti gli elementi della costruzione. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... Selezionando questa opzione, l'importatore tenterà di rilevare le estrusioni. Questo potrebbe rallentare la procedura... - + Detect extrusions Rilevare le estrusioni - + If several materials with the same name are found in the IFC file, they will be treated as one. Se nel file IFC vengono trovati materiali diversi con lo stesso nome, essi verranno considerati come uno solo. - + Merge materials with same name Unire i materiali aventi lo stesso nome @@ -2603,24 +2636,59 @@ Se Run = 0 allora Run è calcolato in modo che l'altezza sia la stessa del profi Consentire quadrilateri - + Use triangulation options set in the DAE options page Utilizzare le opzioni di triangolazione impostate nella pagina delle opzioni di DAE - + Use DAE triangulation options Utilizzare le opzioni di triangolazione DAE - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Le forme curve che non possono essere rappresentate come curve in IFC sono scomposte in sfaccettature piatte. Selezionando questa opzione, saranno eseguiti alcuni ulteriori calcoli per unire le sfaccettature complanari. - + Join coplanar facets when triangulating - Unitere le facce complanari durante la triangolazione + Unire le facce complanari durante la triangolazione + + + + Object creation + Creazione di un oggetto + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Per evitare le dipendenze circolari sono possibili due strategie: creare un oggetto intermedio in più (non controllato) oppure rimuovere la geometria esterna dagli schizzi di base (controllato) + + + + Remove external geometry of base sketches when needed + Rimuovere la geometria esterna degli schizzi di base quando necessario + + + + Create clones when objects have shared geometry + Crea dei cloni quando gli oggetti condividono la geometria + + + + Show this dialog when importing and exporting + Visualizza questa finestra di dialogo durante l'importazione e l'esportazione + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Se spuntata le proprietà Ifc ogni oggetto saranno archiviate in un oggetto foglio di calcolo. + + + + Import Ifc Properties in spreadsheet + Importa le proprietà Ifc in un foglio di calcolo diff --git a/src/Mod/Arch/Resources/translations/Arch_ja.qm b/src/Mod/Arch/Resources/translations/Arch_ja.qm index 7a30cf5aa2ecd1040543b012c4659340f2cba5e6..ee670e1066b574bb818473834295fb5db96ca3af 100644 GIT binary patch delta 6556 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 VBcs0vjS5Bv{Xg7^+IIi| diff --git a/src/Mod/Arch/Resources/translations/Arch_ja.ts b/src/Mod/Arch/Resources/translations/Arch_ja.ts index 76820cf5e..e093a77e5 100644 --- a/src/Mod/Arch/Resources/translations/Arch_ja.ts +++ b/src/Mod/Arch/Resources/translations/Arch_ja.ts @@ -4,7 +4,7 @@ Arch - + Components コンポーネント @@ -44,12 +44,12 @@ 軸バブルのサイズ - + Remove 削除 - + Add 追加 @@ -84,57 +84,57 @@ - + removing sketch support to avoid cross-referencing 相互参照を避けるためスケッチサポートを削除 - + is not closed が閉じていません - + is not valid は無効です - + doesn't contain any solid ソリッドが含まれていません - + contains a non-closed solid 閉じていないソリッドが含まれています - + contains faces that are not part of any solid どのソリッドにも属していない面が含まれています - + Grouping グループ化 - + Ungrouping グループ化の解除 - + Split Mesh メッシュを分割 - + Mesh to Shape メッシュからシェイプへ - + All good! no problems found すべて良好!問題は見つかりませんでした @@ -159,7 +159,7 @@ オブジェクト - + closing Sketch edit スケッチ編集を終了 @@ -219,27 +219,27 @@ サイトを作成 - + Create Structure 構造体を作成 - + The length of this element, if not based on a profile プロファイルに基づいていない場合、この要素の長さ - + The width of this element, if not based on a profile プロファイルに基づいていない場合、この要素の幅 - + The height or extrusion depth of this element. Keep 0 for automatic この要素の高さまたは押し出し深さ。自動設定する場合は0のままにしてください。 - + Axes systems this structure is built on この構造体の座標系 @@ -249,7 +249,7 @@ このオブジェクトの法線押し出し方向(法線自動設定を行う場合は(0,0,0)のままにしてください) - + The element numbers to exclude when this structure is based on axes 軸に基づいてこの構造体を押し出す場合に押し出す要素の数 @@ -309,57 +309,57 @@ このメッシュは無効なソリッドです - + Create Window 窓を作成 - + the components of this window この窓のコンポーネント - + Edit 編集 - + Create/update component コンポーネントを作成/更新する - + Base 2D object ベース2Dオブジェクト - + Wires ワイヤー - + Create new component 新しいコンポーネントを作成 - + Name 名前 - + Type タイプ - + Thickness 厚み - + Z offset Z オフセット @@ -402,12 +402,12 @@ 番号付けのスタイル - + Add space boundary スペース境界を追加 - + Remove space boundary スペース境界を削除 @@ -442,12 +442,12 @@ 軸組の作成 - + Create Rebar 異形鉄筋を作成 - + Please select a base face on a structural object 構造オブジェクト上から基準面を選択してください。 @@ -576,22 +576,12 @@ 階段境界線と構造の間のオフセット - - Wood - 木材 - - - - Steel - 鋼材 - - - + Structure options 構造オプション - + Preset プリセット @@ -601,7 +591,7 @@ 長さ - + Rotate 回転 @@ -611,27 +601,27 @@ 続行 (&T) - + An optional extrusion path for this element この要素のオプション押し出し経路 - + Armatures contained in this element この要素に含まれている骨組み - + The structural nodes of this element この要素の構造ノード - + Error: The base shape couldn't be extruded along this tool object エラー: ベースシェイプをこのツールオブジェクトに沿って押し出すことはできません - + Couldn't compute a shape シェイプを計算できません @@ -671,38 +661,38 @@ この壁とそのベースラインとの間のオフセット距離(左揃え、右揃えの時のみ) - + Pick a face on an existing object or select a preset 既存オブジェクトにある面を選択するか、プリセットを選択 - + Window options 窓のオプション - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. 穴の深さは、そのホスト・オブジェクトに作る窓の開口にある。 0であれば自動。 - + The width of this window (for preset windows only) この窓の幅(プリセットに用いる幅) - + The height of this window (for preset windows only) この窓の高さ(プリセットに用いる幅) - + The normal direction of this window このウィンドウの法線方向 - + Unable to create component コンポーネントを作成できません @@ -725,12 +715,12 @@ 軸の間の距離 (mm) と角度 (度) - + Error computing the shape of this object このオブジェクトのシェイプ計算でエラーが発生しました。 - + Create Structural System 構造システムを作成 @@ -747,38 +737,38 @@ エラー: IfcOpenShellバージョンが古すぎます。 - + Found a shape containing curves, triangulating 三角分割および曲線を含む図形が見つかりました - + Invalid cutplane 切断面が無効です - + No objects are cut by the plane 平面によって切断されるオブジェクトがありません - + Object doesn't have settable IFC Attributes オブジェクトに設定可能な IFC 属性がありません - + Disabling Brep force flag of object オブジェクトの Brep 強制フラグを無効化 - + Enabling Brep force flag of object オブジェクトの Brep 強制フラグを有効化 @@ -808,12 +798,12 @@ このコンポーネントのオプション・タグ - + Custom IFC properties and attributes IFC のカスタムされたプロパティと属性 - + A material for this object このオブジェクトのマテリアル @@ -828,17 +818,17 @@ ホストの移動時にこのオブジェクトが一緒に移動する必要があるかどうかを指定 - + has no solid ソリッドではありません - + has an invalid shape 無効な形状があります - + has a null shape 形状がありません @@ -1054,12 +1044,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ 単位表記を表示 - + A description of the standard profile this element is based upon この要素の基となる標準プロファイルの説明 - + Sill height 敷居の高さ @@ -1171,12 +1161,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ この建物の種類 - + removing sketch external reference to avoid cross-referencing 相互参照を避けるためにスケッチの外部参照を削除 - + Create Component コンポーネントを作成 @@ -1296,27 +1286,27 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Show the cut in the 3D view - + This document is not saved. Please save it first このドキュメントは保存されません。まず最初に保存してください。 - + The Python Git module was not found. Please install the python-git package. Pythonの Gitモジュールが見つかりませんでした。 python-git パッケージをインストールしてください。 - + This document doesn't appear to be part of a Git repository. このドキュメントはGitリポジトリの一部ではない可能性があります。 - + Warning: no remote repositories. Unable to push 警告: リモート・リポジトリがありません。故にpushができません。 - + The Git repository cannot handle this document. Git リポジトリは、このドキュメントをハンドルすることができません。 @@ -1356,7 +1346,7 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1376,47 +1366,82 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + カテゴリ + + + + Key + Key + + + + Value + + + + + Unit + 単位 + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git のオプション - + What to commit コミット対象 - + All files in folder フォルダー内の全てのファイル - + Only this .FcStd file この.FcStd ファイルのみ - + Commit message コミットメッセージ - + commit コミット - + Push to default remote repository 既定のリモート・リポジトリにプッシュする @@ -1475,12 +1500,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Add - + Add component コンポーネントを追加 - + Adds the selected components to the active object 選択したコンポーネントをアクティブなオブジェクトに追加します @@ -1501,12 +1526,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Bimserver - + BIM server BIM サーバー - + Opens a browser window and connects to a BIM server instance ブラウザーウィンドウを開いてBIMサーバーのインスタンスに接続 @@ -1527,17 +1552,17 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Check - + Check チェック - + Checks the selected objects for problems 選択されているオブジェクトの問題を確認します - + Explore the contents of an Ifc file Ifcファイルの内容を閲覧 @@ -1545,12 +1570,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_CloseHoles - + Close holes 穴をふさぐ - + Closes holes in open shapes, turning them solids 開いたシェイプの穴をふさいでソリッドにします @@ -1558,12 +1583,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Component - + Component コンポーネント - + Creates an undefined architectural component Creates an undefined architectural component @@ -1623,12 +1648,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Git - + Commit with Git Git を使用してコミット - + Commits the current document 現在のドキュメントをコミット @@ -1636,11 +1661,24 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_IfcExplorer - + Ifc Explorer IFCエクスプ ローラー + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1670,12 +1708,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_MeshToShape - + Mesh to Shape メッシュからシェイプへ - + Turns selected meshes into Part Shape objects 選択されているメッシュをパートシェイプオブジェクトへ変換します @@ -1696,12 +1734,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Rebar - + Rebar 異形鉄筋 - + Creates a Reinforcement bar from the selected face of a structural object 構造オブジェクトの選択した面から異形鉄筋を作成します @@ -1709,12 +1747,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Remove - + Remove component コンポーネントの削除 - + Remove the selected components from their parents, or create a hole in a component 選択されているオブジェクトを親オブジェクトから取り除くか、またはコンポーネントに穴を作成します @@ -1722,12 +1760,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_RemoveShape - + Remove Shape from Arch Archからシェイプを削除します。 - + Removes cubic shapes from Arch components Archコンポーネントから立方体シェイプを取り除きます @@ -1774,12 +1812,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_SelectNonSolidMeshes - + Select non-manifold meshes ノンマニフォールドメッシュを選択 - + Selects all non-manifold meshes from the document or from the selected groups ドキュメントまたは選択されているグループから全てのノンマニフォールドメッシュを選択 @@ -1818,12 +1856,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_SplitMesh - + Split Mesh メッシュを分割 - + Splits selected meshes into independent components 選択されたメッシュを分割して独立したコンポーネントにします @@ -1839,12 +1877,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Structure - + Structure 構造体 - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) スクラッチまたは選択されているオブジェクト(スケッチ、ワイヤー、面、ソリッド)から構造体オブジェクトを作成します @@ -1852,12 +1890,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_Survey - + Survey 調査 - + Starts survey 調査開始 @@ -1865,12 +1903,12 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag IFC Brep フラグの切り替え - + Force an object to be exported as Brep or not オブジェクトを強制的に Brep としてエクスポートするかどうか @@ -2077,27 +2115,27 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ 新しい構造体オブジェクトのデフォルト色です。 - + 2D rendering 2Dレンダリング - + Show debug information during 2D rendering 2Dレンダリング中にデバッグ情報を表示 - + Show renderer debug messages レンダラーのデバッグメッセージを表示 - + Cut areas line thickness ratio 領域カットラインの太さ比 - + Specifies how many times the viewed line thickness must be applied to cut lines 表示ライン太さの何倍をカットラインに適用するかを指定 @@ -2166,11 +2204,6 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Snapping スナップ - - - Walls drawing - 壁図面 - Auto-join walls @@ -2187,83 +2220,83 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ 可能な場合には壁のベーススケッチを結合 - + Mesh to Shape Conversion メッシュをシェイプに変換します - + If this is checked, conversion is faster but the result might still contain triangulated faces チェックされている場合、変換が高速になりますが結果に3角形面が残る可能性があります。 - + Fast conversion 高速変換 - + Tolerance: 許容範囲: - + Tolerance value to use when checking if 2 adjacent faces as planar 隣り合う2面が同一平面上にあるかどうか調べる際に使用する許容値 - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results チェックされている場合、面のフラット・グループが強制的に平滑化されます。処理の結果に段差が含まれたり、非ソリッドな結果となる場合があります。 - + Force flat faces 強制的に平滑化 - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation チェックされている場合、面に開いた穴はワイヤー方向を使わずに減算によって処理されます。 - + Cut method 切断方法 - + Show debug messages デバッグ情報を表示 - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted チェックされている場合、開口部は減算結果としてインポートされます。それ以外の場合、壁形状はすでに開口部を減算したものになります。 - + Separate openings 開口部を識別 - + If this is checked, object names will be prefixed with the IFC ID number チェックされている場合、オブジェクト名の接頭辞にIFC ID番号が使用されます。 - + Prefix names with ID number ID番号の接頭辞 - + Exclude list: 除外リスト: - + A comma-separated list of Ifc entities to exclude from import カンマと空白文字で区切られたIFCエンティティのリストをインポートから除外する @@ -2313,22 +2346,22 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ 透明度: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. 一部のIFCビューワーでは押し出し部品としてエクスポートされたオブジェクトを読み取れないことがあります。これを使用するとすべてのオブジェクトを強制的にBREPジオメトリーとしてエクスポートします。 - + Hidden geomety pattern 非表示ジオメトリー用のパターン - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. 非表示オブジェクトのプロジェクションに適用する SVG の stroke-dasharray プロパティー - + 30, 10 30, 10 @@ -2358,27 +2391,27 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ 厚み - + Force export as Brep Brepとして強制エクスポート - + Bim server Bim サーバー - + Address アドレス - + The URL of a bim server instance (www.bimserver.org) to connect to. BMIサーバーへ接続するインスタンス (www.bimserver.org) のURL。 - + http://localhost:8082 http://localhost:8082 @@ -2388,7 +2421,7 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ DAE - + Export options エクスポート・オプション @@ -2398,102 +2431,102 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ IFC - + General options 一般設定 - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options インポート・オプション - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects パラメトリックな建築オブジェクト - + Non-parametric Arch objects 非パラメトリックな建築オブジェクト - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects 建築オブジェクトをインポートできません - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects 構造オブジェクトはインポートできません - + Root element: ルート要素: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... チェックされている場合、インポート時に押し出しの検出を試みます。処理が遅くなる可能性があります… - + Detect extrusions 押し出しを検出 - + If several materials with the same name are found in the IFC file, they will be treated as one. 同じ名前を持つ幾つかの材料がIFC ファイル内に見つかった場合には、同一のものとして扱われます。 - + Merge materials with same name 同じ名前の材料をマージします。 @@ -2603,25 +2636,60 @@ Run = 0 の場合、Height が相対プロファイルとおなじになるよ Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_nl.qm b/src/Mod/Arch/Resources/translations/Arch_nl.qm index 9f03131c8dd74a3ddfc253cd5ad3b2f7b9416a31..739fd80c2e851294860bb932380494fba16b5323 100644 GIT binary patch delta 6316 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 KCH)?pmH!VnzbD`T delta 4263 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 Arch - + Components Componenten @@ -44,12 +44,12 @@ De grootte van de asballonnetjes - + Remove Verwijderen - + Add Toevoegen @@ -84,57 +84,57 @@ Verdieping - + removing sketch support to avoid cross-referencing Schetsondersteuning verwijderen om kruisverwijzingen te vermijden - + is not closed is niet gesloten - + is not valid is niet geldig - + doesn't contain any solid bevat geen solid - + contains a non-closed solid bevat een niet-gesloten solid - + contains faces that are not part of any solid bevat faces die niet deel uitmaken van een solid - + Grouping Groeperen - + Ungrouping Opheffen van groepering - + Split Mesh Net splitten - + Mesh to Shape Net naar Vorm - + All good! no problems found Alle goed! Geen problemen gevonden @@ -159,7 +159,7 @@ Objecten - + closing Sketch edit Schetsbewerking sluiten @@ -219,27 +219,27 @@ Werf aanmaken - + Create Structure Structuur aanmaken - + The length of this element, if not based on a profile De breedte van dit element, indien niet gebaseerd profiel - + The width of this element, if not based on a profile De breedte van dit element, indien niet gebaseerd op een profiel - + The height or extrusion depth of this element. Keep 0 for automatic De hoogte of 3D-diepte van dit element. Houd 0 voor automatisch - + Axes systems this structure is built on Assenstelsel waarop deze structuur gebouwd is @@ -249,7 +249,7 @@ De normale extrusierichting van dit opject (houd (0,0,0) voor automatische normaal) - + The element numbers to exclude when this structure is based on axes Het aantal extrusie-elementen indien deze structuur gebaseerd is op assen @@ -309,57 +309,57 @@ Dit net vormt een ongeldige solid - + Create Window Maak venster - + the components of this window de componenten van dit venster - + Edit Bewerken - + Create/update component Component maken of bijwerken - + Base 2D object Basis 2D-voorwerp - + Wires Draden - + Create new component Maak nieuw component - + Name Naam - + Type Type - + Thickness Dikte - + Z offset Z-verschuiving @@ -405,12 +405,12 @@ De nummeringsstijl - + Add space boundary Ruimtegrens toevoegen - + Remove space boundary Ruimtegrens verwijderen @@ -445,12 +445,12 @@ Frame maken - + Create Rebar Wapening maken - + Please select a base face on a structural object Selecteer een oppervlak op een structurele object @@ -579,22 +579,12 @@ The offset between the border of the stairs and the structure - - Wood - Hout - - - - Steel - Staal - - - + Structure options Structure options - + Preset Voorinstelling @@ -604,7 +594,7 @@ Lengte - + Rotate Draaien @@ -614,27 +604,27 @@ Con&tinue - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -674,39 +664,39 @@ De tussenafstand tussen deze muur en zijn basislijn (alleen voor links en rechtse uitlijningen) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Opties voor raam - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. De diepte van het gat dat dit raam maakt in zijn host-object. Laat op 0 voor automatisch. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window De normale richting van dit venster - + Unable to create component Ik kan geen component maken @@ -732,12 +722,12 @@ Afstanden (mm) en hoeken (graden) tussen assen - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Create Structural System @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -817,12 +807,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -837,17 +827,17 @@ Specifies if this object must move together when its host is moved - + has no solid Heeft geen solid - + has an invalid shape heeft een ongeldige vorm - + has a null shape heeft een null vorm @@ -1062,12 +1052,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1179,12 +1169,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1304,27 +1294,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1364,7 +1354,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1384,47 +1374,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Categorie + + + + Key + Key + + + + Value + Waarde + + + + Unit + Eenheid + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1459,7 +1484,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Code - Code + Code @@ -1483,12 +1508,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Voeg component toe - + Adds the selected components to the active object De geselecteerde onderdelen toevoegen aan het actieve object @@ -1509,12 +1534,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1535,17 +1560,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Controleer - + Checks the selected objects for problems Controleer de geselecteerde objecten op problemen - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1553,12 +1578,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Sluit gaten - + Closes holes in open shapes, turning them solids Closes holes in open shapes, turning them solids @@ -1566,12 +1591,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1631,12 +1656,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1644,11 +1669,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer IFC Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1678,12 +1716,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Net naar Vorm - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1704,12 +1742,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Wapening - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1717,12 +1755,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Verwijderen component - + Remove the selected components from their parents, or create a hole in a component Verwijder de geselecteerde onderdelen van hun ouders, of maak een gat in een component @@ -1730,12 +1768,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Vorm verwijderen - + Removes cubic shapes from Arch components Verwijdert kubieke vormen uit Arch-componenten @@ -1782,12 +1820,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Niet-manifold netten selecteren - + Selects all non-manifold meshes from the document or from the selected groups Selecteert alle niet-manifold netten van het document of van de geselecteerde groepen @@ -1826,12 +1864,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Net splitten - + Splits selected meshes into independent components Splits geselecteerde netten in onafhankelijke componenten @@ -1847,12 +1885,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Structuur - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Maak een structuurobject vanaf nul of van een geselecteerd object (schets, draad, vlak of volume) @@ -1860,12 +1898,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1873,12 +1911,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2085,27 +2123,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Dit is de standaardkleur voor nieuwe structuur objecten - + 2D rendering 2D rendering - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2174,11 +2212,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2195,82 +2228,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Snelle omzetting - + Tolerance: Tolerantie: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2320,22 +2353,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Transparantie: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2365,27 +2398,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Dikte - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2395,7 +2428,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2405,102 +2438,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2610,25 +2643,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_no.qm b/src/Mod/Arch/Resources/translations/Arch_no.qm index 541740f898a5d7e429044b9c107b90303aa2f2b6..8d9101cac3b5d4ee214171d9c43b9efa9cc90baf 100644 GIT binary patch delta 6320 zcmbVQd3=ml+rDObW?zs5p<+m4d1>kmv4q+pD%RRtOPEX^$q<>CnTSw^BuZ-wBgE3E zts+TnDGjw$6SXUCP@#Am+EVRXqN^9`&{>RU)O!kwB)X0 z_gtl?Q%QW?WB*;9bF$G32ga`5_f>bG1^{I@VB=7ZcY%g)0_vB6JAHtr9N(V?ys`lh z`U1VUX4guf-+EwQD`4PJps@gqNCF%eeB-REK>FwWt^vm{I5Nh~6C6iF=~-9`=w?8< zNCD_O_{OZxP;T4^%<_japJVM{C_hpHbxuQhZUIoR7=mse(C8|JUJ*d>6yG?j7(&8X zg4_>b*)X8>cfK)q8-#Zm=bhFNJ{Acq3Bn=9oAf3;!j~<9^^c${Wk$WNFnz#G;>%Do zItLh3gxa=+z*ox=+ROmVoQ76aE}-ff!h;#Gsu$Y3s({aSp~IEdz()>rs5%6U9gE1d z$w00iJqFJP&aXwU{-J>84tkYDG0|&?`F<7f=4B6h+u{I2qHmnl4gK2k`Gp6*asDdw zo68J?l)iDnYV=z+gwHK8Aa^fIvk}9xI4IK^RW5iejSkVe25|~Jy z2P4P7!OV3Sl^g_YTY*uTJIR3O8b)Ulx$`IAc)JEhKgXGR)vw$%dWi@*#fVgy-|7^Yw=phU2Ps(e(BI`CJ5@?kxi&@J=5(8yJTl`FM zm&?SBT>tGIS$dtN@L+0{EIo&mOz0+?QMey?{eW!!S*m`^Kw04%+ko9a%HE$|N%ilS zZF%PlpweHqwHr51uPyuJw^-mthU`Q_FtAxJ`z1dU_�sYZ?K_8p~xKu5WizuDj3Y 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 Qa;E>BD=VJ(%W?Vt0I@qOA^-pY delta 4265 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 diff --git a/src/Mod/Arch/Resources/translations/Arch_no.ts b/src/Mod/Arch/Resources/translations/Arch_no.ts index 9646c0ad7..17b32b1bf 100644 --- a/src/Mod/Arch/Resources/translations/Arch_no.ts +++ b/src/Mod/Arch/Resources/translations/Arch_no.ts @@ -4,7 +4,7 @@ Arch - + Components Komponenter @@ -44,12 +44,12 @@ Aksens boblestørrelse - + Remove Fjern - + Add Legg til @@ -84,57 +84,57 @@ Etasje - + removing sketch support to avoid cross-referencing fjerner skissestøtte for å unngå kryssreferanser - + is not closed er ikke lukket - + is not valid er ikke gyldig - + doesn't contain any solid inneholder ingen solid - + contains a non-closed solid inneholder en ulukket solid - + contains faces that are not part of any solid inneholder flater som ikke er en del av noen solid - + Grouping Gruppering - + Ungrouping Deler opp gruppe - + Split Mesh Del opp nett - + Mesh to Shape Nett til figur - + All good! no problems found Alt vel! Fant ingen problemer @@ -159,7 +159,7 @@ Objekter - + closing Sketch edit avslutter skisseredigering @@ -219,27 +219,27 @@ Opprett byggeplass - + Create Structure Opprett struktur - + The length of this element, if not based on a profile Lengde på dette elementet, hvis ikke basert på en profil - + The width of this element, if not based on a profile Bredde på dette elementet, hvis ikke basert på en profil - + The height or extrusion depth of this element. Keep 0 for automatic Høyde eller ekstruderingsdybde på dette elementet. Behold 0 for automatisk - + Axes systems this structure is built on Aksesystemer denne strukturen er bygget på @@ -249,7 +249,7 @@ Ekstruderingsens normalplan for dette objektet. Behold (0,0,0) for automatisk normalplan - + The element numbers to exclude when this structure is based on axes Antall elementer å utelate når denne strukturen er basert på akser @@ -309,57 +309,57 @@ This mesh is an invalid solid - + Create Window Lag vindu - + the components of this window komponentene i dette vinduet - + Edit Rediger - + Create/update component Opprett/oppdater komponent - + Base 2D object Base 2D object - + Wires Wires - + Create new component Opprett ny komponent - + Name Navn - + Type Type - + Thickness Tykkelse - + Z offset Z forskyvning @@ -405,12 +405,12 @@ Nummereringsstilen - + Add space boundary Add space boundary - + Remove space boundary Remove space boundary @@ -445,12 +445,12 @@ Lag ramme - + Create Rebar Lag armering - + Please select a base face on a structural object Please select a base face on a structural object @@ -579,22 +579,12 @@ The offset between the border of the stairs and the structure - - Wood - Wood - - - - Steel - Steel - - - + Structure options Structure options - + Preset Preset @@ -604,7 +594,7 @@ Lengde - + Rotate Roter @@ -614,27 +604,27 @@ Con&tinue - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -674,39 +664,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Window options - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Kan ikke opprette komponent @@ -732,12 +722,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Create Structural System @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -817,12 +807,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -837,17 +827,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1062,12 +1052,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1179,12 +1169,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1304,27 +1294,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1364,7 +1354,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1384,47 +1374,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategori + + + + Key + Key + + + + Value + Verdi + + + + Unit + Enhet + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1483,12 +1508,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Legg til komponent - + Adds the selected components to the active object Legger til de valgte komponentene i det aktive objektet @@ -1509,12 +1534,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1535,17 +1560,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Check - + Checks the selected objects for problems Checks the selected objects for problems - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1553,12 +1578,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Close holes - + Closes holes in open shapes, turning them solids Closes holes in open shapes, turning them solids @@ -1566,12 +1591,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1631,12 +1656,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1644,11 +1669,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1678,12 +1716,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Mesh to Shape - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1704,12 +1742,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Rebar - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1717,12 +1755,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Remove component - + Remove the selected components from their parents, or create a hole in a component Remove the selected components from their parents, or create a hole in a component @@ -1730,12 +1768,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Remove Shape from Arch - + Removes cubic shapes from Arch components Removes cubic shapes from Arch components @@ -1782,12 +1820,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Select non-manifold meshes - + Selects all non-manifold meshes from the document or from the selected groups Selects all non-manifold meshes from the document or from the selected groups @@ -1826,12 +1864,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Split Mesh - + Splits selected meshes into independent components Splits selected meshes into independent components @@ -1847,12 +1885,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Structure - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) @@ -1860,12 +1898,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1873,12 +1911,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2085,27 +2123,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela This is the default color for new Structure objects - + 2D rendering 2D-gjengivelse - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2174,11 +2212,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2195,82 +2228,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Fast conversion - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2320,22 +2353,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Gjennomsiktighet: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2365,27 +2398,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Tykkelse - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2395,7 +2428,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2405,102 +2438,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2610,25 +2643,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_pl.qm b/src/Mod/Arch/Resources/translations/Arch_pl.qm index 10a014d8df9428f3bf41dda0bfc6dfb01ee7138b..cee9c6b35ab947a7b9a88114f1b3a0ffa94c22a7 100644 GIT binary patch delta 6598 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 diff --git a/src/Mod/Arch/Resources/translations/Arch_pl.ts b/src/Mod/Arch/Resources/translations/Arch_pl.ts index abe40c122..c611791c0 100644 --- a/src/Mod/Arch/Resources/translations/Arch_pl.ts +++ b/src/Mod/Arch/Resources/translations/Arch_pl.ts @@ -4,7 +4,7 @@ Arch - + Components komponenty @@ -44,12 +44,12 @@ Rozmiar bąbelków osi - + Remove Usuń - + Add Dodaj @@ -84,57 +84,57 @@ Piętro - + removing sketch support to avoid cross-referencing usuwanie wsparcia dla szkicu aby uniknąć krzyżowego powiązania - + is not closed nie jest zamknięty - + is not valid nie jest prawidłowy - + doesn't contain any solid nie zawiera żadnych stałych - + contains a non-closed solid zawiera niezamknięte stałe - + contains faces that are not part of any solid zawiera fronty, które nie są częścią żadnych stałych - + Grouping Grupowanie - + Ungrouping Rozgrupowanie - + Split Mesh Rozdziel siatkę - + Mesh to Shape Zazębia oczka siatki do kształtu - + All good! no problems found Wszystko w porządku! Nie znaleziono żadnych problemów @@ -159,7 +159,7 @@ Obiekty - + closing Sketch edit zamknięcie edycji szkicu @@ -219,27 +219,27 @@ Tworzenie witryny - + Create Structure Tworzenie struktury - + The length of this element, if not based on a profile Długość tego elementu, jeśli nie w oparciu o profil - + The width of this element, if not based on a profile Szerokość tego elementu, jeśli nie w oparciu o profil - + The height or extrusion depth of this element. Keep 0 for automatic Wysokość lub wyciągnięcie głębokości tego elementu. Zachowaj 0 dla automatycznej - + Axes systems this structure is built on Systemy osi, ta struktura jest zbudowana na @@ -249,7 +249,7 @@ Normalny kierunek wytłaczania tego obiektu (utrzymaj (0,0,0) dla typowego automatycznie) - + The element numbers to exclude when this structure is based on axes Numery elementu są do wykluczenia, gdy struktura ta opiera się na osiach @@ -309,57 +309,57 @@ Ta siatka nie jest poprawna - + Create Window Utwórz Okno - + the components of this window składniki tego okna - + Edit Edytuj - + Create/update component Utwórz/uaktualnij komponent - + Base 2D object Podstawowy obiekt 2D - + Wires Przewody - + Create new component Utwórz nowy komponent - + Name Nazwa - + Type Typ - + Thickness Grubość - + Z offset offset Z @@ -403,12 +403,12 @@ Styl numeracji - + Add space boundary Dodaj granicę przestrzni - + Remove space boundary Usuń granicę przestrzeni @@ -443,12 +443,12 @@ Utwórz ramę - + Create Rebar Stwórz Zbrojenie - + Please select a base face on a structural object Zaznacz płaszczyznę podstawy na obiekcie konstrukcyjnym @@ -576,22 +576,12 @@ Odsunięcie pomiędzy granicą schodów a strukturą - - Wood - Drewno - - - - Steel - Stal - - - + Structure options Opcje struktury - + Preset Ustawienia @@ -601,7 +591,7 @@ Długość - + Rotate Obróć @@ -611,27 +601,27 @@ Kontynuuj - + An optional extrusion path for this element Opcjonalna ścieżka wyciągnięcia dla tego elementu - + Armatures contained in this element Armatura zawarta w tym elemencie - + The structural nodes of this element Węzły konstrukcyjne tego elementu - + Error: The base shape couldn't be extruded along this tool object Błąd: Krzywa bazowa nie może być wyciągnięta za pomocą tego narzędzia wzdłuż obiektu - + Couldn't compute a shape Nie można obliczyć kształtu @@ -671,39 +661,39 @@ Odsunięcie między tą ścianą a jej linią bazową (tylko dla wyrównania z prawej lub lewej) - + Pick a face on an existing object or select a preset Wybierz płaszczyznę na istniejącym obiekcie albo wybierz zdefiniowane - + Window options Opcje okna - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Głębokość dziury jaką tworzy to okno w wybranym obiekcie. Domyślnie ustawia jako 0. - + The width of this window (for preset windows only) Szerokość tego okna (tylko dla ustawień wstępnych okien) - + The height of this window (for preset windows only) Wysokość tego okna (tylko dla ustawień wstępnych okien) - + The normal direction of this window Normalny kierunek względem tego okna - + Unable to create component Nie można utworzyć komponentu @@ -728,12 +718,12 @@ Odległości (mm) i kąty (stopnie) pomiędzy osiami - + Error computing the shape of this object Błąd obliczeń kształtu tego obiektu - + Create Structural System Stwórz System Konstrukcyjny @@ -751,38 +741,38 @@ Błąd: Używana wersja IfcOpenShell jest za stara - + Found a shape containing curves, triangulating Znaleziono kształt zawierający krzywe, następuje triangulacja - + Invalid cutplane Nieprawidłowa płaszczyzna cięcia - + No objects are cut by the plane Płaszczyzna nie przecina żadnego obiektu - + Object doesn't have settable IFC Attributes Obiekt nie posiada ustawialnych Atrybutów IFC - + Disabling Brep force flag of object Wyłączenie wymuszenia flagi Brep obiektu - + Enabling Brep force flag of object Włączenie wymuszenia flagi Brep obiektu @@ -812,12 +802,12 @@ Opcjonalna etykieta dla tego komponentu - + Custom IFC properties and attributes Niestandardowe właściwości i atrybuty IFC - + A material for this object Materiał dla tego obiektu @@ -832,17 +822,17 @@ Określa, czy obiekt musi poruszać się razem z hostem - + has no solid nie ma geometrii pełnej - + has an invalid shape ma nieprawidłowy kształt - + has a null shape ma kształt zerowy @@ -1058,12 +1048,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Pokaż symbol jednostki - + A description of the standard profile this element is based upon Opis standardowego profilu, na ktorym ten element jest oparty - + Sill height Wysokość parapetu @@ -1175,12 +1165,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Typ tego budynku - + removing sketch external reference to avoid cross-referencing usuwa zewnętrzne odwołanie szkicu, żeby uniknąć odwołań wielokrotnych - + Create Component Tworzenie komponentu @@ -1300,27 +1290,27 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Pokaż cięcie w widoku 3D - + This document is not saved. Please save it first Ten dokument nie jest zapisany. Proszę zapisać go po raz pierwszy - + The Python Git module was not found. Please install the python-git package. Nie można odnaleźć modułu Python Git. Proszę zainstalować pakiet python-git. - + This document doesn't appear to be part of a Git repository. Ten dokument nie wydaje się być częścią repozytorium Git. - + Warning: no remote repositories. Unable to push Ostrzeżenie: brak zdalnych repozytoriów. Nie można naciskać - + The Git repository cannot handle this document. Repozytorium Git nie może obsłużyć tego dokumentu. @@ -1360,7 +1350,7 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Ściany mogą być oparta wyłącznie na obiektach Części lub Siatki - + an optional object that defines a volume to be subtracted from hosts of this window opcjonalny obiekt, który określa zawartość do odjęcia od właścicieli tego okna @@ -1380,47 +1370,82 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Ustal położenie tekstu - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategoria + + + + Key + Key + + + + Value + Wartość + + + + Unit + Jednostka + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Opcje Git - + What to commit Co do zatwierdzenia - + All files in folder Wszystkie pliki w folderze - + Only this .FcStd file Tylko ten plik .FcStd - + Commit message Zatwierdzanie wiadomości - + commit zatwierdzanie - + Push to default remote repository Przesuwa do domyślnego repozytorium zdalnego @@ -1479,12 +1504,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Add - + Add component Dodaj składnik - + Adds the selected components to the active object Dodaje wybrane składniki do aktywnego obiektu @@ -1505,12 +1530,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Bimserver - + BIM server Serwer BIM - + Opens a browser window and connects to a BIM server instance Otwiera okno przeglądarki i łączy się serwerem BIM @@ -1531,17 +1556,17 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Check - + Check Sprawdź - + Checks the selected objects for problems Sprawdza zaznaczone obiekty czy nie zawierają błędów - + Explore the contents of an Ifc file Rozstrzel zawartość pliku Ifc @@ -1549,12 +1574,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_CloseHoles - + Close holes Zamknij otwory - + Closes holes in open shapes, turning them solids Zamyka otwory kształtów otwartych, zmienia je do stałych @@ -1562,12 +1587,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Component - + Component Komponent - + Creates an undefined architectural component Tworzy niezdefiniowany komponent architektoniczny @@ -1627,12 +1652,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Git - + Commit with Git Związuje z Git - + Commits the current document Związuje bieżący dokument @@ -1640,11 +1665,24 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_IfcExplorer - + Ifc Explorer Eksplorator Ifc + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1674,12 +1712,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_MeshToShape - + Mesh to Shape Zazębia oczka siatki do kształtu - + Turns selected meshes into Part Shape objects Włącza wybrane oczka w części kształtu obiektów @@ -1700,12 +1738,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Rebar - + Rebar Zbrojenie - + Creates a Reinforcement bar from the selected face of a structural object Tworzy pręt zbrojeniowy z wybranych powierzchni konstrukcyjnych obiektu @@ -1713,12 +1751,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Remove - + Remove component Usuń składnik - + Remove the selected components from their parents, or create a hole in a component Usuń wybrane składniki z rodzimego elementu lub utwórz otwór w składniku @@ -1726,12 +1764,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_RemoveShape - + Remove Shape from Arch Usuń Kształt z łuku - + Removes cubic shapes from Arch components Usuwa sześcienne kształty ze składników łuku @@ -1778,12 +1816,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_SelectNonSolidMeshes - + Select non-manifold meshes Wybierz nieróżnorodne siatki - + Selects all non-manifold meshes from the document or from the selected groups Wybiera wszystkie nieróżnorodne siatki z dokumentu lub wybranych grup @@ -1822,12 +1860,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_SplitMesh - + Split Mesh Rozdziel siatkę - + Splits selected meshes into independent components Rozdziela wybrane siatki na niezależne składniki @@ -1843,12 +1881,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Structure - + Structure Konstrukcja - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Utwórz obiekt Konstrukcja od początku lub z wybranych obiektów (szkic, szkielet, fasetka lub solid) @@ -1856,12 +1894,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_Survey - + Survey Badanie - + Starts survey Rozpoczyna badanie @@ -1869,12 +1907,12 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Przełącz znacznik IFC Brep - + Force an object to be exported as Brep or not Wymuś eksport obiektu jako Brep lub nie @@ -2081,27 +2119,27 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Kolor domyślny dla nowego obiektu Konstrukcja - + 2D rendering renderowanie 2D - + Show debug information during 2D rendering Pokaż informacje o debugowaniu podczas renderowania 2D - + Show renderer debug messages Pokaż wiadomości debugowania podczas renderowania - + Cut areas line thickness ratio Grubość linii obszaru cięcia - + Specifies how many times the viewed line thickness must be applied to cut lines Określa, ile razy widoczna grubość linii musi być ustawiona do linii cięcia @@ -2170,11 +2208,6 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Snapping Przyciąganie - - - Walls drawing - Rysowanie ścian - Auto-join walls @@ -2191,82 +2224,82 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Łącz ściany rysunku bazowego kiedy możliwe - + Mesh to Shape Conversion Konwersja Siatki do Kształtu - + If this is checked, conversion is faster but the result might still contain triangulated faces Jeśli to jest zaznaczone wynik konwersji jest szybszy, jednak mogą być widoczne ślady trójkątów - + Fast conversion Szybka konwersja - + Tolerance: Tolerancja: - + Tolerance value to use when checking if 2 adjacent faces as planar Wartość tolerancji do użycia podczas sprawdzania czy 2 przyległe płaszczyzny są płaskie - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Jeśli to zaznaczone, płaskie grupy płaszczyzn będą siłą spłaszczone, skutkując możliwymi szczelinami i obiektami nie bryłowymi - + Force flat faces Wymuś płaskie powierzchnie - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Jeśli to zaznaczone, otwory w płaszczyznach będą wykonane przez odejmowanie niż przez orientację drutów - + Cut method Metoda przycięcia - + Show debug messages Pokaż komunikaty debugowania - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Jeśli jest zaznaczone, otwory będą zaimportowane jako substrakcja (odjęcie), w innym przypadku ściany już będą miały otwory odjęte - + Separate openings Oddzielne otwory - + If this is checked, object names will be prefixed with the IFC ID number Jeśli to zaznaczone, nazwa obiektu będzie poprzedzona numerem ID IFC - + Prefix names with ID number Przedrostek nazwy z numerem ID - + Exclude list: Lista wykluczeń: - + A comma-separated list of Ifc entities to exclude from import Rozdzielana przecinkami lista jednostek lfc, aby je wykluczyć z importu @@ -2316,22 +2349,22 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Przezroczystość: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Niektóre przeglądarki IFC nie lubią obiektów eksportowanych jako wyciągnięcia. Użyj tego aby zmusić obiekty aby były eksportowane jako geometria BREP. - + Hidden geomety pattern Wzór dla ukrytych obiektów - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Właściwość SVG "stroke-dasharray" do zastosowania do obiektów niewidocznych. - + 30, 10 30, 10 @@ -2361,27 +2394,27 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Grubość - + Force export as Brep Wymuszony eksport jako Brep - + Bim server Serwer Bim - + Address Adres - + The URL of a bim server instance (www.bimserver.org) to connect to. Podłączenie Adresu URL serwera bim (www.bimserver.org). - + http://localhost:8082 http://localhost:8082 @@ -2391,7 +2424,7 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j DAE - + Export options Opcje eksportu @@ -2401,102 +2434,102 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j IFC - + General options Opcje ogólne - + Show verbose information during import and export of IFC files Pokaż pełne informacje podczas importu i eksportu plików IFC - + Import options Opcje importu - + Import arch IFC objects as Importowanie architektonicznych obiektów IFC jako - + Specifies what kind of objects will be created in FreeCAD Określa, jakie obiekty zostaną utworzone w FreeCAD - + Parametric Arch objects Parametryczny obiekt Architektury - + Non-parametric Arch objects Nieparametryczny obiekt Architektury - + Simple Part shapes Proste kształty części - + One compound per floor Jeden związek na podłogę - + Do not import Arch objects Nie należy importować obiektów Architektury - + Import struct IFC objects as Importowania obiektów IFC struct jako - + One compound for all Jeden związek dla wszystkich - + Do not import structural objects Nie należy importować obiektów konstrukcyjnych - + Root element: Element główny: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Jedynie podtypy tego elementu zostaną zaimportowane. Zachowaj wartość jako "IfcProduct", aby zaimportować wszystkie elementy budynku. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... Jeśli to pole jest zaznaczone, importer będzie starał się wykryć ekstruzje. Operacja ta może spowolnić proces... - + Detect extrusions Wykryj ekstruzje - + If several materials with the same name are found in the IFC file, they will be treated as one. Jeśli kilka materiałów o tej samej nazwie znajduje się w pliku IFC, będą traktowane jako jeden. - + Merge materials with same name Scal materiały o tej samej nazwie @@ -2606,25 +2639,60 @@ Jeśli Bieg = 0, wtedy bieg jest obliczany tak, że wysokość jest taka sama, j Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_pt-BR.qm b/src/Mod/Arch/Resources/translations/Arch_pt-BR.qm index 6acf45dd52e5458a5f2feda10b6eb9ca3808c6c6..e8dc42c7942c57dcb54296aef6fb5d55202afd12 100644 GIT binary patch delta 6189 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 L=Z6H@8;bt{i{vEh delta 4255 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 diff --git a/src/Mod/Arch/Resources/translations/Arch_pt-BR.ts b/src/Mod/Arch/Resources/translations/Arch_pt-BR.ts index 1b4d6d8f2..d3506b8fc 100644 --- a/src/Mod/Arch/Resources/translations/Arch_pt-BR.ts +++ b/src/Mod/Arch/Resources/translations/Arch_pt-BR.ts @@ -4,7 +4,7 @@ Arch - + Components Componentes @@ -44,12 +44,12 @@ O tamanho das bolhas de eixo - + Remove Remover - + Add Adicionar @@ -84,57 +84,57 @@ Pavimento - + removing sketch support to avoid cross-referencing removendo o suporte do esboço para evitar referências cruzadas - + is not closed não está fechado - + is not valid não é válido - + doesn't contain any solid não contém nenhum sólido - + contains a non-closed solid contém um sólido aberto - + contains faces that are not part of any solid contém faces que não pertencem a nenhum sólido - + Grouping Agrupando - + Ungrouping Desagrupando - + Split Mesh Dividir malha - + Mesh to Shape Malha para Forma - + All good! no problems found Está tudo bem! nenhum problema foi encontrado @@ -159,7 +159,7 @@ Objetos - + closing Sketch edit fechando a edição do esboço @@ -219,27 +219,27 @@ Criar sítio - + Create Structure Criar estrutura - + The length of this element, if not based on a profile O comprimento deste elemento, se não for baseado em um perfil - + The width of this element, if not based on a profile A largura deste elemento, se não for baseado em um perfil - + The height or extrusion depth of this element. Keep 0 for automatic A profundidade ou altura ou extrusão deste elemento. Mantenha 0 para automático - + Axes systems this structure is built on Sistemas de eixos sobre os quais esta estrutura é construída @@ -249,7 +249,7 @@ A direção normal de extrusão deste objeto (mantenha (0,0,0) para normal automática) - + The element numbers to exclude when this structure is based on axes Os números dos elementos a excluir quando essa estrutura for baseada em eixos @@ -309,57 +309,57 @@ Esta malha não é um sólido válido - + Create Window Criar uma janela - + the components of this window os componentes desta janela - + Edit Editar - + Create/update component Criar/atualizar um componente - + Base 2D object Objeto base 2D - + Wires Arames - + Create new component Criar um novo componente - + Name Nome - + Type Tipo - + Thickness Espessura - + Z offset Deslocamento em Z @@ -403,12 +403,12 @@ O estilo de numeração - + Add space boundary Adicionar um limite de espaço - + Remove space boundary Remover um limite de espaço @@ -443,12 +443,12 @@ Criar uma armação - + Create Rebar Criar ferragens - + Please select a base face on a structural object Por favor, selecione uma face de base em um objeto estrutural @@ -577,22 +577,12 @@ O espaço entre a borda da escada e a estrutura - - Wood - Madeira - - - - Steel - Aço - - - + Structure options Opções da estrutura - + Preset Predefinição @@ -602,7 +592,7 @@ Comprimento - + Rotate Rotacionar @@ -612,27 +602,27 @@ Con&tinuar - + An optional extrusion path for this element Um caminho de extrusão opcional para este elemento - + Armatures contained in this element Armações contidas neste elemento - + The structural nodes of this element Os nós estruturais deste elemento - + Error: The base shape couldn't be extruded along this tool object Erro: A forma de base não pode ser extrudada ao longo deste objeto - + Couldn't compute a shape Não foi possível calcular uma forma @@ -672,39 +662,39 @@ A distância entre a parede e sua linha de base (somente para alinhamentos esquerdo e direito) - + Pick a face on an existing object or select a preset Selecione uma face em um objeto existente ou escolha uma predefinição - + Window options Opções da janela - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. A profundidade do furo que esta janela faz em seu objeto anfitrião. Mantenha 0 para automático. - + The width of this window (for preset windows only) A largura desta janela (somente para janelas predefinidas) - + The height of this window (for preset windows only) A altura desta janela (somente para janelas predefinidas) - + The normal direction of this window A direção normal desta janela - + Unable to create component Não foi possível criar um componente @@ -730,12 +720,12 @@ Distâncias (mm) e ângulos (graus) entre eixos - + Error computing the shape of this object Não foi possível computar a forma do objeto - + Create Structural System Criar sistema estrutural @@ -754,38 +744,38 @@ - + Found a shape containing curves, triangulating Uma forma contendo curvas foi encontrada. Triangulação. - + Invalid cutplane Plano de corte inválido - + No objects are cut by the plane Não há objetos cortados por este plano - + Object doesn't have settable IFC Attributes Este objeto não possuí atributos IFC configuráveis - + Disabling Brep force flag of object Desativando o modo Brep deste objeto - + Enabling Brep force flag of object Ativando o modo Brep deste objeto @@ -815,12 +805,12 @@ Uma etiqueta opcional para este componente - + Custom IFC properties and attributes Atributos e propriedades IFC personalizados - + A material for this object Um material para este objeto @@ -835,17 +825,17 @@ Especifica se este objeto deve mover junto quando seu parente for movido - + has no solid não tem sólido - + has an invalid shape tem uma forma inválida - + has a null shape tem uma forma nula @@ -1060,12 +1050,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Mostrar o sufixo de unidade - + A description of the standard profile this element is based upon Uma descrição do perfil padrão no qual este elemento é baseado - + Sill height Altura de peitoril @@ -1177,12 +1167,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m O tipo desta construção - + removing sketch external reference to avoid cross-referencing removendo referências externas do esboço para evitar referências cruzadas - + Create Component Criar Componente @@ -1302,27 +1292,27 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Mostrar o corte na vista 3D - + This document is not saved. Please save it first Este documento não foi salvo. Por favor, salve-o primeiro - + The Python Git module was not found. Please install the python-git package. O módulo Python Git não foi encontrado. Por favor, instale o pacote python-git. - + This document doesn't appear to be part of a Git repository. Este documento não parece ser parte de um repositório Git. - + Warning: no remote repositories. Unable to push Aviso: não existem repositórios remotos. Não é possível fazer "push" - + The Git repository cannot handle this document. O repositório Git não pode lidar com este documento. @@ -1362,7 +1352,7 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Paredes só podem basear-se em objetos de malha ou parte (peça) - + an optional object that defines a volume to be subtracted from hosts of this window um objeto opcional que define um volume que será subtraído do anfitrião desta janela @@ -1382,47 +1372,82 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Definir a posição do texto - + Unable to extrude the base shape Não foi possível extrudar a forma de base + + + Category + Categoria + + + + Key + Chave + + + + Value + Valor + + + + Unit + Unidade + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + O objeto tem não atributos IfcProperties. Nenhuma planilha criada para o objeto : + + + + Create IFC properties spreadsheet + Criar planilhas para propriedades IFC + + + + Auto include in host object + Auto incluir no objeto de base + ArchGitOptions - + Git Options Opções de Git - + What to commit O que enviar - + All files in folder Todos os arquivos na pasta - + Only this .FcStd file Apenas este arquivo .FcStd - + Commit message Enviar mensagem - + commit enviar - + Push to default remote repository Mandar para o repositório remoto padrão @@ -1481,12 +1506,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Add - + Add component Adicionar componentes - + Adds the selected components to the active object Adiciona os componentes selecionados ao objeto ativo @@ -1507,12 +1532,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Bimserver - + BIM server Servidor BIM - + Opens a browser window and connects to a BIM server instance Abre uma janela do navegador e se conecta a uma instância de servidor BIM @@ -1533,17 +1558,17 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Check - + Check Verificar - + Checks the selected objects for problems Verifica problemas nos objetos selecionados - + Explore the contents of an Ifc file Explora o conteúdo de um arquivo Ifc @@ -1551,12 +1576,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_CloseHoles - + Close holes Fechar furos - + Closes holes in open shapes, turning them solids Fecha furos em formas abertas, transformando-as em sólidos @@ -1564,12 +1589,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Component - + Component Componente - + Creates an undefined architectural component Cria um componente arquitetônico indefinido @@ -1629,12 +1654,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Git - + Commit with Git Enviar com Git - + Commits the current document Enviar o documento atual @@ -1642,11 +1667,24 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_IfcExplorer - + Ifc Explorer Explorador Ifc + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Criar planilhas IFC... + + + + Creates a spreadsheet to store ifc properties of an object. + Cria uma planilha para armazenar as propriedades Ifc de um objeto. + + Arch_Material @@ -1676,12 +1714,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_MeshToShape - + Mesh to Shape Malha para Forma - + Turns selected meshes into Part Shape objects Transforma as malhas selecionadas em formas @@ -1702,12 +1740,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Rebar - + Rebar Ferragen - + Creates a Reinforcement bar from the selected face of a structural object Cria uma barra de reforço a partir de uma face selecionada de um objeto estrutural @@ -1715,12 +1753,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Remove - + Remove component Remover componentes - + Remove the selected components from their parents, or create a hole in a component Remove os componentes selecionados de seus objetos-pai, ou cria um buraco em um componente @@ -1728,12 +1766,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_RemoveShape - + Remove Shape from Arch Remover forma - + Removes cubic shapes from Arch components Remove formas cúbicas de objetos arquitetônicos @@ -1780,12 +1818,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_SelectNonSolidMeshes - + Select non-manifold meshes Selecionar malhas não sólidas - + Selects all non-manifold meshes from the document or from the selected groups Seleciona todas as malhas não sólidas do documento ou dos grupos selecionados @@ -1824,12 +1862,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_SplitMesh - + Split Mesh Dividir malha - + Splits selected meshes into independent components Divide as malhas selecionadas em componentes independentes @@ -1845,12 +1883,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Structure - + Structure Estrutura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Cria um objeto estrutural a partir do zero ou de um objeto selecionado (esboço, arame, face ou sólido) @@ -1858,12 +1896,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_Survey - + Survey Quantitativo - + Starts survey Inicia o modo quantitativo @@ -1871,12 +1909,12 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Troca modo Brep - + Force an object to be exported as Brep or not Força ou não um objeto a ser exportado como Brep no formato IFC @@ -2083,27 +2121,27 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Esta é a cor padrão para novas estruturas - + 2D rendering Renderização 2D - + Show debug information during 2D rendering Mostrar informações de depuração durante a renderização 2D - + Show renderer debug messages Mostrar mensagens de depuração do renderizador - + Cut areas line thickness ratio Fator de espessura de linha das áreas cortadas - + Specifies how many times the viewed line thickness must be applied to cut lines Especifica quantas vezes a espessura da linha vista deve ser aplicada em linhas de corte @@ -2172,11 +2210,6 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Snapping Snap - - - Walls drawing - Desenho de paredes - Auto-join walls @@ -2193,82 +2226,82 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Juntar esboços de base de paredes quando possível - + Mesh to Shape Conversion Conversão de malha para forma - + If this is checked, conversion is faster but the result might still contain triangulated faces Se essa opção estiver marcada, a conversão será mais rápida, mas o resultado ainda poderá conter faces trianguladas - + Fast conversion Conversão rápida - + Tolerance: Tolerância: - + Tolerance value to use when checking if 2 adjacent faces as planar Valor de tolerância a ser usada para determinar se duas faces contíguas estão no mesmo plano - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Se esta opção estiver marcada, grupos planos de faces serão achatados a força, resultando em possíveis furos e resultados não-sólidos - + Force flat faces Forçar faces planas - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Se essa opção estiver marcada, furos nas faces serão executados por subtração em vez de usar a orientação dos arames - + Cut method Método de corte - + Show debug messages Mostrar as mensagens de depuração - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Se essa opção estiver marcada, as aberturas serão importadas como subtrações, senão as formas das parede já virão com suas aberturas subtraídas - + Separate openings Separar aberturas - + If this is checked, object names will be prefixed with the IFC ID number Se essa opção estiver marcada, nomes de objetos terão um prefixo com o número ID do arquivo IFC - + Prefix names with ID number Adicionar prefixo com número ID - + Exclude list: Lista de exclusão: - + A comma-separated list of Ifc entities to exclude from import Uma lista separada por vírgulas de entidades Ifc para serem excluídas da importação @@ -2318,22 +2351,22 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Transparência: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Alguns aplicativos IFC não gostam de objetos exportados como extrusões. Use isso para forçar todos os objetos a serem exportados como geometria BREP. - + Hidden geomety pattern Padrão para linhas escondidas - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Esta é a propriedade SVG stroke-dasharray a ser aplicada a projeções de objetos escondidos. - + 30, 10 30, 10 @@ -2363,27 +2396,27 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Espessura - + Force export as Brep Forçar exportação como Brep - + Bim server Servidor Bim - + Address Endereço - + The URL of a bim server instance (www.bimserver.org) to connect to. O URL de uma instância de servidor bim (www.bimserver.org) para se conectar. - + http://localhost:8082 http://localhost:8082 @@ -2393,7 +2426,7 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m DAE - + Export options Opções de Exportação @@ -2403,102 +2436,102 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m IFC - + General options Opções gerais - + Show verbose information during import and export of IFC files Mostrar informação detalhada durante a importação e exportação de arquivos IFC - + Import options Opções de importação - + Import arch IFC objects as Importar objetos IFC de arquitetura como - + Specifies what kind of objects will be created in FreeCAD Especifica que tipo de objetos serão criados no FreeCAD - + Parametric Arch objects Objetos paramétricos de arquitetura - + Non-parametric Arch objects Objetos não-paramétricos de arquitetura - + Simple Part shapes Formas simples de Peça (Part) - + One compound per floor Um composto por andar - + Do not import Arch objects Não importar objetos de arquitetura - + Import struct IFC objects as Importar objetos IFC estruturais como - + One compound for all Um composto para todos - + Do not import structural objects Não importar objetos estruturais - + Root element: Elemento raiz: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Apenas os subtipos deste elemento serão importados. Manter o valor como "IfcProduct" para importar todos os elementos de edifício. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... Se selecionado, o importador tentará detectar extrusões. Isto pode ser demorado... - + Detect extrusions Detectar extrusões - + If several materials with the same name are found in the IFC file, they will be treated as one. Se encontram-se vários materiais com o mesmo nome no arquivo IFC, eles serão tratados como apenas um. - + Merge materials with same name Juntar materiais com mesmo nome @@ -2608,25 +2641,60 @@ Se comprimento = 0, então o comprimento é calculado para que a altura seja a m Permitir quads - + Use triangulation options set in the DAE options page Usar opções de triangulação definidas na página de opções do formato DAE - + Use DAE triangulation options Usar opções de triangulação DAE - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Formas curvas que não podem ser representadas como curvas no formato IFC são decompostas em facetas planas. Se esta opção for marcada, um cálculo adicional sera feito para juntar as facetas coplanares. - + Join coplanar facets when triangulating Juntar facetas coplanares quando for triangular + + + Object creation + Criação de objetos + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Duas estratégias possíveis para evitar dependências circulares: criar um objeto a mais (desligada) ou remover ageometria externa do esboço de base (ligada) + + + + Remove external geometry of base sketches when needed + Remover a geometria externa de esboços de base quando necessário + + + + Create clones when objects have shared geometry + Criar clones quando os objetos têm geometria compartilhada + + + + Show this dialog when importing and exporting + Mostrar esta caixa de diálogo durante a importação e exportação + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Se esta opção for marcada, cada objeto terá suas propriedades Ifc armazenadas numa planilha. + + + + Import Ifc Properties in spreadsheet + Importar as propriedades Ifc em uma planilha + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_pt-PT.qm b/src/Mod/Arch/Resources/translations/Arch_pt-PT.qm index 714dd62a850b34599ae2d137cb24a8cb90d80eee..d86c3f88030f32d0d8a7038d0d37b8d01e953de2 100644 GIT binary patch delta 6661 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 RD2LgLl#+6@=c*+0{s%Eco74aR delta 4513 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 WsrIQABRa#cF-?s%Ne{PEW&H Arch - + Components Componentes @@ -44,12 +44,12 @@ O tamanho das bolhas de eixo - + Remove Remover - + Add Adicionar @@ -81,60 +81,60 @@ Floor - Piso + Piso (andar) - + removing sketch support to avoid cross-referencing a remover o suporte de esboço para evitar cruzamento de referências - + is not closed não está fechada - + is not valid não é válido - + doesn't contain any solid não contém qualquer sólido - + contains a non-closed solid contém um sólido não fechado - + contains faces that are not part of any solid contém as faces que não são parte de qualquer sólido - + Grouping Agrupar - + Ungrouping Desagrupar - + Split Mesh Dividir Malha - + Mesh to Shape Malha para Forma - + All good! no problems found Está tudo bem! Não foram encontrados problemas @@ -159,7 +159,7 @@ Objetos - + closing Sketch edit Fechar editor de Esboço @@ -219,27 +219,27 @@ Criar Sítio - + Create Structure Criar Estrutura - + The length of this element, if not based on a profile O comprimento deste elemento, se não for baseado no perfil - + The width of this element, if not based on a profile A largura deste elemento, se não for baseado no perfil - + The height or extrusion depth of this element. Keep 0 for automatic A altura ou a profundidade da extrusão deste elemento. Manter 0 para automático - + Axes systems this structure is built on Sistemas de eixos, em que esta estrutura é construída @@ -249,7 +249,7 @@ A direção de extrusão normal deste objeto (manter (0, 0,0) para o automático normal) - + The element numbers to exclude when this structure is based on axes Os números de elemento para excluir quando esta estrutura for baseada nos eixos @@ -309,57 +309,57 @@ Esta malha é um sólido inválido - + Create Window Criar Janela - + the components of this window Componentes desta janela - + Edit Editar - + Create/update component Criar/atualizar componente - + Base 2D object Objeto 2D de Base - + Wires Aramado - + Create new component Criar novo componente - + Name Nome - + Type Tipo - + Thickness Espessura - + Z offset Offset em Z @@ -405,12 +405,12 @@ O estilo de numeração - + Add space boundary Adicionar limite de espaço - + Remove space boundary Remover limite de espaço @@ -445,12 +445,12 @@ Criar moldura - + Create Rebar Criar armadura - + Please select a base face on a structural object Por favor selecione uma face base num objeto estrutural @@ -579,22 +579,12 @@ O afastamento entre a borda da escada e a estrutura - - Wood - Madeira - - - - Steel - Aço - - - + Structure options Opções da estrutura - + Preset Predefinição @@ -604,7 +594,7 @@ Comprimento - + Rotate Rodar @@ -614,27 +604,27 @@ Con&tinuar - + An optional extrusion path for this element Um caminho opcional de extrusão para este elemento - + Armatures contained in this element Armaduras contidas neste elemento - + The structural nodes of this element Nós estruturais deste elemento - + Error: The base shape couldn't be extruded along this tool object Erro: A forma base não pode ser extrudida ao longo deste objeto - + Couldn't compute a shape Não foi possível calcular uma forma @@ -674,39 +664,39 @@ Distância entre a parede e sua linha base (apenas para alinhamentos esquerdo e direito) - + Pick a face on an existing object or select a preset Selecione uma face num objeto existente ou escolha uma predefinição - + Window options Opções da janela - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. - A profundidade da abertura que esta janela faz no seu objeto anfitrião. Mantenha 0 para automático. + A profundidade da abertura que esta janela faz no seu objeto hospedeiro. Mantenha 0 para automático. - + The width of this window (for preset windows only) A largura desta janela (somente para janelas predefinidas) - + The height of this window (for preset windows only) A altura desta janela (somente para janelas predefinidas) - + The normal direction of this window A direção normal desta janela - + Unable to create component Não é possível criar componente @@ -731,12 +721,12 @@ Distâncias entre eixos em (mm) e ângulos em (graus) - + Error computing the shape of this object Não foi possível computar a forma do objeto - + Create Structural System Criar sistema estrutural @@ -755,38 +745,38 @@ - + Found a shape containing curves, triangulating Uma forma contendo curvas foi encontrada. Triangulação - + Invalid cutplane Plano de corte inválido - + No objects are cut by the plane Não há objetos cortados pelo plano - + Object doesn't have settable IFC Attributes Este objeto não possuí atributos IFC configuráveis - + Disabling Brep force flag of object Desativar o modo Brep deste objeto - + Enabling Brep force flag of object Ativar o modo Brep deste objeto @@ -816,12 +806,12 @@ Uma etiqueta opcional para este componente - + Custom IFC properties and attributes Atributos e propriedades IFC personalizados - + A material for this object Um material para este objeto @@ -836,17 +826,17 @@ Especifica se este objeto deve mover-se junto quando o seu hospedeiro é movido - + has no solid Não tem nenhum sólido - + has an invalid shape tem uma forma inválida - + has a null shape tem uma forma nula @@ -978,7 +968,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The computed floor area of this space - Área de piso calculada para este espaço + Área de pavimento calculada para este espaço @@ -1051,12 +1041,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Mostrar o sufixo de unidade - + A description of the standard profile this element is based upon Descrição do perfil padrão no qual este elemento se baseia - + Sill height Altura de peitoril @@ -1168,12 +1158,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela O tipo deste edifício - + removing sketch external reference to avoid cross-referencing removendo referências externas do esboço (sketch) para evitar referências cruzadas - + Create Component Criar componente @@ -1293,27 +1283,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Mostrar o corte na vista 3D - + This document is not saved. Please save it first Este documento não foi salvo. Por favor, salve-o primeiro - + The Python Git module was not found. Please install the python-git package. O módulo Python Git não foi encontrado. Por favor, instale o pacote python-git. - + This document doesn't appear to be part of a Git repository. Este documento não parece ser parte de um repositório Git. - + Warning: no remote repositories. Unable to push Aviso: não existem repositórios remotos. Não é possível fazer "push" - + The Git repository cannot handle this document. O repositório Git não pode lidar com este documento. @@ -1353,9 +1343,9 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Paredes só podem basear-se em objetos de malha ou parte (peça) - + an optional object that defines a volume to be subtracted from hosts of this window - um objeto opcional que define um volume que será subtraído ao anfitrião desta janela + um objeto opcional que define um volume que será subtraído aos hospedeiros desta janela @@ -1373,47 +1363,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Definir a posição do texto - + Unable to extrude the base shape Não foi possível extrudir o objeto de base + + + Category + Categoria + + + + Key + Chave + + + + Value + Valor + + + + Unit + Unidade + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + O objeto tem não atributos IfcProperties. Cancele a criação de tabela para o objeto: + + + + Create IFC properties spreadsheet + Criar tabela de propriedades IFC + + + + Auto include in host object + Auto incluir no objeto hospedeiro + ArchGitOptions - + Git Options Opções de git - + What to commit O que enviar (commit) - + All files in folder Todos os ficheiros na pasta - + Only this .FcStd file Apenas este ficheiro .FcStd - + Commit message Enviar mensagem - + commit enviar (commit) - + Push to default remote repository Empurre (push) para o repositório remoto predefinido @@ -1472,12 +1497,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Adicionar componente - + Adds the selected components to the active object Adiciona os componentes selecionados ao objeto ativo @@ -1498,12 +1523,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server Servidor BIM - + Opens a browser window and connects to a BIM server instance Abre uma janela do navegador e ligar a uma instância de servidor BIM @@ -1524,17 +1549,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Verificar - + Checks the selected objects for problems Verifica os objetos selecionados para ver se existem problemas - + Explore the contents of an Ifc file Explorar o conteúdo de um arquivo Ifc @@ -1542,12 +1567,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Fechar buracos - + Closes holes in open shapes, turning them solids Fecha buracos em formas abertas, transformando-os em sólidos @@ -1555,12 +1580,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Componente - + Creates an undefined architectural component Cria um componente arquitectónico indefinido @@ -1596,12 +1621,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Floor - Piso + Piso (andar) Creates a floor object including selected objects - Cria um objeto do piso, incluindo os objetos selecionados + Cria um objeto piso (andar), incluindo os objetos selecionados @@ -1620,12 +1645,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Comprometer-se com Git - + Commits the current document Enviar (commit) o documento atual @@ -1633,17 +1658,30 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Explorador Ifc + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Crie tabela IFC... + + + + Creates a spreadsheet to store ifc properties of an object. + Cria uma tabela para armazenar propriedades ifc de um objeto. + + Arch_Material Set material... - Definir o material... + Definir material... @@ -1667,12 +1705,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Malha para Forma - + Turns selected meshes into Part Shape objects Transforma as malhas selecionadas em objetos de forma de Peças @@ -1693,12 +1731,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Armaduras - + Creates a Reinforcement bar from the selected face of a structural object Cria uma armadura de reforço a partir de uma face selecionada de um objeto estrutural @@ -1706,12 +1744,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Remover componente - + Remove the selected components from their parents, or create a hole in a component Remove os componentes selecionados da fonte, ou cria um buraco num componente @@ -1719,12 +1757,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Remover Forma - + Removes cubic shapes from Arch components Remove formas cúbicas de objetos arquitectónicos @@ -1771,12 +1809,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Selecionar malhas (meshes) não sólidas - + Selects all non-manifold meshes from the document or from the selected groups Seleciona todas as malhas (meshes) não sólidas do documento ou dos grupos selecionados @@ -1815,12 +1853,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Dividir Malha - + Splits selected meshes into independent components Divide as malhas selecionadas em componentes independentes @@ -1836,12 +1874,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Estrutura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Cria um novo objeto de estrutura ou um a partir de um objeto selecionado (esboço, fio, face ou sólido) @@ -1849,12 +1887,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Recolha de dados - + Starts survey Iniciar recolha de dados @@ -1862,12 +1900,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Alternar modo Brep - + Force an object to be exported as Brep or not Força ou não um objeto a ser exportado como Brep no formato IFC @@ -2074,27 +2112,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Esta é a cor predefinida para novos objetos de Estrutura - + 2D rendering Renderização 2D - + Show debug information during 2D rendering Mostrar informação da depuração durante a renderização a 2D - + Show renderer debug messages Mostrar as mensagens de depuração da renderização - + Cut areas line thickness ratio Cortar a propoção da espessura da linha das áreas - + Specifies how many times the viewed line thickness must be applied to cut lines Indica o número de vezes que a espessura da linha visualizada deve ser aplicada para cortar as linhas @@ -2163,11 +2201,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Alinhamento e atração - - - Walls drawing - Desenhar paredes - Auto-join walls @@ -2184,82 +2217,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Juntar esboços de base das paredes quando possível - + Mesh to Shape Conversion Conversão de Malha para Forma - + If this is checked, conversion is faster but the result might still contain triangulated faces Se esta opção estiver marcada, a conversão será mais rápida, mas o resultado ainda poderá conter faces trianguladas - + Fast conversion Conversão rápida - + Tolerance: Tolerância: - + Tolerance value to use when checking if 2 adjacent faces as planar Valor de tolerância a usar para determinar se duas faces contíguas estão no mesmo plano - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Se esta opção estiver marcada, grupos planos de faces serão achatados a força, resultando em possíveis furos e resultados não-sólidos - + Force flat faces Forçar faces planas - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Se marcado, orifícios em faces serão executados por subtração em vez de usar a orientação das linhas - + Cut method Método de corte - + Show debug messages Mostrar as mensagens de depuração - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Se marcado, as aberturas serão importadas como subtrações, caso contrário as formas de parede terão já as aberturas subtraídas - + Separate openings Separar aberturas - + If this is checked, object names will be prefixed with the IFC ID number Se esta opção estiver marcada, os nomes dos objetos terão um prefixo com o número ID do arquivo IFC - + Prefix names with ID number Adicionar prefixo com número ID - + Exclude list: Lista de exclusão: - + A comma-separated list of Ifc entities to exclude from import Lista separada por vírgulas de entidades Ifc para serem excluídas da importação @@ -2309,22 +2342,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Transparência: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Alguns visualizadores de IFC não gostam de objetos exportados como extrusões. Use isto para forçar todos os objetos a serem exportados como geometria BREP. - + Hidden geomety pattern Padrão para linhas escondidas - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Propriedade SVG stroke-dasharray a ser aplicada a projeções de objetos escondidos. - + 30, 10 30, 10 @@ -2354,27 +2387,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Espessura - + Force export as Brep Forçar exportação como Brep - + Bim server Servidor Bim - + Address Morada - + The URL of a bim server instance (www.bimserver.org) to connect to. O URL de uma instância de servidor bim (www.bimserver.org) para se conectar. - + http://localhost:8082 http://localhost:8082 @@ -2384,7 +2417,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Opções de Exportação @@ -2394,102 +2427,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options Opções gerais - + Show verbose information during import and export of IFC files Mostrar informação detalhada durante a importação e exportação de arquivos IFC - + Import options Opções de importação - + Import arch IFC objects as Importar objetos IFC de arquitetura como - + Specifies what kind of objects will be created in FreeCAD Especifica que tipo de objetos serão criados no FreeCAD - + Parametric Arch objects Objetos paramétricos de arquitetura - + Non-parametric Arch objects Objetos não-paramétricos de arquitetura - + Simple Part shapes Formas simples de Peça (Part) - + One compound per floor Um composto por andar - + Do not import Arch objects Não importar objetos de arquitetura - + Import struct IFC objects as Importar objetos IFC estruturais como - + One compound for all Um composto para todos - + Do not import structural objects Não importar objetos estruturais - + Root element: Elemento raiz: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Apenas os subtipos deste elemento serão importados. Manter o valor como "IfcProduct" para importar todos os elementos de edifício. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... Se selecionado, o importador tentará detectar extrusões. Isto pode ser demorado... - + Detect extrusions Detectar extrusões - + If several materials with the same name are found in the IFC file, they will be treated as one. Se encontram-se vários materiais com o mesmo nome no ficheiro IFC, eles serão tratados como apenas um. - + Merge materials with same name Juntar materiais com mesmo nome @@ -2506,7 +2539,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Builtin - Embutido (de origem) + Incorporado (de origem) @@ -2521,7 +2554,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Builtin and mefisto mesher options - Opções dos geradores embutido (de origem) e Mefisto + Opções dos geradores incorporados (de origem) e Mefisto @@ -2531,7 +2564,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The tessellation value to use with the builtin and mefisto meshers - O valor de suavização de serrilhado a usar com os geradores embutido (de origem) e Mefisto + O valor de suavização de serrilhado a usar com os geradores incorporado (de origem) e Mefisto @@ -2599,25 +2632,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Permitir quadriláteros - + Use triangulation options set in the DAE options page Usar opções de triangulação definidas na página de opções do formato DAE - + Use DAE triangulation options Usar opções de triangulação DAE - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Formas curvas que não podem ser representadas como curvas no formato IFC são decompostas em faces planas. Se esta opção for marcada, um cálculo adicional sera feito para juntar as faces coplanares. - + Join coplanar facets when triangulating Juntar faces coplanares aquando da triangulação + + + Object creation + Criação de objetos + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Duas estratégias possíveis para evitar dependências circulares: criar mais um objeto (não selecionado) ou remover a geometria externa do esboço de base (selecionado) + + + + Remove external geometry of base sketches when needed + Remover a geometria externa dos esboços de base quando necessário + + + + Create clones when objects have shared geometry + Criar clones quando os objetos têm geometria compartilhada + + + + Show this dialog when importing and exporting + Mostrar esta caixa de diálogo durante a importação e exportação + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Se marcado cada objeto terá suas propriedades Ifc armazenadas numa tabela. + + + + Import Ifc Properties in spreadsheet + Importa as propriedades Ifc para uma tabela + Workbench @@ -2647,7 +2715,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela &Draft - &Traço + &Traço (Draft) diff --git a/src/Mod/Arch/Resources/translations/Arch_ro.qm b/src/Mod/Arch/Resources/translations/Arch_ro.qm index 4a364c5d3dbc8400ae67225423ef8deb1860ce7e..5e9e4b8f8cf4d5359dc00d08bb9660d56e3c0e8c 100644 GIT binary patch delta 6856 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 Z7_&5dp%RVC@KxveV%fIpGTC|g{{Rl?k){9u delta 4486 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 Arch - + Components Componente @@ -44,12 +44,12 @@ Dimensiunea bulelor pentru axe - + Remove Elimină - + Add Adaugă @@ -84,57 +84,57 @@ Etaj - + removing sketch support to avoid cross-referencing Se elimină suportul pentru schița pentru a evita referințele încrucișate - + is not closed nu este închis - + is not valid nu este valid - + doesn't contain any solid nu conține nici un solid - + contains a non-closed solid conţine un solid deschis - + contains faces that are not part of any solid conţine feţe care nu sunt parte a nici unui solid - + Grouping Gruparea - + Ungrouping Anularea grupării - + Split Mesh Divide reţeaua de discretizare - + Mesh to Shape Discretizare în forma - + All good! no problems found Toate bune! Nici o problemă identificată @@ -159,7 +159,7 @@ Obiecte - + closing Sketch edit închide editarea schiței @@ -219,27 +219,27 @@ Crează teren - + Create Structure Crează structură - + The length of this element, if not based on a profile Lungimea acestui element, dacă nu este bazat pe un profil - + The width of this element, if not based on a profile Lățimea acestui element, dacă nu e bazat pe un profil - + The height or extrusion depth of this element. Keep 0 for automatic Înăltimea sau adâncimea de extrudare a acestui element. 0 înseamnă automat - + Axes systems this structure is built on Sistemul de axe pe care este construită structura @@ -249,7 +249,7 @@ Direcția normală de extrudare a obiectului. (0,0,0) înseamnă normala automată - + The element numbers to exclude when this structure is based on axes Numerele elementelor de exclus când această structură e bazată pe axe @@ -309,57 +309,57 @@ Aceasta discretizare este un solid invalid - + Create Window Creare fereastră - + the components of this window componentele acestei ferestre - + Edit Editare - + Create/update component Crează/actualizează componentul - + Base 2D object Obiectul 2D de bază - + Wires Polilinii - + Create new component Crează component nou - + Name Nume - + Type Tip - + Thickness Grosime - + Z offset Expandare pe Z @@ -404,12 +404,12 @@ Stilul de numerotare - + Add space boundary Adaugă limită de spaţiu - + Remove space boundary Elimină limită de spațiu @@ -444,12 +444,12 @@ Crează cadru - + Create Rebar Crează bară de armare - + Please select a base face on a structural object Selectați o față de bază pe un obiect structural @@ -577,22 +577,12 @@ The offset between the border of the stairs and the structure - - Wood - Lemn - - - - Steel - Oţel - - - + Structure options Opțiuni structură - + Preset Presetare @@ -602,7 +592,7 @@ Lungime - + Rotate Rotire @@ -612,27 +602,27 @@ Con&tinuare - + An optional extrusion path for this element O cale de extrudare opţională pentru acest element - + Armatures contained in this element Armăturile conţinute în acest element - + The structural nodes of this element Nodurile structurale ale acestui element - + Error: The base shape couldn't be extruded along this tool object Eroare: Forma de baza nu a putut fi extrudată de-a lungul acestui obiect unealtă - + Couldn't compute a shape Nu s-a putut calcula o formă @@ -672,39 +662,39 @@ Ofsetul între acest perete şi linia sa de bază (numai pentru aliniamente stânga şi la dreapta) - + Pick a face on an existing object or select a preset Alege o față pe un obiect existent sau selectaţi o presetare - + Window options Opțiunile ferestrei - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Adâncimea găurii care o face această fereastră în obiectul gazdă. Păstraţi 0 pentru automat. - + The width of this window (for preset windows only) Lățimea acestei ferestre (numai pentru preconfigurarea ferestrelor) - + The height of this window (for preset windows only) Înălțimea acestei ferestre (numai pentru preconfigurarea ferestrelor) - + The normal direction of this window Direcția normală a acestei ferestre - + Unable to create component Nu se poate crea componentul @@ -729,12 +719,12 @@ Distanţele (mm) şi unghiurile (grade) între axe - + Error computing the shape of this object Eroare la calcularea formei acestui obiect - + Create Structural System Crează sistem structural @@ -753,37 +743,37 @@ - + Found a shape containing curves, triangulating S-a găsit o formă care conține curbe, se triangulează - + Invalid cutplane Plan de tăiere invalid - + No objects are cut by the plane Nici un obiect nu e tăiat de plan - + Object doesn't have settable IFC Attributes Obiectul nu are atribute IFC reglabile - + Disabling Brep force flag of object Dezactivarea Brep force flag-ul obiectului - + Enabling Brep force flag of object Activarea Brep force flag-ul obiectului @@ -813,12 +803,12 @@ Un tag opţional pentru această componentă - + Custom IFC properties and attributes Proprietăţi şi atribute IFC particularizate - + A material for this object Un material pentru acest obiect @@ -833,17 +823,17 @@ Specifică dacă acest obiect trebuie să se mute împreună cu gazda atunci când este mutată - + has no solid nu are nici un solid - + has an invalid shape are o formă nevalidă - + has a null shape are o formă nulă @@ -1060,12 +1050,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arată sufixul unității - + A description of the standard profile this element is based upon O descriere a profilului standard pe care acest element este bazat - + Sill height Înălțime parapet @@ -1173,17 +1163,17 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe The type of this building - The type of this building + Tipul contrucției - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component - Create Component + Creare component @@ -1208,7 +1198,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Date - Date + Data @@ -1233,12 +1223,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe URL - URL + URL Item - Item + Obiect @@ -1248,32 +1238,32 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Unit price - Unit price + Preț unitar Total price - Total price + Cost total Columns - Columns + Coloane Beams - Beams + Grinzi Slabs - Slabs + Plașee Foundations - Foundations + Fundații @@ -1293,7 +1283,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Total - Total + Total @@ -1301,27 +1291,27 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1361,7 +1351,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1381,47 +1371,82 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Categorie + + + + Key + Key + + + + Value + Valoare + + + + Unit + Unitate + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder - All files in folder + Toate fișierele din dosar - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1461,7 +1486,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe URL - URL + URL @@ -1480,12 +1505,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Add - + Add component Adaugă componentă - + Adds the selected components to the active object Adaugă componentele selectate în obiectul activ @@ -1506,12 +1531,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1532,17 +1557,17 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Check - + Check Verifică - + Checks the selected objects for problems Verifică obiectele selectate pentru probleme - + Explore the contents of an Ifc file Explorează conținutul unui fișier ifc @@ -1550,12 +1575,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_CloseHoles - + Close holes Închide găuri - + Closes holes in open shapes, turning them solids Închide găurile din formele deschise, transformându-le în solide @@ -1563,12 +1588,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1628,12 +1653,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1641,11 +1666,24 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_IfcExplorer - + Ifc Explorer Explorator ifc + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1675,12 +1713,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_MeshToShape - + Mesh to Shape Discretizare în forma - + Turns selected meshes into Part Shape objects Transformă reţelele selectate în obiecte forma @@ -1701,12 +1739,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Rebar - + Rebar Bară de armare - + Creates a Reinforcement bar from the selected face of a structural object Creează o bară de armare din fața selectată a unui obiect structural @@ -1714,12 +1752,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Remove - + Remove component Elimină componentă - + Remove the selected components from their parents, or create a hole in a component Elimină componentele selectate din obiectele-părinte sau crează o gaură în componentă @@ -1727,12 +1765,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_RemoveShape - + Remove Shape from Arch Înlătura forma din arhitectura - + Removes cubic shapes from Arch components Înlătura formele cubice din componentele arhitecturale @@ -1779,12 +1817,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_SelectNonSolidMeshes - + Select non-manifold meshes Selectaţi reţele non-manifold - + Selects all non-manifold meshes from the document or from the selected groups Selectaţi toate reţelele non-manifold din document sau din grupurile selectate @@ -1823,12 +1861,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_SplitMesh - + Split Mesh Divide reţeaua de discretizare - + Splits selected meshes into independent components Împarte discretizările selectate în componente independente @@ -1844,12 +1882,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Structure - + Structure Structura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Creează un obiect structura de la zero sau dintr-un obiect selectat (schita, sârmă, fata sau solide) @@ -1857,12 +1895,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_Survey - + Survey Sondaj - + Starts survey Pornește sondajul @@ -1870,12 +1908,12 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Forţează un obiect să fie exportat ca Brep sau nu @@ -1951,7 +1989,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe m² - + @@ -1961,7 +1999,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe m³ - + @@ -1976,7 +2014,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe € - + @@ -2082,27 +2120,27 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Aceasta este culoarea implicta pentru structurile nou create - + 2D rendering Redare 2D - + Show debug information during 2D rendering Afişează informații de depanare în timpul de redării 2D - + Show renderer debug messages Afiseaza mesajele de depanare pentru vizualizare - + Cut areas line thickness ratio Ajusteaza grosimea liniei pentru arie - + Specifies how many times the viewed line thickness must be applied to cut lines Specifica de cate ori grosimea liniei prebuie aplicata pentru liniile de taiere @@ -2171,11 +2209,6 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Snapping Ancorare - - - Walls drawing - Desenare pereți - Auto-join walls @@ -2192,82 +2225,82 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Unește schițele de bază a pereților, când e posibil - + Mesh to Shape Conversion Conversie Mesh în Shape (Formă) - + If this is checked, conversion is faster but the result might still contain triangulated faces Dacă aceasta e bifată, conversia va fi mai rapidă, dar rezultatul ar putea încă conține fețe triangulate - + Fast conversion Conversie rapidă - + Tolerance: Toleranţă: - + Tolerance value to use when checking if 2 adjacent faces as planar Valoarea de toleranță folosită când se verifică dacă două fețe adiacente sunt coplanare - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Dacă aceasta este bifată, grupuri de fațete plate vor fi aplatizate forțat, rezultând în posibile găuri și rezultate ne-solide - + Force flat faces Forțează fețe plane - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Dacă aceasta e bifată, găuri în fațete vor fi perforate mai degrabă prin substracție decât folosind orientarea wire-lor (firelor, sârmelor, marginilor) - + Cut method Metodă de tăiere - + Show debug messages Arată mesajele de depanare - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Dacă aceasta e bifată, deschiderile vor fi importate ca substracții, altfel formele de perete vor avea deschiderile deja scăzute - + Separate openings Deschideri separate - + If this is checked, object names will be prefixed with the IFC ID number Dacă aceasta e bifată, numele obiectelor va avea prefixul dat de numărul din ID-ul IFC - + Prefix names with ID number Numele prefixului cu numărul ID - + Exclude list: Listă excluderi: - + A comma-separated list of Ifc entities to exclude from import O listă cu separare prin virgulă a entităților IFC excluse de la import @@ -2317,22 +2350,22 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Transparenţă: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Unele vizualizatoare de IFC nu tolerează obiecte exportate ca extruziuni, Folosește aceasta pentru a forța exportarea obiectelor ca geometrie BREP. - + Hidden geomety pattern Modelul (pattern-ul) geometriei ascunse - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2362,27 +2395,27 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Grosime - + Force export as Brep Forțează exportul ca Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2392,7 +2425,7 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe DAE - + Export options Export options @@ -2402,102 +2435,102 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2607,25 +2640,60 @@ Dacă Lungimea orizontală = 0 atunci Lungimea orizontală este calculată astfe Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_ru.qm b/src/Mod/Arch/Resources/translations/Arch_ru.qm index 6bc960e1da033eed3794858059fd76d3210a8bc9..07ff7601a70fd861f5c447feaeac4aded87dc0b1 100644 GIT binary patch delta 6966 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 J+0Uht{{jk>n8pAA delta 4831 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 Vn4_j8B*j~2zj}ZF9i>7P{tv0Pl3)M; diff --git a/src/Mod/Arch/Resources/translations/Arch_ru.ts b/src/Mod/Arch/Resources/translations/Arch_ru.ts index afece1f72..04801c6e1 100644 --- a/src/Mod/Arch/Resources/translations/Arch_ru.ts +++ b/src/Mod/Arch/Resources/translations/Arch_ru.ts @@ -4,7 +4,7 @@ Arch - + Components Компоненты @@ -44,12 +44,12 @@ Размер марок - + Remove Удалить - + Add Добавить @@ -84,57 +84,57 @@ Этаж - + removing sketch support to avoid cross-referencing удаление в эскизе пустые перекрёстные ссылки - + is not closed не замкнут - + is not valid не подходит - + doesn't contain any solid не содержит каких-либо тел - + contains a non-closed solid содержит незамкнутое тело - + contains faces that are not part of any solid содержит грани, которые не являются частью каких-либо тел - + Grouping Группировка - + Ungrouping Разгруппировка - + Split Mesh Разделить сетку - + Mesh to Shape Сетка для фигуры - + All good! no problems found Все в порядке! проблем не найдено @@ -159,7 +159,7 @@ Объекты - + closing Sketch edit закрытие редактирования эскиза @@ -219,27 +219,27 @@ Создать площадку - + Create Structure Создать структуру - + The length of this element, if not based on a profile Длина элемента, если она не определена в профиле - + The width of this element, if not based on a profile Ширина элемента, если она не определена в профиле - + The height or extrusion depth of this element. Keep 0 for automatic Высота или глубина выдавливания элемента. Задайте 0 для автоматического определения - + Axes systems this structure is built on Структура системы осей построена на @@ -249,7 +249,7 @@ Нормальное направление выдавливания для этого объекта (оставить (0,0,0) для задания автоматической нормали) - + The element numbers to exclude when this structure is based on axes Число исключающихся элементов при построении структуры на осях @@ -309,57 +309,57 @@ Эта сетка является недействительным телом - + Create Window Создать окно - + the components of this window компоненты этого окна - + Edit Правка - + Create/update component Создание/обновление компонента - + Base 2D object Базовый объект 2D - + Wires Направляющие - + Create new component Создать новый компонент - + Name Название - + Type Тип - + Thickness Толщина - + Z offset Z-смещение @@ -403,12 +403,12 @@ Стиль номерации - + Add space boundary Добавить отступ - + Remove space boundary Убрать отступ @@ -443,12 +443,12 @@ Создать каркас - + Create Rebar Задать армирование - + Please select a base face on a structural object Пожалуйста, выберите базовую грань структурного объекта @@ -577,22 +577,12 @@ Смещение между границей лестницы и структурой - - Wood - Древесина - - - - Steel - Сталь - - - + Structure options Структурные опции - + Preset Набор @@ -602,7 +592,7 @@ Длина - + Rotate Повернуть @@ -612,27 +602,27 @@ &Продолжить - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Содержащиеся в этом элементе каркасы - + The structural nodes of this element Структурные узлы этого элемента - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Не могу подсчитать фигуру @@ -672,39 +662,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Укажите грань на существующем объекте или выберите заготовку - + Window options Параметры окна - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Глубина отверстия, образуемого этим окном во вмещающем объекте. Оставьте 0 для автоматического выбора. - + The width of this window (for preset windows only) Ширина этого окна (только для заготовок окон) - + The height of this window (for preset windows only) Высота этого окна (только для заготовок окон) - + The normal direction of this window Нормальное направление этого окна - + Unable to create component Невозможно создать компонент @@ -730,12 +720,12 @@ Расстояния (мм) и углы (градусы) между осями - + Error computing the shape of this object Ошибка при расчёте формы этого объекта - + Create Structural System Создать структурную систему @@ -753,37 +743,37 @@ Ошибка: ваша версия IfcOpenShell слишком устарела - + Found a shape containing curves, triangulating Найти фигуры, содержащие кривые, триангуляции - + Invalid cutplane Недопустимая секущая плоскость - + No objects are cut by the plane Плоскость не пересекает ни один объект - + Object doesn't have settable IFC Attributes Объект не имеет настраиваемых IFC-параметров - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -813,12 +803,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object Материал для этого объекта @@ -833,17 +823,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1058,12 +1048,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Показать единицу измерения - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Высота порога @@ -1175,12 +1165,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Создать компонент @@ -1192,7 +1182,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Create material - Create material + Создать материал @@ -1207,7 +1197,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Date - Date + Дата @@ -1232,7 +1222,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela URL - URL + URL @@ -1252,12 +1242,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Total price - Total price + Общая стоимость Columns - Columns + Столбцы @@ -1300,27 +1290,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first - This document is not saved. Please save it first + Этот документ не сохранен. Сначала сохраните его - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1360,7 +1350,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1380,47 +1370,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Категория + + + + Key + Key + + + + Value + Значение + + + + Unit + Юнит + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1455,12 +1480,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Code - Code + Код URL - URL + URL @@ -1479,12 +1504,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Добавить компонент - + Adds the selected components to the active object Добавить выбранные компоненты для активного объекта @@ -1505,12 +1530,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1531,17 +1556,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Проверить - + Checks the selected objects for problems Проверка выбранных объектов - + Explore the contents of an Ifc file Изучить содержимое файла Ifc @@ -1549,12 +1574,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Убрать отверстия - + Closes holes in open shapes, turning them solids Закрыть отверстия в открытых формах, преобразовав их в модель @@ -1562,12 +1587,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1627,12 +1652,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1640,11 +1665,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Исследователь Ifc + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1674,12 +1712,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Сетка для фигуры - + Turns selected meshes into Part Shape objects Обратить выбранные сети в части объектов @@ -1700,12 +1738,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Армирование - + Creates a Reinforcement bar from the selected face of a structural object Создать объект арматуры из выбранной грани структурного объекта @@ -1713,12 +1751,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Удалить компонент - + Remove the selected components from their parents, or create a hole in a component Удалить выбранные компоненты из их родителей, или создать отверстие в компоненте @@ -1726,12 +1764,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Удалить форму из Архитектуры - + Removes cubic shapes from Arch components Удаляет кубические формы из компонентов Архитектуры @@ -1778,12 +1816,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Выбрать не-разнородные сетки - + Selects all non-manifold meshes from the document or from the selected groups Выбрать все не-разнородные сетки из документа или из выбранных групп @@ -1822,12 +1860,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Разделить сетку - + Splits selected meshes into independent components Разделить выбранные сетки на независимые компоненты @@ -1843,12 +1881,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Структура - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Создать структуру объекта с нуля, либо из выбранного объекта (эскиза, провода, поверхности или тела) @@ -1856,12 +1894,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Опрос/анкетирование - + Starts survey Начинается опрос @@ -1869,12 +1907,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -1945,27 +1983,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Area unit - Area unit + Единицы площади m² - + м² Volume unit - Volume unit + Единицы объёма m³ - + м³ Currency unit - Currency unit + Денежная единица @@ -1975,7 +2013,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela € - + @@ -1985,12 +2023,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Add material description - Add material description + Добавьте описание материала Add material color - Add material color + Добавить цвет материала @@ -2015,12 +2053,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Add stairs - Add stairs + Добавить лестницы Add walls - Add walls + Добавить стены @@ -2030,22 +2068,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Add floors - Add floors + Добавить этажи Add ceilings - Add ceilings + Добавить потолки Add roofs - Add roofs + Добавить крыши Add windows and doors - Add windows and doors + Добавить окна и двери @@ -2060,7 +2098,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Add furniture - Add furniture + Добавить мебель @@ -2081,27 +2119,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Это цвет по умолчанию для новых структур - + 2D rendering 2D визуализация - + Show debug information during 2D rendering Отображать отладочную информацию в 2D визуализации - + Show renderer debug messages Показать сообщения отладки визуализации - + Cut areas line thickness ratio Обрезать в соотношении толщины линии - + Specifies how many times the viewed line thickness must be applied to cut lines Определяет величину видимой толщины линии подлежащей обрезке @@ -2170,11 +2208,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Привязка - - - Walls drawing - Рисование стен - Auto-join walls @@ -2191,82 +2224,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Быстрое преобразование - + Tolerance: Допуск: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Только плоские грани - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Показывать отладочные сообщения - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2316,22 +2349,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Прозрачность: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2361,27 +2394,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Толщина - + Force export as Brep Принудительно экспортировать как Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2391,7 +2424,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2401,102 +2434,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2523,7 +2556,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Netgen - Netgen + Netgen @@ -2606,25 +2639,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_sk.qm b/src/Mod/Arch/Resources/translations/Arch_sk.qm index 238f5fb07547aee72b8c97f108595cc75b06acad..42a838b7cfe064df86861deabdcd773493041e12 100644 GIT binary patch delta 6336 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 K4gYpAmBG1IM4+cu>+_m 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 Arch - + Components Komponenty @@ -44,12 +44,12 @@ Veľkosť bubliny osi - + Remove Odstrániť - + Add Pridať @@ -84,57 +84,57 @@ Podlaha - + removing sketch support to avoid cross-referencing odstráni rovinu náčrtu pre predídenie krížovému odkazu - + is not closed nieje uzatvorená - + is not valid nieje platná - + doesn't contain any solid neobsahuje žiadne teleso - + contains a non-closed solid obsahuje neuzatvorené teleso - + contains faces that are not part of any solid obsahuje plochy ktoré nie sú časťami telesa - + Grouping Zoskupenie - + Ungrouping Rozdeliť Skupinu - + Split Mesh Rozdeliť sieť - + Mesh to Shape Sieť do tvaru - + All good! no problems found Všetko v poriadku! Nenašli sa žiadne problémy @@ -159,7 +159,7 @@ Objekty - + closing Sketch edit ukončenie úpravu Náčrtu @@ -219,27 +219,27 @@ Vytvor terén - + Create Structure Vytvor štruktúru - + The length of this element, if not based on a profile Dĺžka tohoto prvku, nieje založená na profile - + The width of this element, if not based on a profile Šířka tohoto prvku, ak nieje založená na profile - + The height or extrusion depth of this element. Keep 0 for automatic Výška hĺbky vytiahnutia tohoto prvku. Ponechaj 0 pre automatiku - + Axes systems this structure is built on Osový systém tejto konštrukcie je založený na @@ -249,7 +249,7 @@ Normálový smer vytiahnutia tohoto objektu (ponechaj (0,0,0) pre automatickú normálu) - + The element numbers to exclude when this structure is based on axes Počet elementov pre vynechanie, keď je táto štruktúra založená na ose @@ -309,57 +309,57 @@ Tato sieť netvorí platné teleso - + Create Window Vytvoriť okno - + the components of this window súčasti tohoto okna - + Edit Upraviť - + Create/update component Create/update component - + Base 2D object Base 2D object - + Wires Wires - + Create new component Create new component - + Name Názov - + Type Typ - + Thickness Thickness - + Z offset Z offset @@ -405,12 +405,12 @@ The numbering style - + Add space boundary Add space boundary - + Remove space boundary Remove space boundary @@ -445,12 +445,12 @@ Create Frame - + Create Rebar Create Rebar - + Please select a base face on a structural object Please select a base face on a structural object @@ -579,22 +579,12 @@ The offset between the border of the stairs and the structure - - Wood - Wood - - - - Steel - Steel - - - + Structure options Structure options - + Preset Preset @@ -604,7 +594,7 @@ Dĺžka - + Rotate Otočiť @@ -614,27 +604,27 @@ Con&tinue - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -674,39 +664,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Window options - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Unable to create component @@ -732,12 +722,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Create Structural System @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -817,12 +807,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -837,17 +827,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1062,12 +1052,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1179,12 +1169,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1304,27 +1294,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1364,7 +1354,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1384,47 +1374,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategória + + + + Key + Key + + + + Value + Hodnota + + + + Unit + Jednotka + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1483,12 +1508,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Pridaj komponent - + Adds the selected components to the active object Pridať vybraté komponenty k aktívnym objektom @@ -1509,12 +1534,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1535,17 +1560,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Check - + Checks the selected objects for problems Checks the selected objects for problems - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1553,12 +1578,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Close holes - + Closes holes in open shapes, turning them solids Closes holes in open shapes, turning them solids @@ -1566,12 +1591,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1631,12 +1656,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1644,11 +1669,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1678,12 +1716,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Sieť do tvaru - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1704,12 +1742,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Rebar - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1717,12 +1755,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Odstrániť časť - + Remove the selected components from their parents, or create a hole in a component Odstrániť vybrané komponenty od svojich nadradených objektov, alebo vytvoriť dieru v časti @@ -1730,12 +1768,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Odstrániť tvar z oblúka - + Removes cubic shapes from Arch components Odstráni kockové tvary z oblúkovych komponentov @@ -1782,12 +1820,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Označ non-manifold siete - + Selects all non-manifold meshes from the document or from the selected groups Vyberie všetky non-manifold siete z dokumentu alebo z vybranej skupiny @@ -1826,12 +1864,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Rozdeliť sieť - + Splits selected meshes into independent components Rozdelí označené siete na nezávislé komponenty @@ -1847,12 +1885,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Konštrukcia - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Vytvorí objekt Konštrukcie, od nuly alebo z vybratého objektu (náčrt, drôtový, plocha alebo pevný) @@ -1860,12 +1898,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1873,12 +1911,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2085,27 +2123,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Toto je predvolená farba pre nový objekt Konštrukcie - + 2D rendering 2D rendering - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2174,11 +2212,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2195,82 +2228,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Fast conversion - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2320,22 +2353,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Priesvitnosť: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2365,27 +2398,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Thickness - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2395,7 +2428,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2405,102 +2438,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2610,25 +2643,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_sl.qm b/src/Mod/Arch/Resources/translations/Arch_sl.qm index 4de6e8ffe741db9f8ca976dd977ef9a67a7656cd..bb72f4b35a2067b72aa42b1af01d20d06d6e7d1d 100644 GIT binary patch delta 6420 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 W(`ToAlTN)-H0D8}tZ2+bgW}%}tUNXV delta 4275 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

Arch - + Components Komponente @@ -44,12 +44,12 @@ Velikost kroga oznake osi - + Remove Odstrani - + Add Dodaj @@ -84,57 +84,57 @@ Tla - + removing sketch support to avoid cross-referencing odstranjevanje podpore za skico v izogib navzkrižnemu sklicevanju - + is not closed ni zaprt - + is not valid ni veljaven - + doesn't contain any solid ne vsebuje telesa - + contains a non-closed solid vsebuje nezaprto telo - + contains faces that are not part of any solid vsebuje ploskve, ki niso del nobenega telesa - + Grouping Združevanje - + Ungrouping Razdruževanje - + Split Mesh Razcepi mrežo - + Mesh to Shape Mreža v obliko - + All good! no problems found Vse v redu! Nobene zaznane težave @@ -159,7 +159,7 @@ Objekti - + closing Sketch edit zapiranje urejanja Skice @@ -219,27 +219,27 @@ Ustvari lokacijo - + Create Structure Ustvari konstrukcijo - + The length of this element, if not based on a profile Dolžina tega elementa, ko ni povzeta iz profila - + The width of this element, if not based on a profile Širina tega elementa, ko ni povzeta iz profila - + The height or extrusion depth of this element. Keep 0 for automatic Višina oziroma globina izvleka tega elementa. Pustite 0 za samodejno - + Axes systems this structure is built on Osni sistem, ki je osnova te konstrukcije @@ -249,7 +249,7 @@ Običajna smer izvleka tega objekta (pustite (0,0,0) za samodejno smer) - + The element numbers to exclude when this structure is based on axes Neupoštevane številke elementa, ko je ta konstrukcija na osnovi sistema osi @@ -309,57 +309,57 @@ Ta mreža je neveljavno telo - + Create Window Ustvari okno - + the components of this window komponente tega okna - + Edit Uredi - + Create/update component Ustvari/posodobi komponento - + Base 2D object Osnovni 2D objekt - + Wires Žice - + Create new component Ustvari novo komponento - + Name Ime - + Type Vrsta - + Thickness Debelina - + Z offset Z odmik @@ -405,12 +405,12 @@ Slog oštevilčevanja - + Add space boundary Dodaj prostorsko omejitev - + Remove space boundary Odstrani prostorsko omejitev @@ -445,12 +445,12 @@ Ustvari ogrodje - + Create Rebar Ustvari ojačitveni drog - + Please select a base face on a structural object Izberite osnovno ploskev na objektu konstrukcije @@ -579,22 +579,12 @@ Odmik med robom stopnišča in konstrukcijo - - Wood - Les - - - - Steel - Jeklo - - - + Structure options Možnosti konstrukcije - + Preset Prednastavljeno @@ -604,7 +594,7 @@ Dolžina - + Rotate Zavrti @@ -614,27 +604,27 @@ &Nadaljuj - + An optional extrusion path for this element Izbirna pot izvleka tega elementa - + Armatures contained in this element Armature, ki jih vsebuje ta element - + The structural nodes of this element Konstrukcijska vozlišča tega elementa - + Error: The base shape couldn't be extruded along this tool object Napaka: osnovne oblike ni bilo mogoče izvleči vzdolž tega orodja - + Couldn't compute a shape Ni bilo možno izračunati oblike @@ -674,39 +664,39 @@ Odmik med tem zidom in osnovno črto (samo za leve in desne poravnave) - + Pick a face on an existing object or select a preset Izberite ploskev ne obstoječem objektu ali izberite prednastavitev - + Window options Možnosti okna - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Globina luknje okna v gostiteljskem objektu. Pustite 0 za samodejno. - + The width of this window (for preset windows only) Širina tega okna (samo za prednastavljena okna) - + The height of this window (for preset windows only) Višina tega okna (samo za prednastavljena okna) - + The normal direction of this window Običajna smer tega okna - + Unable to create component Komponente ni bilo mogoče ustvariti @@ -732,12 +722,12 @@ Razdalje (mm) in koti (°) med osmi - + Error computing the shape of this object Napaka pri računanju oblike tega objekta - + Create Structural System Ustvari konstrukcijski sistem @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Najdena oblika, ki vsebuje krivulje, triangulacija - + Invalid cutplane Neveljavna rezalna ravnina - + No objects are cut by the plane Noben objekt ni bil prerezan z ravnino - + Object doesn't have settable IFC Attributes Objekt nima nastavljivih atributov IFC - + Disabling Brep force flag of object Onemogočanje vsiljene zastavice predstavitve objekta z ovojnico - + Enabling Brep force flag of object Omogočanje vsiljene zastavice predstavitve objekta z ovojnico @@ -817,12 +807,12 @@ Izbirna oznaka te komponente - + Custom IFC properties and attributes Lastnosti in atributi IFC po meri - + A material for this object Material tega objekta @@ -837,17 +827,17 @@ Določa, ali naj se objekt premakne skupaj z gostiteljem - + has no solid nima telesa - + has an invalid shape ima neveljavno obliko - + has a null shape ima ničelno obliko @@ -1062,12 +1052,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Prikaži pripono enot - + A description of the standard profile this element is based upon Opis standardnega profila, na katerem je osnovan ta element - + Sill height Višina okenske police @@ -1179,12 +1169,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Vrsta zgradbe - + removing sketch external reference to avoid cross-referencing odstranjevanje zunanjega sklica skice v izogib navzkrižnemu sklicevanju - + Create Component Ustvari komponento @@ -1304,27 +1294,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Prikaži prerez v pogledu 3D - + This document is not saved. Please save it first Ta dokument ni shranjen. Najprej ga shranite - + The Python Git module was not found. Please install the python-git package. Modula Python Git ni bilo mogoče najti. Namestite paket python-git. - + This document doesn't appear to be part of a Git repository. Ne izgleda, da je ta dokumentacija del skladišča Git. - + Warning: no remote repositories. Unable to push Opozorilo: ni oddaljenih skladišč. Potisk ni mogoč - + The Git repository cannot handle this document. Skladišče Git ne more obdelati tega dokumenta. @@ -1364,7 +1354,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Zidovi so lahko osnovani samo na delih ali mrežah - + an optional object that defines a volume to be subtracted from hosts of this window izbirni objekt, ki določa prostornino za odštevanje od gostiteljev tega okna @@ -1384,47 +1374,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Nastavi položaj besedila - + Unable to extrude the base shape Izvleka osnovne oblike ni mogoča + + + Category + Kategorija + + + + Key + Ključ + + + + Value + Vrednost + + + + Unit + Enota + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + Objekt nima atributa IfcProperties, Prekličite ustvarjanje preglednice za objekt: + + + + Create IFC properties spreadsheet + Ustvari preglednico lastnosti IFC + + + + Auto include in host object + Samodejno vključi v gostiteljskem objektu + ArchGitOptions - + Git Options Možnosti Git - + What to commit Predmeti za uveljavitev - + All files in folder Vse datoteke v mapi - + Only this .FcStd file Samo ta datoteka .FcStd - + Commit message Sporočilo uveljavitve - + commit Uveljavi - + Push to default remote repository Potisni v privzeto oddaljeno skladišče @@ -1483,12 +1508,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Dodaj komponento - + Adds the selected components to the active object Dodaj izbrane komponente v dejavni objekt @@ -1509,12 +1534,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server Strežnik BIM - + Opens a browser window and connects to a BIM server instance Odpre okno brskalnika in se poveže s primerkom strežnika BIM @@ -1535,17 +1560,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Preveri - + Checks the selected objects for problems Preveri izbrane objekte za morebitne napake - + Explore the contents of an Ifc file Razišči vsebino datoteke IFC @@ -1553,12 +1578,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Zapri luknje - + Closes holes in open shapes, turning them solids Zapre luknje v odprtih oblikah in jih pretvori v telesa @@ -1566,12 +1591,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Komponenta - + Creates an undefined architectural component Ustvari nedoločeno arhitekturno komponento @@ -1631,12 +1656,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Uveljavi z Gitom - + Commits the current document Uveljavi trenutni dokument @@ -1644,11 +1669,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Raziskovalec IFC + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Ustvari preglednico IFC … + + + + Creates a spreadsheet to store ifc properties of an object. + Ustvari preglednico za shranjevanje lastnosti IFC objekta. + + Arch_Material @@ -1678,12 +1716,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Mreža v obliko - + Turns selected meshes into Part Shape objects Pretvori izbrane mreže v oblike dela @@ -1704,12 +1742,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Ojač. drog - + Creates a Reinforcement bar from the selected face of a structural object Ustvari ojačitveni drog iz izbrane ploskve konstrukcije @@ -1717,12 +1755,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Odstrani komponento - + Remove the selected components from their parents, or create a hole in a component Odstrani izbrano komponento iz nadrejenih komponent ali ustvari luknjo v komponenti @@ -1730,12 +1768,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Odstrani obliko iz arhitekture - + Removes cubic shapes from Arch components Odstrani kockaste oblike iz arhitekturnih komponent @@ -1782,12 +1820,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Izberi nemnogoterne mreže - + Selects all non-manifold meshes from the document or from the selected groups Izbere vse nemnogoterne mreže v dokumentu ali izbranih skupinah @@ -1826,12 +1864,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Razcepi mrežo - + Splits selected meshes into independent components Razcepi izbrane mreže v neodvisne komponente @@ -1847,12 +1885,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Struktura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Ustvari objekt konstrukcije od začetka ali iz izbranega objekta (skice, žice, ploskve ali telesa) @@ -1860,12 +1898,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Raziskava - + Starts survey Zažene raziskavo @@ -1873,12 +1911,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Preklopi zastavico pred. z ovojnico IFC - + Force an object to be exported as Brep or not Vsili izvoz objekta kot predstavitve z ovojnico ali ne @@ -2085,27 +2123,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela To je privzeta barva vseh novih konstrukcij - + 2D rendering Izris 2D - + Show debug information during 2D rendering Prikaži podatke o razhroščevanju med izrisom 2D - + Show renderer debug messages Prikaži sporočila razhroščevanja izrisovalnika - + Cut areas line thickness ratio Razmerje debeline črte površin prereza - + Specifies how many times the viewed line thickness must be applied to cut lines Določi, kolikokrat mora biti debelina črte pogleda uporabljena za črte prereza @@ -2174,11 +2212,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Pripenjanje - - - Walls drawing - Risanje zidov - Auto-join walls @@ -2195,82 +2228,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Spoji osnovne skice zidov, ko je to mogoče - + Mesh to Shape Conversion Pretvorba mreže v obliko - + If this is checked, conversion is faster but the result might still contain triangulated faces Če je to označeno, bo pretvorba hitrejša, vendar bo rezultat še vedno morda vseboval triangulirane ploskve - + Fast conversion Hitra pretvorba - + Tolerance: Toleranca: - + Tolerance value to use when checking if 2 adjacent faces as planar Vrednost tolerance, ki naj se uporabi ob preverjanju, če sta 2 sosednji ploskvi koplanarni - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Če je to označeno, bodo ravne skupine ploskev prisilno zravnane, kar se lahko pokaže v možnih vrzelih in netelesnih objektih - + Force flat faces Vsili ravne ploskve - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Če je to označeno, bodo luknje in ploskve izvedene z odštevanjem namesto z uporabo usmerjenosti žic - + Cut method Način rezanja - + Show debug messages Prikaži sporočila razhroščevanja - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted Če je to označeno, bodo odprtine uvožene kot odštevanje, v nasprotnem primeru pa bodo imele oblike zidu svoje odprtine že odštete - + Separate openings Ločene odprtine - + If this is checked, object names will be prefixed with the IFC ID number Če je to označeno, bodo imena objektov predpeta s številko ID-ja IFC - + Prefix names with ID number Predpni imena s številko ID-ja - + Exclude list: Seznam izključitev: - + A comma-separated list of Ifc entities to exclude from import Seznam entitet IFC ločenih z vejico za izključitev iz uvoza @@ -2320,22 +2353,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Prosojnost: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Nekateri pregledovalniki IFC ne marajo izvoza objektov kot izvlek. Uporabite to za vsilitev izvoza vseh objektov kot geometrije predstavitve z ovojnico. - + Hidden geomety pattern Skriti vzorec geometrije - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. To je lastnost SVG stroke-dasharray, ki se uporablja pri projekcijah skritih objektov. - + 30, 10 30, 10 @@ -2365,27 +2398,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Debelina - + Force export as Brep Vsili izvoz kot predstavitev z ovojnico - + Bim server Strežnik BIM - + Address Naslov - + The URL of a bim server instance (www.bimserver.org) to connect to. URL primerka strežnika BIM (www.bimserver.org) za povezavo. - + http://localhost:8082 http://localhost:8082 @@ -2395,7 +2428,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Možnosti izvoza @@ -2405,102 +2438,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options Splošne možnosti - + Show verbose information during import and export of IFC files Prikaži podrobne podatke med uvozom in izvozom datotek IFC - + Import options Možnosti izvoza - + Import arch IFC objects as Uvozi arhitekturne objekte IFC kot - + Specifies what kind of objects will be created in FreeCAD Določi vrsto objektov za ustvarjanje v FreeCADu - + Parametric Arch objects Parametrični arhitekturni objekti - + Non-parametric Arch objects Neparametrični arhitekturni objekti - + Simple Part shapes Preproste oblike delov - + One compound per floor En sestav na nadstropje - + Do not import Arch objects Ne uvozi arhitekturnih objektov - + Import struct IFC objects as Uvozi konstrukcijske objekte IFC kot - + One compound for all En sestav za vse - + Do not import structural objects Ne uvozi konstrukcijskih objektov - + Root element: Korenski element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Uvožene bodo samo podvrste tega elementa. Pustite vrednost na "IfcProduct" za uvoz vseh elementov zgradbe. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... Če je to označeno, bo uvozilnik poizkusil zaznati izvleke. To lahko stvari upočasni … - + Detect extrusions Zaznaj izvleke - + If several materials with the same name are found in the IFC file, they will be treated as one. Če je v datoteki IFC najdenih več materialov z enakim imenom, bodo obravnavani kot en material. - + Merge materials with same name Združi materiale z enakim imenom @@ -2512,7 +2545,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The mesher to use. If using netgen, make sure netgen is enabled in the Mesh module - Mrežilnik, ki naj se uporabi. Če uporabljate NETGEN, se prepričajte, da je omogočen v mrežnem modulu. + Mrežilnik, ki naj se uporabi. Če uporabljate NETGEN, se prepričajte, da je omogočen v mrežnem modulu @@ -2610,25 +2643,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Dovoli štirik. ploskve - + Use triangulation options set in the DAE options page Uporabi niz možnosti triangulacije na strani možnosti DAE - + Use DAE triangulation options Uporabi možnosti triangulacije DAE - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Ukrivljene oblike, ki jih v IFC-ju ni mogoče predstaviti kot krivulje, se razgradijo v ravne ploskve. Če je to označeno, se izvede dodatni izračun za spojitev koplanarnih ploskev. - + Join coplanar facets when triangulating Spoji koplanarne ploskve ob triagulaciji + + + Object creation + Ustvarjanje objekta + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Dve možni strategiji za preprečevanje krožnih odvisnosti: ustvarite še en objekt (odznačeno) ali odstranite zunanjo geometrijo osnovne skice (označeno) + + + + Remove external geometry of base sketches when needed + Po potrebi odstrani zunanjo geometrijo osnovnih skic + + + + Create clones when objects have shared geometry + Ustvari klone, ko imajo objekti geometrijo v souporabi + + + + Show this dialog when importing and exporting + Prikaži to pogovorno okno med uvažanjem in izvažanjem + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + Če je označeno, bo imel vsak objekt svoje lastnosti IFC shranjene v preglednici. + + + + Import Ifc Properties in spreadsheet + Uvozi lastnosti IFC v preglednico + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_sr.qm b/src/Mod/Arch/Resources/translations/Arch_sr.qm index 151572450e9656717056cb2725ed626e064f046d..cc8547242745ef19b199ae89b40fac03ea1f91ad 100644 GIT binary patch delta 6353 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 Arch - + Components Компоненте @@ -44,12 +44,12 @@ Величина мехурића на оси - + Remove Obriši - + Add Додај @@ -84,57 +84,57 @@ Спрат - + removing sketch support to avoid cross-referencing уклањање подршке за скицу због укрштања - + is not closed није затворен - + is not valid није важећи - + doesn't contain any solid не садржи ниједно чврсто тело - + contains a non-closed solid Ограничи отворено чврcто тело - + contains faces that are not part of any solid садржи површине које нису део ниједног тела - + Grouping Груписање - + Ungrouping Разгруписавање - + Split Mesh Split Mesh - + Mesh to Shape Mesh to Shape - + All good! no problems found Све је у реду! нема пронађених проблема @@ -159,7 +159,7 @@ Предмети - + closing Sketch edit затварање измене Скице @@ -219,27 +219,27 @@ Направи Локацију - + Create Structure Направи структуру - + The length of this element, if not based on a profile Дужина овог елемента ,ако cе не заcнива на профилу - + The width of this element, if not based on a profile Ширина овог елемента, ако cе не заcнива на профилу - + The height or extrusion depth of this element. Keep 0 for automatic Виcина или иcтиcнутоcт овог елемента. Задржи 0 за аутоматcки - + Axes systems this structure is built on Оcни cиcтем на коме је ова cтруктура изграђена @@ -249,7 +249,7 @@ Pravac za upravno istiskivanje ovog objekta (zadrži (0, 0, 0) za automatsko) - + The element numbers to exclude when this structure is based on axes Број елемената за занемарити када cе ова cтруктура темељи на оcама @@ -309,57 +309,57 @@ Ова мрежа је неважеће чвcто тело - + Create Window Креирај прозор - + the components of this window Компоненте овог прозора - + Edit Измени - + Create/update component Креирај / Ажурирај компоненту - + Base 2D object Базни 2D објекат - + Wires Жице - + Create new component Направи нову компоненту - + Name Име - + Type Тип - + Thickness Дебљина - + Z offset Z одмак @@ -405,12 +405,12 @@ Stil nabrajanja - + Add space boundary Dodaj granice prostora - + Remove space boundary Ukloni granice prostora @@ -445,12 +445,12 @@ Направи Рам - + Create Rebar Направи Арматуру - + Please select a base face on a structural object Молим одаберите оcновну површ на cтруктурном објекту @@ -577,22 +577,12 @@ The offset between the border of the stairs and the structure - - Wood - Дрво - - - - Steel - Челик - - - + Structure options Опције cтруктуре - + Preset Preset @@ -602,7 +592,7 @@ Дужина - + Rotate Ротирати @@ -612,27 +602,27 @@ &Dalje - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Ниcам уcпео прорачунати облик @@ -672,39 +662,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Опције за прозоре - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Ниcам уcпео да направим компоненту @@ -730,12 +720,12 @@ Раздаљине (mm) и углови (deg) између оcа - + Error computing the shape of this object Грешка израчунавања облика овог објекта - + Create Structural System Направи Cтруктурни Cиcтем @@ -754,38 +744,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -815,12 +805,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object Материјал за овај објекат @@ -835,17 +825,17 @@ Наводи да ли овај објекат треба да cе помера када cе његов домаћин помера - + has no solid Нема чврcтог тела - + has an invalid shape има неважећи облик - + has a null shape has a null shape @@ -1061,12 +1051,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1178,12 +1168,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1303,27 +1293,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1363,7 +1353,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1383,47 +1373,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Категорија + + + + Key + Key + + + + Value + Вредност + + + + Unit + Јединица + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1482,12 +1507,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Додај компоненту - + Adds the selected components to the active object Додаје одабране компоненте активном објекту @@ -1508,12 +1533,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1534,17 +1559,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Провери - + Checks the selected objects for problems Проверава да ли има проблема на одабраним објектима - + Explore the contents of an Ifc file Иcтражи cадржај Ifc датотеке @@ -1552,12 +1577,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Затвори рупе - + Closes holes in open shapes, turning them solids Затвара рупе у отвореним објектима,претварајући их у чврcта тела @@ -1565,12 +1590,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1630,12 +1655,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1643,11 +1668,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Иcтраживач + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1677,12 +1715,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Mesh to Shape - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1703,12 +1741,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Rebar - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1716,12 +1754,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Уклони компоненту - + Remove the selected components from their parents, or create a hole in a component Remove the selected components from their parents, or create a hole in a component @@ -1729,12 +1767,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Remove Shape from Arch - + Removes cubic shapes from Arch components Removes cubic shapes from Arch components @@ -1781,12 +1819,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Select non-manifold meshes - + Selects all non-manifold meshes from the document or from the selected groups Selects all non-manifold meshes from the document or from the selected groups @@ -1825,12 +1863,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Split Mesh - + Splits selected meshes into independent components Splits selected meshes into independent components @@ -1846,12 +1884,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Конструкција - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Прави конструкцију објекта од почетка или од одабраног објекта (цртежа, жице, површине или тела) @@ -1859,12 +1897,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1872,12 +1910,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2084,27 +2122,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Ово је подразумевана боја за нове објекте конструкције - + 2D rendering 2D рендеровање - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2173,11 +2211,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2194,82 +2227,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Cпоји оcновне cкице зидова када је могуће - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Брза конверзија - + Tolerance: Tolerancija: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Lista izuzetaka: - + A comma-separated list of Ifc entities to exclude from import Lista IFC entiteta razdvojenih zarezima za isključivanje iz uvoza @@ -2319,22 +2352,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Prozirnost: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2364,27 +2397,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Дебљина - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2394,7 +2427,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2404,102 +2437,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2609,25 +2642,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_sv-SE.qm b/src/Mod/Arch/Resources/translations/Arch_sv-SE.qm index 9e6665d5da2fe575dd16499ac1646bcd5272f8e4..7749c0248a20c81edaef4dfa08ff35ccca7921aa 100644 GIT binary patch delta 6774 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 KcO}(B_5T1VNmP&k diff --git a/src/Mod/Arch/Resources/translations/Arch_sv-SE.ts b/src/Mod/Arch/Resources/translations/Arch_sv-SE.ts index 82a7156d4..5e3b34e51 100644 --- a/src/Mod/Arch/Resources/translations/Arch_sv-SE.ts +++ b/src/Mod/Arch/Resources/translations/Arch_sv-SE.ts @@ -4,7 +4,7 @@ Arch - + Components Komponenter @@ -44,12 +44,12 @@ Storleken på axel-bubblorna - + Remove Ta bort - + Add Lägg till @@ -84,57 +84,57 @@ Golv - + removing sketch support to avoid cross-referencing ta bort skiss stöd för att undvika korsreferenser - + is not closed är inte stängd - + is not valid är inte giltig - + doesn't contain any solid innehåller inte någon solid - + contains a non-closed solid Innehåller en osluten solid - + contains faces that are not part of any solid Innehåller ytor som inte är en del av någon solid - + Grouping Gruppering - + Ungrouping Dela upp - + Split Mesh Splitta nät - + Mesh to Shape Nät till form - + All good! no problems found Allt bra! inga problem hittades @@ -159,7 +159,7 @@ Objekt - + closing Sketch edit Stänger Skiss redigering @@ -219,27 +219,27 @@ Skapa plats - + Create Structure Skapa struktur - + The length of this element, if not based on a profile Längden på detta element, om det inte baserats på en profil - + The width of this element, if not based on a profile Bredden på detta element, om det inte baserats på en profil - + The height or extrusion depth of this element. Keep 0 for automatic Höjd eller extruderingsdjup på detta element. Behåll 0 för automatik - + Axes systems this structure is built on Axelsystem som denna struktur är byggd på @@ -249,7 +249,7 @@ Den normala extrusionsriktningen på detta objekt (Behåll (0,0,0) för automatisk normal) - + The element numbers to exclude when this structure is based on axes De elementnummer som ska uteslutas när denna struktur är baserad på axlar @@ -309,57 +309,57 @@ Detta nät är en ogiltig solid - + Create Window Skapa fönster - + the components of this window Det här fönstrets komponenter - + Edit Redigera - + Create/update component Skapa eller uppdatera komponent - + Base 2D object 2D basobjekt - + Wires Trådar - + Create new component Skapa ny komponent - + Name Namn - + Type Typ - + Thickness Tjocklek - + Z offset Z offset @@ -405,12 +405,12 @@ Numreringsstilen - + Add space boundary Lägg till utrymmesgräns - + Remove space boundary Ta bort utrymmesgräns @@ -445,12 +445,12 @@ Skapa ram - + Create Rebar Skapa armeringsjärn - + Please select a base face on a structural object Vänligen välj en basyta på ett strukturellt objekt @@ -579,22 +579,12 @@ The offset between the border of the stairs and the structure - - Wood - Trä - - - - Steel - Stål - - - + Structure options Strukturalternativ - + Preset Förval @@ -604,7 +594,7 @@ Längd - + Rotate Rotera @@ -614,27 +604,27 @@ Fortsätt - + An optional extrusion path for this element En valfri extrusionsslinga för detta element - + Armatures contained in this element Armaturer inneslutna i detta element - + The structural nodes of this element De strukturella noderna för detta element - + Error: The base shape couldn't be extruded along this tool object Fel: Grundformen kunde inte extruderas eller svepas längs detta verktygsobjekt - + Couldn't compute a shape En form kunde inte beräknas @@ -674,39 +664,39 @@ Förskjutningen mellan detta gods och dess baslinje (endast för vänster- och högerjusteringar) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Fönsteralternativ - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. Djupet på det hål eller den försänkning detta fönster skapar i sitt värdobjekt. Låt detta värde vara 0 för att låta djupet bestämmas automatiskt. - + The width of this window (for preset windows only) Bredden för valt fönster (endast för förvalsfönster) - + The height of this window (for preset windows only) Höjden för valt fönster (endast för förvalsfönster) - + The normal direction of this window Normalriktningen för valt fönster - + Unable to create component Kan ej skapa komponent @@ -732,12 +722,12 @@ Avstånd (mm) och vinklar (grader) mellan axlar - + Error computing the shape of this object Fel vid beräkning av formen på detta objekt - + Create Structural System Skapa Strukturellt System @@ -756,38 +746,38 @@ - + Found a shape containing curves, triangulating Upptäckte en form innehållande kurvor, triangulerar - + Invalid cutplane Ogiltigt snittplan - + No objects are cut by the plane Inga objekt skärs av planet - + Object doesn't have settable IFC Attributes Objektet har inte inställbara IFC-attribut - + Disabling Brep force flag of object Inaktiverar Brep-tvångsflagga för objekt - + Enabling Brep force flag of object Aktiverar Brep-tvångsflagga för objekt @@ -817,12 +807,12 @@ En valfri tagg för denna komponent - + Custom IFC properties and attributes Anpassade egenskaper och attribut för IFC - + A material for this object Ett material för detta objekt @@ -837,17 +827,17 @@ Specificerar huruvida detta objekt måste förflyttas eller inte, när dess värdobjekt förflyttas - + has no solid har ingen solid kropp - + has an invalid shape har en ogiltig form - + has a null shape har en ospecificerad form @@ -899,12 +889,12 @@ The model description of this equipment - The model description of this equipment + Modellbeskrivningen av denna utrustning The url of the product page of this equipment - The url of the product page of this equipment + Webbadressen till produktsidan för denna utrustning @@ -919,17 +909,17 @@ The thickness or extrusion depth of this element - The thickness or extrusion depth of this element + Tjocklek eller extrusionsdjupet av detta element The number of sheets to use - The number of sheets to use + Antalet ark att använda The offset between this panel and its baseline - The offset between this panel and its baseline + Förskjutningen mellan denna panelen och dess baslinje @@ -1062,12 +1052,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1179,12 +1169,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1304,27 +1294,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first Detta dokument är inte sparat. Var vänlig spara först - + The Python Git module was not found. Please install the python-git package. Python Git-modulen gick ej att hitta. Installera paketet python-git. - + This document doesn't appear to be part of a Git repository. Detta dokument verkar inte vara en del av Git-förrådet. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. Git-förrådet kan inte hantera detta dokument. @@ -1364,7 +1354,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1384,47 +1374,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategori + + + + Key + Key + + + + Value + Värde + + + + Unit + Enhet + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git-inställningar - + What to commit What to commit - + All files in folder Alla filer i mappen - + Only this .FcStd file Endast denna .FcStd fil - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1483,12 +1508,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Lägg till komponent - + Adds the selected components to the active object Lägger till de valda komponenterna till det aktiva objektet @@ -1509,12 +1534,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Öppnar ett browserfönster och ansluter till en BIM-serverinstans @@ -1535,17 +1560,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Kontrollera - + Checks the selected objects for problems Kontrollerar de markerade objekten efter problem - + Explore the contents of an Ifc file Utforska innehållet i en Ifc-fil @@ -1553,12 +1578,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Stäng hål - + Closes holes in open shapes, turning them solids Stänger hål i öppna former, och omvandlar dem dem till solider @@ -1566,12 +1591,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Komponent - + Creates an undefined architectural component Skapar en odefinierad arkitekturkomponent @@ -1631,12 +1656,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1644,11 +1669,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer IFC-Utforskare + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1678,12 +1716,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Nät till form - + Turns selected meshes into Part Shape objects Omvandlar valda nät till del form-objekt @@ -1704,12 +1742,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Armeringsjärn - + Creates a Reinforcement bar from the selected face of a structural object Skapar en förstärkningsstång från den valda ytan hos ett strukturellt objekt @@ -1717,12 +1755,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Ta bort komponent - + Remove the selected components from their parents, or create a hole in a component Ta bort de valda komponenterna från deras föräldrar, eller skapa ett hål i en komponent @@ -1730,12 +1768,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Ta bort form från Arch - + Removes cubic shapes from Arch components Tar bort kubiska former från Arch komponenter @@ -1782,12 +1820,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Välj icke-manifold nät - + Selects all non-manifold meshes from the document or from the selected groups Väljer alla icke-manifold nät från dokumentet eller från de valda grupperna @@ -1826,12 +1864,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Splitta nät - + Splits selected meshes into independent components Delar valda nät i självständiga komponenter @@ -1847,12 +1885,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Struktur - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Skapar ett strukturobjekt från början eller från ett markerat objekt (skiss, tråd, yta eller solid) @@ -1860,12 +1898,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Enkät - + Starts survey Påbörjar enkät @@ -1873,12 +1911,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Aktivera eller deaktivera IFC Brep-flaggan - + Force an object to be exported as Brep or not Tvingar ett objekt till att exporteras som Brep om vald @@ -2085,27 +2123,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Detta är standardfärgen för nya strukturobjekt - + 2D rendering 2D rendering - + Show debug information during 2D rendering Visa felsökningsinformation vid 2D återgivningen - + Show renderer debug messages Visa renderarens debug meddelanden - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Anger hur många gånger som den visade linjetjockleken måste tillämpas på klippta linjer @@ -2174,11 +2212,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Fästning - - - Walls drawing - Godsritning - Auto-join walls @@ -2195,82 +2228,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Förena godsbasers skisser om möjligt - + Mesh to Shape Conversion Konvertera ett nät till en form - + If this is checked, conversion is faster but the result might still contain triangulated faces Om detta är markerat, sker konvertering snabbare medan resultatet kan innehålla triangulerade ytor - + Fast conversion Snabb konvertering - + Tolerance: Tolerans: - + Tolerance value to use when checking if 2 adjacent faces as planar Toleransvärde att använda när det kontrolleras huruvida 2 närliggande ytor är plana - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results Om detta alternativ kryssas för, kommer platta grupper av ytor bli tvångsutplattade. Detta kan resultera i att geometri får hål eller inte längre är solid. - + Force flat faces Tvinga utplaning av ytor - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation Om det här är markerat kommer hål i ytor att utföras genom subtraktion i stället för med hjälp av trådarnas orientering - + Cut method Snittmetod - + Show debug messages Visa debug-meddelanden - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separata öppningar - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Uteslutningslista: - + A comma-separated list of Ifc entities to exclude from import En komma-avgränsad lista med Ifc-enheter att utesluta från import @@ -2320,22 +2353,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Transparens: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Vissa IFC-förhandsgranskare uppskattar inte när objekt exporteras som extrusioner. Använd detta alternativ för att tvinga alla objekt till att exporteras som BREP-geometri. - + Hidden geomety pattern Dolt geometriskt mönster - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. Detta är egenskapen SVG stroke-dasharray och appliceras i projiceringar av dolda objekt. - + 30, 10 30, 10 @@ -2365,27 +2398,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Tjocklek - + Force export as Brep Tvinga export som Brep - + Bim server Bim-server - + Address Adress - + The URL of a bim server instance (www.bimserver.org) to connect to. Webbadressen till en bim-serverinstans (www.bimserver.org) för anslutningen. - + http://localhost:8082 http://localhost:8082 @@ -2395,7 +2428,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Alternativ för export @@ -2405,102 +2438,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options Generella inställningar - + Show verbose information during import and export of IFC files Visa detaljerad information under Import och export av IFC-filer - + Import options Importalternativ - + Import arch IFC objects as Importera arch IFC-objekt som - + Specifies what kind of objects will be created in FreeCAD Anger vilken typ av objekt som kommer att skapas i FreeCAD - + Parametric Arch objects Parametriska Arch-objekt - + Non-parametric Arch objects Icke-parametriska Arch-objekt - + Simple Part shapes Enkla del former - + One compound per floor One compound per floor - + Do not import Arch objects Importera inte Arch-objekt - + Import struct IFC objects as Importera struct IFC-objekt som - + One compound for all One compound for all - + Do not import structural objects Importera inte strukturella objekt - + Root element: Rotelementet: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Bara subtyper av detta element kommer att importeras. Behåll värdet som "IfcProduct" för att importera alla konstruktioner. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. Om flera material med samma namn hittas i IFC-filen, kommer de att behandlas som ett. - + Merge materials with same name Sammanfoga material med samma namn @@ -2610,25 +2643,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_tr.qm b/src/Mod/Arch/Resources/translations/Arch_tr.qm index bc6800163a12b9a44f5e4bfc09b1781d392f5f96..d2d74509965cbe980a6acbd602655f08481dd285 100644 GIT binary patch delta 6424 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 m6guM}O)ug90)+jmRP~z^9v Arch - + Components Bileşenler @@ -44,12 +44,12 @@ Eksen kabarcık boyutu - + Remove Kaldır - + Add Ekle @@ -84,57 +84,57 @@ Zemin - + removing sketch support to avoid cross-referencing Referans çakışmalarını önlemek için kroki desteği kaldırılıyor - + is not closed Kapalı değil - + is not valid geçerli değil - + doesn't contain any solid herhangi bir katı içermiyor - + contains a non-closed solid kapalı olmayan katı içerir - + contains faces that are not part of any solid herhangi bir katı parçası olmayan yüzler içerir - + Grouping Gruplandırma - + Ungrouping Grubu çözme - + Split Mesh Parçacıkları ayır - + Mesh to Shape Parçacıklardan şekle - + All good! no problems found Her şey yolunda! hiçbir sorun bulunamadı @@ -159,7 +159,7 @@ Nesneler - + closing Sketch edit Kroki düzenlemesi kapatılır @@ -219,27 +219,27 @@ Konum Oluştur - + Create Structure Yapı Oluştur - + The length of this element, if not based on a profile Bu öğenin uzunluğu ana profile göre değil - + The width of this element, if not based on a profile Bu öğenin genişliği ana profile göre değil - + The height or extrusion depth of this element. Keep 0 for automatic Bu öğenin yüksekliğini veya ekstrüzyon derinliği. Otomatik olması için 0 (Sıfır) yapın - + Axes systems this structure is built on Bu yapı için eksen sistemlerini oluştur @@ -249,7 +249,7 @@ Bu objenin bormal ekstrüzyon yönü ( Otomatik tanımlamak için (0,0,0) olarak ayarlayın) - + The element numbers to exclude when this structure is based on axes Bu yapı eksenlere dayandığında eleman numaralarını dışlamak için @@ -309,57 +309,57 @@ Geçersiz bir katı model Mesh'i - + Create Window Pencere oluşturma - + the components of this window Bu pencerenin bileşenleri - + Edit Düzenle - + Create/update component Oluştur/Güncelleştir bileşeni - + Base 2D object Temel 2D nesne - + Wires Teller - + Create new component Yeni bileşen oluştur - + Name Isim - + Type Türü - + Thickness Kalınlık - + Z offset Z ofset @@ -405,12 +405,12 @@ Numaralandırma stili - + Add space boundary Boşluk sınırı ekleme - + Remove space boundary Boşluk sınırını kaldırma @@ -445,12 +445,12 @@ Çerçeve oluşturma - + Create Rebar İnşaat demiri oluşturun - + Please select a base face on a structural object Yapısal bir nesne üzerinde temel bir yüz seçiniz @@ -579,22 +579,12 @@ Merdivenlerden kenarlığı ve yapı arasındaki uzaklık - - Wood - Odun - - - - Steel - Çelik - - - + Structure options Yapısal seçenekler - + Preset Ön ayar @@ -604,7 +594,7 @@ Uzunluk - + Rotate Döndür @@ -614,27 +604,27 @@ Devam - + An optional extrusion path for this element Bu öğe için bir isteğe bağlı ekstrüzyon yolu - + Armatures contained in this element Bu öğede bulunan armatürler - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Bir şekil hesaplanamadi @@ -674,39 +664,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Pencere seçenekleri - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Unable to create component @@ -731,12 +721,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Yapısal sistemi oluşturmak @@ -753,38 +743,38 @@ Hata: IfcOpenShell sürümü çok eski - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -814,12 +804,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object Bu nesne için bir malzeme @@ -834,17 +824,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1059,12 +1049,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1176,12 +1166,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1301,27 +1291,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1361,7 +1351,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1381,47 +1371,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Kategori + + + + Key + Key + + + + Value + Değer + + + + Unit + Birim + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1480,12 +1505,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Parça ekle - + Adds the selected components to the active object Seçili bileşenleri etkin nesneye ekle @@ -1506,12 +1531,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1532,17 +1557,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Kontrol Et - + Checks the selected objects for problems Seçili nesneler için sorunları denetler - + Explore the contents of an Ifc file IFC dosyasının içeriği keşfedin @@ -1550,12 +1575,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Close holes - + Closes holes in open shapes, turning them solids Closes holes in open shapes, turning them solids @@ -1563,12 +1588,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1628,12 +1653,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1641,11 +1666,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1675,12 +1713,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Parçacıklardan şekle - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1701,12 +1739,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar İnşaat demiri - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1714,12 +1752,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Bileşeni kaldır - + Remove the selected components from their parents, or create a hole in a component Seçili bileşenleri bağlı oldukları ana bileşenlerden ayır, veya bileşen içinde bir delik oluştur @@ -1727,12 +1765,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Arktan şekilleri çıkarır - + Removes cubic shapes from Arch components Ark parçalarından kübik şekilleri çıkarır @@ -1779,12 +1817,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Dallanmamış kafesleri seç - + Selects all non-manifold meshes from the document or from the selected groups Belgeden veya seçili grup içerisinden dallanmamış kafeslerin tamamını seçer @@ -1823,12 +1861,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Parçacıkları ayır - + Splits selected meshes into independent components Seçili parçacıkları bağımsız bileşenlere ayır @@ -1844,12 +1882,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Yapı - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Bir yapı nesnesini sıfırdan veya seçilmiş bir nesneden (çizim, çizgi, yüz veya katı cisim) oluşturur @@ -1857,12 +1895,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Survey - + Starts survey Starts survey @@ -1870,12 +1908,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2082,27 +2120,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Bu, yeni yapı nesneleri için varsayılan renktir - + 2D rendering 2D rendering - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2171,11 +2209,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Yapışma - - - Walls drawing - Duvar çizimi - Auto-join walls @@ -2192,82 +2225,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Hızlı dönüşüm - + Tolerance: Dayanıklılık: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Kesme yöntemi - + Show debug messages Hata ayıklama iletilerini göster - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Kimlik numarası ile ad öneki - + Exclude list: Dışlama listesi: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2317,22 +2350,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Şeffaflık: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2362,27 +2395,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Kalınlık - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2392,7 +2425,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2402,102 +2435,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2607,25 +2640,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_uk.qm b/src/Mod/Arch/Resources/translations/Arch_uk.qm index 0f8befba0988a272756bd11004c92c8ca5610572..af5474de614cc5350dfac7bc0acc3ed259f57577 100644 GIT binary patch delta 6355 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 AO#lD@ delta 4275 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 Arch - + Components Компоненти @@ -44,12 +44,12 @@ Розмір міток осей - + Remove Видалити - + Add Додати @@ -84,57 +84,57 @@ Ярус - + removing sketch support to avoid cross-referencing видалення в ескізі порожніх перехресних посилань - + is not closed не замкнений - + is not valid неприпустимо - + doesn't contain any solid не містить жодного суцільного тіла - + contains a non-closed solid містить незамкнене суцільне тіло - + contains faces that are not part of any solid містить поверхні, які не належать жодному суцільному тілу - + Grouping Групування - + Ungrouping Розгрупування - + Split Mesh Розділити меш - + Mesh to Shape Меш у форму - + All good! no problems found Все добре! Проблем не виявлено @@ -159,7 +159,7 @@ Об'єкти - + closing Sketch edit закрити редагування ескізу @@ -219,27 +219,27 @@ Створити ділянку - + Create Structure Створити структуру - + The length of this element, if not based on a profile Довжина елемента, якщо вона не визначена в профілі - + The width of this element, if not based on a profile Ширина елемента, якщо вона не визначена в профілі - + The height or extrusion depth of this element. Keep 0 for automatic Висота або глибина видавлювання елемента. Задайте 0 для автоматичного визначення - + Axes systems this structure is built on Структура системи осей побудована на @@ -249,7 +249,7 @@ Нормальний напрямок видавлювання для цього об'єкта (залишити (0,0,0) для завдання автоматичної нормалі) - + The element numbers to exclude when this structure is based on axes Число виключених елементів при побудові структури на осях @@ -309,57 +309,57 @@ Ця сітка є недійсним тілом - + Create Window Створити вікно - + the components of this window компоненти цього вікна - + Edit Правка - + Create/update component Створити або оновити компонент - + Base 2D object Базовий двовимірний об’єкт - + Wires Каркас - + Create new component Створити новий компонент - + Name Назва - + Type Тип - + Thickness Товщина - + Z offset Z-зміщення @@ -405,12 +405,12 @@ Стиль нумерації - + Add space boundary Додати відступ - + Remove space boundary Прибрати відступ @@ -445,12 +445,12 @@ Створити каркас - + Create Rebar Створити арматуру - + Please select a base face on a structural object Оберіть базову поверхню об'єкту, що будується @@ -579,22 +579,12 @@ The offset between the border of the stairs and the structure - - Wood - Деревина - - - - Steel - Сталь - - - + Structure options Варіанти структури - + Preset Preset @@ -604,7 +594,7 @@ Довжина - + Rotate Обертання @@ -614,27 +604,27 @@ Продовжити - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element Структурні вузли цього елемента - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Не вдалося обчислити форму @@ -674,39 +664,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Вкажіть грань на існуючому об'єкті або виберіть заготовку - + Window options Параметри вікна - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Не вдалося створити компонент @@ -732,12 +722,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System Створити Структурну систему @@ -755,38 +745,38 @@ Помилка: ваша версія IfcOpenShell застаріла - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Неприпустима січна площина - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -816,12 +806,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -836,17 +826,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape має неприпустиму форму - + has a null shape has a null shape @@ -1061,12 +1051,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1178,12 +1168,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1303,27 +1293,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1363,7 +1353,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1383,47 +1373,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + Категорія + + + + Key + Key + + + + Value + Значення + + + + Unit + Одиниця + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1482,12 +1507,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component Додати компонент - + Adds the selected components to the active object Додає обраний компонент до активного об’єкту @@ -1508,12 +1533,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1534,17 +1559,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check Перевірити - + Checks the selected objects for problems Перевірити виділені об'єкти на наявність проблем - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1552,12 +1577,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes Close holes - + Closes holes in open shapes, turning them solids Закриває отвори у відкритих формах, перетворюючи їх на суцільні тіла @@ -1565,12 +1590,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1630,12 +1655,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1643,11 +1668,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc Explorer + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1677,12 +1715,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape Меш у форму - + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects @@ -1703,12 +1741,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar Арматура - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1716,12 +1754,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component Видалити компонент - + Remove the selected components from their parents, or create a hole in a component Видалення обраних компонентів від своїх батьків, або створити отвір в компоненті @@ -1729,12 +1767,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch Видалити фігуру з Arch - + Removes cubic shapes from Arch components Видаляє з компонентів Arch кубічні фігури @@ -1781,12 +1819,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes Обрати немноговидні сітки - + Selects all non-manifold meshes from the document or from the selected groups Виділяє всі немноговидні сітки з документу або обраних груп @@ -1825,12 +1863,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh Розділити меш - + Splits selected meshes into independent components Розбиває меш на незалежні компоненти @@ -1846,12 +1884,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure Структура - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Створює об’єкт структуру з нуля, або з обраного об’єкту (ескіз, дріт, поверхня або суцільна) @@ -1859,12 +1897,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey Перегляд - + Starts survey Почати перегляд @@ -1872,12 +1910,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2084,27 +2122,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Це колір за замовчуванням для нових об'єктів Структура - + 2D rendering 2D візуалізація - + Show debug information during 2D rendering Show debug information during 2D rendering - + Show renderer debug messages Show renderer debug messages - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2173,11 +2211,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping Snapping - - - Walls drawing - Walls drawing - Auto-join walls @@ -2194,82 +2227,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces Якщо позначено цей пункт, перетворення відбувається швидше, але результат все ще може містити тріангульовані поверхні - + Fast conversion Fast conversion - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Показати повідомлення відлагодження - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Список виключень: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2319,22 +2352,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Прозорість: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2364,27 +2397,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Товщина - + Force export as Brep Примусовий експорт як Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2394,7 +2427,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2404,102 +2437,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2609,25 +2642,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-CN.qm b/src/Mod/Arch/Resources/translations/Arch_zh-CN.qm index d2ac81dc29b55ef45fab1d25e28e21bfcf80b125..cdc8b9ee9cf91e766560a9a24243216fe587879d 100644 GIT binary patch delta 6343 zcmb7H2UJv7*F96-^r9jns5pvPA`)UDidYaVSkMSq5X&(0fYD(FX9fY=pnwe<3}B71 zU?;ZG1hEUoMid*y5;Y;3glH0@F@9?F+mA6wvc9bK|I6hZ-hKC;d&=JX-uL*F;JX_F zdvJ-q>A7Fl7JS*N`LRhGj(pvZr~wfPLx`5$g?&oYY%P(v7tt*@qIR$=ejyrIM8tF@ z8Wc^m{u$A*O+;HK5q)%)$h#R)jFCu};IdW)QTk=9%Z0rHyO*e@0`?LK?Musuq`OGC zOh6>_aar3_5^mm1WEn-mZLn@y5*`u~HU5o+RZEBpnh_&ALe%0JF@w4hwH)fQmTF=W zt`YgnC8lr`k^fDXotIC{diYs*gqY(j0&7CdDfrW0COh+$A2Q{UtPC0T^C8uKWHNR+ zHSAwN6dpiLbW4d&4OJ2vG;k=9e>9-pT};-{7Z{?=^puHCu21)y#OVd=+2wH^C(fo8{VdCK>bQ5Z|BTC zL`8#npU$cV`seX>eSC$eqL{Zk1RGBo!#nwE0?`!}uOh*R$g!CB$F@wOs|R@hNksrW z8J}mz{LbU}vgdg2Mtnso<{j9|@6u`=#CO;Kk@8XqNOaKJY>eK%;?F99<37>+jENpZrX2p<1;|t}nZMw$jA%<^ z{<6nd-!h56yf4;yf90}s`ttLebVDFl_?z2ViH>gL@0@SH3KaL_@4Jo+Hz)BAkmknSt@{i>L{j;a?kDqUiRxIb26xF{4)_KX&;9FC9{cWP6q$$ z#t1O0NFZ$Rf~d+Qkd{9sa(5FnyNOn^UkJQMeTPbaD`>k9{BJN%(7`^vD}>~h;JqKp zAqb-dem^=vLx-T>GAwl4CFoy`4HQyATyq21}dxfaeK)bLk z1rCPjg{Kd0M7s8M-;qUmZ;OLGy?!hWKRB9wYih-gVrD0r+8t&jm5Rr^Jsn6DBw z6o|Hj!SU1uqTSO#&rJ_Sd*3t$8)8Id*^t-)Hqj-nGO@EoReg|v@pIAj;3q`OD@709 z$9UjS(f3jCzj3qZslZ+ajTVUh)M8@4b7EoH8KM#U#F9`IQHqyXIW`)1fMBued^Nzc z%VjfC#J;vju)$N@_FyW}`)kCVc?XDwUls?t#S#T)ivvGu3)@88UC2zg>XLhMC1tjr54TrFir!v>VTtJa8jd0|6Gw0QTCZbYqo#CrxH z;-k&Q=bq1p0CkY?KQ@6CA4uAiV}q$ZC2ek{5MAsb@tuR`1{IQ?3$LPrQIdX(7eg@z zN(RNcv{aIHluul@WcFC)IT>1~}zXL-AIic&F58g!S4db$BMjVW4!4tq0g}K)Pn< zcMv3#^plD^$UINFt?*}};u`7aoJ4;aDm}O#ft(XcOCKO``{JF_<3UFunT@0;rr(6} zEtQ@+dJgoNExkGtfwkBnt+M!?hZNwWX6FcEbX$z^45#N@~Wm%QI zwFK+?%6IAPkpNjU`R-so=u;-&U2-4v=qNw<0~Ta2ksn%y0CMlj&zyF{@fje$(7QiT z#t!*Ke`MmZRbKfSS}{Z@zw@XA6my*Xe)S@v<4*Zcg6T-?l>D&)V2n5_e>oHLMWqUU zF{F7~ih}>l0NwCbi0x@taax5any6=EV7S7&636f{Z-sAf1h(LyqK`iUGsi22+yU5< z4k;qm_+VV8$b7Q{ir7+-?^i_Bx=^vA4FYd;L9zC>6K6&T#kS{X!HPc>WpAzll#z<^ z$_(6;epOuYL#ub{6jd7=LqAR`?ALd|f%1LD-576th+I_EbVKF^lN8VIqDM_L6|Yu^ zaEJ_6y!IOgOdMD8+IGPmuDw#wc0XvDq7*Ez#+A0IQYglTi*G3<%b(y32v91w9U$5l zt@OSL|MFGJfIZJa&!ftoJ;QMwf2r)PISqkJwkt#S7vQt#6Xo!o7NT7vl*tbPI`3>{ z#vOnw=40i&)uCX=7-g;(&>fVf%q@1u)vJ@TaK%&Tz#Zkv!hBrQ4=Rfq;6@ZNTe*3v zFHvusa$8V0fUT=?dyx*p^IEy9?`zO)uyXfiR8IfC^2DrxsI0xMvV5WySFGd8@-xB6 zJXl%z0ui@*ro7!68}_PJJ{sNzr=DK<+Z`=7>Z%fc=EU)tplW&hchK;GN)y`^--l7E z_KY4MB7;>O-5p>BU*&fnEs49W8sdh^(g&)c9V2n*v{gmaz^|rAH8z6_C~UndCZUX| z@|jB8j)9b3R2k;G;mc)<%F@Lhj<2XJ4`GeIs?=x!&i93?tT50lqpfN_$CfPy)#B@@ zP)?jGZ*~y)9->+)1C4bHRXdlo#NpFib+FlQxTHQ%mEK^91bbD-?qc4S-Kz4L0`R{q zPW6Q+B8}>%`m#GRO?$4oa4Q=hB2v}8!iBiiK2$xFuLEi~sh&os0PU|-&kw&K>bOqz zXW&wzy)w1it}I-=hO3(l#(M1qwa4jA__ph=_8yPKiauAjmf=~Qr}i^;0L@>hdz^>g zFS@A1isQil6LNL`xF&bd!LNZK-xLMVl7WF`$6$V56a;#p6u>)CO4U{lANWm5NMAt^Sq#$eJJ zQ}isXCeduQIo3~ecbGjJI^~|-c^<-p!Uu$Ek}c+B)?zcTR*f|o!+L8X%i5gc z7RS_$MKlEK((BdNK+T! zsHj9%V~(55>TH@s?KD<1z+|>*!sB%#-esw^*(`>*6dUWW3Duf(tg(LH8XZ>|gW05s zH(UPl6r^!9NNDQx7!&U0CX9?8KCEs(VYJC$bBwg~Z^$1JTsO*$(i&5o3oQTPJ2$4B zbGLV{-yXytP6IIVZ<+g}M*elaJnOZpUVr@k{lRZ?3$f@DCnCSdcdg?I@M2oMEgfD< zW%hrovJ0G6RFbQ$3z%H@G__qZq&0zE}F;j#~J0p>eF!(G>i0TXF2<#{OP54W**AMlw1^lzMu)h@+tq2{U-`ZH867O0O9UiaIC9=9Hh?Ldp68{2ps=;Vq2~SEkTWUF5KP1Fb5B(hU zn-5GeI1F38oyU$!MP0mU_}@g~AL3ExUOn6;4xqUsc56rHner&%hm&a}+LMGVTsp>5 z8nWSVZ$i^Jjrs>pYMU7ExN*G0U=Dj+gYmy^lWrr~Bs0W^O|!8Ulh#;=5)H5(r?s*g z>lD_8#=J$AiDmVyzP75(&rTEciJ?dU#SCa@5Jw^a!eLks%SB^GG#qR=cyaYK)aw9O z;RMIs3XdMOf7M0QDKgQVs<9;+tQx&RYcwagAZ@6vwZW7C1_B{zT;&~mt2#LIDlRt+ z;CWLN_TdgMuESRR<8<7JeYq}jjHx|v5KpZ-I7~A<>;{bLp!G()yi|b6_R-l9S|6dESJPv_c-=@TI)%KR9 z?fi!`Ob0PoLkf{&?@X_xpX<=Xu}vJh-KKc|v3HED3FJ=C5^` z=bJS;GGX(f-+BY)Y(VG*EE`1m25?*jNIihdsX!~rjL|^l3Y78bdj-uJSHvUe*GI2m>OW-_W4un$QCj`W60Ya=i{79Czk z16K`jYe9uqlF>E#HDEo0ZudF@o8!^#^$EbgDLghu0*gk&$3Gb;i-hkG7eMC;-;zFn z?12GKbAXsr7#K2<&&w^fA7*riUuS;NAh=e>uZLeMBXkI1L~t<=^t^+KIsCpuQLRi_i_n56K*Ixw$l3^ue}*{= zsd%3s64v-L)k86V086&=1D31~#Mi(41Ha@@Xn z4KVoP?PWV)c{Dzpvt=f_;`12F<}vs(lZDLkQyCJIfFE*Hb$vBJfSsydGJmfdr*as= zR4cDky@q=LZQG~@Y-RvKhg1P={{c+@s=~JM{OM#>eEkeyN{%W%lNlKETs6PoFf15+ zL$&qV8z8fZs$gC*u<@PhmxLOk{e!A#{Z*i1hiX?Z8jh%=I{tASa8|E67v2I`@lN$` zULtU=SoJ=R4ya_c%EI&C4N=SQ_}uZe+8D=kyHeF1n{D9taq7XRMgqgvs)GjlGqYpW z;}T9=7@?hd+`eysO()gkPmcnYTvmsj4Fftms^hKoSksH@gc2(D@>MSwUmuv(N4+SO zks9u(QxD1n-*NSdm%Q)PQ@ye$?=>!{l?jFF410H=(@FKVR?$F7TXjK76~TKzz2^o4 z+}u#TZ>i-4dF!h#DT*P8ZmN%-ZO#&WRF|(x2M$`)6;D{}-MiJNhA@>q-l@-vTY-dU z>fh?ov4wRsLY@DB3lSQ9#T%fWPSfxaS4b#1L2y?C_1$F zTg{edOle35%^~><9s5gDMSLL2M)R;|CTs1c`9sBf>sx951_Lpz)4aOpPHY5eK36y5 z^LWAJO16|a2!lLclCEO~%h*zhDW4*Q3N$d{FJYFNp3aIAQl|b%{;O)`mH!cz{_R7) zP84#kX_%R6VSDEwVC`sO`|qKE@v)G1Wi3IKFYJC9!3Gp9>|4aZX7&=w!>$6ZjzW1X z?+@@4Dob}V6T^i|-?Pg$u(Jr)?V<>_2EwiR9f7XD33r-#0m&7@lVGN5&Qam%Cn|C{ zC+hY5J)l}NyU^gUrDB8IEJb`5(V;JEuJ#d~BYAG;4bgQ7>DsuC=(*uI8&o&3*MtYa z;u3N2FNgU&PxSkb8F5`D2I-l}ewJi$%q<$)XCqGbO#}{AijxP^(1Azdbnv_;T`p^3N#C&$$n< z+D<$=f{Kpb7b~Au0>5q&FMfXmI2k2g_hdvNqIg5z3us%2_sYtEOB==C2ZeKpwGclY zYY*&iCw@N0%sSrG8lJ}S_x@U&ioWE3T&1?j^ju)_UafOyde$Xa`&~Xg3!9{MtD(Uw z{j~0ahLKci10$2!aQbLR&dOj${In56<^XmVwGo#X+2kng%rY7p-%J}dFcX-VuZ_;U z0Bp(8#y5{($&(k}Pt!*U^bOZu{+f}X5!&nCbbQKm?G4Y@q^+m+k8ksLZrSLqJ2<*X}C=&9k-DJKe7bw3DTHq1~}=9G{Mq>p35~-s2dHYeU>IYEG6&9 zNl{ODAjKrjR_z7m%2MJFF>Ej?(#nzwz$Zys)!!K?Dw9^*OU>O6;lB6O>+F5Z-+I7gCV0+P`d(dhxD&^4OI?z*fouuW6)qXf40qHOTSI_RopdK^=t$5fi|*vmbfR~c?#yXM z=xw8WoTcHW(_Q!YA#1-jTlb-a5!wgpjk6iaMsIzqb`7{8z0h~)=}0@!VZTI8dLL^#a&2S%2Vb%RS+xFWpN=j(yRW{Xx$c*ViBQILuVf*B_g6 zo1H9Cf8y{NvLRYu^#dJiv{8RO>L0S@jlSA80Jzvif4@fthgy`rCYyGmeDu$=`Mo76 zLpHCaq3MU@da+x9I)`Pu#UbSFd%1Bqd-(YlveP*Zp(zz|v(TS`Gi9=uHjyniM)q!U zojv`m?A_LdJ-)r{J(iK0UF47oTViUTYuR)5G4&<^88<(6Nntq#rK?o8`)UDt2fipDmV{ z>eljgDT%!IkYC+kCfxkx_l+Yd-y7s|>JgV3I#0Sl(77ABns{zyrD0eHw&sQThEYAE z*�*#*Yjm|2@48VP4Lp;d#UIHR)U^IvduF{*$R}VAxVsLRJ(SibDJeB74IwPc_*v z*RZSPA<_QXQ2L1H7rrgp6;Fj9XsD2y4Uj5Q2&936b z_eOj3eD;IpMyE?0qa~Y-E?#sj*~RGHo{s(KWE^yt;F=n39Fo%lNV;fD{E|-)IvO)v zbAe_N#x>4#yl%O1UA2`PQ6poXs#uv z9~?K{$fpA1CgZ&zC%!L)8K1Z_@>S=I@9wcg^=BJDuF(?R_l=)j{fLEqCRNLhT)p%r zP0PK+g2AL&Sp(!|nFNXU7WX&lR=#En*O@G)ynR67Rg=?g8ZgMF4#n?)&;V2S?gN0- zaFbWlN+7(osn_02ATH1}v>*z|yI`8}j9_a#(zM_%!8J10^wZCM$c75jDo3Ka+f>u4 zLOU)fiYaT&8}fa>DLX5J9dD*7w+{zX=iQ-Q9s30)blfI zyx+8I8&fw?G963k&y3tPRg8~j2EH>@obqJkd8SMM(cz}2P1Stsf#-G8^P$dk{DbM$ z-Cz!{XNs`j$|+Z^G^zfFw7aD=9n*=gal@6?Vkl|1UukQX&J0;<6xWBW$%MViAX}yu z-zkIJ`g4Vg5^zsoHI&k z!&lsLZz*NB!T`-~<;XoA+%i_Fm`8;N?Ua)abo2+4a=t4gomH${xRcCOe^h?YS`5q| zsXQ}mAZSM`ZvtYuYE>!k4*myxGgJB0ISnXCHQN>?adT>Awjap*zeQ^87Dzx3g4yxV_n@a3bk)*xYyGYp&U)=73{?Y&1j7lXir# zGu}0a=M(k5f##`cx4ES5HpkcS+$^nm(aydcLLxU zgG_&AAmPL6$|wiUu#b42~$Ss`%x^iZqM?3;Gh z$t&(Rwn|02_0~rv#|+kfC-hqDFK34f*2|Y>X{=wWuGF>edbC#M=7>N9V;cXX(G;PG m;!_+V5Q*^rS8ECko;EGIX=qe%TtsAedb7NiR^KP<)c*_qU;TFg diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-CN.ts b/src/Mod/Arch/Resources/translations/Arch_zh-CN.ts index 3b974f824..0b3b29c48 100644 --- a/src/Mod/Arch/Resources/translations/Arch_zh-CN.ts +++ b/src/Mod/Arch/Resources/translations/Arch_zh-CN.ts @@ -4,7 +4,7 @@ Arch - + Components 组件 @@ -44,12 +44,12 @@ 轴线末端圆圈大小 - + Remove 删除 - + Add 添加 @@ -84,57 +84,57 @@ 楼板 - + removing sketch support to avoid cross-referencing 移除草绘支持以避免交叉引用 - + is not closed 不闭合 - + is not valid 无效 - + doesn't contain any solid 不含实体 - + contains a non-closed solid 包含未封闭实体 - + contains faces that are not part of any solid 包含不属于任何实体的面 - + Grouping 成组 - + Ungrouping 解组 - + Split Mesh 拆分网格 - + Mesh to Shape 网格转换为形体 - + All good! no problems found 一切正常!未发现问题 @@ -159,7 +159,7 @@ 对象 - + closing Sketch edit 关闭草绘编辑 @@ -219,27 +219,27 @@ 创建场地 - + Create Structure 创建结构体 - + The length of this element, if not based on a profile 该元素长度,其不基于轮廓 - + The width of this element, if not based on a profile 该元素宽度,其不基于轮廓 - + The height or extrusion depth of this element. Keep 0 for automatic 此元素的高度或拉伸长度.0表示自动 - + Axes systems this structure is built on 该结构基于的轴网系统 @@ -249,7 +249,7 @@ 该对象的法向拉伸方向((0,0,0)表示自动法向) - + The element numbers to exclude when this structure is based on axes 元素编号,以排除这种结构基于轴时 @@ -309,57 +309,57 @@ 该网格是无效实体 - + Create Window 创建窗 - + the components of this window 此窗的组件 - + Edit 编辑 - + Create/update component 创建/更新组件 - + Base 2D object 二维基对象 - + Wires 线框 - + Create new component 创建新组件 - + Name 名称 - + Type 类型 - + Thickness 厚度 - + Z offset Z偏移量 @@ -402,12 +402,12 @@ 编码风格 - + Add space boundary 添加空间边界 - + Remove space boundary 移除空间边界 @@ -442,12 +442,12 @@ 创建框架 - + Create Rebar 创建螺纹钢 - + Please select a base face on a structural object 请选择一个基础面结构的对象上 @@ -574,22 +574,12 @@ The offset between the border of the stairs and the structure - - Wood - 木头 - - - - Steel - - - - + Structure options 结构选项 - + Preset 预设​​​​ @@ -599,7 +589,7 @@ 长度 - + Rotate 旋转 @@ -609,27 +599,27 @@ Con & 继续 - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element Armatures contained in this element - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -669,39 +659,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options Window options - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) The width of this window (for preset windows only) - + The height of this window (for preset windows only) The height of this window (for preset windows only) - + The normal direction of this window The normal direction of this window - + Unable to create component Unable to create component @@ -727,12 +717,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System 创建结构体系 @@ -751,38 +741,38 @@ - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -812,12 +802,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object A material for this object @@ -832,17 +822,17 @@ Specifies if this object must move together when its host is moved - + has no solid has no solid - + has an invalid shape has an invalid shape - + has a null shape has a null shape @@ -1057,12 +1047,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the unit suffix - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1174,12 +1164,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1299,27 +1289,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1359,7 +1349,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1379,47 +1369,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + 类别 + + + + Key + Key + + + + Value + + + + + Unit + 单位 + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git Options - + What to commit What to commit - + All files in folder All files in folder - + Only this .FcStd file Only this .FcStd file - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1478,12 +1503,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component 添加组件 - + Adds the selected components to the active object 将选定的组件添加到当前对象 @@ -1504,12 +1529,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM server - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1530,17 +1555,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check 检查 - + Checks the selected objects for problems 检查所选对象的问题 - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1548,12 +1573,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes 封闭孔 - + Closes holes in open shapes, turning them solids 封闭开孔形体,转换为实体 @@ -1561,12 +1586,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1626,12 +1651,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1639,11 +1664,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer IFC导出 + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1673,12 +1711,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape 网格转换为形体 - + Turns selected meshes into Part Shape objects 转换所选网格为零件形体对象 @@ -1699,12 +1737,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar 钢筋 - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1712,12 +1750,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component 删除组件 - + Remove the selected components from their parents, or create a hole in a component 从父对象中删除选定组件,或在组件上创建孔 @@ -1725,12 +1763,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch 从建筑元素中移除形体 - + Removes cubic shapes from Arch components 从建筑组件移除立方体 @@ -1777,12 +1815,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes 选择非流形网格 - + Selects all non-manifold meshes from the document or from the selected groups 选择文档中或所选组中的所有非流形网格 @@ -1821,12 +1859,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh 拆分网格 - + Splits selected meshes into independent components 将选定的网格拆分为独立组件 @@ -1842,12 +1880,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure 结构 - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) 从零开始或从选定的对象(线,面或体)创建结构体 @@ -1855,12 +1893,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey 调查 - + Starts survey Starts survey @@ -1868,12 +1906,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag Toggle IFC Brep flag - + Force an object to be exported as Brep or not Force an object to be exported as Brep or not @@ -2080,27 +2118,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela 新建结构对象的默认颜色 - + 2D rendering 2D 渲染 - + Show debug information during 2D rendering 在2D渲染期间显示调试信息 - + Show renderer debug messages 显示渲染调试消息 - + Cut areas line thickness ratio Cut areas line thickness ratio - + Specifies how many times the viewed line thickness must be applied to cut lines Specifies how many times the viewed line thickness must be applied to cut lines @@ -2169,11 +2207,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping 对齐功能 - - - Walls drawing - Walls drawing - Auto-join walls @@ -2190,82 +2223,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion Mesh to Shape Conversion - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion Fast conversion - + Tolerance: Tolerance: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method Cut method - + Show debug messages Show debug messages - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number If this is checked, object names will be prefixed with the IFC ID number - + Prefix names with ID number Prefix names with ID number - + Exclude list: Exclude list: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2315,22 +2348,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela 透明度: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2360,27 +2393,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela 厚度 - + Force export as Brep Force export as Brep - + Bim server Bim server - + Address Address - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2390,7 +2423,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options Export options @@ -2400,102 +2433,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options General options - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options Import options - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. If several materials with the same name are found in the IFC file, they will be treated as one. - + Merge materials with same name Merge materials with same name @@ -2605,25 +2638,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-TW.qm b/src/Mod/Arch/Resources/translations/Arch_zh-TW.qm index b22959b35399402ea5db0d84fdb02f9ae41f483c..9b7291d8c903c75e7fc50e217542f601ae0b34d1 100644 GIT binary patch delta 6393 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 F@ISqL6;%KL delta 4249 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 diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-TW.ts b/src/Mod/Arch/Resources/translations/Arch_zh-TW.ts index 44094329a..ef24b7d54 100644 --- a/src/Mod/Arch/Resources/translations/Arch_zh-TW.ts +++ b/src/Mod/Arch/Resources/translations/Arch_zh-TW.ts @@ -4,7 +4,7 @@ Arch - + Components 組件 @@ -44,12 +44,12 @@ 軸之標示大小 - + Remove 移除 - + Add 新增 @@ -84,57 +84,57 @@ 地面 - + removing sketch support to avoid cross-referencing 移除草圖基礎避免交叉參考 - + is not closed 未封閉 - + is not valid 錯誤 - + doesn't contain any solid 未包含任何物體 - + contains a non-closed solid 包含一個未封閉物體 - + contains faces that are not part of any solid 具有非任何實體部份之面 - + Grouping 群組 - + Ungrouping 取消群組 - + Split Mesh 分割Mesh - + Mesh to Shape 形狀的網格 - + All good! no problems found 完全正確!沒有錯誤 @@ -159,7 +159,7 @@ 物件 - + closing Sketch edit 關閉素描編輯 @@ -219,27 +219,27 @@ 建立地點 - + Create Structure 建立結構 - + The length of this element, if not based on a profile 若無基於輪廓,此為元素之長 - + The width of this element, if not based on a profile 若無基於輪廓,此為元素之寬 - + The height or extrusion depth of this element. Keep 0 for automatic 此元素之高或擠壓深度自動保持為0 - + Axes systems this structure is built on 建構此結構之軸系統 @@ -249,7 +249,7 @@ 此物件之垂直延展方向(保持0,0,0)自動垂直 - + The element numbers to exclude when this structure is based on axes 當此結構建立於軸上時排除元素於數量 @@ -309,57 +309,57 @@ 此網格為無效實體 - + Create Window 建立窗戶 - + the components of this window 此窗之元件 - + Edit 編輯 - + Create/update component 建立/更新元件 - + Base 2D object 基礎 2D 物件 - + Wires - + Create new component 建立新元件 - + Name 名稱 - + Type 類型 - + Thickness 厚度 - + Z offset Z方向偏移 @@ -403,12 +403,12 @@ 編號樣式 - + Add space boundary Add space boundary - + Remove space boundary Remove space boundary @@ -443,12 +443,12 @@ Create Frame - + Create Rebar 建立鋼筋 - + Please select a base face on a structural object 請於結構物件上選取一個基礎面 @@ -575,22 +575,12 @@ The offset between the border of the stairs and the structure - - Wood - 木材 - - - - Steel - - - - + Structure options 結構選項 - + Preset 預設 @@ -600,7 +590,7 @@ 長度 - + Rotate 旋轉 @@ -610,27 +600,27 @@ 連續 - + An optional extrusion path for this element An optional extrusion path for this element - + Armatures contained in this element 此元素中還有鋼筋組 - + The structural nodes of this element The structural nodes of this element - + Error: The base shape couldn't be extruded along this tool object Error: The base shape couldn't be extruded along this tool object - + Couldn't compute a shape Couldn't compute a shape @@ -670,39 +660,39 @@ The offset between this wall and its baseline (only for left and right alignments) - + Pick a face on an existing object or select a preset Pick a face on an existing object or select a preset - + Window options 窗戶選項 - + The depth of the hole that this window makes in its host object. Keep 0 for automatic. The depth of the hole that this window makes in its host object. Keep 0 for automatic. - + The width of this window (for preset windows only) 此扇窗之寬度(僅對預設窗) - + The height of this window (for preset windows only) 此扇窗之高度(僅對預設窗) - + The normal direction of this window 此窗戶之法線方向 - + Unable to create component 無法建立元件 @@ -727,12 +717,12 @@ Distances (mm) and angles (deg) between axes - + Error computing the shape of this object Error computing the shape of this object - + Create Structural System 建立結構系統 @@ -749,38 +739,38 @@ 錯誤:IfcOpenShell為舊版 - + Found a shape containing curves, triangulating Found a shape containing curves, triangulating - + Invalid cutplane Invalid cutplane - + No objects are cut by the plane No objects are cut by the plane - + Object doesn't have settable IFC Attributes Object doesn't have settable IFC Attributes - + Disabling Brep force flag of object Disabling Brep force flag of object - + Enabling Brep force flag of object Enabling Brep force flag of object @@ -810,12 +800,12 @@ An optional tag for this component - + Custom IFC properties and attributes Custom IFC properties and attributes - + A material for this object 此物件之材料 @@ -830,17 +820,17 @@ Specifies if this object must move together when its host is moved - + has no solid 無實體 - + has an invalid shape 有一錯誤造型 - + has a null shape 有一空造型 @@ -1055,12 +1045,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela 顯示單位 - + A description of the standard profile this element is based upon A description of the standard profile this element is based upon - + Sill height Sill height @@ -1172,12 +1162,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela The type of this building - + removing sketch external reference to avoid cross-referencing removing sketch external reference to avoid cross-referencing - + Create Component Create Component @@ -1297,27 +1287,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Show the cut in the 3D view - + This document is not saved. Please save it first This document is not saved. Please save it first - + The Python Git module was not found. Please install the python-git package. The Python Git module was not found. Please install the python-git package. - + This document doesn't appear to be part of a Git repository. This document doesn't appear to be part of a Git repository. - + Warning: no remote repositories. Unable to push Warning: no remote repositories. Unable to push - + The Git repository cannot handle this document. The Git repository cannot handle this document. @@ -1357,7 +1347,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Walls can only be based on Part or Mesh objects - + an optional object that defines a volume to be subtracted from hosts of this window an optional object that defines a volume to be subtracted from hosts of this window @@ -1377,47 +1367,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Set text position - + Unable to extrude the base shape Unable to extrude the base shape + + + Category + 類別 + + + + Key + Key + + + + Value + + + + + Unit + 單位 + + + + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + The object have not IfcProperties attribute. Cancel spreadsheet creation for object : + + + + Create IFC properties spreadsheet + Create IFC properties spreadsheet + + + + Auto include in host object + Auto include in host object + ArchGitOptions - + Git Options Git 選項 - + What to commit What to commit - + All files in folder 資料夾中所有之檔案 - + Only this .FcStd file 只有此 .FcStd檔 - + Commit message Commit message - + commit commit - + Push to default remote repository Push to default remote repository @@ -1476,12 +1501,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Add - + Add component 增加組件 - + Adds the selected components to the active object 增加選定組件至目前物件 @@ -1502,12 +1527,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Bimserver - + BIM server BIM 伺服器 - + Opens a browser window and connects to a BIM server instance Opens a browser window and connects to a BIM server instance @@ -1528,17 +1553,17 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Check - + Check 確認 - + Checks the selected objects for problems 檢查所選物件之問題 - + Explore the contents of an Ifc file Explore the contents of an Ifc file @@ -1546,12 +1571,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_CloseHoles - + Close holes 封閉空洞 - + Closes holes in open shapes, turning them solids 於封閉開口之造型並轉為實體 @@ -1559,12 +1584,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Component - + Component Component - + Creates an undefined architectural component Creates an undefined architectural component @@ -1624,12 +1649,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Git - + Commit with Git Commit with Git - + Commits the current document Commits the current document @@ -1637,11 +1662,24 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_IfcExplorer - + Ifc Explorer Ifc 瀏覽器 + + Arch_IfcSpreadsheet + + + Create IFC spreadsheet... + Create IFC spreadsheet... + + + + Creates a spreadsheet to store ifc properties of an object. + Creates a spreadsheet to store ifc properties of an object. + + Arch_Material @@ -1671,12 +1709,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_MeshToShape - + Mesh to Shape 形狀的網格 - + Turns selected meshes into Part Shape objects 轉換選定之網格為零件造型物件 @@ -1697,12 +1735,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Rebar - + Rebar 鋼筋 - + Creates a Reinforcement bar from the selected face of a structural object Creates a Reinforcement bar from the selected face of a structural object @@ -1710,12 +1748,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Remove - + Remove component 移除原件 - + Remove the selected components from their parents, or create a hole in a component 由其家族中移除選定物件或於物建中建立空洞 @@ -1723,12 +1761,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_RemoveShape - + Remove Shape from Arch 由建築中移除造型 - + Removes cubic shapes from Arch components 移除建築元件中之方塊形狀 @@ -1775,12 +1813,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SelectNonSolidMeshes - + Select non-manifold meshes 選擇非重疊網格 - + Selects all non-manifold meshes from the document or from the selected groups 由檔案或所選之群組中選取所有非重疊網格 @@ -1819,12 +1857,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_SplitMesh - + Split Mesh 分割Mesh - + Splits selected meshes into independent components 分割選定Mesh為獨立物件 @@ -1840,12 +1878,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Structure - + Structure 結構 - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) 由草圖或選定物件(草圖,線,面或固體)建立結構物件 @@ -1853,12 +1891,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_Survey - + Survey 查詢 - + Starts survey 開始查詢 @@ -1866,12 +1904,12 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Arch_ToggleIfcBrepFlag - + Toggle IFC Brep flag 切換 IFC Brep 標示 - + Force an object to be exported as Brep or not 是否強制將一物件以Brep格式輸出 @@ -2078,27 +2116,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela 此為新結構物件之預設色彩 - + 2D rendering 2D 彩現 - + Show debug information during 2D rendering 於2D彩現時顯示除錯訊息 - + Show renderer debug messages 顯示彩現器錯誤訊息 - + Cut areas line thickness ratio 切割面積之線寬比例 - + Specifies how many times the viewed line thickness must be applied to cut lines 指定提供切割線之可視線寬倍數 @@ -2167,11 +2205,6 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Snapping 對齊 - - - Walls drawing - Walls drawing - Auto-join walls @@ -2188,82 +2221,82 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Join walls base sketches when possible - + Mesh to Shape Conversion 網格轉換至造型 - + If this is checked, conversion is faster but the result might still contain triangulated faces If this is checked, conversion is faster but the result might still contain triangulated faces - + Fast conversion 快速轉換 - + Tolerance: 公差: - + Tolerance value to use when checking if 2 adjacent faces as planar Tolerance value to use when checking if 2 adjacent faces as planar - + If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results If this is checked, flat groups of faces will be force-flattened, resulting in possible gaps and non-solid results - + Force flat faces Force flat faces - + If this is checked, holes in faces will be performed by subtraction rather than using wires orientation If this is checked, holes in faces will be performed by subtraction rather than using wires orientation - + Cut method 切割方法 - + Show debug messages 顯示除錯資訊 - + If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted If this is checked, openings will be imported as subtractions, otherwise wall shapes will already have their openings subtracted - + Separate openings Separate openings - + If this is checked, object names will be prefixed with the IFC ID number 若勾選此項,將會於物件名稱前加入IFC ID號碼 - + Prefix names with ID number Prefix names with ID number - + Exclude list: 排除清單: - + A comma-separated list of Ifc entities to exclude from import A comma-separated list of Ifc entities to exclude from import @@ -2313,22 +2346,22 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela 透明度: - + Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. Some IFC viewers don't like objects exported as extrusions. Use this to force all objects to be exported as BREP geometry. - + Hidden geomety pattern Hidden geomety pattern - + This is the SVG stroke-dasharray property to apply to projections of hidden objects. This is the SVG stroke-dasharray property to apply to projections of hidden objects. - + 30, 10 30, 10 @@ -2358,27 +2391,27 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela 厚度 - + Force export as Brep 強制匯出為Brep - + Bim server Bim 伺服器 - + Address 位址 - + The URL of a bim server instance (www.bimserver.org) to connect to. The URL of a bim server instance (www.bimserver.org) to connect to. - + http://localhost:8082 http://localhost:8082 @@ -2388,7 +2421,7 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela DAE - + Export options 匯出選項 @@ -2398,102 +2431,102 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela IFC - + General options 一般選項 - + Show verbose information during import and export of IFC files Show verbose information during import and export of IFC files - + Import options 匯入選項 - + Import arch IFC objects as Import arch IFC objects as - + Specifies what kind of objects will be created in FreeCAD Specifies what kind of objects will be created in FreeCAD - + Parametric Arch objects Parametric Arch objects - + Non-parametric Arch objects Non-parametric Arch objects - + Simple Part shapes Simple Part shapes - + One compound per floor One compound per floor - + Do not import Arch objects Do not import Arch objects - + Import struct IFC objects as Import struct IFC objects as - + One compound for all One compound for all - + Do not import structural objects Do not import structural objects - + Root element: Root element: - + Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. Only subtypes of this element will be imported. Keep value as "IfcProduct" to import all building elements. - + IfcProduct IfcProduct - + If this is checked, the importer will try to detect extrusions. This might slow things down... If this is checked, the importer will try to detect extrusions. This might slow things down... - + Detect extrusions Detect extrusions - + If several materials with the same name are found in the IFC file, they will be treated as one. 若於IFC檔案中發現數個相同名稱之材料,其將會被整合為一個。 - + Merge materials with same name 合併相同名稱之材料 @@ -2603,25 +2636,60 @@ If Run = 0 then Run is calculated so that the height is the same one as the rela Allow quads - + Use triangulation options set in the DAE options page Use triangulation options set in the DAE options page - + Use DAE triangulation options Use DAE triangulation options - + Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. Curved shapes that cannot be represented as curves in IFC are decomposed into flat facets. If this is checked, some additional calculation is done to join coplanar facets. - + Join coplanar facets when triangulating Join coplanar facets when triangulating + + + Object creation + Object creation + + + + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + Two possible strategies to avoid circular dependencies: Create one more object (unchecked) or remove external geometry of base sketch (checked) + + + + Remove external geometry of base sketches when needed + Remove external geometry of base sketches when needed + + + + Create clones when objects have shared geometry + Create clones when objects have shared geometry + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + If checked each object will have their Ifc Properties stored in a spreadsheet object. + If checked each object will have their Ifc Properties stored in a spreadsheet object. + + + + Import Ifc Properties in spreadsheet + Import Ifc Properties in spreadsheet + Workbench diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.qm index 2e29fd5b871a916959102c5be744080525709d26..3d9028571af6445efcac753e35074aa9b421a2e7 100644 GIT binary patch delta 395 zcmX@l)y+LYB`t_Wp!6^U1M^E3kKTU_3=Cc@C+>U)^5s}Bo;tz6z@p0LuE7cvXJAh_ zwi(D@!eM!#7%0D*qqYsGj%gXkveusr42;>_YsB4w{QLZ2QGP%=f&Zkl3Q&DSCXo2G zu`8dkehz~xLl#3SLo!1tLkUA7g94Dw1Jj9Mk$eVSh608nAUl;I2`pX!B#XeTWQKf( zT(E3DSgr`DyO<#pNajFIC;+lDfo3NHaVEoOpvejhXb{CtKyIk-VZKtn;!068KT z$jSq|=zQ~lrC@jJd0Mwod)R+m>mdQ}YkT}_oMU$V8!5Ju? n&rk?7Ad{hZatDiwvJ!(6(28OpP65g&fUQyhT8ymjEK3srFG5&P delta 342 zcmWlTKT88a5XIjmdvW6x`O|16D_o(4A3#ejA{HT7SXgqS$=`vUg(n;t#-z7=8W#nJ@q2 zbwvK1tIYW17~6Or0-_=3-z|At9-ld%mN%!rfY%IeCn~&O7uMFR)P=&!Qb_+)%JgvG zH(qZatLS1E777u=B7sI7bLgC!&G+C!~IPQph*W%HnG3yT1aH7Hib&q~G zyT!^dCsd6?>9)@SgR4v}FFD7MM#CVhy;2!9no{g=m{T+8i`h~Ui!@oZxo(1O(nk?a YE7FKG!WO%V9rv+Ye3SPhy7K Self-test... - hola + Auto-prueba... Runs a self-test to check if the application works properly - Runs a self-test to check if the application works properly + Ejecuta una auto-prueba para comprobar si la aplicación funciona correctamente @@ -42,7 +42,7 @@ S&ketch - Bosquejo + Croquis @@ -57,12 +57,12 @@ Sketch based - Basado en esbozo + Basado en croquis Primitives - Primarios + Primitivas Parametric diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_hu.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_hu.qm index 9738f53583c1832b5ee52a23bb330f78c934a002..b1b267489f114ea703f3ebd45e332ad66be42cd3 100644 GIT binary patch delta 133 zcmaFI^@eMLie(gwK8!`a^#5g14 delta 135 zcmaFE^^R+Tie(IoKvo*6J696N &Drafting - Vázlatkészítés &D + Tervrajzkészítés diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pt-PT.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_pt-PT.qm index 86bcfcecdcd727dc055776c0d11e370fe3c0f242..51552e01f75afda1ecae7aaac743c1e5d53a7044 100644 GIT binary patch delta 136 zcmbQwy_I`{3TGROKr%D=ILkF}N_KG86-G9zzC0K7#^-216Q<&H?fg88kQFXI5uaRAO)fazKg_ X8B)NCQWr%3koo(F}N_KG86-G9zzC0{^s}0>WtDd46Z<-B!+y3=Rm9gWF>-?Br>E- IHfOB^0Ny_t<^TWy diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pt-PT.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_pt-PT.ts index f8bb91686..cc19bca28 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_pt-PT.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_pt-PT.ts @@ -37,7 +37,7 @@ Dr&awing - &Desenho + &Desenho (folha) @@ -57,7 +57,7 @@ Sketch based - Esboço baseado + Baseado em esboço diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_sl.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_sl.qm index 14d83bae03b07f8046ff54a69f778a204c06023f..9fcb8a203e28ca5bf8c263d24b3559670e3bc9dc 100644 GIT binary patch delta 20 ccmcb{b&YGn1Wsp$RE8Xee1?*ZGxxFp07?=D>;M1& delta 20 ccmcb{b&YGn1Ws>;e1<$mUWUYtGxxFp07vx(i~s-t diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_sl.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_sl.ts index d25ecb9c1..548398124 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_sl.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_sl.ts @@ -6,7 +6,7 @@ Complete - Končano + Celotno diff --git a/src/Mod/Draft/Resources/translations/Draft.ts b/src/Mod/Draft/Resources/translations/Draft.ts index 4e586e2f2..a2c2a56b7 100755 --- a/src/Mod/Draft/Resources/translations/Draft.ts +++ b/src/Mod/Draft/Resources/translations/Draft.ts @@ -14,12 +14,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point - + Adds a point to an existing wire/bspline @@ -27,12 +27,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... - + Adds the selected object(s) to an existing group @@ -40,12 +40,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ApplyStyle - + Apply Current Style - + Applies current line width and color to selected objects @@ -53,12 +53,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Arc - + Arc - + Creates an arc. CTRL to snap, SHIFT to constrain @@ -66,12 +66,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array - + Creates a polar or rectangular array from a selected object @@ -79,12 +79,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_BSpline - + B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain @@ -92,12 +92,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_BezCurve - + BezCurve - + Creates a Bezier curve. CTRL to snap, SHIFT to constrain @@ -105,12 +105,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Circle - + Circle - + Creates a circle. CTRL to snap, ALT to select tangent objects @@ -118,12 +118,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone - + Clones the selected object(s) @@ -131,12 +131,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_CloseLine - + Close Line - + Closes the line being drawn @@ -144,12 +144,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point - + Removes a point from an existing wire or bspline @@ -157,12 +157,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Dimension - + Dimension - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment @@ -170,12 +170,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Downgrade - + Downgrade - + Explodes the selected objects into simpler objects, or subtracts faces @@ -183,12 +183,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch - + Convert bidirectionally between Draft and Sketch objects @@ -196,12 +196,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Drawing - + Drawing - + Puts the selected objects on a Drawing sheet. @@ -209,12 +209,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Edit - + Edit - + Edits the active object @@ -222,12 +222,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Ellipse - + Ellipse - + Creates an ellipse. CTRL to snap @@ -235,12 +235,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder - + Creates a facebinder object from selected face(s) @@ -248,12 +248,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FinishLine - + Finish line - + Finishes a line without closing it @@ -261,12 +261,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension - + Flip the normal direction of a dimension @@ -274,12 +274,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version @@ -300,12 +300,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror - + Mirrors the selected objects along a line defined by two points @@ -313,12 +313,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Move - + Move - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy @@ -326,12 +326,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Offset - + Offset - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy @@ -339,12 +339,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray - + Creates copies of a selected object along a selected path. @@ -352,12 +352,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point - + Creates a point object @@ -365,12 +365,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Polygon - + Polygon - + Creates a regular polygon. CTRL to snap, SHIFT to constrain @@ -378,12 +378,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Rectangle - + Rectangle - + Creates a 2-point rectangle. CTRL to snap @@ -391,12 +391,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Rotate - + Rotate - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy @@ -404,12 +404,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Scale - + Scale - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy @@ -417,12 +417,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group - + Selects all objects with the same parents as this group @@ -443,12 +443,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view - + Creates Shape 2D views of selected objects @@ -456,12 +456,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShapeString - + Shape from text... - + Creates text string in shapes. @@ -469,12 +469,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar - + Shows Draft snap toolbar @@ -482,12 +482,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles - + Snaps to 45 and 90 degrees points on arcs and circles @@ -495,12 +495,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center - + Snaps to center of circles and arcs @@ -508,12 +508,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions - + Shows temporary dimensions when snapping to Arch objects @@ -521,12 +521,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint - + Snaps to endpoints of edges @@ -534,12 +534,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension - + Snaps to extension of edges @@ -547,12 +547,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid - + Snaps to grid points @@ -560,12 +560,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection - + Snaps to edges intersections @@ -573,12 +573,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off - + Activates/deactivates all snap tools at once @@ -586,12 +586,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint - + Snaps to midpoints of edges @@ -599,12 +599,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest - + Snaps to nearest point on edges @@ -612,12 +612,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho - + Snaps to orthogonal and 45 degrees directions @@ -625,12 +625,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel - + Snaps to parallel directions of edges @@ -638,12 +638,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular - + Snaps to perpendicular points on edges @@ -651,12 +651,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane - + Restricts the snapped point to the current working plane @@ -664,12 +664,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Text - + Text - + Creates an annotation. CTRL to snap @@ -677,12 +677,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleConstructionMode - + Toggle construcion Mode - + Toggles the Construction Mode for next objects. @@ -690,12 +690,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleContinueMode - + Toggle Continue Mode - + Toggles the Continue Mode for next commands. @@ -703,12 +703,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleDisplayMode - + Toggle display mode - + Swaps display mode of selected objects between wireframe and flatlines @@ -716,12 +716,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid - + Toggles the Draft grid on/off @@ -729,12 +729,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Trimex - + Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts @@ -742,12 +742,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_UndoLine - + Undo last segment - + Undoes the last drawn segment of the line being drawn @@ -755,12 +755,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Upgrade - + Upgrade - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces @@ -768,12 +768,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup - + Adds a VisGroup @@ -781,12 +781,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Wire - + DWire - + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain @@ -794,12 +794,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline - + Converts between Wire and BSpline @@ -1749,7 +1749,7 @@ Values with differences below this value will be treated as same. Workbench - + Draft Snap @@ -1767,297 +1767,297 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar - + active command: - + None - + Active Draft command - + X coordinate of next point - + X - + Y - + Z - + Y coordinate of next point - + Z coordinate of next point - + Radius - + Radius of Circle - + &Relative - + Coordinates relative to last point or absolute (SPACE) - + F&illed - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - + &Finish - + Finishes the current drawing or editing operation (F) - + If checked, command will not finish until you press the command button again - + If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset - + Add points to the current object - + Remove points from the current object - + Make Bezier node sharp - + Make Bezier node tangent - + Make Bezier node symmetric - + &Undo - + Undo the last segment (CTRL+Z) - + Finishes and closes the current line (C) - + &Wipe - + Wipes the existing segments of this line and starts again from the last point (W) - + Number of sides - + Offset - + XY - + Select XY plane - + XZ - + Select XZ plane - + YZ - + Select YZ plane - + View - + Select plane perpendicular to the current view - + Do not project points to a drawing plane - + If checked, objects will be copied instead of moved (C) - + Text string to draw - + String - + Height of text - + Height - + Intercharacter spacing - + Tracking - + Full path to font file: - + Open a FileChooser for font file - + Set/unset a working plane - + Line Color - + Face Color - + Line Width - + Font Size - + Apply to selected objects - + Toggles Construction Mode - + Select Plane @@ -2067,102 +2067,102 @@ Values with differences below this value will be treated as same. - + DWire - + Circle - + Center X - + Arc - + Point - + Distance - + Trim - + Pick Object - + Edit - + Global X - + Global Y - + Global Z - + Local X - + Local Y - + Local Z - + Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. - + Please enter a text string. - + Select a Font file - + Please enter a font file. @@ -2299,7 +2299,7 @@ Values with differences below this value will be treated as same. - + Pick first point: @@ -2321,386 +2321,386 @@ Values with differences below this value will be treated as same. - + Last point has been removed - + Pick next point: - + Pick next point, or (F)inish or (C)lose: - + BSpline - + Spline has been closed - + Create BSpline - + BezCurve - + Bezier curve has been closed - + Create BezCurve - + Rectangle - + Create Plane - + Create Rectangle - + Pick opposite point: - + Pick center point: - + Pick radius: - + Pick start angle: - + Pick aperture: - + Create Circle - + Create Arc - + Start Angle - + Aperture - + Aperture angle: - + Polygon - + Create Polygon - + Ellipse - + Create Ellipse - + Text - + Pick location point: - + Create Text - + Dimension - + Create Dimension - + Edges don't intersect! - + ShapeString - + Pick ShapeString location point: - + Create ShapeString - + Move - + Select an object to move - + Pick start point: - + Copy - + Pick end point: - + Change Style - + Select an object to rotate - + Pick rotation center: - + Rotate - + Pick base angle: - + Pick rotation angle: - + Select an object to offset - + Offset only works on one object at a time - + Cannot offset this object type - + Pick distance: - + Select an object to upgrade - + Upgrade - + Downgrade - + Scale - + Select an object to scale - + Pick base point: - + Pick scale factor: - + Select an object to project - + Select a Draft object to edit - + This object type is not editable - + Active object must have more than two points/nodes - + Selection is not a Knot - + Endpoint of BezCurve can't be smoothed - + Select an object to convert - + Select an object to array - + Please select base and path objects - + Create Point - + Select an object to clone - + Select face(s) on existing object(s) @@ -2738,7 +2738,7 @@ Values with differences below this value will be treated as same. - + Sides @@ -2789,97 +2789,97 @@ Values with differences below this value will be treated as same. - + Length - + Angle - + Length of current segment - + Angle of current segment - + Check this to lock the current angle (l) - + &Select edge - + Selects an existing edge to be measured by this dimension (E) - + Auto - + Sorry, offset of Bezier curves is currently still not supported - + Convert to Sketch - + Convert to Draft - + Convert - + Array - + Select object(s) to trim/extend - + Unable to trim these objects, only Draft wires and arcs are supported - + Unable to trim these objects, too many wires - + These objects don't intersect - + Too many intersection points @@ -2909,70 +2909,70 @@ To enabled FreeCAD to download these libraries, answer Yes. - + Co&ntinue - + Cl&ose - + C&opy - + Faces - + Remove - + Add - + Facebinder elements - + Mirror - + Select an object to mirror - + Pick start point of mirror line: - + Pick end point of mirror line: - + Enter point - + Enter a new point with the given coordinates diff --git a/src/Mod/Draft/Resources/translations/Draft_af.qm b/src/Mod/Draft/Resources/translations/Draft_af.qm index 586d960f3b591250b09fc8a739ccd44c2a729dd0..a774df65607ce6a535280bde346f1f424454960a 100644 GIT binary patch delta 4858 zcmZWt30zd=`hL#LIcN46cM`WzG-Po_Biu_-F*8$3L_rZomJpCdgzIHUMHI!Qao5NV zB{Iv9tCDMi=7O0bg?JTF&=kR3P*C{>~`zxU@)pL5Rleed_a&%2HXE{a=A#8s`V zKLYTD(B=ej3IvCBL_Y{`ya!07eE*nul{lApkKf$@)nFjM6)n5|}s#SoDn7?FN>30HOT=>%L3~9a;l%TOcm~h60vB+?5EN z8w2rs5ojLOgqOV_-hBeN<~HHk1&Tm@Q4`4AK>(dN`u;NQp5@lGA! zz7L%ajR9`Wf?ELLF@d##(>OrKvsVYIz^VUf5+f$ZGqEC z7-Az+Gos;Ll4u1^jmGG4-AH8_MsHXO$bFiyU?xUy3?Z%c@F`CP2In>5g(n#E7A?{y zU`)_V;C&B_O*{!)*^BoFlCeb+CSBG76}$2Ardpt96eiD@1hhZjgbji4eMJV+o?yxb zZ(eL3#RuZciI~!G5`r9pX+~Z!CLQ6vn}A1&NUSZU&sQPYY6SL-MY63KFem}3;vHc5 zB%8OQleHMx=PG~+-y$^ zr!Ns(W#C+PE8yULRDRm=I)Whd)?Mf$I_r@ltf zy^E+JULk5JNK_`_S0%7Q^;;Pe1x;gtZu@W_t+82gFJbB0Q0)O=-Gh7nkqth}ZtrN=eO zoAY?^e1x*9ip-o;C?7@lXSM8XJ0dw)QJ1mm{y+&+<7Q2FWC!h&k;XcOZ1HrxA^_Q z)SW73maGNN_={W9X@(}C3CGqp;h8?-&OUy?eJ3&dU>40pF?pk5l=p0#*fFKJpSL)KB%gtg}+ zON|Bi#Vm!`aay^Q5_XmEQ>CZLp&#!-&z z@DZ>+QI6l?#E>qRmrW(5(=y~`>qfAAE95mdYJd+r$m=?i8F!7m-j_+edX>B}ts5zS zTi&>v`0BpAZ7>xbRv;fv$zl<+%4ZHrOod?Cdga7ZmZ$IJt2r~+um{N37BS0j%#rU( z<5)!k<(izy5R`w&56|&Hzlm}~uQ5PrzTA+q3AnsUewofG#nWAWxs~UB|3zguz-c4s zvdXxaRQEfq>fp)pEuB`mI$8LAh^l{RB+#Wy)&DNfKNGF0VQN~~=YeX(JFdX5sj4xZ zf*52js`q1AW~zs%#_eL=yV6bNd+sjZV^q_JFk8l(R5P9xa$>ow3i`tcbf{>;h9#<5 z@=+kXQWa_+jq-n1&G~vbV2V-Al^D$VV^t}qayfb}R4s||;~Zd3P_0Pjh26tdtLFu< zzka9M-J6yc>{A`?K#G%ls!qIY$qwtNx>IcfzMP|adUPWMu}+P_w8T40ty$Qb2DDW> z@6QLGyi&VtpkfcVse44zrE_Jg2F+rNj}=S*)> zqEJttMrtcV)q(S=sb`rwsogVnzB=_1&uc)h57g`J^|L%zz5Q$mW1+WtN4W`GTA|+pLdJ-e?;RT?q&Xe z(^X@>+7*IBE^$An%}`=7DY~xdU(lZ|s9fXqpprqhTJuqS181`r8ozQ@t_!m@{`W>R zXa{R%77bu}P0(1brgLWV)Px#bfV&Nv@HRs@b5&^~T9dh5Gc|KEx-q8OY2uy8zzJu~ z+z0)b|JfTgNi(^j#~_WhV>+o_qglL5;_P)xv*av&+s#L_%!$-KtJD0;m9CnyT64fN z8CX0@Q`DZZ^K!rDr$V|Q{-CDPiTgKQ*HpWC11#myK)?IX3zj@1D7 zzSJ&z^_Z?)sogj&hrRijcH5hUN)F|Rwb^afvU2^2FTAv0F0E$prD?y7+{=T#Z2tO= z)?+2wi&al)P=>bT_XhUj^V%EFMgboU(%!Ta=rUhhspWcrgZ8)PZGqU&wD(sp0d_ZN zAB8%z-ni?OZ7u-OnL5=xdg@w?uIuOf0o!O@*TOSECs*B@$wsz}9G#2!Epx$H=Qf`A zl*_svx%C*1Z`bSkU!lGZ`*fbMVH~@ob;E|y#VOr%!;5%fa=mV5d^lq^RX3~qB~B^T zy4hY?R6wIk>ElG)W*cm9us+jmU9^TX_Y7V3mK+9Lx$cLJ;Vi>n>MlFeT9rjtoSX?X zyP$hoLwD4!(97d{0&N!SRohc(?$`RZ4I6=yFnzlRT<=k%@4nfakshFTzs$)0@e6&Q zH5C?Ca^&r)qAL}uvITPIwX;JV0aS%&D7k$tYhQsyo z`p7iWIIy}Ag;rPf(Rmj+xp?SP26}Kt8=+sI)&j2+^((vYV8(UQuil!(vc5&XZq*bv zJU{(0kumNStCXI4KhCiG5NDBYj|@k2WZXF4aO#vRGjg)w<^+1? z-EhOhiya{t_Zl4{7IOB;FgkWP$p%?t?Br-+#tksOIlY3NJ=5s2CK#C2+2|%(TQkyn z8QpJF(CgdAv5Opm+oi^F=L>m(XA@prV4Sdh1(0yb7`4ffwdYe~QUC>1Ej9il$(_^t zDdWm;Pu3WtakYgm>-)mE`Q9Sn$W`OnU-|)FHe*wXcuJ%quii2i*&Aru8^$tg_i$dU zGv2FIa@_yI_~2$e8(@`5m2ry#JWV<$8|QT|lj+rP`f{nsVZk`2w$aongOs1!WBMST zl(&6o3aL%y9Dc$SeUAGctTZK@+|Mz*)U;H06j(6Qv@&})&^5`lYF|8yX_RS$)(b+b zX{NE6)mxeJ?Mw%z(jxblrbEN8^QU!=>73o7RbHl|3u~Fn2TeCROTdt5Q=QzA7QHal zxoGM8&rC0-?`3WJjd|$knfpVtJ3hiVTaKT3I?U*f2v`t;Km;L??_rpYXhb0far_>` zFHwl(o)>^DX8Ijr%b5wL(SX5-J zd8Q>ID#08WV=>3aT7u0p6B}0}EeZdzE7A5ruuJaZHU6rhewawTo3yiQ5k}3-)GVyg zt|)S9rbc$lBL7RTFn$TK^_k>g`{t0;?{Cd|Obq4qaiL+c=HRfvh^P>ALZ~J3&%47S zL(GAZ!Dh=mJHxi-pS$MX+T3E4)fe8B_Lr{$dDCA^*u7}KDXvkEutui-!&eB`=KiT$ z5O>-=Zr44M+S{eY{;ig~cck5;fo3}q(NSTMapr`uxX?y!Lf#9TOBI8nqGE!>A{hy> kD#nKt91}PzPEhi(&Hq#HZ2UHZ<61_bgW~L`02ELd@MUvU|V-{r<*Ypi5AYx<{HG z>jml6N5DD08vP$Zdb1d)ZH3&%6R;amjj#U$`NtICUlG;#CW*Fj{kI9#ShxrBAKa(i zo$qKB6uxl!3k1s;$bVmhV7my)@9TgQwy>2Gfp7g$=jvnNaVZ++e*#=jpwXHBK-Mm} zB-7yY*>K4U04~^|&4;;szYp9q+XJH~qx0^1z?6o@-Y0q3S>UV&)eStt!856*x^9^Th&;)72aRy`Koj9*~;@8_a%1ZkFquJDZc_i z+zmf7H}3C=sovXxcgL~lT{>eOjbN)8i1R~mqz%w@LF5QcBWna=Z{`3)=Ob<@cS%de z9~lhTjK2_HvnB68#Hr-_fMX;s{xJbaD#z8_8O)j>T)RhPX5Eaf1^iWkykpM5m3)*O zj08sRMI};!?AC%{2?8qS2zA4r1M32X`YVC~U8K+?!=0J4(MM={vW$Mr7hJ&f8Zu6B z$z{MQ9t*9*`QWa6q5UrU8+B0Vb;=INSA~9G_XFb^3d26c0so5-MtRY&_4S1*HF(g6 zO5s4;cA)SPD8wX(eH6gP`Z$Q66$oc3CeEn6(_oabfz6gbxTpwOn_~4wvItdd# z)*J+U@({|`l7FvUq4FsANvxxh&y(3(T{Ol8e11t6P3r_Q_QOk!=aKP7;C7nkM{ipC zp=)G`*vL9lv*scFDz(+DpLPW}^-L4>qdmj;K@*jInu3eh*=|&n0S36w}O14^2X90@Wa0b0IDqm^emr@t60&c2RS^M+va+ zh$bzhFEGYV^We;K2IR-)nnwrD0LMmZp4dkLhC7<~w+eugMWV1G8F(RymK^%gCP=Kc zC>3~9Al6E_0i5v??d$je5hk&<{Zv-c2C?<H-63P*_EL8lpzoUi;r19ICC=|S#z(I;33ynaU10|iE+O6(#AS9!K% zi@0)LKOkt9xT$X$V0%H_?HvPXW{UBz3tQll+!}Ro2EQgRJ`~k%nXEui%*TD^n6`0dm&#;T`azQNoFqDitlH2 z1O`17-=7-`G)WRGup4N0L#(i{hKBVNzeRJOn@hxRRibzEtW+z15v5?d)Wm@dcHS$s zn%f?Ty(_r~A7D*=lX{)EvNUZK$tz$kYk$8qc5!XsbA4&iJ9_XuL0Yze8?Burt;k^x zv=}Re{F=|Aa`}#ecufjf9s*2SB!!gGkUU3eUB*!$I#JrViRkSt?ex9OVjd;!&e#N8 zn=VDKp+kEAY8((JMO&+GTj41ASN`H=yq zuF~msG{`MMIvYiUdmWY=>Z06p8&%XUxEkNAm-}=XLs`A2| zQWg5`ke5z*%-$2GN6UYD zbO-8iSnaz#Zxl1*y<^NP2|F#r{r(lSp^F-6_X!xA-1Ms@~^@l>ait@f9~(zf*B4It*Oju8gcpYBf!iQTGyn*$eo+MySWdUt))?-GK(n050%XgNsX&s+2YOmj)+#ag)}GSg0k%pv7)K6 zw;K)ZnXDu&jiH`dl^dsJR>eH!!KD)B%5>#%9IIk!iSl#>>-}l0@=6{=JsGDI#f^j@ zbX1CO^7#(Kl=9a7fsB8Y@}=8Z|97L6$~E&zrK?gI%@^O9wWd?0z=UwEc@?Sdkfd$U ziHffIs&#e<0LGVTJ5HVfG<~A&_-Z@wv5U5+jvlsstL@Xv8F-MS?cZnulgvpwa4rSs zb)a_8K`P)qKdtx8SG+!~9n+oFGB{N`wlszHf8(=u!dElUAg3BjFKB;J&I41UwUeu+ zq|@2j*++TISPbm!-IKX%cgLPY~l=NAFZeJ>Al(3$<{no7ZWMGxy@QOjx9Z*v45DJX>5U6>*<=>#?WCi?kq-LCkDGDc zEFhlbyt#*%&g#Q?Q9JbRZ}Z5&0R4!-atLUr_sybk-CClzjxOlOtR1KypVpaK z9jXs_yoO`j4EeK2o zdCK1C|4v~D0_W=U9QeZ4B7LEYCr~p{|E~Rhz~Q#OxDi7oTlHT&?b&2PRsAJ0@nMVF zAU1#!eMSBE(_uhpW3`9lJbIR<_J~Pg5AaaEV){cc{iP1Sm&#CtssTF+7}_7yfLrNQ zUTeBKe-uM-Z=iB2WzbwAde8UK{CPd`;NOZ#%pDOIzpD0Nz_=BZpCeNTN|qb@Lap!#ORYErJM z?BkI=6vYJ_hYVhVIc}L$h5cfeqe<0#h0=Ej~+5~d_Yg^P8d4Pox)N4kfCQ!#@w1^=$*y`gHIa92TtWgmt^>*t8F&6>%fCogc#dvAF!RTuEx8wBj1`@S(ODw--~P& zDYcBFf1W^@Xlk6WnyK?7#5f~_#C9qCj)H9s=lvb6xRPKj zejZ0fR!#Lk6|p&PHo5xpI>X1*d0Have{S-u>PcT#n|${2#k7wm-y<~O(hHOC-!aV5 zJtlug7N^O>+_bL;BZ{-8m`9Azz}BWiXE>)ce{VWxAkpT3%mLH^tz z_oDf~L9VQU-^>wHJ8@XPVcrnHP_?Tt?Mf+ZsM5J%7;%lZ?6 z6k2D?R@I#$h_vi3jHW8ov-CMNiXORETF&%-&JXW6%gri}!o4hMw>JU)b1j)oWT5*j z%O|BFJ*u#La#9)leU^$bN2yS@b j Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Voeg by nuwe punt - + Adds a point to an existing wire/bspline Voeg 'n punt by 'n bestaande draad/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Voeg by groep ... - + Adds the selected object(s) to an existing group Voeg die geselekteerde voorwerp(e) by 'n bestaande groep @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Reeks - + Creates a polar or rectangular array from a selected object Skep 'n polêre of reghoekige reeks van 'n gekose voorwerp @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Kloon - + Clones the selected object(s) Kloon die gekose voorwerp(e) @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Verwyder punt - + Removes a point from an existing wire or bspline Verwyder 'n punt van 'n bestaande draadwerk of bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Konsep na skets - + Convert bidirectionally between Draft and Sketch objects Convert bidirectionally between Draft and Sketch objects @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Flip Dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creates copies of a selected object along a selected path. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Punt - + Creates a point object Skep 'n puntvoorwerp @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Kies groep - + Selects all objects with the same parents as this group Kies al die voorwerpe met die dieselfde ouers as hierdie groep @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Vorm 2D aansig - + Creates Shape 2D views of selected objects Skep vorm 2D aansigte van die gekose voorwerpe @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Show Snap Bar - + Shows Draft snap toolbar Shows Draft snap toolbar @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Angles - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Center - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensions - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Endpoint - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extension - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grid - + Snaps to grid points Snaps to grid points @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Snyding - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Midpoint - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nearest - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallel - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Working Plane - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Toggle Grid - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Draadwerk na Bspline - + Converts between Wire and BSpline Wissel tussen Draadwerk en BSpline @@ -944,17 +944,17 @@ such as "Arial:Bold" Oorspronklike kleur en lynwydte - + if this is checked, paper space objects will be imported too indien dit gekies is, sal papierruimte voorwerpe ook ingevoer word - + if this is unchecked, texts/mtexts won't be imported as dit afgeskakel is, sal tekste/mtekste nie ingevoer word nie - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Wanneer komplekse lyne eksporteer word na DXF, word hulle omskep in veelvuldige lynsegmente. Hierdie waarde is die maksimum lengte van elkeen van hierdie lynsegmente. Indien 0, word die oorspronklike komplekse lyn beskou as 'n reguit segment. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. Dit is die waarde wat gebruik word deur funksies wat gebruik maak van 'n toleranswaarde. Waardes met verskille onder hierdie waarde sal behandel word as dieselfde. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Merk dit indien jy die blokke sonder naam (wat begin met a*) ook wil invoer - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Indien gemerk, sal Freecad probeer om samevallende voorwerpe te verenig in 'n draadwerk. Dit kan 'n rukkie neem ... - + Join geometry Verenig voorwerpe @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. Regs - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable indien dit gemerk is, sal voorwerpe van dieselfde lae saamgevoeg word tot tekenblokke, wat die vertoonspoed verbeter, maar hulle minder wysigbaar maak - + Group layers into blocks Groepeer lae in blokke - + If this is checked, all objects containing faces will be exported as 3d polyfaces Indien dit gemerk is, sal alle voorwerpe wat vlakke het uitgevoer word as 3D veelvlakke - + Export 3D objects as polyface meshes Voer 3D-voorwerpe uit as veelvlakmase @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document - + Use standard font size for texts Use standard font size for texts - + If this is checked, hatches will be converted into simple wires If this is checked, hatches will be converted into simple wires - + Import hatch boundaries as wires Import hatch boundaries as wires - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width - + Render polylines with width Render polylines with width @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Import - + texts and dimensions texts and dimensions - + points points - + layouts layouts - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create Skep - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Sketches - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1695,12 +1690,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1730,15 +1725,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Draft Command Bar - + active command: aktiewe opdrag: - + None Geen - + Active Draft command Aktiewe Tekening bevel - + X coordinate of next point X-koördinaat van die volgende punt - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-koördinaat van die volgende punt - + Z coordinate of next point Z-koördinaat van die volgende punt - + Radius Radius - + Radius of Circle Radius van die sirkel - + &Relative &Relatief - + Coordinates relative to last point or absolute (SPACE) Koördinate relatief tot laaste punt of absoluut (SPASIE) - + F&illed &Gevul - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Kies dit as die voorwerp moet voorkom as gevul, anders sal dit lyk soos 'n draadwerk (i) - + &Finish &Beëindig - + Finishes the current drawing or editing operation (F) Beëindig die huidige teken- of wysigingsoperasie (F) - + If checked, command will not finish until you press the command button again As dit gemerk is, sal die opdrag nie voltooi word totdat jy die bevel weer gee nie - + If checked, an OCC-style offset will be performed instead of the classic offset Indien gekies, sal 'n OCC-styl verskuiwing gedoen word in plaas van die klassieke verskuiwing - + &OCC-style offset &OCC-styl verskuiwing - + Add points to the current object Voeg punte by die huidige voorwerp - + Remove points from the current object Verwyder punte van die huidige voorwerp - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo &Herstel - + Undo the last segment (CTRL+Z) Herstel die laaste segment (CTRL+Z) - + Finishes and closes the current line (C) Voltooi en beëindig die huidige lyn (C) - + &Wipe &Vee - + Wipes the existing segments of this line and starts again from the last point (W) Vee die bestaande segmente van hierdie lyn uit en begin weer van die laaste punt (W) - + Number of sides Aantal sye @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. Verplasing - + XY XY - + Select XY plane Kies XY vlak - + XZ XZ - + Select XZ plane Kies XZ vlak - + YZ YZ - + Select YZ plane Kies YZ-vlak - + View Voorkoms - + Select plane perpendicular to the current view Kies vlak loodreg op die huidige aansig - + Do not project points to a drawing plane Moenie punte projekteer na 'n tekeningvlak nie - + If checked, objects will be copied instead of moved (C) Indien gemerk, sal voorwerpe gekopieer in plaas van geskuif word (C) - + Text string to draw Text string to draw - + String String - + Height of text Height of text - + Height Hoogte - + Intercharacter spacing Intercharacter spacing - + Tracking Tracking - + Full path to font file: Full path to font file: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Lynkleur - + Face Color Vlakkleur - + Line Width Lynwydte - + Font Size Skrifgrootte - + Apply to selected objects Pas toe op gekose voorwerpe - + Toggles Construction Mode Skakel Konstruksiemodus aan/af - + Select Plane Kies vlak @@ -2066,230 +2076,230 @@ Values with differences below this value will be treated as same. DWire - + Circle Sirkel - + Center X Sentreer X - + Arc Boog - + Point Punt - + Distance Afstand - + Trim Vernou - + Pick Object Kies voorwerp - + Edit Wysig - + Global X Global X - + Global Y Global Y - + Global Z Global Z - + Local X Local X - + Local Y Local Y - + Local Z Local Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Select a Font file - + Please enter a font file. Please enter a font file. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Het groepe gevind: sluit elke oop voorwerp - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Het 1 solidifieerbare voorwerp gevind: besig om te solidifieer - + Found 2 objects: fusing them Het twee voorwerpe gevind: verenig hulle - + Found 1 non-parametric objects: draftifying it Het een nie-parametriese voorwerp gevind: omskep dit in 'n skets - + Found 1 open wire: closing it Het een oop draad gevind: maak dit toe - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Het verskeie kante gevind: bedraad hulle - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Het een parametriese voorwerp gevind: breek sy afhanklikhede - + Found 2 objects: subtracting them Het twee voorwerpe gevind: verwyder hulle - + Found several faces: splitting them Het verskeie vlakke gevind: hulle word verdeel - + Found several objects: subtracting them from the first one Het verskeie voorwerpe gevind: hulle word verwyder van die eerste een - + Found 1 face: extracting its wires Het een vlak gevind: die drade word geëkstraeer - + Found only wires: extracting their edges Het slegs drade gevind: hulle kante word geëkstraeer - + No more downgrade possible No more downgrade possible - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2641,7 +2651,7 @@ Values with differences below this value will be treated as same. Kies skaalfaktor: - + Select an object to project Select an object to project @@ -2661,60 +2671,60 @@ Values with differences below this value will be treated as same. Hierdie voorwerptipe kan nie gewysig word nie - + Active object must have more than two points/nodes Aktiewe voorwerp moet meer as twee punte/nodes hê - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Create Point - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2748,106 +2758,106 @@ Values with differences below this value will be treated as same. Snapping - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Sides - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Lengte - + Angle Hoek - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2859,22 +2869,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Convert - + Array Reeks @@ -2914,7 +2924,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2933,79 +2943,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose &Maak toe - + C&opy &Kopieer - + Faces Vlakke - + Remove Verwyder - + Add Voeg by - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_cs.qm b/src/Mod/Draft/Resources/translations/Draft_cs.qm index d54c23f4c5aecbccbd522163dc5f3557e27ec79b..7691089dbcf393cd8c605e8bb2c84a3584b83cab 100644 GIT binary patch delta 7641 zcmaKQ34Dy__x*Wi=AC^Ju_l%wmL!%SMeWqSt6eBYGGtGhOd?6!j24ZZ7&}#JOKDX* z2wD`0s;z3Rr3hkQQfr0i?>sXo-%tO4J~MabeYShgJ@-6!^5%fc~)^*eOEI1y+y!fOw0MzrDzsPHgl^9$?1SW-H z$O0!1t{TG+w9l?#Nbw#>@?RKc<^kQ>B6=|M_?HXm_l^TwOC!^12G+emrmGat(t?Sq zYrwRP$o`4>tzd>L%ok{*#;T8AFf|`wb<;M?|0LubxCHc_inZf-&f!t`<|G|W(7^5V z4dlQBiZ$m)W{S_rP8FSlSy9vYH7KX^WWJnegAEI)qV$k1Oz;a3vSF;jJ z9ExPs9-y_;rbw;f3q&1OO!b}?I~Au_ZUr{TR|PoZqK zpayXJp0ew`DSTe2>|MP&Q`cQNz*-C^?p9Y0&YEKla)~0kXEhZ-}C^zj}1U$@9Za;p7 zO1Vk7vpQ4NW`Q!VB@xJ9rp!Mvob_+|S$tqwgeni13W4V}lxL@#ftgp8=Zpf<1Z6=Q z7amY6uU;iGyZS5dCpHFpol@T4J`$*=RX)Q~AmA_MGYiYApH2DCGVXKGp!`QD=E0t- zGS||nBeJSm01<57MpZvK6j=MMs#&IUC3QSo)k4jUkJ(i1cCfB}CaAjFlY#opR3kqw z3lz^(rQc&D7rUuG8_Nx+f2W#oiCn1pgDNYA^*>|0$4cr-s;u!@z?dbftfzG7>LS&& zlk0)6)~aUDr5)T)wIpme%Y3_P>B+gkFWXhioKqN?E?Tur*dCj__LsS;l?}sy8`o4h zTUPNh>8r}QHIemhP_0{;LL{cBa);63zimirE%C{*?@MY1`c$-#y5fysZ%b$fCC&3Pr-ag|z zu)L+5--n#=vC4m({RY_6TE5)95STkoE}T&xsO0pQ|Gq>hN;=EW&Jn7Qm&q@-alk!R z{--soA-%2IG>lyM`m)+IoOW#&wdtWBq|%Gjex>PfQIfjK)lGC{s=BI+f~D@Ou6>>R z%s!|Ny8AV-?}~a*MIx)HrXG596Od$8J1P$V=4Y!@Rs;~qS)J5VhZ53Z+3KnDIsm>4 z)N?M}rA8O1=T#vxbv{zhAIv(>zNlW9Rg;iUQ!iXYTe4HVycHd7+eiJ=xK%*oP3m8_ z$gGad>Jz&jQLvV(&#Yy2d^$mWZUXE6d_DDbxfgY1koxZ0L6DS7)kOzn)_-WWx;Ug8 z@JD}j@wi36QLFm-lvGM+lKS~FE-bpIG37o1!tZFzpA+hLRGP|7srB*zO>lsn&j)K7 zN5%uy12m1VbN%CinzmX-*l>`hL%U$$R5eYvs^R3Ar0JPV;kl*N^jb|NJa$Mk_`r46 z|E;!~5v^G+y-#RHKFJ66$7;e~n1RY_uPqMLj8^XeVw9Rl(Q0k&r}^;P_SAB#CRHYz zw;a`s+v{cvw@EW8DU7${1I>&~9$0&yCOd67ujy`@H4TW&9*gFu%0xJGm}b{=U*P>B z&9&Q37jxT2^JvFHNUB*{v|=P3J8O00%K{CiYHM%YMg{Ax4O&3Q?tQ7Pm&lx^?$b8P zTT5v+X+tlb0Zt}pn>a|yPPy6+LdrjArS1A_0}9hX?TBGS_DT({?PEIHG*p}6|Ad{^ zd)i4&&rx3rwey`qQZIySzuG^BiZ@%k;$kR!zf0PUDzf(3yV@g-NSp!nE@QSpfjdjX8q^t%B$7`>pSSIXKJu%JwdyXO=}wMaegnY zYn<1Zm(n?1vpa=EV5rVHAf*_RB3T!9k;-+bw(f(Q)bxD|b)yb7C##Ef_A^s}vnOg-(8uE!Qw`nHudA9CQC6ed)Xx(r5OhL*y zU10zhEUu-yU8f_fqp$8>=n86mIbBgzrb-^Fd(?s2-gTj_q@y1%oe6r~E+X=1gT8W( zozkq+zk9A9FlDa3O>GAQ9IJ1$DxV5^Sl@M3H(uk;C;I+J_cJFe_4dU#nPa8ie(*RE zu8I|zONqAWr?Arr&p1$BldI zkM!YnyrZT5$kj(It3&#ee-#72N9!*<>C7Jze)<9dZQwb5p`PQzef2kdDgw!y^|!Jo z0c-N~_akewJhvE>j@S&7E^7D#Cde>tdS9kaXPDE0(DyrLSTnr|HHW5djDyxrCq8@t(P17R&euvFEkFCr-7t>Xbk(AmrH)4@q>Zk6qe78 z;gd+RbLWilSxiBTNggYeX>Ls1#C>l27{|2;WgEZJ_?cD@{PVtXX5b1c>mFnFvJ6&L z1LM3|Lx|uE<4&iFISSrxJio9jAull&R8#PtmW`LjCi5p)TjR|`j7(eKYx4}oqVsEk zKjTc59^d7)I@44)jNeafHZ_mk#)zMqI`T4;(84riIoBPYV+#A0j_j^w3j1vp8;%>M z;k8-TmMqiod1gquAtvYWYw`T0v%+L+SwxRvidc0T_%g;6ae-Cg+s+jC_d_DI&E)u# zP}bOK`n;p4j^3ulw@IRTgG^tw;epC>rd6kz)1FOCYqqk(sTpY6Zs-S?o0#_Q4d$Kj zy{VutQ}~|RRCJ^YB=ab9`PlJnXg+e9{VMNa-)=Tn^|P}_D>By_af!WMe{;~B2w-%8 zxsIwV?}U7F-7DPapP$Sb1Z5nfrb<14z@G6BhYV&@|?Z;ap!h z#Qaf4UH*PpZJrt3ls`HfnX~OoStFZy@y!XqPtFeJ{iogmn)#Z&!t*^X9eMuTd`Mi& zS+VA`fzkY_RA|0gs04m2Z@yFT6!@%(MKk>}zq>7l02dIn%3>*L&+A&Ul>e+3@B90f zs?!Pi{u-9vDTKUYDa)996M+$@Er|y>?{>On?4FI}z=pGy$%Y-=aH(Zx&KfG)HUAt01#~5W4hrYQVaYr?7B~1rY~b*?&%@md zeZozqap=p*8Jv(HWx7H_0$jtZX?=tTV!GHSMY2gY*Q^O;1LFB~6rWi=&+U@wrN6>~ z1cdXLbob<{OO&lfVj$8vNI#?@p7Rp8P;45*r^2IDdYRz~sl>C;>WRX$iR=CH{;q_8 z;RZhf_i~>5Ou%lXPbvPLDT&i<^eUFvIb2`Yu4PF=Z*KMaxrm{i*iQIfeK0Ms``GMvk&*m;M@YviQ%l~Xo(O8 zk?7f>HCOfGCvP6TED#Loz`v4pq7{4)85bx;alOd17?0vha6rsR;8TID*UJtVgw9N` zI3*FS-Ot{4Yh3m?UsuQFzOKVVLVZi4Kf_66Xo5nC0#}z`SgVG;(9V-#!3rCZjv`oA zK1pQY;=6DpkZ#y9hTp@HK6^^pW(o8nmfHns!GCJLYPU;qB*fVqQQ_8<#0ZrwE@8MP=mkZDYn-a+}JJ0lT z{$J{fcw=0L?VWU$JSCWpSl6;nmEBE7S5vsY9$m&il~Kp=bUQO3K=Bk1*iRMBPzaWt)h#1o7TC^+~0tt^`BDv%Gad{P2 z`PgTKOw?TjQ{?5qOGKmucTn7Jg-nJ$JJw1fV+I6*2k6cQLPc85(UFk zI3dbYSg&~YKMC--^{SRVfRI;Kbn^t^J^4+*yoaT_)_>vO*vs2j;EFv2ecoK-)w?)) zAebG;afkcwPxok~BA3%y)A`>Hddnn<*ohJl>LqCJ$s<3-@fGeVk3?eZAl`x~DX8lS z#0yr8#|@Dev4>dy@2d8w!~cTiNjZyNtiZFaoudvafRzU( zcw!MpjOMZNgkQK5W39F%yEP@*9$_7o?ir1@kNvlj)9tQLM+drh%o!zHg5Rz^SK5n8 zu0Kn3?!Jp|Nu38$eT9rCk&qemM5IhGO4P9+z2LI<&KtvTf;Yn3H=`FtVsm{NQ?X9H zev$Oc5gC{4Xz+@7l$aFE9RH`4E{B zwdlP--}Lx@>Gc*V-RpD5>!p2y>j8bZ!T(PiSWK?X8C6FJ75-195M?Qiq`zM6@Frhy zTco`n#iAh^30OHpkW(;T)P{ic--g5CF5bP)w`>_tghJVDRI`@?=H7BLU+)}@j-G@G zeHNFJppzYAX~kKhzJz~c`AO8CNN^;_t-LRy2$Hwp!#Pvb>?`pSBuIWmN7U^YFD?k1 zRj@2EAu8Ts9UJ9{^bl`M_o!5+IXodDDIzMK7fUjK?m&)6vW<2~Y_w4BE%#o#^m=oH zcXQ9SuK0qFD+^`+x0eu?`J2s%&!rX>|D$Ud@@zvu4U)%03@#CkNCYcUbZ>7oD(=AN z2|B6U{Fbs*vzoY_MN1_TBI@#uj>Ef8?nzl1teJnsB2}4x(I~0-SO3>N$;%lwlXOhy z(}8W(JF~Fd4o!zLWyf`6jL5OKcs?G*6HPeXktVU zkV4@Sce*ILWWL0OlH`#%v5jaUy$y-jTI75b!w}cLxW~kbbiN!sEY8CzA@f2gz15TM z={Db^XjwS-Wn=23eu-^U`0mlD*WGO=9&G3T_H0Kwc(!wJd#_5o*)LNMlff)F7H^%>1?R?J^kK`Pf&6or`CljGu|uwsD6K^w#JYSe%B zXY=n=kV2gUUb+5qs`qa4HuHiGcj$~4D@kXp1^w(|1w=)qL_ozv*4TT=Vo&_g2x5uR ztcn_26pT@^qKPGTBX(mK+xMQm_-o3aC-Shf_ndR*%)B%6&R}+){Ocikb_qu&fbNir zSEKAf`8#D8q!Ousa*EIEDNj=#rM$uQL_psN*fbkxxg6Lr7HBn&dwgHWU7rIXSwQ=q zlzS=f18w>PU3j+BC&0L;ylw?BDFPT&8*r>mg;b^_kT?PI^lz!)DCCS};KvNe-^)Oe z=c+vXJ>>j{fPa80`&@>6^E05tWhga*0gu(H%-2I{kpp;MQ{|2CpmgQ_=jp1vIRnZX z>Z#S(Egh0V1)E<&vV9BX@Q;v+{tVsf>A<&-QB2tiyvl&b-qXOTPf_;TV<4~!%57;4 zobQH!Y#O}X4*?gVC_A9Wg9N_69QDoz0lf#K{t|Cs*)ufUTMNi=q0!P(z@B4h>?BhC z8X)*&vIE$?8LdJq0y}-tYQYphS6r35R-x6xfrNDhLM}`I8VywCfmLYz0X;G$qje-< zY`Y0}I%%SLXT}WMv-*Dm}+8$C^ms`wy}A zaxBo|F@8KoS;CG3nI(XYqjB|Hefx${e=FJB-uv+&nru%W}E}2pO;FH zPXP?cQu&khfG=XC_cuJFhnu7T>;O7cl>#m^l+UM2)o1eDk~UJ%S41N9H_6d7%M-Yo zCbfF?H4t7~>hxe0aMDle8A8Km_mZNE@}dWU(h!G2Pj5?O>k;C+ZKY|0k|0^vOVg$> zSxp(zQU}l1&XLylHUeL#NO$pWNnVYKk&cIno69_TDd5BzgjLJg#c#Y2HdnNq5`yfyg{0(y=x2dK@cN%&>Mbqu60kB`z#8fQJ(uO8M-UBp_)(o#u z9Ef%}G*f?}$B!p#W)J1YreIBK3opk0ktX%xA=d3>&6gi?-M_EqOBZ>-(pIzVlc~I5 zfo4S@%T{mIte(Ui*{0L1zefjtEzoS-zmXJjM6+|%OrU>X&8`9DfJH%?eN7&*8oFq5 zC$$9nR@9u>GLH2hoTWLnd<(F)ndXdFDqzmm+&_2&cz9GRjn4)yZPVH>`2sa$ZHeUl zz>Txo5*vSFQts4xdGr8gMQW>i4QBcMtgYU86>zAXwq_Dz{J5mH-hv7|UqTylcPiIU zY1_a5K10|^+r_5;tK10@UL466_Z4V=`;Ex# zY^}W?Uk3&|GwjC~~ImANFGsJkJc%Bq z$XUIJK;M>aEPnOb5zVRprwoO2(ZMyl|Pa zdUi`l@eHjC`cC_F^uq_*rM|Lz&r7 zXMN}e$$nhtRg4zjo~0}M+eR9arYq;%%APS$=a)}Kv-5OS?yLm%{-WzviqLAx>v|sB z2z+uvmsq9?Fn6IY>1$tLW>?*`oljpXsQ}S3=1r-E?9?qeP{+5@JPPC`+M`Z*)}uswIwuc$#!e^B(>$`Ildv;Kz{#ex5<)L*;hWN3r*k9I7CB&8eB$U#qn zn;4AaN|Iuo2EPqVrr!q{sw~I>Zf!GEjb}`Uk2ciGUPVgwHw0Z^4jfN4e2~bbZ1Jt3 zx!~|#j}0L|)gU4DG4$<4XfK8s!at*-bsHE)c|YM~^{HWU-LvGE+lKjqNzYC;EZaYj zM3-jx+HoO>v))O=2ANs=w4LEdEhf*AEJI#yG$)#6hVvr{`L^qZi;Ia!t;>eH?M49y zjvFl_FSE(S8$IQWV!#MnQZO(RmjiVyCAGq7-C_9zVwlPl3P&l&9HBR2o&{h~?oaRep zA0`<$`7=~Knj5p~rT`PVI*hrcnLN)vH6G4k2$JR)uln+Zh1HC=0)m0!9gTN`z9z?) zHQp=7P$@l)FN3|L;(E6C74(8EuM+wvLo(#d!3Z{|D7(g3pa?GN_p$$zFi!gb- z7nr8)yaW6;(KPMl1E6|M)52b>IFN*zmgZ#S?h5Ki0@(6j})P6X|C|q z24K!8bA_Cr$fW(ul~Qa(qQ1F`ybfsalR2OR?>TebT-EiA_5aOMbDb0P#M5Z5n-I;i zlFT1{#F&pMW^R_t3scUSBa#LaIuG-J%Evgtq?u#tr85@}n8(!gr6JMg$rtqeL#2*+ z`izbYncke*oX~fgZcZDY%5nZ9bLN+;AeHnq?_M|<_<5rFxE~SGw>0OaEMff@8Ek%Z zhq1f4(W2{64JdiRqF*+FqgSYmOLg zGzjAOzQ{7xU;Lp93{A$Lobd*@d1!Y{0)AKzgc?O+WI<8$5_YyF{HNlYHrV9~u^cChwX z%JT;&Tf@Gg0lP|D!w#o&jyP}aXJxJ+k!`TgUY|rtu4G?est3tY749UvwRYm3&=*OQVh~^1eMzEw>5Zacd?k`< zqIpE9_Mw7A*OsD@R>yP%(}j4x6vw+&yVd)A+;$4<#jC;x;dBHB7p@33;(|o3inGz; zcK7AO{&F(Vy&~2VXi5a%5l~UD&25bUDpFkT`l{TQ+UgzA70Em^9C1<)+;+bu>`RiY zJQRzU@8}3Fohfe=Lm?84<<6t4{*52)ZIdIKmB6JU>;?5?li+AFiyy zQ|IlD-p-Ey=@=EtJppumG(>gU6Hm>tXw0{p^FP#DP{wiXk5PG)fuX;NZbOn72+q)$?O|L{a-c+bkNNTVUP#$DW0pH_$*3Jjl}@B3UQ(k z0oUY+3{AxfR3P$GWKW@H9uakz$RG9P1ZPN8R)D|zWCE2(xB>Lxm9adLScp?3chq1H zbXFhGf@lfNB3MJYBLWda6PN_9F9!H)+?I<}A5nOT58V^=FoFmFE@#9=g;nahIp{r2 zqlSg`$)x3$2=E`(buCo)HqgTEICoSMT%ki0i7tr}7n$|0^KWh!FRJA$65z9;&zT%8 z-a#>(4vAb!cFm62t?_-I=_TM6sr`np5~x@NBcAIFgKKnr(V~vC2w@CV@)7_EvJjt< zZZZ=|BPc}>Lo9FmBg}u32s|M$R0&bI7sNyUA)mEj1t+?3<3OkYi4D4eTcRp-V?Y+5D}3w0$(9jx6~FQ z5_JGi(&b`qAXTbJ=29Z6IKP};)>UWPHNCMC1S|1QXSoS}u2AP?$yI7zgi@vQ|6757 zDk@jT;)jx}{gTm|@;>NH^&%66)oPm*?L(yzfyT|Wrruufocfb4XPc#sS#WQ)s2mwt zn06UUZ+h0LjV^8=MR`S$o&^gDXWs#xPin7HYl?8WPH!1!a_r~wzsuNvD#Eu}8bJem z+#U;i&yU5Q+#aou2O}OLepE7^F7(piYI? ziGf0;k3VZvhY0~dVW-X-T0}Z-)OTgnSrN{oojm8qc}X^hN}uY;^>*SC#UVgefmT~@ z3#t;U&Dgn`^IG)^(LMwU!g~|fM7h0fv~H}4iojQGokGXkQX1eO5`u3;J&XEym**0g zaB3aK{LR=GMc>|3w}4+z=bKjZ_onve4S$?H6A>irRf$0`(;soDPmctt*W_trhkOf3{a8ESWpw()v3v;uRJGp_SMhl!aX`p3ISim3d1EdR+c z)eO-d#QY>&>mkrUwKs!J*7P!xL(`z4nxEYNn@NwWq7*~|iOwd3?h+$8i7v diff --git a/src/Mod/Draft/Resources/translations/Draft_cs.ts b/src/Mod/Draft/Resources/translations/Draft_cs.ts index 7c1d6ddf0..97bd03332 100644 --- a/src/Mod/Draft/Resources/translations/Draft_cs.ts +++ b/src/Mod/Draft/Resources/translations/Draft_cs.ts @@ -4,26 +4,26 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install - Download of dxf libraries failed. -Please download and install them manually. -See complete instructions at + Stažení dxf knihoven selhalo. +Stáhněte a nainstalujte je prosím manuálně. +Kompletní návod ke shlédnutí na http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Přidat bod - + Adds a point to an existing wire/bspline Přidá bod do stávající čáry/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Přidat do skupiny... - + Adds the selected object(s) to an existing group Přidá vybraný/é objekt(y) do existující skupiny @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Pole - + Creates a polar or rectangular array from a selected object Vytvoří polární nebo obdelníkové pole z vybraných objektů @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klon - + Clones the selected object(s) Naklonuje vybrané objekty @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Odstranit bod - + Removes a point from an existing wire or bspline Odstraní bod z existující křivky nebo bsplinu @@ -181,18 +181,18 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Explodes the selected objects into simpler objects, or subtracts faces - Explodes the selected objects into simpler objects, or subtracts faces + Rozloží vybrané objekty na jednodušší objekty nebo odečte plochy Draft_Draft2Sketch - + Draft to Sketch Skica z Návrhu - + Convert bidirectionally between Draft and Sketch objects Převést vzájemně mezi objekty Návrhu a Skici @@ -239,14 +239,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder - Sloučit plochy + Svázat plochy - + Creates a facebinder object from selected face(s) - Vytvoří sloučený objekt z vybraných ploch + Vytvoří objekt svázaných ploch z vybraných ploch @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Obrať rozměr - + Flip the normal direction of a dimension Obrátí směr normály rozměru @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Léčit - + Heal faulty Draft objects saved from an earlier FreeCAD version Léčí objekty Návrhu uložené v dřívějších verzích FreeCADu @@ -304,14 +304,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror - Mirror + Zrcadlit - + Mirrors the selected objects along a line defined by two points - Mirrors the selected objects along a line defined by two points + Ozrcadlí vybrané objekty podél čáry definované dvěma body @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray Dráha pole - + Creates copies of a selected object along a selected path. Vytvoří kopije z vybraných objektů podél vybrané dráhy. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Bod - + Creates a point object Vytvoří bodový objekt @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Vybrat skupinu - + Selects all objects with the same parents as this group Vybere všechyn objekty se společnými předky jako skupinu @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D průmět - + Creates Shape 2D views of selected objects Vytvoří 2D průmět vybraných objektů @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Zobrazit přichytávací panel - + Shows Draft snap toolbar Zobrazit Přichytávací nástrojový panel @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Úhly - + Snaps to 45 and 90 degrees points on arcs and circles Zachytávání na bodech po 45 a 90 stupňích na kruzích a elipsách @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Střed - + Snaps to center of circles and arcs Přichytit na střed kruhů nebo oblouků @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Rozměry - + Shows temporary dimensions when snapping to Arch objects Zobrazuje dočasný rozměr když se přichytává k objektům @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Koncový bod - + Snaps to endpoints of edges Přichytí do koncového bodu hrany @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Prodloužit - + Snaps to extension of edges Přichytí do prodloužení hrany @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Mřížka - + Snaps to grid points Přichytí na body mřížky @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Průnik - + Snaps to edges intersections Přichytí na průsečík hran @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Přepínač On/Off - + Activates/deactivates all snap tools at once Aktivace/deaktivace všech nástrojů najednou @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Bod uprostřed - + Snaps to midpoints of edges Přichytí na bod uprostřed hrany @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nejbližší - + Snaps to nearest point on edges Přichytí k nejbližšímu bodu hrany @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Pravoůhle - + Snaps to orthogonal and 45 degrees directions Přichytí pravoůhle a ve směrech pod 45 stupni @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Rovnoběžně - + Snaps to parallel directions of edges Přichtí rovnoběžně ke směru hrany @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Kolmo - + Snaps to perpendicular points on edges Přichytí kolmo v bodě na hraně @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Pracovní rovina - + Restricts the snapped point to the current working plane Omezení přichtávání bodů na aktuální pracovní rovinu @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Přepnout mřížku - + Toggles the Draft grid on/off Přepne mřížku Návrhu - zapnuto/vypnuto @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Přidá VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline BSpline z čáry - + Converts between Wire and BSpline Převede mezi čárou a BSpline @@ -931,7 +931,7 @@ such as "Arial:Bold" None (fastest) - None (nejrychlejší) + Žádný (nejrychlejší) @@ -944,17 +944,17 @@ such as "Arial:Bold" Původní barva a šířka čáry - + if this is checked, paper space objects will be imported too pokud je zatrženo, budou importovány i objekty na ploše papíru - + if this is unchecked, texts/mtexts won't be imported pokud je zaškrtnuta, text/mtext nebude importován - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Při exportu splinů do DXF, jsou transformovány do křivek. Tato hodnota je maximální délka každého segmentu křivky. Je-li 0, pak je celá spline považována za rovnou část. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. Toto je hodnota použitá funkcemi, které používají toleranci. Hodnoty s rozdíly pod tuto hodnotu budou považovány za stejné. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Toto zaškrtněte, pokud chcete nepojmenovaný blok (počáteční *) bude importováno také - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Je-li toto políčko zaškrtnuto, freecad se pokusí spojit shodné objekty do drátů. Pozor, může to chvíli trvat... - + Join geometry Spojit geometrie @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. Vpravo - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Je-li zaškrtnuto, objekty ze společných vrstev budou spojeny do bloku, takže se zobrazí rychleji, ale budou obtížněji upravitelné - + Group layers into blocks Skupiny vrstev do bloků - + If this is checked, all objects containing faces will be exported as 3d polyfaces Pokud je toto zvoleno, všechny objekty obsahující plochy budou exportovány jako 3D plochy - + Export 3D objects as polyface meshes Exportuje 3D objekty jako plošné sítě @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. Je-li vybráno, mřížka bude vždy viditelná při aktivním režimu návrhu. Jinak pouze když použijete příkaz - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Je-li zaškrtnuto, importovaný text bude mít standardní velikost textu Návrhu, namísto velikosti kterou měl v DXF dokumentu - + Use standard font size for texts Použít standardní velikost písma pro text - + If this is checked, hatches will be converted into simple wires Je-li zaškrtnuto, šrafy budou převedeny na jednoduché dráty - + Import hatch boundaries as wires Importovat hranice šrafů jako dráty - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Je-li zaškrtnuto, lomené křivky budou vykresleny jako uzavřené dráty se správnou tloušťkou, pokud je definovaná - + Render polylines with width Vykreslit lomené čáry s tloušťkou @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. Barva konstrukční geometrie - + Import Import - + texts and dimensions texty a rozměry - + points body - + layouts rozložení - + *blocks *bloky - + If this is checked, the exported objects will be projected to reflect the current view direction Je-li zaškrtnuto, exportované objekty budou promítnuty ve směru aktuálního pohledu - + Project exported objects along current view direction Promítnout exportované objekty ve směru aktuálního pohledu - + Ellipse export is badly supported. Use this to export them as polylines instead. Export elipsy je nedostatečně podporován. Tímto se bude exportovat jako lomená čára. @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. Vyplnit objekty plochou, kdykoliv je to možné - + Create Vytvořit - + simple Part shapes jednoduché tvary součásti - + If this is checked, parametric Draft objects will be created whenever possible Je-li zaškrtnuto, budou vytvořeny objekty Návrhu, kdykoliv je to možné - + Draft objects Objekty Návrhu - + If this is checked, sketches will be created whenever possible Je-li zaškrtnuto, budou vytvořeny náčrty, kdykoliv je to možné - + Sketches Náčrty - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Je-li zaškrtnuto, budou barvy získány z DXF objektů, kdykolv je to možné. Jinak budou použity výchozí barvy. - + Get original colors from the DXF file Převzít originální barvy z DXF souboru - + Treat ellipses and splines as polylines Brát elipsy a splajny jako lomené čáry - + Max Spline Segment: Max. segment splajnu: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. Zobrazovat jednoteky v kótách - - Automatic update - Automatická aktualizace - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/> <body><p>Zaškrtnutím tohoto povolíte FreeCADu stáhnout a aktualizovat</p> <p>komponenty potřebné pro DXF import a export. Můžete to také udělat</p> <p>manuálně tím, že navštívíte https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Povolit FreeCADu automaticky stáhnout a aktualizovat DXF knihovny - + If this is checked, only standard Part objects will be created (fastest) Je-li zaškrtnuto, budou vytvořeny jen standardní objekty Součásti (nejrychlejší) - + If this is checked, DXF layers will be imported as Draft VisGroups Je-li zaškrtnuto, DXF vrstvy budou importovány jako Návrhové VisGroups - + Use VisGroups Používat VisGroups - + mm mm @@ -1602,17 +1597,17 @@ Values with differences below this value will be treated as same. Grid and snapping - Grid and snapping + Mřížka a přichytávání Text settings - Text settings + Nastavení textu Font family - Font family + Rodina fontů @@ -1622,72 +1617,72 @@ Values with differences below this value will be treated as same. Dimension settings - Dimension settings + Nastavení kót Display mode - Display mode + Styl zobrazení Extension lines size - Extension lines size + Délka vynášecích čar Arrows style - Arrows style + Typ šipek Arrows size - Arrows size + Velikost šipek Text orientation - Text orientation + Orientace textu Text spacing - Text spacing + Odsazení textu ShapeString settings - ShapeString settings + Nastavení Tvaru písma Default ShapeString font file - Default ShapeString font file + Výchozí soubor fontu pro Tvar písma Drawing view line definitions - Drawing view line definitions + Definice vykreslení čar DWG - DWG + DWG DWG conversion - DWG conversion + DWG konverze <html><head/><body><p><span style=" font-weight:600;">Note:</span> DXF options apply to DWG files as well.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Note:</span> DXF options apply to DWG files as well.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Poznámka:</span> Nastavení DXF se aplikují i na soubory DWG.</p></body></html> DXF - DXF + DXF @@ -1695,14 +1690,14 @@ Values with differences below this value will be treated as same. Možnosti importu - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) + Je-li zaškrtnuto, použije se starý import pomocí pythonu, jinak nový pomocí C++ (rychlejší, ale nemá ještě tolik funkcí) - + Use legacy python importer - Use legacy python importer + Použít původní import pomocí pythonu @@ -1712,32 +1707,47 @@ Values with differences below this value will be treated as same. OCA - OCA + OCA SVG - SVG + SVG If this is checked, no units conversion will occur. One unit in the SVG file will translate as one millimeter. - If this is checked, no units conversion will occur. One unit in the SVG file will translate as one millimeter. + Je-li zaškrtnuto, nepoužije se konverze jednotek. Jedna jednotka v SVG souboru se převede na jeden milimetr. Disable units scaling - Disable units scaling + Vypnout převod jednotek - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. + Je-li zaškrtnuto, Pohledy výkresu se budou exportovat jako bloky. Šablony post-R12 pak mohou selhat. - + Export Drawing Views as blocks - Export Drawing Views as blocks + Exportovat Pohledy výkresu jako bloky + + + + Note: Not all the options below are used by the new importer yet + Poznámka: Nový import nevyužívá ještě všechny možnosti níže + + + + Show this dialog when importing and exporting + Zobrazit tento dialog při importu a exportu + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Příkazový panel Návrhu - + active command: aktivní příkaz: - + None Žádný - + Active Draft command aktivní příkaz návrhu - + X coordinate of next point X souřadnice dalšího bodu - + X X - + Y Y - + Z Z - + Y coordinate of next point Y souřadnice dalšího bodu - + Z coordinate of next point Z souřadnice dalšího bodu - + Radius Poloměr - + Radius of Circle Poloměr kruhu - + &Relative &Relativní - + Coordinates relative to last point or absolute (SPACE) Souřadnice vztažené k poslednímu bodu nebo absolutní (mezerník) - + F&illed Vyplněné - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Zaškrtněte, jestliže se má zobrazit objekt vyplněný, jinak se zobrazí jako drátěný (i) - + &Finish &Dokončit - + Finishes the current drawing or editing operation (F) Dokončí aktuální kreslicí nebo upravovací operaci (F) - + If checked, command will not finish until you press the command button again Je-li zaškrtnuto, příkaz se nedokončí, dokud nestisknete znovu na příkazové tlačítko - + If checked, an OCC-style offset will be performed instead of the classic offset Je-li zaškrtnuto, bude uplatněn OCC-styl odsazení namísto klasického odsazení - + &OCC-style offset &OCC-styl odstupu - + Add points to the current object Přidá body k aktuálnímu objektu - + Remove points from the current object Odstraní body z aktuálního objektu - + Make Bezier node sharp Změní Beziérův uzel na ostrý - + Make Bezier node tangent Změní Beziérův uzel na tangentní - + Make Bezier node symmetric Změní Beziérův uzel na symetrický - + &Undo &Zpět - + Undo the last segment (CTRL+Z) Vrátit zpět poslední segment (CTRL + Z) - + Finishes and closes the current line (C) ukončí a zavře aktuální řádek (C) - + &Wipe &Vymazat - + Wipes the existing segments of this line and starts again from the last point (W) Vymaže dosavadní segmenty této čáry a začne z posledního bodu (W) - + Number of sides Počet stran @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. Odstup - + XY XY - + Select XY plane Vyberte rovinu XY - + XZ XZ - + Select XZ plane Vyberte rovinu XY - + YZ YZ - + Select YZ plane Vyberte rovinu YZ - + View Pohled - + Select plane perpendicular to the current view Vyberte rovinu kolmou na aktuální pohled - + Do not project points to a drawing plane nepromítat body do kreslící roviny - + If checked, objects will be copied instead of moved (C) Je-li zaškrtnuta, objekty budou zkopírovány namísto přesunutý (C) - + Text string to draw Textový řetězec k vykreslení - + String Řetězec - + Height of text Výška textu - + Height Výška - + Intercharacter spacing Rozestupy mezi znaky - + Tracking Sledování - + Full path to font file: Úplná cesta k souboru písma: - + Open a FileChooser for font file Otevře dialogové okno pro výběr souboru písma - + Set/unset a working plane Nastavit pracovní rovinu - + Line Color Barva čáry - + Face Color Barva plochy - + Line Width Šířka čáry - + Font Size Velikost písma - + Apply to selected objects použít na vybrané objekty - + Toggles Construction Mode Přepíná konstrukční režim - + Select Plane Vyberte rovinu @@ -2066,241 +2076,241 @@ Values with differences below this value will be treated as same. DWire - + Circle Kruh - + Center X Střed X - + Arc oblouk - + Point Bod - + Distance Distance - + Trim Oříznout - + Pick Object Vybrat objekt - + Edit Upravit - + Global X Globální X - + Global Y Globální Y - + Global Z Globální Z - + Local X Lokální X - + Local Y Lokální Y - + Local Z Lokální Z - + Invalid Size value. Using 200.0. Neplatná hodnota velikosti. Použito 200,0. - + Invalid Tracking value. Using 0. Neplatná hodnota sledování. Použito 0. - + Please enter a text string. Vložte textový řetězec, prosím. - + Select a Font file Vyberte soubor písma - + Please enter a font file. Vložte, prosím, soubor písma. - + Draft.makeBSpline: not enough points Draft.makeBSpline: nedostatek bodů - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Shodné koncové body byly uzavřeny - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Neplatný list bodů - + Found groups: closing each open object inside Nalezené skupiny: uzavírání všech otevřených objektů uvnitř - + Found mesh(es): turning into Part shapes Nalezena síť (sítě): změna na tvary dílce - + Found 1 solidificable object: solidifying it Nalezen 1 objekt k vytvoření tělesa: vytváření tělesa - + Found 2 objects: fusing them Nalezeny 2 objekty: jejich slučování - + Found 1 non-parametric objects: draftifying it Nalezen 1 neparametrický objekt: převádění na parametrický drát Návrhu - + Found 1 open wire: closing it nalezen 1 otevřený drát: jeho uzavírání - + Found several open wires: joining them Nalezeno několik drátů: jejich spojování - + Found several edges: wiring them Nalezeno několik hran: jejich spojování - + Unable to upgrade these objects. Nelze povýšit tyto objekty. - + Found 1 block: exploding it Nalezen 1 blok: jeho rozkládání - + Found 1 parametric object: breaking its dependencies Nalezen 1 parametrický objekt: rozbíjení jeho závislostí - + Found 2 objects: subtracting them Nalezeny 2 objekty: jejich odečítání - + Found several faces: splitting them Nalezeno několik ploch: jejich rozdělování - + Found several objects: subtracting them from the first one Nalezeno několik objektů: jejich odečítání od prvního - + Found 1 face: extracting its wires Nalezena 1 plocha: extrahování jejích drátů - + Found only wires: extracting their edges Nalezeny pouze dráty: extrahování jejich hran - + No more downgrade possible Není možné další ponížení - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Uzavřeno s některým prvním/posledním bodem. Geometrie není aktualizovaná. @@ -2652,7 +2662,7 @@ Values with differences below this value will be treated as same. Vybrat měřítko: - + Select an object to project Vyberte objekt k promítnutí @@ -2673,61 +2683,61 @@ Values with differences below this value will be treated as same. - + Active object must have more than two points/nodes Aktivní objekt musí mít více než dva body/uzly - + Selection is not a Knot Ve výběru není uzel - + Endpoint of BezCurve can't be smoothed Koncový uzel Beziérovy křivky nemůže být uhlazen - + Select an object to convert Vyberte objekt k převedení - + Select an object to array Vyberte objekt pro pole - + Please select base and path objects Vyberte, prosím, základnu a objekt cesty - + Create Point Vytvoří bod - + Select an object to clone Vyberte objekt pro klonování - + Select face(s) on existing object(s) Vyberte plochu/y na existujícím objektu/objektech @@ -2761,106 +2771,106 @@ Values with differences below this value will be treated as same. Přichycení - + Found 1 multi-solids compound: exploding it Nalezena 1 více-tělesová složenína: její rozkládání - + Sides Strany - + BSplines and Bezier curves are not supported by this tool BSpliny a Bezierovy křivky nejsou tímto nástrojem podporovány - + The given object is not planar and cannot be converted into a sketch. Daný objekt není rovinný a nelze převést na náčrt. - + Found several objects: creating a shell Nalezeno několik objektů: vytváření skořepiny - + Found several coplanar objects or faces: creating one face Nalezeno několik koplanárních objektů nebo ploch: vytváření jedné plochy - + Found 1 linear object: converting to line Nalezen 1 lineární objekt: převádění do čáry - + Found 1 closed sketch object: creating a face from it Nalezen 1 uzavřený náčrt: vytváření plochy z něj - + Found closed wires: creating faces Nalezeny uzavřené dráty: vytváření plochy - + Found several non-treatable objects: creating compound Nalezeno několik neléčitelných objektů: vytváření složeniny - + Length Délka - + Angle Úhel - + Length of current segment Délka aktuálního segmentu - + Angle of current segment Úhel aktuálního segmentu - + Check this to lock the current angle (l) Zaškrtněte pro uzamčení aktuálního úhlu (l) - + &Select edge Vybrat hranu - + Selects an existing edge to be measured by this dimension (E) Vybere existující hranu pro měření pomocí této kóty (E) - + Auto Automaticky @@ -2872,22 +2882,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Převést na náčrt - + Convert to Draft Převést na Návrh - + Convert Převést - + Array Pole @@ -2927,7 +2937,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2936,89 +2946,98 @@ Please either enable FreeCAD to download these libraries: Or download these libraries manually, as explained on https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - The DXF import/export libraries needed by FreeCAD to handle -the DXF format were not found on this system. -Please either enable FreeCAD to download these libraries: - 1 - Load Draft workbench - 2 - Menu Edit > Preferences > Import-Export > DXF > Enable downloads -Or download these libraries manually, as explained on + Knihovny pro DXF import/export, které potřebuje FreeCAD k manipulaci s formátem DXF, nebyly v systému nalezeny. +Buď prosím umožněte FreeCADu tyto knihovný stáhnout + 1 - Načtěte Draft workbench + 2 - Menu Upravit > Nastavení > Import-Export > DXF > Umožnit stahování +nebo stáhněte knihovny manuálně, jak je vysvětleno na https://github.com/yorikvanhavre/Draft-dxf-importer -To enabled FreeCAD to download these libraries, answer Yes. +Chcete umožnit FreeCADu stáhnout tyto knihovny? - + No object given - No object given + Není zadán objekt - + The two points are coincident - The two points are coincident + Dva body jsou shodné - + Co&ntinue - Co&ntinue + Pokračovat - + Cl&ose Zavřít - + C&opy Kopírovat - + Faces Plochy - + Remove Odstranit - + Add Přidat - + Facebinder elements - Facebinder elements + Svázané plochy - + Mirror - Mirror + Zrcadlit - + Select an object to mirror - Select an object to mirror + Vyberte objekt k zrcadlení - + Pick start point of mirror line: - Pick start point of mirror line: + Vyberte počáteční bod osy zrcadlení: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_de.qm b/src/Mod/Draft/Resources/translations/Draft_de.qm index ff3eaa4ff5cd9b29c458a89b81d6151144af215f..6377dd74e2e68d71908f30f07a68e050c61a6c30 100644 GIT binary patch delta 4861 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 delta 4301 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 BBC!Af diff --git a/src/Mod/Draft/Resources/translations/Draft_de.ts b/src/Mod/Draft/Resources/translations/Draft_de.ts index 9995d51c9..91815ae5d 100644 --- a/src/Mod/Draft/Resources/translations/Draft_de.ts +++ b/src/Mod/Draft/Resources/translations/Draft_de.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Punkt hinzufügen - + Adds a point to an existing wire/bspline Fügt einen Punkt zu einer vorhandenen Linie/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Zur Gruppe hinzufügen... - + Adds the selected object(s) to an existing group Fügt die ausgewählten Objekte zu einer vorhandenen Gruppe @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Anordnung - + Creates a polar or rectangular array from a selected object Erstellt eine polare oder rechteckige Anordnung des ausgewählten Objekts @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klonen - + Clones the selected object(s) Ausgewählte Objekte klonen @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Punkt entfernen - + Removes a point from an existing wire or bspline Removes a point from an existing wire or bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Entwurf zu Skizze - + Convert bidirectionally between Draft and Sketch objects Bidirektional zwischen Draft und Sketch konvertieren @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Flächengruppe - + Creates a facebinder object from selected face(s) Erzeugt eine Flächengruppe aus den ausgewählten Flächen @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Bemaßung umkehren - + Flip the normal direction of a dimension Die normale Richtung der Bemaßung umkehren @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heilen - + Heal faulty Draft objects saved from an earlier FreeCAD version Stelle fehlerhafte Entwurfobjekte aus älteren FreeCAD Versionen wieder her @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Spiegeln - + Mirrors the selected objects along a line defined by two points Spiegelt die ausgewählten Objekte entlang einer Linie, die durch zwei Punkte definiert wird @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PfadDatenfeld - + Creates copies of a selected object along a selected path. Erstellt Kopien eines ausgewählten Objekts entlang eines ausgewählten Pfades. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Punkt - + Creates a point object Erzeugt ein Punkt-Objekt @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Wähle Gruppe - + Selects all objects with the same parents as this group Wählt alle Objekte mit den selben Eltern wie diese Gruppe @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Form in 2D Ansicht - + Creates Shape 2D views of selected objects Erzeugt 2D Ansichten von ausgewählten Objekten @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Zeige Fang-Symbolleiste - + Shows Draft snap toolbar Entwurfs-Fang-Werkzeugleiste einblenden @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Winkel - + Snaps to 45 and 90 degrees points on arcs and circles Rastet auf 45- und 90 Grad-Punkten auf Bögen und Kreise ein @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Mittelpunkt - + Snaps to center of circles and arcs Einrasten im Zentrum von Kreisen und Kreisbögen @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Bemaßungen - + Shows temporary dimensions when snapping to Arch objects Temporäre Bemaßungen beim Einrasten an Bogenobjekten anzeigen @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Endpunkt - + Snaps to endpoints of edges Einrasten an den Endpunkten der Kanten @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Verlängerung - + Snaps to extension of edges Einrasten an der Fortsetzung der Kanten @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Raster - + Snaps to grid points An Rasterpunkten einrasten @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Schnitt - + Snaps to edges intersections Einrasten an den Schnittkanten @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Umschalten Ein/Aus - + Activates/deactivates all snap tools at once Aktiviert/deaktiviert alle Fang-Tools auf einmal @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Mittelpunkt - + Snaps to midpoints of edges Einrasten an den Mittelpunkten der Kanten @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nächste - + Snaps to nearest point on edges Einrasten am nächsten Punkt bei den Kanten @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Senkrecht - + Snaps to orthogonal and 45 degrees directions Rastet in 45°-Winkeln und senkrecht ein @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallel - + Snaps to parallel directions of edges Parallel zu Kanten einrasten @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Senkrecht - + Snaps to perpendicular points on edges Rastet an Punkten senkrecht zu Kanten ein @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Arbeitsebene - + Restricts the snapped point to the current working plane Beschränkt den Rastpunkt auf die momentane Arbeitsebene @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Raster umschalten - + Toggles the Draft grid on/off Entwurfsraster ein-/ausschalten @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Fügt eine VisGroup hinzu @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Wire to BSpline - + Converts between Wire and BSpline Converts between Wire and BSpline @@ -944,17 +944,17 @@ such as "Arial:Bold" Ursprüngliche Farbe und Linienstärke - + if this is checked, paper space objects will be imported too Falls aktiviert, werden Papierbereichs-Objekte ebenfalls importiert - + if this is unchecked, texts/mtexts won't be imported Wenn dies deaktiviert ist, wird texts/mtexts nicht importiert - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Wenn Splines in DXF exportiert werden, werden sie in Polygonzüge umgewandelt. Dieser Wert ist die maximale Länge eines Segments des Polygonzuges. Falls 0, wird die ganze Spline-Kurve als ein Geradenstück behandelt. @@ -996,17 +996,17 @@ Values with differences below this value will be treated as same. Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Aktivieren Sie diese Option, wenn Sie nicht benannte Blöcke (beginnend mit a *) auch importieren möchten - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Falls aktiviert, werden zusammentreffende Objekte als Linienzüge (Wires) zusammengefasst. Achtung, dies kann einige Zeit in Anspruch nehmen... - + Join geometry Geometrie vereinen @@ -1151,22 +1151,22 @@ Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt.Rechts - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Wenn dies gesetzt ist, werden Objekte der gleichen Ebene mit einander in einem Zeichnungsblock verbunden, sodass die Ansicht schneller gedreht, aber die Bearbeitung schwieriger wird - + Group layers into blocks Gruppiere Ebenen in Blöcken - + If this is checked, all objects containing faces will be exported as 3d polyfaces Falls dies angewählt ist, werden alle Objekte mit Oberflächen als 3D Polyfaces exportiert - + Export 3D objects as polyface meshes 3D Objekte als Polyface Meshes exportieren @@ -1201,32 +1201,32 @@ Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt.Wenn aktiviert, ist das Entwurfsraster stets eingeblendet, wenn die Entwurfs-Arbeitsumgebung verwendet wird. Sonst nur, wenn ein Befehl verwendet wird - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Wenn aktiviert, erhalten importierte Texte die standardmäßige Entwurfs-Schriftgröße, statt ihrer Ursprungsgröße im DXF Dokument - + Use standard font size for texts Standard Schriftgröße für Texte verwenden - + If this is checked, hatches will be converted into simple wires Wenn gesetzt, werden Schraffuren in einfache Drähte umgewandelt - + Import hatch boundaries as wires Fügt Schraffurgrenzen als Drähte hinzu - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Wenn aktiviert, werden Polylinien mit definierter Breite als geschlossener Draht mit der richtigen Dicke gerendert - + Render polylines with width Polylinien mit Breite rendern @@ -1291,42 +1291,42 @@ Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt.Hilfsgeometrie-Farbe - + Import Import - + texts and dimensions Texte und Bemaßungen - + points Punkte - + layouts Layouts - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction Falls aktiviert werden exportierte Objekte entsprechend der momentanen Blickrichtung projiziert - + Project exported objects along current view direction Projiziere exportierte Objekte entlang der aktuellen Blickrichtung - + Ellipse export is badly supported. Use this to export them as polylines instead. Der Export von Ellipsen wird nur teilweise unterstützt. Mit dieser Option werden diese stattdessen als Polygonzüge exportiert. @@ -1446,52 +1446,52 @@ Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt.Falls möglich, zeige Objekte mit Flächen an - + Create Erstellen - + simple Part shapes Einfache Grundkörper-Formen - + If this is checked, parametric Draft objects will be created whenever possible Wenn aktiviert, werden immer wenn möglich parametrische Draft-Objekte erstellt - + Draft objects Entwurfs-Objekte - + If this is checked, sketches will be created whenever possible Wenn aktiviert, werden immer wenn möglich Skizzen erstellt - + Sketches Skizzen - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Wenn aktiviert, werden die Farben des DXF-Objektes übernommen wenn möglich. Andernfalls werden Standard-Farben zugewiesen. - + Get original colors from the DXF file Hole die Original-Farben aus der DXF-Datei - + Treat ellipses and splines as polylines Behandle Ellipsen und Splines wie Polylinien - + Max Spline Segment: Höchstanzahl von Liniensegmenten für Splines: @@ -1506,37 +1506,32 @@ Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt.Zeige das Einheiten-Suffix in den Bemaßungen - - Automatic update - Automatische Updates - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> Indem Sie diesen Punkt anhaken, erlauben Sie FreeCAD, die Komponenten, die für den DXF Im- und Export nötig sind, automatisch herunter zu laden und zu aktualisieren. Sie können dies auch manuell durch den Besuch von https://github.com/yorikvanhavre/Draft-dxf-importer machen - + Allow FreeCAD to automatically download and update the DXF libraries FreeCAD das automatische Herunterladen und Aktualisieren der DXF-Bibliotheken erlauben - + If this is checked, only standard Part objects will be created (fastest) Wenn aktiviert, werden nur Standard-Grundkörper erstellt (schnellste Möglichkeit) - + If this is checked, DXF layers will be imported as Draft VisGroups Wenn diese Option aktiviert ist, werden DXF-Layer als Draft VisGroups importiert - + Use VisGroups Verwenden Sie VisGroups - + mm mm @@ -1696,12 +1691,12 @@ Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt.Import Einstellungen - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Wenn aktiviert wird der alte Python importer verwendet. Andernfalls wird die neue C++ Variante verwendet (schneller, aber zur Zeit mit weniger Funktionen) - + Use legacy python importer Verwende einen älteren Python-Importeur @@ -1732,15 +1727,30 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. Einheitenskalierung deaktivieren - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. wenn aktiviert, werden die Zeichnungsansichten als Blöcke exportiert. Kann mit Vorlagen jünger als R12 nicht funktionieren. - + Export Drawing Views as blocks Zeichnungsansichten als Blöcke exportieren + + + Note: Not all the options below are used by the new importer yet + Achtung: Nicht alle nachfolgenden Optionen werden vom neuen Import verwendet + + + + Show this dialog when importing and exporting + Diesen Dialog beim importieren und exportieren anzeigen + + + + Automatic update (legacy importer only) + Automatisches Update (nur für älteren Import) + Workbench @@ -1763,162 +1773,162 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. draft - + Draft Command Bar Entwurfsbefehlsleiste - + active command: aktiver Befehl: - + None Kein - + Active Draft command Aktiver Draft-Befehl - + X coordinate of next point X-Koordinate des nächsten Punktes - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-Koordinate des nächsten Punktes - + Z coordinate of next point Z-Koordinate des nächsten Punktes - + Radius Radius - + Radius of Circle Kreisradius - + &Relative &Relativ - + Coordinates relative to last point or absolute (SPACE) Koordinaten relativ zum letzten Punkt oder absolut (Leertaste) - + F&illed Gefüllt - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Hier anwählen falls das Objekt gefüllte erscheinen soll, sonst erscheint es als Drahtgitter (i) - + &Finish &Beenden - + Finishes the current drawing or editing operation (F) Momentanen Zeichnungs- oder Editier-Operation (F) beenden - + If checked, command will not finish until you press the command button again Falls aktiviert, wird Befehl nicht beendet bis Sie den Befehlsknopf nochmals drüchen - + If checked, an OCC-style offset will be performed instead of the classic offset Verwende OCC Versatz statt klassischem Versatz - + &OCC-style offset OCC Versatz - + Add points to the current object Punkte zu momentanem Objekt hinzufügen - + Remove points from the current object Punkte von momentanem Objekt entfernen - + Make Bezier node sharp Mache Bezier Knoten zu Eckknoten - + Make Bezier node tangent Mache Bezier Knoten tangential - + Make Bezier node symmetric Mache Bezier Knoten symmetrisch - + &Undo &Rückgängig - + Undo the last segment (CTRL+Z) Letztes Segment rückgängig machen (Strg+Z) - + Finishes and closes the current line (C) Beendet und schließt die aktuelle Linie (C) - + &Wipe &Radieren - + Wipes the existing segments of this line and starts again from the last point (W) Löscht vorhandene Segmente dieser Linie und beginnt nochmals vom letzten Punkt (W) - + Number of sides Anzahl der Seiten @@ -1928,132 +1938,132 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. Versetzen - + XY XY - + Select XY plane XY-Ebene auswählen - + XZ XZ - + Select XZ plane XY-Ebene auswählen - + YZ YZ - + Select YZ plane YZ-Ebene wählen - + View Ansicht - + Select plane perpendicular to the current view Wählen Sie eine Ebene senkrecht zur momentanen Blickrichtung aus - + Do not project points to a drawing plane Punkt nicht auf Zeichenebene projizieren - + If checked, objects will be copied instead of moved (C) Falls gesetzt, Objekte werden kopiert anstatt verschoben (C) - + Text string to draw Zu zeichnende Textzeichenkette - + String Zeichenkette - + Height of text Höhe des Textes - + Height Höhe - + Intercharacter spacing Zeichenabstand - + Tracking Verfolgung - + Full path to font file: Vollständiger Pfad zur Schriftdatei: - + Open a FileChooser for font file Schriftartendatei auswählen - + Set/unset a working plane Eine Arbeitsebene festlegen/aufheben - + Line Color Linienfarbe - + Face Color Oberflächenfarbe - + Line Width Linienbreite - + Font Size Schriftgröße - + Apply to selected objects Auf selektierte Objekte anwenden - + Toggles Construction Mode Konstruktionsmodus umschalten - + Select Plane Ebene auswählen @@ -2068,239 +2078,239 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. Polygonzug - + Circle Kreis - + Center X Mittelpunkt X - + Arc Kreisbogen - + Point Punkt - + Distance Abstand - + Trim Beschneiden - + Pick Object Objekt wählen - + Edit Bearbeiten - + Global X Globales X - + Global Y Globales Y - + Global Z Globales Z - + Local X Lokales X - + Local Y Lokales Y - + Local Z Lokales Z - + Invalid Size value. Using 200.0. Ungültiger Größenwert. 200,0 wird verwendet. - + Invalid Tracking value. Using 0. Ungültiger Wert für Laufweite. Verwende stattdessen 0. - + Please enter a text string. Bitte geben Sie eine Textzeichenkette ein. - + Select a Font file Wählen Sie eine Schriftartdatei aus - + Please enter a font file. Bitte geben Sie eine Schriftdatei an. - + Draft.makeBSpline: not enough points Draft.makeBSpline: nicht genügend Punkte - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Identische Start und Endpunkte gefunden, erzwinge geschlossene Kurve - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Ungültige Punkteliste - + Found groups: closing each open object inside Gruppen gefunden: jedes Objekt innerhalb wird geschlossen - + Found mesh(es): turning into Part shapes Objekt-Netze gefunden: werden in Grundkörper-Formen transferiert - + Found 1 solidificable object: solidifying it 1 Objekt mit Möglichkeit zum Verwandeln in Solid gefunden. Wird verwandelt - + Found 2 objects: fusing them 2 Objekte gefunden: werden vereinigt - + Found 1 non-parametric objects: draftifying it 1 nicht-parametrisches Objekt gefunden: erstelle Entwurfsobjekt daraus - + Found 1 open wire: closing it 1 offenen Linienzug gefunden: schließen - + Found several open wires: joining them Mehrere ungeschlossene Drähte gefunden: Verbinde sie - + Found several edges: wiring them Mehrere Kanten gefunden: erstelle eine Linienzug daraus - + Unable to upgrade these objects. Diese Objekte können nicht zusammengeführt werden. - + Found 1 block: exploding it Ein Block gefunden: zerlege ihn - + Found 1 parametric object: breaking its dependencies 1 parametrisches Objekt gefunden: löse Abhängigkeiten auf - + Found 2 objects: subtracting them 2 Objekte gefunden: subtrahieren - + Found several faces: splitting them Mehrere Flächen gefunden: aufbrechen - + Found several objects: subtracting them from the first one Mehrere Objekte gefunden: diese vom ersten Objekt subtrahieren - + Found 1 face: extracting its wires 1 Fläche gefunden: seine Linienzüge extrahieren - + Found only wires: extracting their edges Nur Linienzüge gefunden: extrahieren ihre Kanten - + No more downgrade possible Kein weiteres Downgrade möglich - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Geschlossene Kurve mit identischem Start- und Endpunkt gefunden. Geometrie wurde nicht aktualisiert. @@ -2678,7 +2688,7 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. - + Select an object to project Wähle ein zu projizierendes Objekt aus @@ -2699,61 +2709,61 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. - + Active object must have more than two points/nodes Aktives Objekt muss mehr als zwei Punkte / Knoten haben - + Selection is not a Knot Auswahl ist kein Knoten - + Endpoint of BezCurve can't be smoothed Endpunkte einer Bézierkurve können nicht geglättet werden - + Select an object to convert Ein Objekt zum Konvertieren auswählen - + Select an object to array Wählen Sie ein Objekt für das Datenfeld - + Please select base and path objects Bitte wählen Sie Basis- und Pfadobjekte - + Create Point Punkt erstellen - + Select an object to clone Wählen Sie ein Objekt zum Klonen aus - + Select face(s) on existing object(s) Wählen sie ein oder mehrere Flächen auf existierenden Objekten aus @@ -2787,106 +2797,106 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. Objektfang - + Found 1 multi-solids compound: exploding it Ein Verbund mehrerer Solids gefunden: wird zerlegt - + Sides Seiten - + BSplines and Bezier curves are not supported by this tool BSplines und Bezier-Kurven werden von diesem Tool nicht unterstützt - + The given object is not planar and cannot be converted into a sketch. Das angegebene Objekt ist nicht planar und kann nicht in eine Skizze umgewandelt werden. - + Found several objects: creating a shell Mehrere Objekte gefunden: Erstellung einer Shell - + Found several coplanar objects or faces: creating one face Mehrere koplanare Objekte oder Flächen gefunden: Erstelle Fläche - + Found 1 linear object: converting to line 1 lineares Objekt gefunden: Konvertiere zu einer Linie - + Found 1 closed sketch object: creating a face from it 1 geschlossenes Skizzen-Objekt gefunden: Erstelle daraus eine Fläche - + Found closed wires: creating faces Geschlossene Drahtlinien gefunden: Erstelle Fläche - + Found several non-treatable objects: creating compound Mehrere nicht behandelbare Objekte gefunden: Erstellen eines Verbundes - + Length Länge - + Angle Winkel - + Length of current segment Länge des aktuellen Abschnitts - + Angle of current segment Winkel des aktuellen Abschnittes - + Check this to lock the current angle (l) Aktivieren, um den aktuellen Winkel zu sperren (l) - + &Select edge &Kante auswählen - + Selects an existing edge to be measured by this dimension (E) Wählt eine vorhandene Kante aus, die durch diese Bemaßung beschrieben werden soll (E) - + Auto Automatisch @@ -2898,22 +2908,22 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. - + Convert to Sketch In eine Skizze umwandeln - + Convert to Draft In einen Entwurf umwandeln - + Convert Umwandeln - + Array Anordnung @@ -2953,7 +2963,7 @@ Eine Einheit in der SVG-Datei wird als 1 Millimeter interpretiert. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2970,79 +2980,89 @@ oder laden Sie diese Bibliotheken manuell herunter, wie unter folgendem Link erk Antworten Sie mit "Ja", um FreeCAD den automatischen Download der Bibliotheken zu gestatten. - + No object given Kein Objekt vorhanden - + The two points are coincident Die beiden Punkte sind gleich - + Co&ntinue &Nächstes - + Cl&ose Schl&ießen - + C&opy &Kopieren - + Faces Flächen - + Remove Entfernen - + Add Hinzufügen - + Facebinder elements Flächen-Verbund-Elemente - + Mirror Spiegeln - + Select an object to mirror Wählen Sie ein Objekt zum Spiegeln - + Pick start point of mirror line: Wählen Sie den Start-Punkt der Spiegel-Linie: - + Pick end point of mirror line: Wählen Sie den End-Punkt der Spiegel-Linie: + + + Enter point + Punkt eingeben + + + + Enter a new point with the given coordinates + Einen neuen Punkt mit gegebenen Koordinaten eingeben + diff --git a/src/Mod/Draft/Resources/translations/Draft_el.qm b/src/Mod/Draft/Resources/translations/Draft_el.qm index 5d2ff8f743708b4b9defae289a7e14582a904939..5f674e373a020a005697e00a749dcf5f4277f6f1 100644 GIT binary patch delta 4891 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 R`o-4<4-g!3{a*GP@oyqUp<@65 delta 4291 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 Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Προσθήκη σημείου - + Adds a point to an existing wire/bspline Προσθέτει ένα σημείο σε ένα υπάρχον σύρμα/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Προσθέσετε στην ομάδα... - + Adds the selected object(s) to an existing group Προσθέτει τα επιλεγμένα αντικείμενα σε μία υπάρχουσα ομάδα @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Array - + Creates a polar or rectangular array from a selected object Δημιουργεί μία πολική ή ορθογώνια διάταξη από ένα επιλεγμένο αντικείμενο @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Κλώνος - + Clones the selected object(s) Κλωνοποιεί τα επιλεγμένα αντικείμενα @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Απομάκρυνση του σημείου - + Removes a point from an existing wire or bspline Removes a point from an existing wire or bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Από Προσχέδιο σε Σκίτσο - + Convert bidirectionally between Draft and Sketch objects Convert bidirectionally between Draft and Sketch objects @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Σύνθεση όψεων - + Creates a facebinder object from selected face(s) Δημιουργεί μία Σύνθεση όψεων, από επιλεγμένες όψεις(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Αντιστροφή της Διάστασης - + Flip the normal direction of a dimension Αντιστροφή της κανονικής κατεύθυνσης μιας διάστασης @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Επισκευή - + Heal faulty Draft objects saved from an earlier FreeCAD version Επισκευή ελαττωματικών αντικειμένων της Προσχεδίασης από παλαιότερη έκδοση του FreeCAD @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Δημιουργεί αντίγραφα των επιλεγμένων αντικειμένων κατά μήκος μιας επιλεγμένης διαδρομής. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Σημείο - + Creates a point object Δημιουργεί ένα αντικείμενο σημείων @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Επιλογή μίας ομάδας - + Selects all objects with the same parents as this group Selects all objects with the same parents as this group @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Shape 2D view - + Creates Shape 2D views of selected objects Creates Shape 2D views of selected objects @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Εμφάνιση της Γραμμής Εργαλείων Προσκόλλησης - + Shows Draft snap toolbar Εμφανίζει την Γραμμή Εργαλείων Προσκόλλησης της Προσχεδίασης @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Γωνίες - + Snaps to 45 and 90 degrees points on arcs and circles Προσκολλά στα σημεία των 45 και 90 μοιρών στα τόξα και στους κύκλους @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Κέντρο - + Snaps to center of circles and arcs Προσκολλά στο κέντρο κύκλων ή τόξων @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Διαστάσεις - + Shows temporary dimensions when snapping to Arch objects Εμφανίζει τις προσωρινές διαστάσεις όταν προσκολλά σε αντικείμενα Αρχιτεκτονικής @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Τελικό σημείο - + Snaps to endpoints of edges Προσκολλά στο τελικό σημείο των ακμών @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Επέκταση - + Snaps to extension of edges Προσκολλά στην επέκταση των ακμών @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Πλέγμα - + Snaps to grid points Προσκολλά στα σημεία του πλέγματος @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Διασταύρωση - + Snaps to edges intersections Προσκολλά στις διασταυρώσεις των ακμών @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Εναλλαγή Ενεργοποίησης/Απενεργοποίησης - + Activates/deactivates all snap tools at once Ενεργοποιεί ή απενεργοποιεί όλα μαζί τα εργαλεία προσκόλλησης @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Μεσαίο σημείο - + Snaps to midpoints of edges Προσκολλά στο μεσαίο σημείο στις ακμές @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Πλησιέστερο - + Snaps to nearest point on edges Προσκολλά στο κοντινότερο σημείο στις ακμές @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ορθό - + Snaps to orthogonal and 45 degrees directions Προσκολλά στις κατευθύνσεις που είναι ορθογώνιες ή 45 μοιρών @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Παράλληλο - + Snaps to parallel directions of edges Προσκολλά στις παράλληλες κατευθύνσεις των ακμών @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Κάθετο - + Snaps to perpendicular points on edges Προσκολλά στα κάθετα σημεία στις ακμές @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Επιφάνεια Εργασίας - + Restricts the snapped point to the current working plane Περιορίζει το προσκολλημένο σημείο στην τωρινή επιφάνεια εργασίας @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Εναλλαγή του Πλέγματος - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Wire to BSpline - + Converts between Wire and BSpline Converts between Wire and BSpline @@ -948,17 +948,17 @@ such as "Arial:Bold" Ιδιαίτερο χρώμα και πλάτος γραμμών - + if this is checked, paper space objects will be imported too if this is checked, paper space objects will be imported too - + if this is unchecked, texts/mtexts won't be imported if this is unchecked, texts/mtexts won't be imported - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. @@ -1000,18 +1000,18 @@ Values with differences below this value will be treated as same. Οι τιμές, με διαφορές κάτω από αυτή την τιμή, θα θεωρούνται ως να είναι ίδιες. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Τσεκέρισέ το, αν θες να εισάγονται καί τα μη ονομασμένα τμήματα ( αυτά που ξεκινούν με αστερίσκο « * » ) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Αν επιλεγεί, το ΦρειΚάντ θα προσπαθήσει να ενώσει συμπίπτοντα αντικείμενα σε σύρματα. Έχε, όμως, υπόψη σου, πως αυτό μπορεί να απαιτήσει αρκετή ώρα... - + Join geometry Ένωση γεωμετρίας @@ -1156,22 +1156,22 @@ Values with differences below this value will be treated as same. Δεξιά - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Αν αυτό επιλεγεί, τα αντικείμενα του ίδιου στρώματος θα ενώνονται σε Τμήματα Προσχεδίασης. Η εμφάνιση θα στρέφεται γρηγορότερα, αλλά η επεξεργασία των αντικειμένων δεν θα είναι τόσο εύκολη. - + Group layers into blocks Ομαδοποίηση των στρωμάτων σε τμήματα - + If this is checked, all objects containing faces will be exported as 3d polyfaces If this is checked, all objects containing faces will be exported as 3d polyfaces - + Export 3D objects as polyface meshes Export 3D objects as polyface meshes @@ -1206,32 +1206,32 @@ Values with differences below this value will be treated as same. Αν επιλεγεί, το πλέγμα της Προσχεδίασης θα είναι πάντοτε εμφανές, όταν επιλέγεται ο πάγκος εργασίας της Προσχεδίασης. Διαφορετικά, θα εμφανίζεται μόνο όταν χρησιμοποιείται μια εντολή. - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Αν αυτό τσεκαριστεί, τα εισηγμένα κείμενα θα έχουν το προεπιλεγμένο μέγεθος κειμένου της Προσχεδίασης, καί όχι το μέγεθος από το αρχείο DXF - + Use standard font size for texts Χρήση του προκαθορισμένου μεγέθους για τα κείμενα - + If this is checked, hatches will be converted into simple wires If this is checked, hatches will be converted into simple wires - + Import hatch boundaries as wires Import hatch boundaries as wires - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width - + Render polylines with width Render polylines with width @@ -1296,42 +1296,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Εισαγωγή - + texts and dimensions κείμενα και διαστάσεις - + points σημεία - + layouts layouts - + *blocks *τμήματα - + If this is checked, the exported objects will be projected to reflect the current view direction Αν αυτό τσεκαριστεί, τα εξαγμένα αντικείμενα θα προβάλλονται ώστε να αντικατοπτρίζουν την τωρινή κατεύθυνση της προβολής - + Project exported objects along current view direction Προβολή των εξαγμένων αντικειμένων κατά την τωρινή κατεύθυνση προβολής - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1451,53 +1451,53 @@ Values with differences below this value will be treated as same. Γέμισμα των αντικειμένων με όψεις όποτε είναι δυνατόν - + Create Δημιουργία - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible Αν αυτό τσεκαριστεί, θα δημιουργούνται παραμετρικά αντικείμενα Προσχεδίασης, όταν αυτό είναι εφικτό - + Draft objects Αντικείμενα Προσχεδίασης - + If this is checked, sketches will be created whenever possible Αν αυτό τσεκαριστεί, θα δημιουργούνται σκίτσα, όταν αυτό είναι εφικτό - + Sketches Σκίτσα - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Αν αυτό τσεκαριστεί, θα λαμβάνονται τα χρώματα από τα αντικείμενα DXF, όταν αυτό είναι εφικτό. Διαφορετικά θα χρησιμοποιούνται τα προεπιλεγμένα χρώματα. - + Get original colors from the DXF file Χρήση των αρχικών χρωμάτων από τα αρχεία DXF - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1512,37 +1512,32 @@ Values with differences below this value will be treated as same. Εμφάνιση, στις διαστάσεις, των συμβόλων των μονάδων - - Automatic update - Αυτόματη ενημέρωση - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>Τσεκάροντας αυτό, θα επιτρέψεις στο ΦρειΚΑΝΤ να λάβει και να ανανεώσει</p><p>τα απαραίτητα στοιχεία για την εισαγωγή και την εξαγωγή των αρχείων DXF. Αυτό μπορεί να το κάνεις και χειρωνακτικά</p><p>επισκεπτόμενος το https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Να επιτρέπεται στο ΦρειΚΑΝΤ να λαμβάνει και ανανεώνει, αυτόματα, τις βιβλιοθήκες DXF - + If this is checked, only standard Part objects will be created (fastest) Αν αυτό επιλεγεί, μόνο «κανονικά» αντικείμενα θα επιλέγονται στο Εξάρτημα (γρηγορότερο) - + If this is checked, DXF layers will be imported as Draft VisGroups Αν αυτό επιλεγεί, τα στρώματα DXF θα εισάγονται ως Draft VisGroups - + Use VisGroups Χρήση των VisGroups - + mm χιλ. @@ -1702,12 +1697,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1737,15 +1732,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1768,162 +1778,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Γραμμή εντολών της Προσχεδίασης - + active command: ενεργή εντολή: - + None Κανένα - + Active Draft command Ενεργό εντολή σχεδίασης - + X coordinate of next point Συντεταγμένη X του επόμενου σημείου - + X X - + Y Y - + Z Z - + Y coordinate of next point Συντεταγμένη Y του επόμενου σημείου - + Z coordinate of next point Συντεταγμένη Ζ του επόμενου σημείου - + Radius Ακτίνα - + Radius of Circle Ακτίνα κύκλου - + &Relative &Σχετικό - + Coordinates relative to last point or absolute (SPACE) Συντεταγμένες σε σχέση με το τελευταίο σημείο ή απόλυτες (ΚΕΝΟ) - + F&illed Γεμ&ισμένο - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Τσεκάρισέ το για να εμφανίζεται το αντικείμενο «γεμάτο». Αλλιώς θα εμφανίζεται σαν από σύρμα (ι) - + &Finish &Ολοκλήρωση - + Finishes the current drawing or editing operation (F) Τελειώνει το τωρινό προσχέδιο ή την επιχείρηση επεξεργασίας (Φ) - + If checked, command will not finish until you press the command button again Αν τσεκαριστεί, η εντολή δεν θα τελειώσει, μέχρις ότου ξαναπατήσεις το πλήκτρο της εντολής - + If checked, an OCC-style offset will be performed instead of the classic offset If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset &OCC-style offset - + Add points to the current object Προσθήκη σημείων στο τωρινό αντικείμενο - + Remove points from the current object Αφαίρεση σημείων από το τωρινό αντικείμενο - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo &Αναίρεση - + Undo the last segment (CTRL+Z) Αναίρεση του τελευταίου τμήματος (CTRL + Z) - + Finishes and closes the current line (C) Ολοκλήρωση και κλείνει την τρέχουσα γραμμή (C) - + &Wipe &Απομάκρυνση - + Wipes the existing segments of this line and starts again from the last point (W) Απαλλάσσει τα υπάρχοντα τμήματα από αυτή τη γραμμή, και ξαναρχίζει από το τελευταίο σημείο (ς) - + Number of sides Πλήθος πλευρών @@ -1933,132 +1943,132 @@ Values with differences below this value will be treated as same. Offset - + XY ΧΨ - + Select XY plane Επιλέξτε επίπεδο XΨ - + XZ XZ - + Select XZ plane Επιλέξτε επίπεδο XΖ - + YZ YZ - + Select YZ plane Επιλέξτε επίπεδο ΥΖ - + View Προβολή - + Select plane perpendicular to the current view Επιλέξτε επίπεδο κάθετο προς την τρέχουσα προβολή - + Do not project points to a drawing plane Μην προβάλετε σημεία πάνω σε ένα επίπεδο σχεδίασης - + If checked, objects will be copied instead of moved (C) Αν είναι επιλεγμένο, τα αντικείμενα θα αντιγραφεί αντί να μεταφερθεί (C) - + Text string to draw Στίχος κειμένου που θα σχεδιαστεί - + String Αλφαριθμητικό - + Height of text Ύψος του κειμένου - + Height Ύψος - + Intercharacter spacing Κενό μεταξύ των χαρακτήρων - + Tracking Βηματισμός - + Full path to font file: Πλήρης διαδρομή για το αρχείο γραμματοσειράς: - + Open a FileChooser for font file Άνοιγμα ενός Επιλογέα Αρχείων για την επιλογή γραμματοσειράς - + Set/unset a working plane Ορισμός ή μη μιας επιφάνειας εργασίας - + Line Color Χρώμα Γραμμής - + Face Color Χρώμα όψης - + Line Width Πλάτος Γραμμής - + Font Size Μέγεθος Γραμματοσειράς - + Apply to selected objects Εφαρμογή σε επιλεγμένα αντικείμενα - + Toggles Construction Mode Εναλλάσσει Mode Κατασκευής - + Select Plane Επιλέξτε επίπεδο @@ -2073,242 +2083,242 @@ Values with differences below this value will be treated as same. DWire - + Circle Κύκλος - + Center X Κέντρο X - + Arc Τόξο - + Point Σημείο - + Distance Distance - + Trim Περικοπή - + Pick Object Επιλέξτε Αντικείμενο - + Edit Επεξεργασία - + Global X Καθολικό X - + Global Y Καθολικό Y - + Global Z Καθολικό Z - + Local X Τοπικό X - + Local Y Τοπικό Y - + Local Z Τοπικό Z - + Invalid Size value. Using 200.0. Μη αποδεκτή τιμή Μεγέθους. Θα χρησιμοποιηθεί η 200.0. - + Invalid Tracking value. Using 0. Μη αποδεκτή τιμή Βηματισμού. Θα χρησιμοποιηθεί η 0. - + Please enter a text string. Παρακαλώ, εισήγαγε ένα στίχο κειμένου. - + Select a Font file Επέλεξε ένα αρχείο γραμματοσειράς - + Please enter a font file. Παρακαλώ, εισήγαγε ένα αρχείο γραμματοσειράς. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Βρέθηκαν ομάδες: κλείνουν όλα τα ανοιχτά αντικείμενα εντός - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Found 1 solidificable object: solidifying it - + Found 2 objects: fusing them Βρέθηκαν 2 αντικείμενα: συμπτύσσονται - + Found 1 non-parametric objects: draftifying it Found 1 non-parametric objects: draftifying it - + Found 1 open wire: closing it Βρέθηκε ένα ανοιχτό σύρμα: το κλείνω - + Found several open wires: joining them Βρέθηκαν πολλαπλά ανοιχτά σύρματα: τα ενώνω - + Found several edges: wiring them Βρέθηκαν πολλές ακμές: τις ενώνω με σύρμα - + Unable to upgrade these objects. Αδυναμία αναβάθμισης αυτών των αντικειμένων. - + Found 1 block: exploding it Βρέθηκε 1 τμήμα: το κατακερματίζω - + Found 1 parametric object: breaking its dependencies Found 1 parametric object: breaking its dependencies - + Found 2 objects: subtracting them Βρέθηκαν 2 αντικείμενα: γίνεται αφαίρεση - + Found several faces: splitting them Βρέθηκαν πολλές επιφάνειες: διαχωρίζονται - + Found several objects: subtracting them from the first one Βρέθηκαν πολλά αντικείμενα: αφαιρούνται από το πρώτο - + Found 1 face: extracting its wires Βρέθηκε 1 επιφάνεια: εξάγονται τα σύρματά της - + Found only wires: extracting their edges Βρέθηκαν μόνο σύρματα: εξάγονται οι ακμές τους - + No more downgrade possible Δεν είναι δυνατή η περαιτέρω υποβάθμιση - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2689,7 +2699,7 @@ Values with differences below this value will be treated as same. - + Select an object to project Επέλεξε ένα αντικείμενο για να το προβάλεις @@ -2710,61 +2720,61 @@ Values with differences below this value will be treated as same. - + Active object must have more than two points/nodes Το ενεργό αντικείμενο πρέπει να έχει περισσότερα από δύο σημεία ή κόμβους - + Selection is not a Knot Η επιλογή δεν είναι Κόμπος - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Επέλεξε ένα αντικείμενο για να το μετατρέψεις - + Select an object to array Select an object to array - + Please select base and path objects Παρακαλώ, επέλεξε αντικείμενα βάσης και διαδρομής - + Create Point Δημιουργία Σημείου - + Select an object to clone Επέλεξε ένα αντικείμενο για να το κλωνοποιήσεις - + Select face(s) on existing object(s) Επέλεξε όψη(εις) από υπάρχοντα αντικείμενα(s) @@ -2798,106 +2808,106 @@ Values with differences below this value will be treated as same. Snapping - + Found 1 multi-solids compound: exploding it Βρέθηκε 1 σύνθετο πολλών στερεών: το κατακερματίζω - + Sides Πλευρές - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Βρέθηκε 1 γραμμικό αντικείμενο: μετατροπή σε γραμμή - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Μήκος - + Angle Γωνία - + Length of current segment Μήκος του τρέχοντος τμήματος - + Angle of current segment Γωνία του τρέχοντος τμήματος - + Check this to lock the current angle (l) Τσεκάρισε αυτό, για να κλειδώσεις την τωρινή γωνία (l) - + &Select edge &Επιλογή ακμής - + Selects an existing edge to be measured by this dimension (E) Επιλέγει μια υπάρχουσα ακμή για να μετρηθεί από την αυτή διάσταση (E) - + Auto Αυτόματο @@ -2909,22 +2919,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Μετατροπή σε Σκίτσο - + Convert to Draft Μετατροπή σε προσχέδιο - + Convert Μετατροπή - + Array Array @@ -2964,7 +2974,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2983,79 +2993,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose Κλ&είσιμο - + C&opy Αντ&ιγραφή - + Faces Όψεις - + Remove Απομάκρυνση - + Add Προσθήκη - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_es-ES.qm b/src/Mod/Draft/Resources/translations/Draft_es-ES.qm index e16894c9b31ae190c3ee596917572803f1673825..509f731e1331a5b92778569babdaf7e8b0741b61 100644 GIT binary patch delta 4895 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 UTQ+qurEN)F_f4ALo4~;T2k4zExBvhE diff --git a/src/Mod/Draft/Resources/translations/Draft_es-ES.ts b/src/Mod/Draft/Resources/translations/Draft_es-ES.ts index 9a9883cc3..b80c30b22 100644 --- a/src/Mod/Draft/Resources/translations/Draft_es-ES.ts +++ b/src/Mod/Draft/Resources/translations/Draft_es-ES.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Añadir punto - + Adds a point to an existing wire/bspline Agrega un punto a un alambre/bspline existente @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Agregar a grupo... - + Adds the selected object(s) to an existing group Agrega el(los) objeto(s) seleccionado(s) a un grupo existente @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Matriz - + Creates a polar or rectangular array from a selected object Crea una matriz rectangular o polar de un objeto seleccionado @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Clonar - + Clones the selected object(s) Copia los objetos seleccionados @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Eliminar punto - + Removes a point from an existing wire or bspline Quita un punto de un alambre o bspline existente @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Borrador a esquema - + Convert bidirectionally between Draft and Sketch objects Convertir bidireccionalmente entre objetos borrador y esquema @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder unir caras - + Creates a facebinder object from selected face(s) Crear un objecto facebinder a partir de cara(s) seleccionada(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Invertir Cota - + Flip the normal direction of a dimension Girar la dirección normal de una cota @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Reparar - + Heal faulty Draft objects saved from an earlier FreeCAD version Reparar objetos del boceto defectuosos guardados con una versión de FreeCAD anterior @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Reflejar - + Mirrors the selected objects along a line defined by two points Refleja los objetos seleccionados a lo largo de una línea definida por dos puntos @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray matriz de copia - + Creates copies of a selected object along a selected path. Crea copias de un objeto seleccionado siguiendo una ruta seleccionada. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Punto - + Creates a point object Crea un objeto punto @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Seleccionar grupo - + Selects all objects with the same parents as this group Selecciona todos los objetos con los mismos padres de este grupo @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Vista de forma 2D - + Creates Shape 2D views of selected objects Crea vistas de formas 2D de los objetos seleccionados @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Mostrar barra de Ajuste - + Shows Draft snap toolbar Mostrar barra de herramientas Ajuste del Borrador @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Angulos - + Snaps to 45 and 90 degrees points on arcs and circles magnetiza a 45 o 90 grados los puntos en arcos y circulos @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Centro - + Snaps to center of circles and arcs Se ajusta al centro de circunferencias y arcos @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensiones - + Shows temporary dimensions when snapping to Arch objects Muestra las dimensiones temporales cuando ajusta a objetos arcos @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Punto final - + Snaps to endpoints of edges Se ajusta a los extremos de los bordes @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extensión - + Snaps to extension of edges Se ajusta a la extensión de los bordes @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Rejilla - + Snaps to grid points Se ajusta a los puntos de la rejilla @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Intersección - + Snaps to edges intersections Se ajusta a las intersecciones de los bordes @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off encendido/apagado - + Activates/deactivates all snap tools at once Activa/desactiva todas las herramientas de ajuste a la vez @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Punto medio - + Snaps to midpoints of edges Se ajusta a los puntos medios de los bordes @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Mas cercano - + Snaps to nearest point on edges Se ajusta al punto más cercano en los bordes @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Se ajusta a direcciones ortogonales y a 45 grados @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Paralelo - + Snaps to parallel directions of edges Se anexa a direcciones paralelas de los bordes @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Se anexa a puntos perpendiculares en los bordes @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Plano de Trabajo - + Restricts the snapped point to the current working plane Restringe el punto de ajuste al plano de trabajo actual @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Activar/Desactivar rejilla - + Toggles the Draft grid on/off Activa/Desactiva la rejilla @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Agrega un VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Alambre a BSpline - + Converts between Wire and BSpline Conversión entre alambre y BSpline @@ -944,17 +944,17 @@ such as "Arial:Bold" Color y anchura de línea originales - + if this is checked, paper space objects will be imported too si esta marcada, los objetos del espacio papel se importarán también - + if this is unchecked, texts/mtexts won't be imported Si esto no está seleccionado, texts/mtexts no serán importados - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Al exportar tiras a DXF, las tiras serán transformadas en polilíneas. Este valor es la longitud máxima de cada uno de los segmentos de la polilínea. Si es 0, entonces toda la tira se tratará como un segmento recto. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. Este es el valor utilizado por funciones que utilizan una tolerancia. Valores con diferencias por debajo de este valor se tratarán de la misma manera. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Marque esta opción si desea que los bloques sin nombre (que comienzan con un *) sean importados también - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Si está seleccionada, FreeCAD intentará unir objetos coincidentes en alambres. Espere, esto puede tomar un tiempo... - + Join geometry Unir geometría @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. Derecha - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Si está marcado, los objetos de la misma capa se unirán en Draft Blocks, volviendo la visualización más rápida, pero haciéndolos menos editables - + Group layers into blocks Agrupar capas en bloques - + If this is checked, all objects containing faces will be exported as 3d polyfaces Si marcado, todos los objetos que contienen caras serán exportados como superficies poligonales 3D - + Export 3D objects as polyface meshes Exporta objetos 3D como mallas poligonales @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. Si está seleccionada, la rejilla del Borrador siempre será visible cuando el escenario Borrador esté activo. De lo contrario sólo cuando se utilizará un comando - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Si se selecciona, los textos importados obtendrán el tamaño de texto del borrador estándar, en lugar del tamaño que tienen en el documento DXF - + Use standard font size for texts Utilizar el tamaño de fuente estándar para textos - + If this is checked, hatches will be converted into simple wires Si se selecciona, los sombreados se convertirán en alambres simples - + Import hatch boundaries as wires Importar sombreados frontera como alambres - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Si se selecciona, cuando las polilíneas tengan un ancho definido, se representará como alambres cerrados con la anchura correcta - + Render polylines with width Visualizar polilíneas con anchura @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. Color de los elementos auxiliares - + Import Importar - + texts and dimensions textos y cotas - + points puntos - + layouts disposición - + *blocks *bloques - + If this is checked, the exported objects will be projected to reflect the current view direction Si esto se selecciona, los objetos exportados serán proyectados para reflejar la dirección de vista actual - + Project exported objects along current view direction Objetos exportados del proyecto a lo largo de la actual direccion de la vista - + Ellipse export is badly supported. Use this to export them as polylines instead. Exportar elipses directamente puede generar errores. Usa esta opción para exportarlas como polilínea. @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. Rellenar objetos con caras siempre que sea posible - + Create Crear - + simple Part shapes formas de pieza simples - + If this is checked, parametric Draft objects will be created whenever possible Si esto se activa, objetos paramétricos Draft serán creados cuando sea posible - + Draft objects Objetos Draft - + If this is checked, sketches will be created whenever possible Si está seleccionada, los bocetos se crearán cuando sea posible - + Sketches Bocetos - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Si está seleccionada, se recuperarán los colores de los objetos DXF cuando sea posible. Si no, se aplicarán los colores predeterminados. - + Get original colors from the DXF file Tomar colores originales del archivo DXF - + Treat ellipses and splines as polylines Tratamiento de elipses y splines como polilíneas - + Max Spline Segment: Segmento de Max Spline: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. Mostrar la unidad en las cotas - - Automatic update - Actualización automática - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>Marcando esta casilla permitirás que FreeCAD descargue y actualize los</p><p>componentes necesarios para importar y exportar archivos DXF. También puedes hacer esto</p><p>manualmente visitando https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Permitir que FreeCAD descargue y actualize automáticamente las librerías DXF - + If this is checked, only standard Part objects will be created (fastest) Si se habilita esto, solo se crearán piezas estándar (más rapido) - + If this is checked, DXF layers will be imported as Draft VisGroups Si esto se selecciona, se importarán las capas DXF como Draft VisGroups - + Use VisGroups Usar VisGroups - + mm mm @@ -1695,12 +1690,12 @@ Values with differences below this value will be treated as same. Importar opciones - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Sí esto esta comprobado, el antiguo importador de python es utilizado, de lo contrario el nuevo C++ one (más rápido, pero aun no todas las características) - + Use legacy python importer Importador de python obsoleto @@ -1730,15 +1725,30 @@ Values with differences below this value will be treated as same. Deshabilitar el escalado de unidades - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. Si esto es seleccionado, las Vistas de Dibujo serán exportadas como bloques. Esto puede fallar para plantillas post-R12. - + Export Drawing Views as blocks Exportar vistas de dibujo como bloques + + + Note: Not all the options below are used by the new importer yet + Nota: No todas las opciones mostradas abajo son usadas por el nuevo importador aún + + + + Show this dialog when importing and exporting + Mostrar éste diálogo cuando se importe y exporte + + + + Automatic update (legacy importer only) + Actualización automática (sólo para el importador antiguo) + Workbench @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Barra de comandos del borrador - + active command: Comando activo: - + None Ninguno - + Active Draft command Activar comando de boceto - + X coordinate of next point Coordenada X del siguiente punto - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordenada Y del siguiente punto - + Z coordinate of next point Coordenada Z del siguiente punto - + Radius Radio - + Radius of Circle radio de la circunferencia - + &Relative &Relativo - + Coordinates relative to last point or absolute (SPACE) Coordenadas relativas al último punto o absolutas (ESPACIO) - + F&illed Llenado - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Marca esto si el objeto debe aparecer lleno, de otra manera aparecerá como líneas (i) - + &Finish Terminar - + Finishes the current drawing or editing operation (F) Finaliza la operación actual de edición o dibujo (F) - + If checked, command will not finish until you press the command button again Si está activado, el comando no terminará hasta que vuelva a pulsar el botón de comando - + If checked, an OCC-style offset will be performed instead of the classic offset Si marcado, una offset estilo OCC será realizada en vez del offset clásico - + &OCC-style offset Salida estilo OCC - + Add points to the current object Agregar puntos al objeto actual - + Remove points from the current object Eliminar puntos del objeto actual - + Make Bezier node sharp Hacer nodo Bezier filoso - + Make Bezier node tangent Hacer nodo Bézier tangente - + Make Bezier node symmetric Hacer nodo Bézier simétrico - + &Undo &Deshacer - + Undo the last segment (CTRL+Z) Deshace el último segmento (CTRL+Z) - + Finishes and closes the current line (C) Termina y cierra la línea actual (C) - + &Wipe Borrar - + Wipes the existing segments of this line and starts again from the last point (W) Borra los segmentos existentes de esta línea y comienza de nuevo desde el último punto (W) - + Number of sides Número de lados @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. Equidistancia - + XY XY - + Select XY plane Seleccionar plano XY - + XZ XZ - + Select XZ plane Seleccionar plano XZ - + YZ YZ - + Select YZ plane Seleccionar plano YZ - + View Vista - + Select plane perpendicular to the current view Seleccionar plano perpendicular a la vista actual - + Do not project points to a drawing plane No proyectar puntos al plano de dibujo - + If checked, objects will be copied instead of moved (C) Si está activada, los objetos serán copiados en lugar de movidos (C) - + Text string to draw Cadena de texto para dibujar - + String Cadena de texto - + Height of text Altura de texto - + Height Altura - + Intercharacter spacing Espacio entre caracteres - + Tracking Seguimiento - + Full path to font file: Ruta de acceso completa al archivo de fuente: - + Open a FileChooser for font file Abrir un Selector de ficheros para el archivo de fuente - + Set/unset a working plane Establecer plano de trabajo - + Line Color Color de línea - + Face Color Color de cara - + Line Width Grosor de línea - + Font Size Tamaño de fuente - + Apply to selected objects Aplicar a los objetos seleccionados - + Toggles Construction Mode Conmutar el modo de construcción - + Select Plane Seleccionar plano @@ -2066,227 +2076,227 @@ Values with differences below this value will be treated as same. DWire - + Circle Circunferencia - + Center X Centro X - + Arc Arco - + Point Punto - + Distance Distancia - + Trim Recortar - + Pick Object Designar objeto - + Edit Editar - + Global X Global X - + Global Y Y global - + Global Z Z global - + Local X X local - + Local Y Y local - + Local Z Z local - + Invalid Size value. Using 200.0. Valor no válido de tamaño. Usando 200.0. - + Invalid Tracking value. Using 0. Valor de seguimiento no válido. Usando 0. - + Please enter a text string. Por favor, introduzca una cadena de texto. - + Select a Font file Seleccione un archivo de fuente - + Please enter a font file. Por favor, introduzca un fichero de fuente. - + Draft.makeBSpline: not enough points Draft.makeBSpline: no hay suficientes puntos - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Extremos iguales forzando el Cierre - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Lista de puntos inválida - + Found groups: closing each open object inside Encontrados grupos: cerrar cada objeto abierto dentro del grupo - + Found mesh(es): turning into Part shapes Malla(s) encontrada(s): convirtiéndolas en formas de pieza - + Found 1 solidificable object: solidifying it Encontrado 1 objeto solidificable: solidificándolo - + Found 2 objects: fusing them Encontrados 2 objetos: Fusionense ambos - + Found 1 non-parametric objects: draftifying it Encontrados objetos no paramétricos 1: proyéctelos - + Found 1 open wire: closing it Encontrado 1 cable abierto: cierrelo - + Found several open wires: joining them Se encontraron varios alambres abiertos: uniéndolos - + Found several edges: wiring them Encontradas varias aristas: Conviertalas en alambres - + Unable to upgrade these objects. No se pueden actualizar estos objetos - + Found 1 block: exploding it Se encontró un bloque: explotándolo - + Found 1 parametric object: breaking its dependencies Encontrado un objeto paramétrico: romper sus dependencias - + Found 2 objects: subtracting them Encontrados 2 objetos: Restarlos - + Found several faces: splitting them Encontradas varias caras: partirlas - + Found several objects: subtracting them from the first one Encontrados varios objetos: restarlos respecto al primero - + Found 1 face: extracting its wires Encontrada 1 cara: extrayendo sus alambres - + Found only wires: extracting their edges Encontradas sólo alambres: extrayendo sus aristas - + No more downgrade possible No es posible más degradación - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Cerrado con el mismo primer/último Punto. Geometría no actualizada. @@ -2661,7 +2671,7 @@ Values with differences below this value will be treated as same. - + Select an object to project Seleccione un objeto para proyecto @@ -2680,58 +2690,58 @@ Values with differences below this value will be treated as same. - + Active object must have more than two points/nodes El objeto activo debe tener más de dos puntos/nodos - + Selection is not a Knot La selección no es un nudo - + Endpoint of BezCurve can't be smoothed Extremo de BezCurve no puede ser suavizado - + Select an object to convert Seleccione un objeto para convertir - + Select an object to array Elegir un objeto para crear matriz - + Please select base and path objects Por favor, seleccione los objetos de base y de camino - + Create Point Crear Punto - + Select an object to clone Seleccione un objeto para clonar - + Select face(s) on existing object(s) Seleccione cara(s) en objetos existente(s) @@ -2765,106 +2775,106 @@ Values with differences below this value will be treated as same. Ajuste - + Found 1 multi-solids compound: exploding it Se encontró un compuesto de multi-sólidos: explotándolo - + Sides Lados - + BSplines and Bezier curves are not supported by this tool Curvas BSplines y Bezier no son soportadas por esta herramienta - + The given object is not planar and cannot be converted into a sketch. El objeto no es plano y no se puede convertir en un croquis. - + Found several objects: creating a shell Se encontraron varios objetos: creando un cascarón - + Found several coplanar objects or faces: creating one face Se encontraon varios objetos o caras coplanares: creando una cara - + Found 1 linear object: converting to line Se encontró 1 objeto linear: convirtiendo a línea - + Found 1 closed sketch object: creating a face from it Se encontró un objeto de croquis cerrado: creando una cara de él - + Found closed wires: creating faces Se encontraron alambres cerrados: creando caras - + Found several non-treatable objects: creating compound Se encontraron varios objetos no-tratables: creando compuesto - + Length Longitud - + Angle Ángulo - + Length of current segment Longitud del segmento actual - + Angle of current segment Ángulo del segmento actual - + Check this to lock the current angle (l) Activa esto para fijar el ángulo actual (l) - + &Select edge &Seleccionar arista - + Selects an existing edge to be measured by this dimension (E) Slecciona un borde existente para ser medido por esta dimensión (E) - + Auto Auto @@ -2876,22 +2886,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convertir a Croquis - + Convert to Draft Convertir a Boceto - + Convert Convertir - + Array Matriz @@ -2931,7 +2941,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2948,79 +2958,89 @@ O descargar estas bibliotecas manualmente, como se explica en https://github.com Para habilitar a FreeCAD la descarga de estas bibliotecas, responder Si. - + No object given Ningún objeto dado - + The two points are coincident Los dos puntos son coincidentes - + Co&ntinue Continuar - + Cl&ose &Cerrar - + C&opy C&opiar - + Faces Caras - + Remove Quitar - + Add Añadir - + Facebinder elements Elementos Facebinder - + Mirror Reflejar - + Select an object to mirror Seleccione un objeto para reflejar - + Pick start point of mirror line: Elija el punto de inicio de la línea de reflejo: - + Pick end point of mirror line: Elija el punto final de la línea de reflejo: + + + Enter point + Suministrar punto + + + + Enter a new point with the given coordinates + Suministre un nuevo punto con las coordenadas dadas + diff --git a/src/Mod/Draft/Resources/translations/Draft_fi.qm b/src/Mod/Draft/Resources/translations/Draft_fi.qm index 2f150d2e2401f8985fdda459d8ceed7815e03511..9146a878f2609acc8092f6fdf6a3bc253ca412aa 100644 GIT binary patch delta 4888 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 delta 4278 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 aO0!J3*DdW{e1e+RC1Lo0v?)*5dHxUOzdTt0 diff --git a/src/Mod/Draft/Resources/translations/Draft_fi.ts b/src/Mod/Draft/Resources/translations/Draft_fi.ts index 3897785c4..2a8dc6c8a 100644 --- a/src/Mod/Draft/Resources/translations/Draft_fi.ts +++ b/src/Mod/Draft/Resources/translations/Draft_fi.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Lisää piste - + Adds a point to an existing wire/bspline Lisää pisteen olemassa olevaan lankaan/bézier-käyräviivaan @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Lisää ryhmään... - + Adds the selected object(s) to an existing group Lisää valittu kohde(kohteet) aiemmin luotuun ryhmään @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Taulukko - + Creates a polar or rectangular array from a selected object Luo polaari- tai suorakaideruudukon valitusta kohteesta @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Kloonaa - + Clones the selected object(s) Kloonaa valittu kohde(kohteet) @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Poista piste - + Removes a point from an existing wire or bspline Poistaa pisteen olemassa olevasta langasta tai bézier-käyräviivasta @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Tee vedos luonnokseen - + Convert bidirectionally between Draft and Sketch objects Muuntaa kaksisuuntaisesti vedoksen ja luonnoksen objektien välillä @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Tahkojen liittäjä - + Creates a facebinder object from selected face(s) Luo liitettyjen tahkojen kohde valitu(i)sta tahko(i)sta @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Vaihda ulottuvuus - + Flip the normal direction of a dimension Vaihda ulottuvuus normaalisuuntaan @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Paranna - + Heal faulty Draft objects saved from an earlier FreeCAD version Paranna vialliset vedoskohteet, jotka on tallennettu aiemmalla FreeCAD-versiolla @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Luo valitun objektin kopiot pitkin valittua polkua. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Piste - + Creates a point object Luo pisteobjektin @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Valitse ryhmä - + Selects all objects with the same parents as this group Valitsee kaikki objektit, joissa on samat vanhemmat kuin tällä ryhmällä @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Muodon 2D näkymä - + Creates Shape 2D views of selected objects Luo muodon 2D näkymän valituista objekteista @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Näytä poimintatyökalupalkki - + Shows Draft snap toolbar Näyttää vedoksen poimintatyökalupalkin @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Kulmat - + Snaps to 45 and 90 degrees points on arcs and circles Poimii 45 ja 90 asteen pisteisiin kaarissa ja ympyröissä @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Keskikohta - + Snaps to center of circles and arcs Poimii ympyröiden ja kaarien keskipisteeseen @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Mitat - + Shows temporary dimensions when snapping to Arch objects Näyttää väliaikaisia ulottuvuuksia kun poimitaan kaarikohteisiin @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Päätepiste - + Snaps to endpoints of edges Poimii reunojen päätepisteisiin @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Laajennus - + Snaps to extension of edges Poimii reunojen laajennuksiin @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Ruudukko - + Snaps to grid points Poimii ruudukon pisteisiin @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Risteys - + Snaps to edges intersections Poimii reunojen leikkauksiin @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Vaihda päälle/pois - + Activates/deactivates all snap tools at once Aktivoi/poistaa kaikki poimintatyökalut kerralla @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Keskipiste - + Snaps to midpoints of edges Poimii reunojen keskipisteisiin @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Lähin - + Snaps to nearest point on edges Poimii lähimpään reunojen pisteeseen @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Orto - + Snaps to orthogonal and 45 degrees directions Poimii kohtisuoriin ja 45 asteen suuntiin @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Samansuuntainen - + Snaps to parallel directions of edges Poimii reunoihin samansuuntaisesti @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Kohtisuorassa - + Snaps to perpendicular points on edges Poimii kohtisuoriin pisteisiin reunoissa @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Työskentelytaso - + Restricts the snapped point to the current working plane Rajoittaa poimitun kohta nykyiseen työtasoon @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Näytä tai piilota ruudukko - + Toggles the Draft grid on/off Vaihtaa vedosruudukon päälle/pois @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Lisää VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Lanka Bézier-käyräviivaksi - + Converts between Wire and BSpline Muuntaa langan ja Bézier-käyräviivan välillä @@ -944,17 +944,17 @@ such as "Arial:Bold" Alkuperäinen väri ja normaali viivanleveys - + if this is checked, paper space objects will be imported too Jos tämä vaihtoehto on valittuna, paperin tila objektit tuodaan myös mukaan - + if this is unchecked, texts/mtexts won't be imported Jos tämä ei ole valittuna, niin tekstejä/mtekstejä ei tuoda - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Kun viet käyräviivoja DXF:ään, ne muunnetaan murtoviivoiksi. Tämä arvo on enimmäispituus kunkin murtoviivan segmenteille. Jos 0, niin sitten koko käyräviiva käsitellään suorana segmenttinä. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. Tämä arvo on käytössä toiminnoissa, jotka käyttävät toleranssia. Arvojen erot alle tämän arvon käsitellään samana. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Valitse tämä jos haluat että ei-nimettyjä lohkoja (alkaen a *) voidaan myös tuoda - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Jos valittu, freecad yrittää yhdistää päällekkäisiä objekteja johdoiksi. Varo, tämä voi kestää hetken ... - + Join geometry Yhdistä geometria @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. Oikea - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Jos tämä on valittuna, objektit samasta kerroksesta yhdistetään vedoslohkoiksi, kääntäen näytön nopeammaksi, mutta tekee niiden muokkauksen vähemmän helpoksi - + Group layers into blocks Ryhmäkerrokset lohkoiksi - + If this is checked, all objects containing faces will be exported as 3d polyfaces Jos tämä on valittuna, kaikki objektit joissa tahkoja viedään 3D monitahokkaiksi - + Export 3D objects as polyface meshes Vie 3D objektit monitahkoisiksi verkkopinnoiksi @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. Jos valittuna, vedosruudukko on aina näkyvissä, kun vedostyöpöytä on aktiivinen. Muutoin näkyvissä vain komentoa käytettäessä - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Jos valittuna, tuotu teksti saa aina Vedoksen tekstikoon eikä sitä kokoa, joka on määritelty DFX dokumentissa - + Use standard font size for texts Käytä oletusfonttikokoa teksteille - + If this is checked, hatches will be converted into simple wires Jos valittuna, täyttökuvio muunnetaan yksinkertaisiksi viivoiksi - + Import hatch boundaries as wires Tuo täyttökuvion rajat viivoina - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Jos tämä on valittuna: Kun moniviivoilla on määritelty leveys, ne renderöidään suljettuina moniviivoina, joilla on oikea leveys - + Render polylines with width Renderöi moniviivat leveyksillä @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. Rakentamisen geometria väri - + Import Tuonti - + texts and dimensions tekstit ja mitat - + points pisteet - + layouts ulkoasut - + *blocks * lohkot - + If this is checked, the exported objects will be projected to reflect the current view direction Jos tämä on valittuna, viedyt kohteet kuvautuvat vastaamaan nykyisen näkymän suuntaa - + Project exported objects along current view direction Projetista viedyt kohteet nykyisen näkymän suuntaan - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipsin vientiä tuetaan huonosti. Tämän avulla voit viedä ne sen sijaan moniviivoina. @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. Täytä kohteet pinnoilla aina kun mahdollista - + Create Luo - + simple Part shapes yksinkertaisia osa muotoja - + If this is checked, parametric Draft objects will be created whenever possible Jos tämä vaihtoehto on valittuna, parametriset vedoskohteet luodaan mahdollisuuksien mukaan - + Draft objects Vedoksen kohteet - + If this is checked, sketches will be created whenever possible Jos tämä vaihtoehto on valittuna, luonnoksia luodaan mahdollisuuksien mukaan - + Sketches Luonnoksia - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Jos tämä vaihtoehto on valittuna, värit haetaan DXF-kohteista aina kun mahdollista. Muuten käytetään oletusvärejä. - + Get original colors from the DXF file Hanki alkuperäiset värit DXF-tiedostosta - + Treat ellipses and splines as polylines Käsittele ellipsejä ja käyriä moniviivoina - + Max Spline Segment: Max käyrän segmentti: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. Näytä yksikön päätteet mitoissa - - Automatic update - Automaattinen päivitys - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/> <body><p>Valitsemalla tämän voit antaa FreeCAD:in ladata ja päivittää</p> <p>tarvittavat komponentit, jotka tarvitaan DXF tuontiin ja vientiin. Voit myös tehdä sen</p> <p>manuaalisesti käymällä https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Salli FreeCAD:in automaattisesti ladata ja päivittää DXF-kirjastot - + If this is checked, only standard Part objects will be created (fastest) Jos tämä vaihtoehto on valittuna, vain standardit osakohteet luodaan (nopein) - + If this is checked, DXF layers will be imported as Draft VisGroups Jos tämä on valittuna, DXF kerrokset tuodaan vedos-VisGroups -muodossa - + Use VisGroups Käytä VisGroups - + mm mm @@ -1695,12 +1690,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1730,15 +1725,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Vedos komentopalkki - + active command: aktiivinen komento: - + None Ei mitään - + Active Draft command Aktiivinen vedos-komento - + X coordinate of next point X-koordinaatin seuraava kohta - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-koordinaatin seuraava kohta - + Z coordinate of next point Z-koordinaatin seuraava kohta - + Radius Säde - + Radius of Circle Ympyrän säde - + &Relative &Suhteellinen - + Coordinates relative to last point or absolute (SPACE) Koordinaatit suhteessa viimeiseen tai suhteelliseen pisteeseen (VÄLILYÖNTI) - + F&illed T&äytetty - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Rastita tämä, jos objektin pitäisi näkyä täytettynä, muuten se näkyy rautalankana (i) - + &Finish &Valmis - + Finishes the current drawing or editing operation (F) Viimeistelee nykyisen piirustuksen tai muokkaustoiminnon (F) - + If checked, command will not finish until you press the command button again Jos valintaruutu on valittuna, komento ei ole valmis, ennenkuin painat komentopainiketta uudelleen - + If checked, an OCC-style offset will be performed instead of the classic offset Jos valittuna, niin OCC-tyylin siirtymä tehdään klassisen siirtymän sijaan - + &OCC-style offset &OCC-tyylin siirtymä - + Add points to the current object Lisää pisteitä nykyiseen objektiin - + Remove points from the current object Pisteiden poistaminen nykyisestä objektista - + Make Bezier node sharp Tee Bezier solmupisteestä terävä - + Make Bezier node tangent Tee Bezier solmupisteestä tangentti - + Make Bezier node symmetric Tee Bezier solmupisteestä symmetrinen - + &Undo &Kumoa - + Undo the last segment (CTRL+Z) Peru viimeisin segmentti (CTRL+Z) - + Finishes and closes the current line (C) Viimeistelee ja sulkee nykyisen viivan (C) - + &Wipe &Pyyhi - + Wipes the existing segments of this line and starts again from the last point (W) Pyyhkii nykyiset segmentit tästä viivasta ja aloittaa uudelleen viimeisimmästä pisteestä (W) - + Number of sides Sivujen lukumäärä @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. Siirtymä - + XY XY - + Select XY plane Valitse XY-taso - + XZ XZ - + Select XZ plane Valitse XZ-taso - + YZ YZ - + Select YZ plane Valitse YZ-taso - + View Näytä - + Select plane perpendicular to the current view Valitse taso kohtisuorassa nykyiseen näkymään - + Do not project points to a drawing plane Ei projisoidu pisteitä piirustuksen tasoon - + If checked, objects will be copied instead of moved (C) Jos valintaruutu on valittuna, objektit kopioidaan siirtämisen sijasta (C) - + Text string to draw Merkkijono piirrokseen - + String Merkkijono - + Height of text Tekstin korkeus - + Height Korkeus - + Intercharacter spacing Kirjaimien väli - + Tracking Seuranta - + Full path to font file: Fonttitiedoston koko kansiopolku: - + Open a FileChooser for font file Avaa TiedostonValitsin fontti-tiedostoa varten - + Set/unset a working plane Aseta/poista työskentelytaso - + Line Color Viivan väri - + Face Color Tahkon väri - + Line Width Viivan leveys - + Font Size Fontin koko - + Apply to selected objects Käytä valittuihin kohteisiin - + Toggles Construction Mode Vaihtaa rajoite toimintotilaa - + Select Plane Valitse taso @@ -2066,235 +2076,235 @@ Values with differences below this value will be treated as same. DLanka - + Circle Ympyrä - + Center X Keskitä X - + Arc Kaari - + Point Piste - + Distance Etäisyys - + Trim rajaa - + Pick Object Valitse objekti - + Edit Muokkaa - + Global X Yleinen X - + Global Y Yleinen Y - + Global Z Yleinen Z - + Local X Paikallinen X - + Local Y Paikallinen Y - + Local Z Paikallinen Z - + Invalid Size value. Using 200.0. Koon arvo ei kelpaa. Käytetään 200,0. - + Invalid Tracking value. Using 0. Seuranta-arvo ei kelpaa. Käytetään 0. - + Please enter a text string. Kirjoita merkkijono. - + Select a Font file Valitse fontti-tiedosto - + Please enter a font file. Anna fonttitiedosto. - + Draft.makeBSpline: not enough points Draft.makeBSpline: liian vähän pisteitä - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Yhtäläiset loppupisteet pakotettu suljetuksi - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Virheellinen pisteidenlista - + Found groups: closing each open object inside Löytyi ryhmiä: suljetaan jokaisen sisältä avoimet objektit - + Found mesh(es): turning into Part shapes Löytyy verkkopinta(-pintoja): käännetään osa muotoihin - + Found 1 solidificable object: solidifying it Löytyi 1 kiinnittämätön objekti: tehdään siitä kiinteä - + Found 2 objects: fusing them Löydetty 2 objektia: yhdistellään ne - + Found 1 non-parametric objects: draftifying it Löytyi 1 ei-parametrinen objekti: hahmotellaan se - + Found 1 open wire: closing it Löytyi 1 avoin lanka: suljetaan se - + Found several open wires: joining them Löytyi useita avoimia lankoja: liittymässä niihin - + Found several edges: wiring them Löytyi useita reunoja: langoitetaan ne - + Unable to upgrade these objects. Ei voi päivittää näitä kohteita. - + Found 1 block: exploding it Löytyi 1 lohko: räjäytetään se auki - + Found 1 parametric object: breaking its dependencies Löytyi 1 parametrinen objekti: rikotaan riippuvuudet - + Found 2 objects: subtracting them Löytyi 2 objektia: vähennetään ne - + Found several faces: splitting them Löytyi useita tahkoja: jaetaan ne - + Found several objects: subtracting them from the first one Löytyi useita objekteja: vähennetään ne ensimmäisestä - + Found 1 face: extracting its wires Löytyi yksi tahko: puretaan sen langat - + Found only wires: extracting their edges Löytyi vain lankoja: puretaan niiden reunat - + No more downgrade possible Laadun huonontaminen ei enää mahdollista - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: suljettu samaan ensimmäiseen/viimeiseen kohtaan. Geometriaa ei päivitetä. @@ -2661,7 +2671,7 @@ Values with differences below this value will be treated as same. - + Select an object to project Valitse kohde projektiin @@ -2681,60 +2691,60 @@ Values with differences below this value will be treated as same. Tätä objektityyppiä ei voi muokata - + Active object must have more than two points/nodes Aktiivisessa objektissa on oltava enemmän kuin kaksi pistettä/solmua - + Selection is not a Knot Valinta ei ole solmupiste - + Endpoint of BezCurve can't be smoothed Bezier käyrän päätepistettä ei voida tasoittaa - + Select an object to convert Valitse muunnettava kohde - + Select an object to array Valitse kohde taulukkoon - + Please select base and path objects Valitse perus- ja kansiokohteet - + Create Point Luo piste - + Select an object to clone Valitse kloonattava kohde - + Select face(s) on existing object(s) Valitse tahko(-ja) olemassa olevasta kohteesta(kohteista) @@ -2768,106 +2778,106 @@ Values with differences below this value will be treated as same. Katkaiseva - + Found 1 multi-solids compound: exploding it Löytyi 1 monikiinteä yhdiste: räjäytetään se auki - + Sides Sivut - + BSplines and Bezier curves are not supported by this tool Tämä työkalu ei tue BSplines ja Bezier käyriä - + The given object is not planar and cannot be converted into a sketch. Annettu kohde ei ole tasomainen eikä sitä voida muuntaa luonnokseen. - + Found several objects: creating a shell Löytyi useita kohteita: luodaan kuori /shell - + Found several coplanar objects or faces: creating one face Löytyi useita samassa tasossa olevia kohteita tai tahkoja: luodaan yksi tahko - + Found 1 linear object: converting to line Löytyi 1 lineaarinen kohde: muunnetaan viivaksi - + Found 1 closed sketch object: creating a face from it Löytyi 1 suljettu luonnoskohde: tehdään siitä tahko - + Found closed wires: creating faces Löytyi suljettuja langoituksia: luodaan tahkot - + Found several non-treatable objects: creating compound Löytyi useita ei-käsiteltäviä kohdeita: luodaan yhdiste - + Length Pituus - + Angle Kulma - + Length of current segment Nykyisen segmentin pituus - + Angle of current segment Nykyisen segmentin kulma - + Check this to lock the current angle (l) Tarkista tämä lukitaksesi nykyisen kulman (l) - + &Select edge &Valitse reuna - + Selects an existing edge to be measured by this dimension (E) Valitsee olemassa olevan reunan, joka mitataan tällä ulottuvuudella (E) - + Auto Automaattinen @@ -2879,22 +2889,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Muunna luonnokseksi/sketch - + Convert to Draft Muuntaa vedokseksi/draft - + Convert Muunna - + Array Taulukko @@ -2934,7 +2944,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2953,79 +2963,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose Sulje - + C&opy K&opioi - + Faces Pinnat - + Remove Poista - + Add Lisää - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_fr.qm b/src/Mod/Draft/Resources/translations/Draft_fr.qm index b15e6a16379c766dacdbff5d969bac62f3ba8246..20dbca03106b034f3d22290365cd7255b0690ee2 100755 GIT binary patch delta 4979 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 delta 4439 zcma)AXINFo7F}~sx%ZyiP*DOFRH76W?254qwj|24i@ji%XaHOCxI9ro5F2X5LTm^U zH3f|&5jBcYh$RX{N~9=OL}M4*Tfq1JKYzH+nLB4@_S$=|y@zvg%7qomT1R^dfKd=W zDseRN8Zi)}bp)W~@jafHPfR1;=lDcG-wntN1p4g(uGItjNAkDg8qDbf3^)RetWP{g zJPLd|6&UXa44n_Go5AgpfsKuU8SMf4sS1dOb@`A5dDZto&N|3@7XyWxApar*wJ+CT znLp&a&j26K8l1s-555MRIzege4>&Kc!S~~!^vwY3i)s|2CzKKVeRWwi3S9>%`?*f1 z7u9GNjfX-x`VPXYK9tM9L$r#7`rRtvw*{!J9EbQwL%nnPKt&E3-FX4DiGu5~fxxo| zXmOSY{__Z06bBJ+qxI7eem@YtMeTs;R&+@u3u%MV^;}!vNEo{9bOx@ULiczwHmer= za~Iozzk<l8*; zo}nB1W2}`6|En%$joJdCT*Bf<+4OZT!tGYzm!$}gcK~`l$GTtdk>d7<53B?Ddm!nn z_dvaP?CsP881fxbvPv07i;x<@jY{TVe=c3QxEyJ9JUIRYN6uaYTI|Cq`~E4w<-Is} zGZ^^%3Vy#ztmlNR6i48K5oOv?~Mm0j=@`G0?*@wuq}ab94MUQZU9@Siw4WW z0pnuPB-a<%nIoDWdQA(XMGK@e2%m};H|a{pQ^IF8=N;@O+HEHjd%hI*UPqjOH~U5Z z_q&1FEyd8MslbCj#h3v+*tc`U%v#*Yq>0&f1?a06OMNv6HAckF2!rr=DPmVLSWSDy zPCMs!*(ZJ+XQa=|#pygAEa`8Nxs~Gy55?6rw0Pqfk?r6{CL~c*s}G>9nXdX+Ta>3WFXa3f zC!Nn>GS>BDo&N#GMCoE(-%&iM);s>WB)c>RVE{cJ0WvTAR$H#%E!Meklhk>cR zbth9-1Ho~+Q`4RRsh+y?J)Q$U9nf8j>c<4Xrpq}N$=v=dNSC+g7;tK*uE1pjV7{(< z@(0z#Vw1$Ov%sshlC6|xbXYGrF3yAy!IIy$~OmK=p0FPHIw2YC52kruqX zD~%2}03R$wI_yJNqDGu8g;!Y?W0#hP_6Jt%mp1l$4LH`95=SKgx-(K*A{W;CNr%sG zfiT8OC$eubcY8@Eo6;Zt$ECAf$-wncDI;e*VDqX%CV5FODa%sETze=L#94uDiBh4t ziqaCPWD!67`7eb`Y($6KTi zRdQJLx$JmnF)-+<+{BFx_B6@fA?<);+hyPIJse*s_e!@jY3l^a1A;=R3diJ$U)P0j z7%MM+v;}x_LSDL%3vKb0mz6RGye7&~v+ppcoU2hZoG(X3Mgj9L%Tcd+kk|3@s@#LX z4}Zw(HxegS$lC&cV=~W|6LU8L`3drl7#gIFufbuEcQmgW$e%0kX%h&%3y@QeCegw? zIpx7}U_y-i-JUSuMnwDx)yeK5r)#e$Qa$Cf&J3OHf68a;6SKIaIcLtAAP>yU8BQ#Pg0+$J?BYOPoHRycCQ7s_{Q z`$4#VqWsjmJJ9fqa!fkUQ0#)%OjK%t8W0`_f|3j==s|3mForjSs-sKH$N={ zc0(y!?M-<_F;%duTRGW5D7dbUbSAaBh3c5Ahk<{4 zs-X>sQ`|bJVY}VvB7+(`hLi>ssPTjWwQsWIj5g9GAwF-Dsy0Uh+4Re+5I?G zy{inOddyTSQb$6#OjjRgalY?-wbExGRohjqj9^HYC8}>@7ElZ)s&9A1u#Pp=TaLU0 z<{r{pSCDGoTl$8bsNM}?^j>a3z??Vw4l{y*<~{Ts?01>frqTMI23pwhrQWZX7jUm! zKhSjwApcwcc?jj@{c`=Fz0|wg(fUzYclmxnKcPEwW8?_^#FrUN<{|ni@2x=N_0=dG zgnpWu4upNJpHbB;W!2HoKhOto*soupFqkvf>m$ykL3pR@?a^N{NB-KXUmea3TdvZt zTQnZ%-Cm#EnwI7q(f`_z6vq_kPrt3hhV8WePI)|i>!g34o&Zt*TLZe$l289M7$fV_ zfKCSYL&qsojt0-o3`S|Sq18OPbg7S_?b%cab5}#VVg~KKj)sn*49d@=>;}Io#h$j= zFyKOK%FkrOgt4Ud#cRW)uX)mLM#GZ&FCjc17@|8B0_}qg-&E=5Kc$9Une0`z1sHZ0 zw`2E~Za5^%lsmoQN?XRx?a_wpi!<4y1Q?1Ik@7!h8cMd3k@AVM-7Md85|3a47K2daZ|hC@l-qdL(5~Co{DHNdwt?e5nn) zn#sPkpBA+BK7=k?3;H9QI{RK*ForI;ovAHSA^<5v`Zs!=%X(e|w@2V%QuKLj7-hb~%1Hqm>q zc781LzQJ+r{3RpM=%jWffbIU3gW8qb&zVjiwA_CxS(LN2qL=-Eag(%?Dn?tK)yg#f zK7E09ua+|qo~%7s7Y+P8UVAdb?oI)cOj5l|z*oyn`bG5J!xN^Dw;uv_q?>xe^aZp*X%MRQ->UhSAsHAr;wTK$dgSyd(!7|s;SRK zZWw#qG&yV*gLsi?n#WbPE0w0XzDdC0PfZc_Hg0@)ZHg||1GNfFtKx>R`ad;o@FVqO z9-DS7+rWOvU`p9W%Gy{=za`9~RKGV}b0;H)7N+d*L`t=T>3PLax@4SL4e$m&T4C1j zT22OTo1H5Ym<6Tg`VZ;awz+1Ht^Ul0j^>uvm>qei&8}_22SONznA^7J#_Ri-+v#&y zyl>TD*%$E-E#CIVUzr0>ooAQP+dOUrW3Q#3c}g_1=+S6%a1@#CHLMy%E0cNN;VbNF zwwNP6VMtuDnwJ_hh`RgD>vk-mtkLBCR?T^ zgp22JJ(%n^9iM_`oCB`H%tZQb+opS>r&ajx3;`x=R)<|t)DG(p)dwo2mO)34JOoJ zX;15rU8{jeyY-7LOzV#}S(l9G0bpdzl1WG+G~)yav`Zv+3h*@;$?5 za*JnH#@lS~`mpMH+MJdSV)_T$T;oW2VWn+w7%6Yt!8ZNTavs3XHZQ9WTW3ex!ZU|} z)1J1KrgW|sYg?0&OnrJ`Tl-@ed;Gn&&6+P=5NAs)-@%%eW%D~Sh8DFcv>oengBS1_ zwyY|Pw$HU)ytI)`zq_rdi30dpZ7VUEo?eE{bEU(@Gq_0XrC-o4zA*6u)bLumvC#9x}^6hCj1 pqvs6V<32OF_Py$TrotUz)jQ4MXb2|#Z`ZU&S#jQJ+bX?2`!Ai!Ml1jT diff --git a/src/Mod/Draft/Resources/translations/Draft_fr.ts b/src/Mod/Draft/Resources/translations/Draft_fr.ts index d58c571f0..07be63fe2 100755 --- a/src/Mod/Draft/Resources/translations/Draft_fr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_fr.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_AddPoint - + Add Point Ajouter un point - + Adds a point to an existing wire/bspline Ajoute un point à un filaire ou bspline existant @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_AddToGroup - + Add to group... Ajouter au groupe... - + Adds the selected object(s) to an existing group Ajoute l'objet sélectionné à un groupe existant @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Array - + Array Réseau - + Creates a polar or rectangular array from a selected object Crée un réseau polaire ou rectangulaire à partir d'un objet sélectionné @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Clone - + Clone Clone - + Clones the selected object(s) Clone les objets sélectionnés @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_DelPoint - + Remove Point Supprimer un point - + Removes a point from an existing wire or bspline Supprime un point d'un filaire ou d'une bspline existant @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Draft2Sketch - + Draft to Sketch Draft vers Esquisse - + Convert bidirectionally between Draft and Sketch objects Conversion bidirectionnelle entre objets draft et esquisse @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Facebinder - + Facebinder Lier des faces - + Creates a facebinder object from selected face(s) Crée un objet unique en courbant la ou les surfaces sélectionnées @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_FlipDimension - + Flip Dimension Inverser la direction de de la cote - + Flip the normal direction of a dimension Inverse la direction d'écriture d'une cote @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Heal - + Heal Réparer - + Heal faulty Draft objects saved from an earlier FreeCAD version Réparer les objets de type ébauche défectueux enregistrés avec une version antérieure de FreeCAD @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Mirror - + Mirror Miroir - + Mirrors the selected objects along a line defined by two points Crée les symétriques des objets sélectionnés, par rapport à une droite définie par deux points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_PathArray - + PathArray Chemin pour série de formes - + Creates copies of a selected object along a selected path. Crée une série de copies d'un objet sélectionné le long d'un tracé sélectionné. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Point - + Point Point - + Creates a point object Crée un objet point @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_SelectGroup - + Select group Sélectionner le groupe - + Selects all objects with the same parents as this group Sélectionne tous les objets avec les mêmes parents que ce groupe @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Shape2DView - + Shape 2D view Projection 2D d'une forme - + Creates Shape 2D views of selected objects Crée une projection 2D d'objets sélectionnés @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_ShowSnapBar - + Show Snap Bar Monter la barre d'accrochage - + Shows Draft snap toolbar Montrer la barre d'outils d'accrochage @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Angle - + Angles Angles - + Snaps to 45 and 90 degrees points on arcs and circles Aimante sur les points à 45° et 90° de cercles ou arcs de cercle @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Center - + Center Centre - + Snaps to center of circles and arcs Aimante au centre des cercles et des arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Dimensions - + Dimensions Dimensions - + Shows temporary dimensions when snapping to Arch objects Indique des dimensions provisoires lors de l'aimantation aux objets Arch @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Endpoint - + Endpoint Terminaison - + Snaps to endpoints of edges S'accroche aux extrémités des arêtes @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Extension - + Extension Extension - + Snaps to extension of edges S'accroche sur le prolongement des lignes @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Grid - + Grid Grille - + Snaps to grid points S'aimante sur les points de grille @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Intersection - + Intersection Intersection - + Snaps to edges intersections S'accroche aux intersections des arêtes @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Lock - + Toggle On/Off Activer/désactiver - + Activates/deactivates all snap tools at once Active/désactive tous les outils d'aimantation immédiatement @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Midpoint - + Midpoint Milieu - + Snaps to midpoints of edges Aimanter en milieu d'arête @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Near - + Nearest Le plus proche - + Snaps to nearest point on edges S'accroche sur l'arête au point le plus près @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Ortho - + Ortho Orthogonalement - + Snaps to orthogonal and 45 degrees directions S'accroche perpendiculairement ou à 45 degrés @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Parallel - + Parallel Parallèle - + Snaps to parallel directions of edges S'accroche parallèlement aux arêtes @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_Perpendicular - + Perpendicular Perpendiculaire - + Snaps to perpendicular points on edges S'accroche perpendiculairement aux arêtes @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_Snap_WorkingPlane - + Working Plane Plan de travail - + Restricts the snapped point to the current working plane Limite l'aimantation au plan de travail actuel @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_ToggleGrid - + Toggle Grid Grille - + Toggles the Draft grid on/off Active/désactive la grille @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_VisGroup - + VisGroup GroupeVisu - + Adds a VisGroup Ajoute un GroupeVisu @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install/fr Draft_WireToBSpline - + Wire to BSpline Filaire vers BSpline - + Converts between Wire and BSpline Convertit entre filaire et BSpline @@ -947,17 +947,17 @@ comme "Arial:Bold" Couleur et la largeur de ligne originales - + if this is checked, paper space objects will be imported too Si cette case est cochée, les objets "paper space" seront importés également - + if this is unchecked, texts/mtexts won't be imported Si cette case n'est pas cochée, les objets Text/Mtext ne seront pas importés - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Lors de l'exportation des courbes splines au format DXF, ils sont transformés en polylignes. Cette valeur est la longueur maximale de chacun des segments de la polyligne. Si réglée à 0, la spline entière sera alors traitée comme un segment de droite. @@ -999,17 +999,17 @@ Values with differences below this value will be treated as same. La valeur utilisée par les fonctions qui utilisent une tolérance. Les valeurs de différence inférieure à cette valeur seront considérées comme identiques. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Cochez cette case si vous voulez que les blocs anonymes (dont le nom commence par une *) soient importés - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Si cette case est cochée, FreeCAD tentera de joindre les objets coïncidents en filaires. Attention, ceci peut prendre un certain temps... - + Join geometry Joindre la géométrie @@ -1155,23 +1155,23 @@ Si cette option est cochée, les objets de base seront plutôt sélectionnés.Droit - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Si cette case est cochée, les objets partageant les mêmes couches seront réunis en blocs, rendant l'affichage plus rapide, mais ils seront moins facilement modifiables - + Group layers into blocks Grouper les couches dans des blocs - + If this is checked, all objects containing faces will be exported as 3d polyfaces Si cette case est cochée, tous les objets contenant des faces seront exportés comme des objets 3D multi-facettes - + Export 3D objects as polyface meshes Exporter des objets 3D comme des maillages multi-facettes @@ -1206,32 +1206,32 @@ plus rapide, mais ils seront moins facilement modifiables Si coché, la grille s'affichera toujours lorsque l'établi Draft est actif. Sinon, uniquement en effectuant une commande - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Si coché, les textes importés auront la taille par défaut du module Draft, au lieu de leur taille dans le document DXF - + Use standard font size for texts Utiliser la taille de police standard pour les textes - + If this is checked, hatches will be converted into simple wires Si coché, les hachures seront converties en filaires simples - + Import hatch boundaries as wires Importation des contours de hachures comme filaires - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Si cette case est cochée, lorsque les polylignes ont une épaisseur définie, elles seront rendues comme filaires fermés, dont la largeur sera l'épaisseur de la polyligne - + Render polylines with width Rendre les polylignes avec leur épaisseur @@ -1296,42 +1296,42 @@ plus rapide, mais ils seront moins facilement modifiables Couleur de la géométrie de construction - + Import Importation - + texts and dimensions textes et dimensions - + points points - + layouts mises en page - + *blocks *blocs - + If this is checked, the exported objects will be projected to reflect the current view direction Si cette case est cochée, les objets exportés seront projetés suivant la direction de la vue actuelle - + Project exported objects along current view direction Objets du projet exporté suivant la direction de la vue actuelle - + Ellipse export is badly supported. Use this to export them as polylines instead. L'exportation d'ellipses est mal prise en charge. Utiliser plutôt ceci pour les exporter en tant que lignes polygonales. @@ -1451,52 +1451,52 @@ plus rapide, mais ils seront moins facilement modifiables Remplir des objets avec des faces si possible - + Create Créer - + simple Part shapes Object de forme simple - + If this is checked, parametric Draft objects will be created whenever possible Si cette case est cochée, les objets paramétriques du projet seront créés lorsque cela est possible - + Draft objects Objets brouillon - + If this is checked, sketches will be created whenever possible Si cette case est cochée, des esquisses seront créés à chaque fois que se sera possible - + Sketches Esquisses - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Si cette case est cochée, les couleurs seront extraites des objets DXF lorsque cela est possible. Sinon les couleurs par défaut seront appliquées. - + Get original colors from the DXF file Obtenez les couleurs d'origine du fichier DXF - + Treat ellipses and splines as polylines Traiter les ellipses et les splines comme polylignes - + Max Spline Segment: Qte max de segments : @@ -1511,37 +1511,32 @@ plus rapide, mais ils seront moins facilement modifiables Afficher le suffixe de l'unité aux dimensions - - Automatic update - Mise à jour automatique - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/> <body><p>En cochant cette case, vous permettrez à FreeCAD de télécharger et mettre à jour les</p> <p>composants nécessaires pour l'importation et l'exportation de DXF. Vous pouvez aussi le faire</p> <p>manuellement, en visitant https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Permettre à FreeCAD de télécharger et mettre à jour automatiquement les librairies DXF - + If this is checked, only standard Part objects will be created (fastest) Si cette case est cochée, seuls des objets Pièce standards seront créés (plus rapide) - + If this is checked, DXF layers will be imported as Draft VisGroups Si cette case est cochée, les calques DXF seront importés comme objet GroupeVisu - + Use VisGroups Utiliser GroupeVisu - + mm mm @@ -1698,22 +1693,22 @@ plus rapide, mais ils seront moins facilement modifiables Import options - Importer les options + Options d'import - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Si cette case est cochée, l'ancien importateur de python est utilisé, sinon le nouveau C++ un (plus rapides, mais pas autant caractéristiques encore) - + Use legacy python importer - Importateur de python hérités d'utilisation + Utiliser l'ancien importateur python (avant 0.16) Export options - Exporter les options + Options d'export @@ -1736,15 +1731,30 @@ plus rapide, mais ils seront moins facilement modifiables Désactiver les unités d'échelle - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. Si cette case est cochée, les vues de l'atelier Dessin seront exportés sous forme de blocs. Ceci peut ne pas fonctionner avec des gabarits post-R12. - + Export Drawing Views as blocks Exporter les vues d'un dessin sous forme de blocs + + + Note: Not all the options below are used by the new importer yet + Remarque : Toutes les options ci dessous ne sont pas encore utilisé par le nouvel importateur + + + + Show this dialog when importing and exporting + Afficher cette boîte de dialogue lors de l'importation et l'exportation + + + + Automatic update (legacy importer only) + Mise à jour automatique (ancien importateur uniquement) + Workbench @@ -1767,162 +1777,162 @@ plus rapide, mais ils seront moins facilement modifiables draft - + Draft Command Bar Barre de commandes Draft - + active command: commande active : - + None Aucun - + Active Draft command Commande active - + X coordinate of next point Coordonnée X du prochain point - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordonnée Y du prochain point - + Z coordinate of next point Coordonnée Z du prochain point - + Radius Rayon - + Radius of Circle Rayon du cercle - + &Relative R&elatif - + Coordinates relative to last point or absolute (SPACE) Coordonnées relatives au dernier point (BARRE D'ESPACE) - + F&illed Rempl&i - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Cocher pour remplir l'objet, sinon il sera affiché en mode filaire (i) - + &Finish &Terminer - + Finishes the current drawing or editing operation (F) Termine le dessin en cours ou l'édition (F) - + If checked, command will not finish until you press the command button again Si cette case est cochée, la commande ne se terminera que si vous appuyez à nouveau sur son icône - + If checked, an OCC-style offset will be performed instead of the classic offset Si coché, un décalage de type OCC sera effectué au lieu du décalage classique - + &OCC-style offset Décalage de type &OCC - + Add points to the current object Ajouter des points à l'objet actuel - + Remove points from the current object Supprimer des points de l'objet actuel - + Make Bezier node sharp rendre les noeuds de Bezier angulaire - + Make Bezier node tangent Continuité en tangence - + Make Bezier node symmetric Tangence symétrique sur les sommet de courbes de bezier - + &Undo &Annuler - + Undo the last segment (CTRL+Z) Annuler le dernier segment (CTRL+Z) - + Finishes and closes the current line (C) Terminer et fermer la ligne actuelle (C) - + &Wipe &Effacer - + Wipes the existing segments of this line and starts again from the last point (W) Efface les segments existants de cette ligne et recommence depuis le dernier point (W) - + Number of sides Nombre de côtés @@ -1932,132 +1942,132 @@ plus rapide, mais ils seront moins facilement modifiables Décalage - + XY XY - + Select XY plane Sélectionner le plan XY - + XZ XZ - + Select XZ plane Sélectionner le plan XZ - + YZ YZ - + Select YZ plane Sélectionner le plan YZ - + View Vue - + Select plane perpendicular to the current view Sélectionner le plan perpendiculaire à l'axe de la vue actuelle - + Do not project points to a drawing plane Ne pas projeter les points sur un plan de dessin - + If checked, objects will be copied instead of moved (C) Si cette option est cochée, les objets seront copiés au lieu d'être déplacés (C) - + Text string to draw Chaîne de texte à dessiner - + String Chaîne - + Height of text Hauteur du texte - + Height Hauteur - + Intercharacter spacing Espacement entre les caractères - + Tracking Crénage - + Full path to font file: Chemin d'accès complet au fichier de police : - + Open a FileChooser for font file Ouvre une boîte de dialogue pour choisir le fichier de police - + Set/unset a working plane Active/désactive un plan de travail - + Line Color Couleur de ligne - + Face Color Couleur de face - + Line Width Largeur de ligne - + Font Size Taille de police - + Apply to selected objects Appliquer aux objets sélectionnés - + Toggles Construction Mode Activer/désactiver le mode Construction - + Select Plane Sélectionner un plan de travail @@ -2072,239 +2082,239 @@ plus rapide, mais ils seront moins facilement modifiables Filaire - + Circle Cercle - + Center X Centre X - + Arc Arc - + Point Point - + Distance Distance - + Trim Ajuster - + Pick Object Choisir un objet - + Edit Éditer - + Global X X global - + Global Y Y global - + Global Z Z global - + Local X X local - + Local Y Y local - + Local Z Z local - + Invalid Size value. Using 200.0. Valeur de taille non valide. Utilisation de 200,0. - + Invalid Tracking value. Using 0. Valeur non valide de crénage. Utilisation de 0. - + Please enter a text string. Veuillez entrer une chaîne de texte. - + Select a Font file Sélectionnez un fichier de police - + Please enter a font file. Veuillez entrer un fichier de police s'il vous plaît - + Draft.makeBSpline: not enough points Draft.makeBSpline : pas assez de points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline : Les derniers points sont égaux. Fermeture forcé - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline : Liste de points non valide - + Found groups: closing each open object inside Groupes trouvés : fermeture de chaque objet à l'intérieur - + Found mesh(es): turning into Part shapes Maillage(s) trouvés : transformer en formes - + Found 1 solidificable object: solidifying it Création d'un solide à partir d'un objet trouvé - + Found 2 objects: fusing them Fusion de deux objets trouvés - + Found 1 non-parametric objects: draftifying it Paramétrisation d'un objet non-paramétrique trouvé - + Found 1 open wire: closing it Clôture d'un filaire ouvert trouvé - + Found several open wires: joining them Plusieurs contour ouvert trouvés : les joindre - + Found several edges: wiring them Création d'un filaire à partir de plusieurs arêtes trouvées - + Unable to upgrade these objects. Impossible de mettre à jour ces objets. - + Found 1 block: exploding it 1 bloc trouvé : explosé le - + Found 1 parametric object: breaking its dependencies 1 objet paramétrique trouvé: rupture de ses dépendances - + Found 2 objects: subtracting them Soustraction de deux objets trouvés - + Found several faces: splitting them Séparation en faces simples de plusieurs faces trouvées - + Found several objects: subtracting them from the first one Plusieurs objets trouvés : soustraction à partir du premier - + Found 1 face: extracting its wires 1 face trouvée : extraction de son filaire - + Found only wires: extracting their edges Filaires trouvés: extraction de leurs arêtes - + No more downgrade possible Impossible de déclasser davantage - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry : fermé avec le même premier/dernier Point. Géométrie non mis à jour. @@ -2672,7 +2682,7 @@ plus rapide, mais ils seront moins facilement modifiables - + Select an object to project Sélectionnez un objet à projeter @@ -2692,58 +2702,58 @@ plus rapide, mais ils seront moins facilement modifiables Ce type d'objet n'est pas modifiable - + Active object must have more than two points/nodes Un objet actif doit avoir plus de deux points/nœuds - + Selection is not a Knot La sélection n'est pas un noeud - + Endpoint of BezCurve can't be smoothed Le point final de la courbe de Bezier ne peut pas être lissé - + Select an object to convert Sélectionnez un objet à convertir - + Select an object to array sélectionner un objet a recopier - + Please select base and path objects SVP sélectionnez un objet de base et un chemin - + Create Point Créer un point - + Select an object to clone Sélectionnez un objet à cloner - + Select face(s) on existing object(s) Sélectionnez la ou les face(s) sur des objets existants @@ -2776,106 +2786,106 @@ plus rapide, mais ils seront moins facilement modifiables Instantané - + Found 1 multi-solids compound: exploding it un solide multi-composant a été trouvé : dissocier le - + Sides Côtés - + BSplines and Bezier curves are not supported by this tool Courbes de Bézier et BSplines ne sont pas pris en charge par cet outil - + The given object is not planar and cannot be converted into a sketch. L'objet donné n'est pas plan et ne peut pas être converti en esquisse. - + Found several objects: creating a shell Plusieurs objets trouvés : création d'une coque - + Found several coplanar objects or faces: creating one face Plusieurs objets ou face coplanaires trouvés : création d'une face - + Found 1 linear object: converting to line 1 objet linéaire trouvé : conversion en ligne - + Found 1 closed sketch object: creating a face from it 1 esquisse fermé trouvé : création d'une face avec - + Found closed wires: creating faces Filaires fermés trouvés : création de faces - + Found several non-treatable objects: creating compound Plusieurs objets non traitable trouvés : création d'un composé - + Length Longueur - + Angle Angle - + Length of current segment Longueur du segment actuel - + Angle of current segment Angle du segment actuel - + Check this to lock the current angle (l) Cochez cette case pour verrouiller l'angle actuel (l) - + &Select edge Sélectionner Arêt&Es - + Selects an existing edge to be measured by this dimension (E) Sélectionne une arête existante pour être mesurées par cette dimension (E) - + Auto Auto @@ -2887,22 +2897,22 @@ plus rapide, mais ils seront moins facilement modifiables - + Convert to Sketch Convertir en Esquisse - + Convert to Draft Convertir en Ébauche - + Convert Convertir - + Array Réseau @@ -2942,7 +2952,7 @@ plus rapide, mais ils seront moins facilement modifiables - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2954,79 +2964,89 @@ To enabled FreeCAD to download these libraries, answer Yes. Les bibliothèques d'importation/exportation DXF nécessaires FreeCAD pour manipuler le format DXF ne se trouvaient pas sur ce système. Il vous faut soit activer FreeCAD télécharger ces bibliothèques : plan de travail de charge projet 1 - 2 - Menu Edition > Préférences > Import-Export > DXF > activer les téléchargements ou télécharger ces bibliothèques manuellement, comme expliqué sur https://github.com/yorikvanhavre/Draft-dxf-importer pour FreeCAD activé pour télécharger ces bibliothèques, répondre Oui. - + No object given Aucun objet fourni - + The two points are coincident Les deux points sont coïncidents - + Co&ntinue Co&ntinuer - + Cl&ose Fe&rmer - + C&opy C&opier - + Faces Faces - + Remove Enlever - + Add Ajouter - + Facebinder elements Surfaces liées: éléments - + Mirror Miroir - + Select an object to mirror Sélectionner un objet à symétriser - + Pick start point of mirror line: Sélectionner le point de départ de la ligne de symétrie: - + Pick end point of mirror line: Sélectionner le point de terminaison de la ligne de symétrie: + + + Enter point + Entrez le point + + + + Enter a new point with the given coordinates + Entrez un nouveau point avec les coordonnées données + diff --git a/src/Mod/Draft/Resources/translations/Draft_hr.qm b/src/Mod/Draft/Resources/translations/Draft_hr.qm index 1c454d5351062a52ccf3122cbb0e675175b53145..b7f4b55aee994d018f4df09dc97d43d80373b578 100644 GIT binary patch delta 4864 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 diff --git a/src/Mod/Draft/Resources/translations/Draft_hr.ts b/src/Mod/Draft/Resources/translations/Draft_hr.ts index e3ee74e9d..21a367694 100644 --- a/src/Mod/Draft/Resources/translations/Draft_hr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_hr.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Dodaj točku - + Adds a point to an existing wire/bspline Dodaje vrh na postojeću žicu/krivulju @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Dodaj u grupu... - + Adds the selected object(s) to an existing group Dodaje odabrane objekt(e) u postojeću grupu @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Polje - + Creates a polar or rectangular array from a selected object Multiplicira selektirane objekte u pravokutno ili polarno polje @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klon - + Clones the selected object(s) Klonira selektirane objekte @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Ukloni točku - + Removes a point from an existing wire or bspline Uklanja točku iz postojeće žice ili krivulje @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Nacrt u skicu - + Convert bidirectionally between Draft and Sketch objects Bidirekcionalno konvertiraj između Nacrta i Skice @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Flip Dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creates copies of a selected object along a selected path. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Točka - + Creates a point object Kreira točku @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Odaberi grupu - + Selects all objects with the same parents as this group Odabire sve objekte s istim roditeljima koje ima ova grupa @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D prikaz oblika - + Creates Shape 2D views of selected objects Stvara 2D pogled odabranih objekata @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Prikaži Alatnu traku za hvatanje - + Shows Draft snap toolbar Prikaži Draft snap alat @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Angles - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Center - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimenzije - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Endpoint - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extension - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grid - + Snaps to grid points Snaps to grid points @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Presjek - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Midpoint - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nearest - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallel - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Working Plane - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Uključi/isključi rešetku - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Žica u krivulju - + Converts between Wire and BSpline Izmjena između žice i krivulje @@ -947,17 +947,17 @@ kao što su "Arial:Bold" Izvorna boja i širina linije - + if this is checked, paper space objects will be imported too ako ovo označeno, objekti lista će također biti učitani - + if this is unchecked, texts/mtexts won't be imported ako je označeno, text/mtext neće biti učitan - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Prilikom izvoza krivulja u DXF, oni su pretvoreni u polilinije. Ovo je maksimalna duljina svake od polilinija segmenata. Ako je 0, cijela će se krivulja tretira kao ravni segment. @@ -999,17 +999,17 @@ Values with differences below this value will be treated as same. Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Označite ovo ako želite da neimenovani blokovi (počevši s *) se mogu učitati - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Ako je označeno, FreeCAD će pokušati spojiti spojene linije u žice. Pazite, ovo može potrajati neko vrijeme ... - + Join geometry Pridružite geometriju @@ -1154,22 +1154,22 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Desno - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable ako je ovo uključeno, objekti iz istog sloja će se ujediniti u blokove, pa će okretanje zaslona biti brže, ali će se objekti teže uređivati - + Group layers into blocks Grupiranje slojeva u blokove - + If this is checked, all objects containing faces will be exported as 3d polyfaces Ako je to označeno, svi objekti koji sadrže plohe će se izvesti kao 3D polyface mreže - + Export 3D objects as polyface meshes Izvoz 3D objekata kao polyface mreže @@ -1204,32 +1204,32 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Ako je uključeno, rešetka će uvijek biti prikazana kada je Draft okruženje aktivno. Inače samo kada se koristi naredba - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Ako je ovov uključeno, uvezeni će tekst koristiti standardnu veličinu definiranu u Draft okruženju, umjesto one definirane u DXF dokumentu - + Use standard font size for texts Koristi standardnu veličinu fonta za tekst - + If this is checked, hatches will be converted into simple wires Ako je ovo označeno, otvori će biti prevedeni u žice - + Import hatch boundaries as wires očitaj krajeve otvora kao žice - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Ako je ovo označeno, kada polilinije imaju definiranu debljinu, biti će prikazane kao zatvorene žice sa točnom debljinom - + Render polylines with width Renderiraj polilinije sa debljinom @@ -1294,42 +1294,42 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Construction geometry color - + Import Import - + texts and dimensions texts and dimensions - + points points - + layouts layouts - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1449,52 +1449,52 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Fill objects with faces whenever possible - + Create Stvoriti - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Sketches - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1509,37 +1509,32 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Show the unit suffix in dimensions - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1699,12 +1694,12 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1734,15 +1729,30 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1765,162 +1775,162 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake. draft - + Draft Command Bar Draft Command Bar - + active command: aktivna naredba: - + None Prazno - + Active Draft command Aktivna naredbu nacrta - + X coordinate of next point X koordinate sljedeće točke - + X X - + Y Y - + Z Z - + Y coordinate of next point Y koordinate sljedeće točke - + Z coordinate of next point Z koordinate sljedeće točke - + Radius Radijus - + Radius of Circle Radijus kruga - + &Relative &Relativan - + Coordinates relative to last point or absolute (SPACE) Koordinate u odnosu na zadnju točku ili apsolutnu (prostora) - + F&illed I&spunjeno - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Označi ako bi se objekt trebao pojaviti kao pun, inače će se pojaviti kao ožičenje(i) - + &Finish &Završi - + Finishes the current drawing or editing operation (F) Završava trenutni crtež ili operaciju (F) - + If checked, command will not finish until you press the command button again Ako je označeno, naredba neće završiti sve dok se ponovno ne pritisnete gumb naredbe - + If checked, an OCC-style offset will be performed instead of the classic offset Ako je označeno, pomak u OCC stilu izvršiti će se umjesto klasičnog pomaka - + &OCC-style offset pomak u &OCC-stilu - + Add points to the current object Dodaj točke trenutnom objektu - + Remove points from the current object Ukloni točke iz trenutnog objekta - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo &Poništi - + Undo the last segment (CTRL+Z) Poništi posljednji segment (CTRL + Z) - + Finishes and closes the current line (C) Završava i zatvara trenutnu liniju (C) - + &Wipe &Obriši - + Wipes the existing segments of this line and starts again from the last point (W) Briše posljednji segmente ove linije i ponovno počinje od zadnje točke (W) - + Number of sides Broj strana @@ -1930,132 +1940,132 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Pomak - + XY XY - + Select XY plane Odaberite XY ravninu - + XZ XZ - + Select XZ plane Odaberite XZ ravninu - + YZ YZ - + Select YZ plane Odaberite YZ ravninu - + View Pregled - + Select plane perpendicular to the current view Odaberite ravnini okomito na trenutnom prikazu - + Do not project points to a drawing plane Ne projeciraj točke na crtaču ravninu - + If checked, objects will be copied instead of moved (C) Ako je označeno, objekti će se kopirati umjesto pomicanja (C) - + Text string to draw Text string to draw - + String Tekst (string) - + Height of text Height of text - + Height Visina - + Intercharacter spacing Intercharacter spacing - + Tracking Tracking - + Full path to font file: Full path to font file: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Boja linije - + Face Color Boja površina - + Line Width Širina linije - + Font Size Veličina fonta - + Apply to selected objects Primijeni na odabrane objekte - + Toggles Construction Mode Uključuje graditeljski način - + Select Plane Odaberite ravninu @@ -2070,229 +2080,229 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.DWire - + Circle Krug - + Center X Centar X - + Arc Luk - + Point Točka - + Distance Udaljenost - + Trim Skrati - + Pick Object Odaberite objekt - + Edit Uredi - + Global X Global X - + Global Y Global Y - + Global Z Global Z - + Local X Local X - + Local Y Local Y - + Local Z Local Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Select a Font file - + Please enter a font file. Please enter a font file. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Pronađena skupine: zatvaranje svih otvorenih objekata unutar njih - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Pronađen 1 objekt koji se može pretvoriti u tijelo: pretvaram ga - + Found 2 objects: fusing them Pronađena 2 objekata: spajam ih - + Found 1 non-parametric objects: draftifying it Pronađen 1 neparametarski objekt: prilagođavam ga nacrtu - + Found 1 open wire: closing it Pronađena 1 otvorena žica: zatvaranje - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Pronađeno je nekoliko rubova: ožiči ih - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Pronađen 1 parametarski objekt: razbijanje njegovih ovisnosti - + Found 2 objects: subtracting them Pronađena 2 objekta: oduzimam ih - + Found several faces: splitting them Pronađeno je nekoliko površina: cijepam ih - + Found several objects: subtracting them from the first one Pronađeno je nekoliko objekata: oduzimam ih od prvog - + Found 1 face: extracting its wires Pronađena 1 površina: izvlačenje njenih žica - + Found only wires: extracting their edges Pronađene samo žice: vađenje njihovih rubova - + No more downgrade possible Nije moguće više cijepati - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2643,7 +2653,7 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Odredite faktor skaliranja: - + Select an object to project Select an object to project @@ -2663,60 +2673,60 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Ovaj tip objekta nije moguće uređivati - + Active object must have more than two points/nodes Aktivni objekt mora imati više od dvije točke/čvora - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Create Point - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2750,106 +2760,106 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Snapping - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Sides - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Dužina - + Angle Kut - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2861,22 +2871,22 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Convert - + Array Polje @@ -2916,7 +2926,7 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2935,79 +2945,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose Zatv&ori - + C&opy K&opiraj - + Faces Plohe - + Remove Ukloniti - + Add Dodaj - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_hu.qm b/src/Mod/Draft/Resources/translations/Draft_hu.qm index 1882c7da2598924492ae0c2d28c3dc59849b14fc..b2f9213e17e163ce76a3eabcabd60a35fea8a768 100644 GIT binary patch delta 17432 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 SU=!7i%_|hh!M&=nSpWaOrr`(x delta 17726 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 V41rN|5$ZQ0CO*@(threJ{{UN@{fhtq diff --git a/src/Mod/Draft/Resources/translations/Draft_hu.ts b/src/Mod/Draft/Resources/translations/Draft_hu.ts index abb2b801e..ba8124d8a 100644 --- a/src/Mod/Draft/Resources/translations/Draft_hu.ts +++ b/src/Mod/Draft/Resources/translations/Draft_hu.ts @@ -4,26 +4,26 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install - Download of dxf libraries failed. -Please download and install them manually. -See complete instructions at + A dxf könyvtárak letöltése sikertelen. +Kérem kézzel töltse le telepítse. +Teljes leírást megtekinthető itt: http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Pont hozzáadása - + Adds a point to an existing wire/bspline Ponttal egészíti ki a meglévő vonalat / vonalakat @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Csoporthoz adás... - + Adds the selected object(s) to an existing group Kijelölt objektum(ok) hozzáadja a létező csoporthoz @@ -70,14 +70,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Sorba rendezés - + Creates a polar or rectangular array from a selected object - Poláris vagy téglalap alakú tömb létrehozása a kijelölt objektumból + Poláris vagy négyszögletes elrendezést hoz létre a kijelölt tárgyból @@ -98,7 +98,7 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install BezCurve - BezCurve + BézGörbe @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klónozás - + Clones the selected object(s) Kijelölt objektum(ok) klónozása @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Pont eltávolítása - + Removes a point from an existing wire or bspline Törli a meglévő pontot a vonalról vagy vonalakról @@ -181,18 +181,18 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Explodes the selected objects into simpler objects, or subtracts faces - Explodes the selected objects into simpler objects, or subtracts faces + A kijelölt objektumokat, egyszerűbb objektumokká robbantja szét, vagy kivon felületeket Draft_Draft2Sketch - + Draft to Sketch - Terv a vázlathoz + Tervrajz a vázlathoz - + Convert bidirectionally between Draft and Sketch objects Konvertálja kettős irányba a terv és a vázlat objektumokat @@ -239,14 +239,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder - Facebinder + Felületösszesítő - + Creates a facebinder object from selected face(s) - Creates a facebinder object from selected face(s) + Összesített felületű tárgyat képez a kiválasztott felület(ek)ből @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Dimenziók megfordítása - + Flip the normal direction of a dimension A dimenzió irányának megfordítása @@ -278,14 +278,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Gyógyítani - + Heal faulty Draft objects saved from an earlier FreeCAD version - Heal faulty Draft objects saved from an earlier FreeCAD version + Hibás tervrajz objektumok gyógyítása egy korábbi mentett FreeCAD verziójából @@ -304,14 +304,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror - Mirror + Tükrözés - + Mirrors the selected objects along a line defined by two points - Mirrors the selected objects along a line defined by two points + A kijelölt tárgyakat két pont által meghatározott vonal mentén tükrözi @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray Sorba rendezés elérési útja - + Creates copies of a selected object along a selected path. A kijelölt objektummal a kijelölt útvonalon másolatokat készít. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Pont - + Creates a point object Létrehoz egy pont objektumot @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Válassza ki a csoportot - + Selects all objects with the same parents as this group Kiválasztja az összes azonos szülőkkel rendelkező objektumot ebben a csoportban @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D alak nézet - + Creates Shape 2D views of selected objects A kijelölt tárgy 2D felület nézetét hozza létre @@ -462,207 +462,207 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Shape from text... - Shape from text... + Alakzat szöveg leírásból... Creates text string in shapes. - Creates text string in shapes. + Karakterláncot hoz létre az alakzatokban. Draft_ShowSnapBar - + Show Snap Bar Illesztési sáv megjelenítése - + Shows Draft snap toolbar - Illesztési pont eszköztár megjelenítése + Tervrajz Illesztési pont eszköztár megjelenítése Draft_Snap_Angle - + Angles - Angles + Szögek - + Snaps to 45 and 90 degrees points on arcs and circles - Snaps to 45 and 90 degrees points on arcs and circles + 45 és 90 fokos pontokat igazít az íveken és körökön Draft_Snap_Center - + Center - Center + Középre - + Snaps to center of circles and arcs - Snaps to center of circles and arcs + Körök és Körívek középpontjához illeszti Draft_Snap_Dimensions - + Dimensions Méretek - + Shows temporary dimensions when snapping to Arch objects - Shows temporary dimensions when snapping to Arch objects + Ív tárgyhoz illesztésnél ideiglenesen mutatja a méreteket Draft_Snap_Endpoint - + Endpoint - Endpoint + Végpont - + Snaps to endpoints of edges - Snaps to endpoints of edges + Igazítás az élek végpontjaihoz Draft_Snap_Extension - + Extension - Extension + Meghosszabbítás - + Snaps to extension of edges - Snaps to extension of edges + Élek meghosszabbításához igazítás Draft_Snap_Grid - + Grid - Grid + Rács - + Snaps to grid points - Snaps to grid points + Rácspontokhoz igazítás Draft_Snap_Intersection - + Intersection Metszet - + Snaps to edges intersections - Snaps to edges intersections + Éleket metszéséhez igazítás Draft_Snap_Lock - + Toggle On/Off - Toggle On/Off + Be/Ki kapcsolás - + Activates/deactivates all snap tools at once - Activates/deactivates all snap tools at once + Egyszerre Be-/kikapcsolja az összes igazító eszközt Draft_Snap_Midpoint - + Midpoint - Midpoint + Felező - + Snaps to midpoints of edges - Snaps to midpoints of edges + Élek felezőpontjaihoz igazítás Draft_Snap_Near - + Nearest - Nearest + Legközelebbi - + Snaps to nearest point on edges - Snaps to nearest point on edges + Élek legközelebbi pontjához igazít Draft_Snap_Ortho - + Ortho - Ortho + Merőleges - + Snaps to orthogonal and 45 degrees directions - Snaps to orthogonal and 45 degrees directions + Merőleges és 45 fokos irányú illesztés Draft_Snap_Parallel - + Parallel - Parallel + Párhuzamos - + Snaps to parallel directions of edges - Snaps to parallel directions of edges + Igazítás az élek párhuzamos irányaiban Draft_Snap_Perpendicular - + Perpendicular - Perpendicular + Merőleges - + Snaps to perpendicular points on edges - Snaps to perpendicular points on edges + Igazítás az élek merőleges pontjaihoz Draft_Snap_WorkingPlane - + Working Plane - Working Plane + Munka sík - + Restricts the snapped point to the current working plane - Restricts the snapped point to the current working plane + Korlátozza az igazított pontokat a jelenlegi munka síkra @@ -696,7 +696,7 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Toggle Continue Mode - Toggle Continue Mode + Folyamatos üzemmód átkapcsolása @@ -720,14 +720,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Rácsvonal kapcsolása - + Toggles the Draft grid on/off - Toggles the Draft grid on/off + Tervrajz rácsát kapcsolja ki/be @@ -772,14 +772,14 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup - VisGroup + LáthCsoport - + Adds a VisGroup - Adds a VisGroup + LáthCsoport hozzáadása @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Huzal - B-Spline - + Converts between Wire and BSpline Konvertálás huzal és B-Spline között @@ -813,7 +813,7 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install General Draft Settings - Általános rajzbeállítások + Általános Tervrajzbeállítások @@ -944,19 +944,19 @@ such as "Arial:Bold" Eredeti szín és vonalvastagság - + if this is checked, paper space objects will be imported too Ha ez be van jelölve, a lapok helyett objektumok is importálásra kerülnek - + if this is unchecked, texts/mtexts won't be imported ha ez nincs bejelölve, szövegek/összetett szövegek nem importálhatók - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. - Ha vonal szegmenseket exportál DXF-be, át lesznek alakítva vonal láncokká. Ez az érték az egyes vonallánc szegmensek maximális hosszát adja meg. Ha 0, akkor a teljes vonal szegmenst egy egyenesként kezeli. + Ha görbe szegmenseket exportál DXF-be, át lesznek alakítva vonal láncokká. Ez az érték az egyes vonallánc szegmensek maximális hosszát adja meg. Ha 0, akkor a teljes görbe szegmenst egy egyenesként kezeli. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. Ez az érték a tűréshatárt használó funkciók által használt. Ezen érték alatti értékeket azonosnak kell tekinteni. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Jelölje be, ha azt szeretné, hogy a név nélküli blokkok (*-al kezdődő) importálva legyenek - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Ha be van jelölve, FreeCAD megpróbálja összekötni a közös referenciapontos objektumokat vonalakká. Vigyázz, ez eltarthat egy ideig... - + Join geometry Geometria csatlakoztatása @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. Jobb - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - ha ez be van jelölve, tárgyakat azonos rétegekből össze lesznek kötve tervrajz blokká, gyorsabb kijelzéshez, de így nehezebben szerkeszthető + ha ez be van jelölve, az azonos rétegeken lévő tárgyakat összeköti tervrajz blokká, gyorsabb kijelzéshez, de így nehezebben szerkeszthető - + Group layers into blocks Csoport rétegek tömbökké - + If this is checked, all objects containing faces will be exported as 3d polyfaces Ha ez be van jelölve, minden kijelölt tárgyat, amely síkokat tartalmaz, 3d soksíkú felületté exportálja - + Export 3D objects as polyface meshes 3D objektum exportálása többfelületű hálórajzzá @@ -1182,7 +1182,7 @@ Values with differences below this value will be treated as same. Hide Draft snap toolbar after use - A használat után a rajz illesztési pont eszközablak elrejtése + A használat után a Tervrajz illesztési pont eszközablak elrejtése @@ -1197,35 +1197,35 @@ Values with differences below this value will be treated as same. If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command - Ha be van jelölve, a tervrajz rács mindig látható lesz, ha a tervrajz munkafelület aktív. Egyébként csak akkor,ha parancsot használ + Ha kijelölt, a Tervrajz rács mindig látható lesz, ha a Tervrajz munkafelület aktív. Egyébként csak akkor, ha parancsot használ - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document - Ha be van jelölve, az importált szövegek az alap rajzolási szöveg méretet kapják, nem a DXF dokumentum eredeti szövegméretét + Ha bejelölt, az importált szövegek az alap Tervrajzolási szöveg méretet kapják, nem a DXF dokumentum eredeti szövegméretét - + Use standard font size for texts Használja az alap betűméretet a szövegekhez - + If this is checked, hatches will be converted into simple wires Ha ez be van jelölve, a határok egyszerű vonallá lesznek alakítva - + Import hatch boundaries as wires Kitöltési határok importálása vonalként - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Ha ez bekapcsolva, a megadott vonallánc szélességel, akkor összeolvasztja a vonalakat a megfelelő vastagság használatával - + Render polylines with width Összekapcsolt vonalláncok vastagság meghatározása @@ -1257,12 +1257,12 @@ Values with differences below this value will be treated as same. When this is checked, the Draft tools will create Part primitives instead of Draft objects, when available. - When this is checked, the Draft tools will create Part primitives instead of Draft objects, when available. + Ha bejelölt, A Tervezet eszközök Alkatrész primitíveket hoz létre a Tervezet tárgyak helyett, ha elérhető. Use Part Primitives when available - Use Part Primitives when available + Ha elérhető kiinduló alkatrészeket használ @@ -1272,12 +1272,12 @@ Values with differences below this value will be treated as same. If this is checked, snapping is activated without the need to press the snap mod key - If this is checked, snapping is activated without the need to press the snap mod key + Ha ez be van jelölve, az igazításhoz nincs szükség az igazítás gomb megnyomására Always snap (disable snap mod) - Always snap (disable snap mod) + Mindig igazít (kiiktatja az igazít módot) @@ -1287,45 +1287,45 @@ Values with differences below this value will be treated as same. Construction geometry color - Construction geometry color + Építési geometria színe - + Import Importálás - + texts and dimensions szövegek és méretek - + points pontok - + layouts elrendezések - + *blocks *blokkok - + If this is checked, the exported objects will be projected to reflect the current view direction Ha ez be van jelölve, az exportált objektumok lesznek kivetítve ami az aktuális nézet irányát tükrözi - + Project exported objects along current view direction Exportált objektumok kivetítése az aktuális nézet iránya mentén - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipszis exportot rosszul támogatja. Ennek segítségével exportálhatja vonalláncokként. @@ -1372,7 +1372,7 @@ Values with differences below this value will be treated as same. Bitsnpieces style - Bitsnpieces style + Bitekésdarabok stílus @@ -1382,17 +1382,17 @@ Values with differences below this value will be treated as same. Hatch patterns resolution - Hatch patterns resolution + Kitöltési minta felbontása Grid - Grid + Rács Always show the grid - Always show the grid + Mindig jelenítse meg a rácsot @@ -1422,22 +1422,22 @@ Values with differences below this value will be treated as same. The default size of arrows - The default size of arrows + A nyilak alapértelmezett mérete The default size of dimensions extension lines - The default size of dimensions extension lines + A méret segédvonalak alapértelmezett mérete The space between the dimension line and the dimension text - The space between the dimension line and the dimension text + A méret segédvonalai és a méret szövegrész közti távolság Select a font file - Select a font file + Válasszon ki egy betűtípus fájlt @@ -1445,174 +1445,169 @@ Values with differences below this value will be treated as same. Töltse ki a tárgyakat felületekkel amikor csak lehetséges - + Create Létrehozás - - - simple Part shapes - simple Part shapes - - If this is checked, parametric Draft objects will be created whenever possible - If this is checked, parametric Draft objects will be created whenever possible - - - - Draft objects - Draft objects + simple Part shapes + egyszerű alkatrész alakzatok - If this is checked, sketches will be created whenever possible - If this is checked, sketches will be created whenever possible + If this is checked, parametric Draft objects will be created whenever possible + Ha bejelölt, parametrikus Tervezet tárgyakat hoz létre ahol csak lehetésges + Draft objects + Tervezet tárgyak + + + + If this is checked, sketches will be created whenever possible + Ha ez be van jelölve, amikor csak lehetséges vázlatokat hoz létre + + + Sketches - Sketches + Vázlatok - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. + Ha ez be van jelölve, lehetőség szerint a DXF tárgyak színeit hozza vissza lehetőség szerint. Egyébként alapértelmezett színek alkalmaz. - + Get original colors from the DXF file - Get original colors from the DXF file + A DXF fájl eredeti színeit vegye - + Treat ellipses and splines as polylines - Treat ellipses and splines as polylines + Ellipsziseket és görbe vonalakat vonalláncokként kezelje - + Max Spline Segment: - Max Spline Segment: + Max csap szegmens: Export style - Export style + Export stílus Show the unit suffix in dimensions - Show the unit suffix in dimensions + A dimenziók mértékegység utótagjainak megjelenítése - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> + <html><head/><body><p>Ennek bejelölésével, engedélyezi, hogy a FreeCAD letöltse és frissítse a</p><p>DXF import és export komponenseit. Ezt megteheti</p><p>kézzel, a https://github.com/yorikvanhavre/Draft-dxf-importer meglátogatásával</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries - Allow FreeCAD to automatically download and update the DXF libraries + Engedélyezze a FreeCAD-hoz az automatikus DXF-könyvtárak letöltését és frissítését - + If this is checked, only standard Part objects will be created (fastest) - If this is checked, only standard Part objects will be created (fastest) + Ha ez be van jelölve, csak az általános alkatrész tárgyak lesznek létrehozva (leggyorsabb) - + If this is checked, DXF layers will be imported as Draft VisGroups - If this is checked, DXF layers will be imported as Draft VisGroups + Ha bejelölt, DXF rétegeket Tervezet Nézetcsoportként importál - + Use VisGroups - Use VisGroups + NézCsoport használata - + mm mm Grid size - Grid size + Rácsméret the number of horizontal or vertical lines of the grid - the number of horizontal or vertical lines of the grid + vízszintes vagy függőleges rácsvonalak száma lines - lines + vonalak text above (2D) - text above (2D) + szöveg felett (2D) text inside (3D) - text inside (3D) + szöveg belül (3D) Dashed line definition - Dashed line definition + Szaggatott egyenes meghatározása A SVG linestyle definition - A SVG linestyle definition + Egy SVG vonalstílus meghatározása 0.09,0.05 - 0.09,0.05 + 0.09,0.05 Dashdot line definition - Dashdot line definition + Pont-vonal egyenes meghatározása 0.09,0.05,0.02,0.05 - 0.09,0.05,0.02,0.05 + 0.09,0.05,0.02,0.05 Dotted line definition - Dotted line definition + Pontozott egyenes meghatározása 0.02,0.02 - 0.02,0.02 + 0.02,0.02 Grid and snapping - Grid and snapping + Rács és igazítás Text settings - Text settings + Szöveg beállítások Font family - Font family + Betűkészlet @@ -1622,72 +1617,72 @@ Values with differences below this value will be treated as same. Dimension settings - Dimension settings + Távolság beálítás Display mode - Display mode + Megjelenítési mód Extension lines size - Extension lines size + Kiterjesztés vonalak méret Arrows style - Arrows style + Nyilak-stílus Arrows size - Arrows size + Nyíl mérete Text orientation - Text orientation + Szöveg tájolása Text spacing - Text spacing + Szövegtérköz ShapeString settings - ShapeString settings + LáncMinta beállítások Default ShapeString font file - Default ShapeString font file + Alapértelmezett a LáncMinta betű fájl Drawing view line definitions - Drawing view line definitions + Rajz nézet egyenes meghatározásai DWG - DWG + DWG DWG conversion - DWG conversion + DWG átalakítás <html><head/><body><p><span style=" font-weight:600;">Note:</span> DXF options apply to DWG files as well.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Note:</span> DXF options apply to DWG files as well.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Megjegyzés:</span> DXF lehetőségek a DWG fájlokra is érvényesek.</p></body></html> DXF - DXF + DXF @@ -1695,14 +1690,14 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) + Ha ez be van jelölve, a régi python importálót használja, egyébként az új C++ (még gyorsabb, de még nincs annyi funkciója) - + Use legacy python importer - Use legacy python importer + Használj örökölt python importálót @@ -1712,32 +1707,47 @@ Values with differences below this value will be treated as same. OCA - OCA + OCA SVG - SVG + SVG If this is checked, no units conversion will occur. One unit in the SVG file will translate as one millimeter. - If this is checked, no units conversion will occur. One unit in the SVG file will translate as one millimeter. + Ha ez be van jelölve, mértékegység konverzió nem történik. Egy milliméternek fogja fordítani az SVG-fájl egy egységét. Disable units scaling - Disable units scaling + Tiltsa le a mértékegység léptékezését - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. + ha ez be van jelölve, rajz nézeteket blokkokként exportálja. Ez sikertelen lehet a R12 utáni sablonokat. - + Export Drawing Views as blocks - Export Drawing Views as blocks + Rajz nézetek exportálása blokkokként + + + + Note: Not all the options below are used by the new importer yet + Megjegyzés: Még nem az összes alábbi lehetőséget használja új importőr + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatikus frissítés (csak az örökölt importáló) @@ -1745,7 +1755,7 @@ Values with differences below this value will be treated as same. Draft Snap - Draft Snap + Tervrajz igazítás @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar - Draft Command Bar + Tervezet parancssor - + active command: aktív parancs: - + None Egyik sem - + Active Draft command Aktív tervezési parancs - + X coordinate of next point Következő pont X koordinátája - + X X - + Y Y - + Z Z - + Y coordinate of next point Következő pont Y koordinátája - + Z coordinate of next point Következő pont Z koordinátája - + Radius Sugár - + Radius of Circle A kör sugara - + &Relative $Relatív - + Coordinates relative to last point or absolute (SPACE) Előző ponthoz viszonyított vagy abszolút koordináták (SZÓKÖZ) - + F&illed Kitöltés - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Jelölje be ezt, ha a tárgyat kitöltve szeretné megjeleníteni, különben drótváz (F) jelenik meg - + &Finish Befejezés - + Finishes the current drawing or editing operation (F) Befejezi az aktuális rajz vagy szerkesztési művelet (F) - + If checked, command will not finish until you press the command button again Ha be van jelölve, a parancs nem fejeződik be, amíg újra meg nem nyomja a parancs gombot - + If checked, an OCC-style offset will be performed instead of the classic offset Ha kijelölt, egy OCC-stílusú eltolás lesz végrehajtva a klasszikus eltolás helyett - + &OCC-style offset &amp; OCC-stílusú eltolás - + Add points to the current object Pontot ad az aktuális objektumhoz - + Remove points from the current object A meglévő objektumból kiveszi a pontokat - + Make Bezier node sharp - Make Bezier node sharp + Bézier csomókat élcsomókká alakít - + Make Bezier node tangent - Make Bezier node tangent + Bezier-csomópontot érintővé alakít - + Make Bezier node symmetric - Make Bezier node symmetric + Bézier-csomópontot szimmetrikussá alakít - + &Undo $Visszavon - + Undo the last segment (CTRL+Z) Utolsó szakasz visszavonása (CTRL+Z) - + Finishes and closes the current line (C) Vonal befejezése és lezárása (C) - + &Wipe &Tisztít - + Wipes the existing segments of this line and starts again from the last point (W) Kitisztítja a meglévő szegmenst ebből a vonalból és ismét az utolsó ponttól kezdi(W) - + Number of sides Oldalak száma @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. Eltolás - + XY XY - + Select XY plane XY sík kiválasztása - + XZ XZ - + Select XZ plane XZ sík kiválasztása - + YZ YZ - + Select YZ plane YZ sík kiválasztása - + View Nézet - + Select plane perpendicular to the current view Aktuális nézetre merőleges sík kiválasztása - + Do not project points to a drawing plane Ne vetíts pontot a rajz síkra - + If checked, objects will be copied instead of moved (C) Bejelölve az objektumok másolását eredményezi mozgatás helyett - + Text string to draw - Text string to draw + Szöveges karakterlánc rajzolás - + String Karakterlánc - + Height of text - Height of text + Szöveg magassága - + Height Magasság - + Intercharacter spacing - Intercharacter spacing + Karakteren belüli távolság - + Tracking - Tracking + Léptetés - + Full path to font file: - Full path to font file: + Betűtípus fájl teljes elérési útja: - + Open a FileChooser for font file - Open a FileChooser for font file + Nyissa meg a FájlKiválasztót a betűtípus fájlhoz - + Set/unset a working plane - Set/unset a working plane + Egy munka sík kijelölése/kijelöletlenül hagyása - + Line Color Vonal színe - + Face Color Felület szín - + Line Width Vonalvastagság - + Font Size Betűméret - + Apply to selected objects Alkalmazás a kijelölt objektumokon - + Toggles Construction Mode Építési mód váltása - + Select Plane Jelölje ki a síkot @@ -2066,232 +2076,233 @@ Values with differences below this value will be treated as same. Terv-vonal - + Circle Kör - + Center X Közép X - + Arc Ív - + Point Pont - + Distance Távolság - + Trim Vágás - + Pick Object Objektum kiválasztás - + Edit Szerkesztés - + Global X - Global X + Globális X - + Global Y - Global Y + Globális Y - + Global Z - Global Z + Globális Z - + Local X - Local X + Helyi X - + Local Y - Local Y + Helyi Y - + Local Z - Local Z + Helyi Z - + Invalid Size value. Using 200.0. - Invalid Size value. Using 200.0. + Érvénytelen méret érték. Használja 200.0. - + Invalid Tracking value. Using 0. - Invalid Tracking value. Using 0. + Léptetés értéke érvénytelen. Használja 0. - + Please enter a text string. - Please enter a text string. + Adjon meg egy szöveges karakterláncot. - + Select a Font file - Select a Font file + Válasszon ki egy betűtípus fájlt - + Please enter a font file. - Please enter a font file. + Kérjük, írja be a betűtípus fájlt. - + Draft.makeBSpline: not enough points - Draft.makeBSpline: not enough points + Draft.makeBSpline: nincs elég pont - + Draft.makeBSpline: Equal endpoints forced Closed - Draft.makeBSpline: Equal endpoints forced Closed + Draft.makeBSpline: Azonos végpontok összezárásának eröltetése - + Draft.makeBSpline: Invalid pointslist - Draft.makeBSpline: Invalid pointslist + Draft.makeBSpline: Érvénytelen pontlista - + Found groups: closing each open object inside Csoportokat talált: minden belső nyitott objektum bezárása - + Found mesh(es): turning into Part shapes - Found mesh(es): turning into Part shapes + Háló(ka)t találtam: Alkatrészekké alakít - + Found 1 solidificable object: solidifying it Találtunk 1 kialakítható felületet: megszilárdítjuk, felületet képezünk - + Found 2 objects: fusing them 2 Objektum található: összevonás - + Found 1 non-parametric objects: draftifying it - Találtunk 1 nem parametrikus objektumok: vázrajzzá alakít + Találtunk 1 nem parametrikus objektumok: tervrajzzá alakít + - + Found 1 open wire: closing it 1 nyílt szakaszt talált: Bezárja - + Found several open wires: joining them - Found several open wires: joining them + Találtam több nyitott vonalat: csatlakoztatom - + Found several edges: wiring them Több élt talált: összeköti őket - + Unable to upgrade these objects. - Unable to upgrade these objects. + Nem lehet frissíteni ezeket a tárgyakat. - + Found 1 block: exploding it - Found 1 block: exploding it + Találtam 1 blokkot: szétrobbantom - + Found 1 parametric object: breaking its dependencies Találtunk 1 parametrikus objektumot: függőségeket felosztjuk - + Found 2 objects: subtracting them Két objektum találat: kivonás - + Found several faces: splitting them Több felület találat: felosztás - + Found several objects: subtracting them from the first one Több objektum találat: kivonja az elsőből - + Found 1 face: extracting its wires Találtunk 1 felületet: vonalakra bontjuk - + Found only wires: extracting their edges Csak vonalak találhatók: éleik kibontása - + No more downgrade possible Nem lehet több visszaminősítést végezni - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. - _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. + _BSpline.createGeometry: Ugyanazzal az első/utolsó ponttal csukott. Geometria nem frissül. @@ -2309,7 +2320,7 @@ Values with differences below this value will be treated as same. Create Line - Create Line + Vonal létrehozása @@ -2359,19 +2370,19 @@ Values with differences below this value will be treated as same. BezCurve - BezCurve + BézGörbe Bezier curve has been closed - Bezier curve has been closed + Bezier-görbe lezárásra került Create BezCurve - Create BezCurve + BézGörbe létrehozása @@ -2381,7 +2392,7 @@ Values with differences below this value will be treated as same. Create Plane - Create Plane + Sík létrehozása @@ -2462,7 +2473,7 @@ Values with differences below this value will be treated as same. Create Ellipse - Create Ellipse + Ellipszis létrehozása @@ -2499,19 +2510,19 @@ Values with differences below this value will be treated as same. ShapeString - ShapeString + AlakzatSzövegből Pick ShapeString location point: - Pick ShapeString location point: + Válasszon AlakzatSzövegből elhelyezési pontot: Create ShapeString - Create ShapeString + AlakzatSzövegből létrehozása @@ -2639,17 +2650,17 @@ Values with differences below this value will be treated as same. Mérettényező megadása - + Select an object to project - Select an object to project + Jelöljön ki egy objektumot a vetítéshez Select a Draft object to edit - Select a Draft object to edit + Szerkesztéshez Tervrajz tárgyat választ @@ -2659,76 +2670,75 @@ Values with differences below this value will be treated as same. Ehhez az objektumtípus nem szerkezthető - + Active object must have more than two points/nodes Aktív objektumnak kettőnél több pontot, csomópontot kell tartalmaznia. - + Selection is not a Knot - Selection is not a Knot + A kiválasztás nem egy csomó - + Endpoint of BezCurve can't be smoothed - Endpoint of BezCurve can't be smoothed + BézGörbe végpontját nem lehet elsimítani - + Select an object to convert - Select an object to convert + Jelöljön ki egy konvertálandó tárgyat - + Select an object to array Jelöljön ki egy objektumot, a sorba rendezéshez - + Please select base and path objects - Please select base and path objects + Kérem válassza ki az alap és az útvonal tárgyakat - + Create Point - Create Point + Pont létrehozása - + Select an object to clone - Select an object to clone + Jelöljön ki egy tárgyat a klónozáshoz - + Select face(s) on existing object(s) - Select face(s) on existing object(s) - + Válassza ki a meglévő objektum(ok) felülete(i)t Teigha File Converter not found, DWG support is disabled. - Teigha File Converter not found, DWG support is disabled. + Teigha File Converter nem található, DWG támogatás le van tiltva. &Draft - Vázrajz + Tervrajz @@ -2746,133 +2756,133 @@ Values with differences below this value will be treated as same. Snapping - + Found 1 multi-solids compound: exploding it - Found 1 multi-solids compound: exploding it + Találtam 1 összetett multi-szilárd testet: robbantom - + Sides - Sides + Oldalak - + BSplines and Bezier curves are not supported by this tool - BSplines and Bezier curves are not supported by this tool + B-görbék és Bézier görbéket nem támogatja ez az eszköz - + The given object is not planar and cannot be converted into a sketch. - The given object is not planar and cannot be converted into a sketch. + Az adott objektum nem sík és nem lehet átalakítani vázlattá. - + Found several objects: creating a shell - Found several objects: creating a shell - - - - - Found several coplanar objects or faces: creating one face - - Found several coplanar objects or faces: creating one face + Több objektumot talált: létrehoz egy héjat + Found several coplanar objects or faces: creating one face + + Találtam több egy síkban fekvő tárgyat vagy felületet: létrehoz egy felületet + + + + Found 1 linear object: converting to line - Found 1 linear object: converting to line + 1 lineáris tárgyat talált: átalakítja egyenessé - + Found 1 closed sketch object: creating a face from it - Found 1 closed sketch object: creating a face from it + 1 zárt vázlat tárgyat talált: létrehoz belőle egy felületet - + Found closed wires: creating faces - Found closed wires: creating faces + Zárt drótvázat talált: létrehoz felületeket - + Found several non-treatable objects: creating compound - Found several non-treatable objects: creating compound + Találtam több nem kezelhető tárgyat: létrehoz egyesítést - + Length Hossz - + Angle Szög - + Length of current segment - Length of current segment + Aktuális szakasz hossza - + Angle of current segment - Angle of current segment + Aktuális szakasz szöge - + Check this to lock the current angle (l) - Check this to lock the current angle (l) + Jelölje be az aktuális szög (l) lezárásához - + &Select edge - &Select edge + Válassza ki az élt - + Selects an existing edge to be measured by this dimension (E) - Selects an existing edge to be measured by this dimension (E) + Ezzel a mérettel (E) történő méréshez válasszon ki egy létező élt - + Auto - Auto + Automatikus Sorry, offset of Bezier curves is currently still not supported - Sorry, offset of Bezier curves is currently still not supported + Elnézést, a Bézier görbe eltolás még nem támogatott - + Convert to Sketch - Convert to Sketch + Alakítsa vázlattá - + Convert to Draft - Convert to Draft + Tervrajzzá alakít - + Convert - Convert + Átalakítás - + Array Sorba rendezés @@ -2880,39 +2890,39 @@ Values with differences below this value will be treated as same. Select object(s) to trim/extend - Select object(s) to trim/extend + Válassza ki a tárgya(ka)t a vágáshoz/kiterjesztéshez Unable to trim these objects, only Draft wires and arcs are supported - Unable to trim these objects, only Draft wires and arcs are supported + Nem lehet vágni a tárgyakat, csak Tervrajz vonalak és ívek támogatottak Unable to trim these objects, too many wires - Unable to trim these objects, too many wires + Nem lehet ezeket a tárgyakat vágni, túl sok drótváz These objects don't intersect - These objects don't intersect + Ezek az objektumok nem metszik egymást Too many intersection points - Too many intersection points + Túl sok kereszteződési pont - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2921,89 +2931,99 @@ Please either enable FreeCAD to download these libraries: Or download these libraries manually, as explained on https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - The DXF import/export libraries needed by FreeCAD to handle -the DXF format were not found on this system. -Please either enable FreeCAD to download these libraries: - 1 - Load Draft workbench - 2 - Menu Edit > Preferences > Import-Export > DXF > Enable downloads -Or download these libraries manually, as explained on + A DXF import/export könyvtárak szükségesek a FreeCAD részére +a rendszerben nem található DXF formátum kezeléséhez. +Kérem vagy a FreeCAD könyvtárak letöltésének engedélyezését: + 1 - Tervrajz munkafelület kiválasztása + 2 - Szerkesztés menü > Beállítások > Import-Export > DXF > Letöltések bekapcsolása +Vagy töltse le kézzel ezeket a könyvtárakat, itt leírtak szerint: https://github.com/yorikvanhavre/Draft-dxf-importer -To enabled FreeCAD to download these libraries, answer Yes. +A FreeCAD letöltésének bekapcsolásához válassza az "Igen"-t. - + No object given - No object given + Nincs megadott tárgy - + The two points are coincident - The two points are coincident + A két pont egybeesik - + Co&ntinue - Co&ntinue + Folytatás - + Cl&ose Bezárás &o - + C&opy Másolás - + Faces Felületek - + Remove Törlés - + Add Hozzáad - + Facebinder elements - Facebinder elements + Felülettároló elemek - + Mirror - Mirror + Tükrözés - + Select an object to mirror - Select an object to mirror + Elem kiválasztása tükrözéshez - + Pick start point of mirror line: - Pick start point of mirror line: + Tükrözési tengely kezdőpontja: - + Pick end point of mirror line: - Pick end point of mirror line: + Tükrözési tengely végpontja: + + + Enter point + Pont megadása + + + + Enter a new point with the given coordinates + Adjon meg egy új pontot a megadott koordinátákkal + diff --git a/src/Mod/Draft/Resources/translations/Draft_it.qm b/src/Mod/Draft/Resources/translations/Draft_it.qm index 5f081d965c950b891c41bc32e18f8e1bbde1a870..ed5eb89a8d7282ae029d85fbba5ee7fff5a6cc5d 100755 GIT binary patch delta 4932 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 CIYH?F diff --git a/src/Mod/Draft/Resources/translations/Draft_it.ts b/src/Mod/Draft/Resources/translations/Draft_it.ts index 6800ff84c..baeb94534 100755 --- a/src/Mod/Draft/Resources/translations/Draft_it.ts +++ b/src/Mod/Draft/Resources/translations/Draft_it.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -15,12 +15,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Aggiungi punto - + Adds a point to an existing wire/bspline Aggiunge un punto ad una polilinea/bspline esistente @@ -28,12 +28,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Aggiungi al gruppo... - + Adds the selected object(s) to an existing group Aggiunge l'oggetto selezionato (o gli oggetti selezionati) ad un gruppo esistente @@ -67,12 +67,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Matrice - + Creates a polar or rectangular array from a selected object Crea una matrice polare o rettangolare da un oggetto selezionato @@ -119,12 +119,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Clona - + Clones the selected object(s) Clona gli oggetti selezionati @@ -145,12 +145,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Rimuovi punto - + Removes a point from an existing wire or bspline Rimuove un punto da una polilinea o bspline esistente @@ -184,12 +184,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Da Draft a Sketch - + Convert bidirectionally between Draft and Sketch objects Converte oggetti Draft in Schizzi, e viceversa @@ -236,12 +236,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Lega facce - + Creates a facebinder object from selected face(s) Crea un oggetto facebinder dalla faccia(e) selezionata @@ -262,12 +262,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Inverti direzione - + Flip the normal direction of a dimension Inverte la direzione del testo di una dimensione @@ -275,12 +275,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Ripara - + Heal faulty Draft objects saved from an earlier FreeCAD version Ripara gli oggetti Draft difettosi salvati con una versione precedente di FreeCAD @@ -301,12 +301,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Specchio - + Mirrors the selected objects along a line defined by two points Rispecchia gli oggetti selezionati lungo una linea definita da due punti @@ -340,12 +340,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Crea copie di un oggetto selezionato lungo un tracciato selezionato. @@ -353,12 +353,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Punto - + Creates a point object Crea un oggetto punto @@ -418,12 +418,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Seleziona gruppo - + Selects all objects with the same parents as this group Seleziona tutti gli oggetti di questo gruppo aventi gli stessi genitori @@ -433,7 +433,7 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install SelectPlane - SelezionaPiano + Seleziona piano @@ -444,12 +444,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Vista Profilo 2D - + Creates Shape 2D views of selected objects Crea delle viste "Profilo 2D" degli oggetti selezionati @@ -470,12 +470,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Mostra barra Snap - + Shows Draft snap toolbar Mostra la barra degli strumenti di aggancio, Snap @@ -483,12 +483,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Angoli - + Snaps to 45 and 90 degrees points on arcs and circles Aggancia i punti a 45 e 90 gradi su archi e cerchi @@ -496,12 +496,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Centro - + Snaps to center of circles and arcs Snap al centro di cerchi e archi @@ -509,12 +509,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensioni - + Shows temporary dimensions when snapping to Arch objects Mostra le quotature temporanee durante l'aggancio agli oggetti Arch @@ -522,12 +522,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Punto finale - + Snaps to endpoints of edges Aggancia i punti finali di una linea @@ -535,12 +535,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Estensione - + Snaps to extension of edges Aggancia le linee sulla loro estensione @@ -548,12 +548,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Griglia - + Snaps to grid points Aggancia i punti della griglia @@ -561,12 +561,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Intersezione - + Snaps to edges intersections Aggancia alle intersezioni delle linee @@ -574,12 +574,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Attiva/Disattiva - + Activates/deactivates all snap tools at once Attiva/Disattiva contemporaneamente tutti gli strumenti snap @@ -587,12 +587,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Punto medio - + Snaps to midpoints of edges Aggancia ai punti medi delle linee @@ -600,12 +600,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Vicino - + Snaps to nearest point on edges Aggancia una linea nel punto più vicino @@ -613,12 +613,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortogonale - + Snaps to orthogonal and 45 degrees directions Snap ortogonale e a 45 gradi @@ -626,12 +626,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallelo - + Snaps to parallel directions of edges Aggancia in direzione parallela alle linee @@ -639,12 +639,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicolare - + Snaps to perpendicular points on edges Aggancia una linea nei punti di perpendicolarità @@ -652,12 +652,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Piano di lavoro - + Restricts the snapped point to the current working plane Limita la zona di snap al piano di lavoro corrente @@ -717,12 +717,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Mostra/Nascondi la griglia - + Toggles the Draft grid on/off Attiva o disattiva la griglia di Draft @@ -769,12 +769,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Aggiunge un VisGroup @@ -795,12 +795,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Da Polilinea a BSpline - + Converts between Wire and BSpline Converte tra Polilinea e BSpline @@ -942,17 +942,17 @@ Può essere un nome di carattere come "Arial", uno stile predefinito come "sans" Colore e spessore di linea originali - + if this is checked, paper space objects will be imported too Se questa opzione è spuntata, verranno importati anche gli oggetti dello spazio carta - + if this is unchecked, texts/mtexts won't be imported Se questa opzione non è spuntata, i text/mtext non saranno importati - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Esportando le spline in DXF, esse vengono trasformate in polilinee. Questo valore è la lunghezza massima di ciascun segmento della polilinea. Se impostato a 0, l'intera spline sarà trattata come un unico segmento retto. @@ -993,17 +993,17 @@ Values with differences below this value will be treated as same. Questo è il valore utilizzato dalle funzioni che utilizzano una tolleranza. I valori con differenze al di sotto di questo valore saranno trattati come uguali. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Spuntare questa opzione se si desidera importare anche i blocchi senza nome (che iniziano con *) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Se spuntato, freecad cerca di congiungere in polilinee gli oggetti coincidenti. Attenzione, ciò può richiedere del tempo... - + Join geometry Unisci la geometria @@ -1148,22 +1148,22 @@ Values with differences below this value will be treated as same. Destra - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Se questa opzione è spuntata, gli oggetti dello stesso livello sono uniti in Blocchi di Draft, aumentandone la velocità di visualizzazione, ma rendendoli meno facilmente modificabili - + Group layers into blocks Raggruppa i livelli (layer) in blocchi - + If this is checked, all objects containing faces will be exported as 3d polyfaces Se questa opzione è spuntata, tutti gli oggetti contenenti facce sono esportati come multifacce 3D - + Export 3D objects as polyface meshes Esporta gli oggetti 3D come maglie poligonali multifaccia @@ -1175,7 +1175,7 @@ Values with differences below this value will be treated as same. Show Draft Snap toolbar - Mostra la barra degli strumenti Snap + Mostra la barra degli strumenti di aggancio, Snap @@ -1198,32 +1198,32 @@ Values with differences below this value will be treated as same. Se selezionato, quando l'ambiente Draft è attivo la griglia Draft è sempre visibile. In caso contrario solo quando si utilizza un suo comando - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Se questo è selezionato, i testi importati avranno la dimensione standard Draft, invece della dimensione che hanno nel documento DXF - + Use standard font size for texts Usa dimensioni di font standard per testi - + If this is checked, hatches will be converted into simple wires Se questo è selezionato, i tratteggi sono convertiti in semplici wire - + Import hatch boundaries as wires Importa i confini del tratteggio come wire - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Se questo è selezionato, quando le polilinee hanno una larghezza definita, sono disegnate come wire chiusi con la larghezza corretta - + Render polylines with width Disegna le polilinee con spessore @@ -1288,42 +1288,42 @@ Values with differences below this value will be treated as same. Colore della geometria di costruzione - + Import Importa - + texts and dimensions testi e quotature - + points punti - + layouts layout - + *blocks *blocchi - + If this is checked, the exported objects will be projected to reflect the current view direction Se questo è selezionato, gli oggetti esportati sono proiettati secondo la direzione della vista corrente - + Project exported objects along current view direction Proietta gli oggetti esportati lungo la direzione di visualizzazione corrente - + Ellipse export is badly supported. Use this to export them as polylines instead. L'esportazione dell'ellisse non è supportata completamente. Usate questo per esportarla come polilinea. @@ -1443,52 +1443,52 @@ Values with differences below this value will be treated as same. Riempi gli oggetti con le facce quando è possibile - + Create Crea - + simple Part shapes forme semplici di Parte - + If this is checked, parametric Draft objects will be created whenever possible Se selezionato, e quando possibile, sono creati oggetti Draft parametrici - + Draft objects Oggetti Draft - + If this is checked, sketches will be created whenever possible Se selezionato, sono creati Schizzi, quando possibile - + Sketches Sketch - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Se selezionato, quando possibile, i colori sono recuperati dagli oggetti DXF, altrimenti sono applicati i colori predefiniti. - + Get original colors from the DXF file Ottieni colori originali da file DXF - + Treat ellipses and splines as polylines Tratta ellissi e spline come polilinee - + Max Spline Segment: Massimo segmento Spline: @@ -1503,37 +1503,32 @@ Values with differences below this value will be treated as same. Visualizza il suffisso unità nelle dimensioni - - Automatic update - Aggiornamento automatico - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/> <body><p>Attivandolo, si permette a FreeCAD di scaricare e aggiornare i</p> <p>componenti necessari per importare e esportare in DXF. Si può anche farlo</p> <p>manualmente, da https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Consenti a FreeCAD di scaricare e aggiornare automaticamente le librerie DXF - + If this is checked, only standard Part objects will be created (fastest) Se selezionato, sono creati solo oggetti standard di Part (più veloce) - + If this is checked, DXF layers will be imported as Draft VisGroups Se viene selezionata questa casella, i layers dei DXF sono importati come VisGroups di Draft - + Use VisGroups Utilizza VisGroups - + mm mm @@ -1693,12 +1688,12 @@ Values with differences below this value will be treated as same. Opzioni di importazione - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Selezionando questa opzione, viene usato il vecchio importatore di python, altrimenti viene utilizzato il nuovo importatore C++ (che è più veloce, ma a cui mancano ancora molte funzionalità) - + Use legacy python importer Usa il vecchio importatore python @@ -1728,15 +1723,30 @@ Values with differences below this value will be treated as same. Disattiva la scalatura delle unità - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. Selezionando questa opzione, le viste di disegno sono esportate come blocchi. Questo può fallire per i modelli post-R12. - + Export Drawing Views as blocks Esporta le viste di Disegno come blocchi + + + Note: Not all the options below are used by the new importer yet + Nota: Il nuovo importatore non utilizza ancora tutte le opzioni sottostanti + + + + Show this dialog when importing and exporting + Visualizza questa finestra di dialogo durante l'importazione e l'esportazione + + + + Automatic update (legacy importer only) + Aggiornamento automatico (solo per il vecchio importatore) + Workbench @@ -1759,162 +1769,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Barra dei comandi Draft - + active command: comando attivo: - + None Nessuno - + Active Draft command Comando Draft attivo - + X coordinate of next point Coordinata X del prossimo punto - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordinata Y del prossimo punto - + Z coordinate of next point Coordinata Z del prossimo punto - + Radius Raggio - + Radius of Circle Raggio del Cerchio - + &Relative &Relativo - + Coordinates relative to last point or absolute (SPACE) Coordinate relative all'ultimo punto o assolute (BARRA SPAZIATRICE) - + F&illed P&ieno - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Spuntare questa opzione se l'oggetto deve apparire "a facce piene", altrimenti esso appare "a reticolo" (i) - + &Finish &Finisci - + Finishes the current drawing or editing operation (F) Finisce il disegno corrente o l'operazione di modifica (F) - + If checked, command will not finish until you press the command button again Se spuntato, il comando non termina finché non si preme nuovamente il pulsante di comando - + If checked, an OCC-style offset will be performed instead of the classic offset Se spuntato, viene eseguito un offset in stile OCC invece dell'offset classico - + &OCC-style offset &Offset in stile OCC - + Add points to the current object Aggiungi punti all'oggetto corrente - + Remove points from the current object Rimuovi punti dall'oggetto corrente - + Make Bezier node sharp Crea nodo Bezier spigoloso - + Make Bezier node tangent Crea nodo Bezier tangente - + Make Bezier node symmetric Nodo Bezier simmetrico - + &Undo &Annulla - + Undo the last segment (CTRL+Z) Annulla l'ultimo segmento (CTRL+Z) - + Finishes and closes the current line (C) Termina e chiude la linea corrente (C) - + &Wipe &Cancella - + Wipes the existing segments of this line and starts again from the last point (W) Cancella i segmenti esistenti di questa linea e ricomincia dall'ultimo punto (C) - + Number of sides Numero di lati @@ -1924,132 +1934,132 @@ Values with differences below this value will be treated as same. Offset - + XY XY - + Select XY plane Seleziona il piano XY - + XZ XZ - + Select XZ plane Seleziona il piano XZ - + YZ YZ - + Select YZ plane Seleziona il piano YZ - + View Vista - + Select plane perpendicular to the current view Seleziona il piano perpendicolare alla vista corrente - + Do not project points to a drawing plane Non proiettare i punti su un piano di disegno - + If checked, objects will be copied instead of moved (C) Se selezionato, gli oggetti sono copiati invece che spostati (C) - + Text string to draw Stringa di testo da disegnare - + String Stringa - + Height of text Altezza del testo - + Height Altezza - + Intercharacter spacing Spaziatura intercarattere - + Tracking Crenatura - + Full path to font file: Percorso completo del file di font: - + Open a FileChooser for font file Apre un finestra per selezionare un file di font - + Set/unset a working plane Imposta/rimuove un piano di lavoro - + Line Color Colore linea - + Face Color Colore faccia - + Line Width Spessore linea - + Font Size Dimensione carattere - + Apply to selected objects Applica agli oggetti selezionati - + Toggles Construction Mode Attiva/Disattiva Modalità Costruzione - + Select Plane Seleziona il piano @@ -2064,230 +2074,230 @@ Values with differences below this value will be treated as same. DWire - + Circle Cerchio - + Center X Centro X - + Arc Arco - + Point Punto - + Distance Distanza - + Trim Taglia - + Pick Object Scegli Oggetto - + Edit Modifica - + Global X X globale - + Global Y Y globale - + Global Z Z globale - + Local X X locale - + Local Y Y locale - + Local Z Z locale - + Invalid Size value. Using 200.0. Dimensione non valida. Uso 200.0. - + Invalid Tracking value. Using 0. Valore di crenatura non valido. Utilizzato 0. - + Please enter a text string. Inserire una stringa di testo. - + Select a Font file Seleziona un file di font - + Please enter a font file. Inserire un file di font. - + Draft.makeBSpline: not enough points Draft.makeBSpline: numero di punti insufficiente - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline : I punti finali sono uguali. Chiusura forzata - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: elenco dei punti non valido - + Found groups: closing each open object inside Trovati gruppi: chiusura di ogni oggetto aperto - + Found mesh(es): turning into Part shapes Trovate mesh: trasformazione in forme - + Found 1 solidificable object: solidifying it Trovato 1 oggetto solidificable: solidificazione - + Found 2 objects: fusing them Trovati 2 oggetti: fusione degli stessi - + Found 1 non-parametric objects: draftifying it Trovato 1 oggetto non parametrico: creazione di un abbozzo dallo stesso - + Found 1 open wire: closing it Trovata 1 polilinea aperta: chiusura della stessa - + Found several open wires: joining them Trovati diversi wire aperti: creazione di un'unione - + Found several edges: wiring them Trovati numerosi bordi: connessione degli stessi - + Unable to upgrade these objects. Impossibile promuovere questi oggetti. - + Found 1 block: exploding it Trovato 1 blocco: esplosione - + Found 1 parametric object: breaking its dependencies Trovato 1 oggetto parametrico: rottura delle sue dipendenze - + Found 2 objects: subtracting them Trovati 2 oggetti: sottrazione degli stessi - + Found several faces: splitting them Trovate diverse facce: separazione delle stesse - + Found several objects: subtracting them from the first one Trovati diversi oggetti: sottrazione dal primo - + Found 1 face: extracting its wires Trovata 1 faccia: estrazione delle sue polilinee - + Found only wires: extracting their edges Trovate solo polilinee: estrazione dei rispettivi bordi - + No more downgrade possible Downgrade non più possibile - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry : chiusa con lo stesso primo/ultimo punto. Geometria non aggiornata. @@ -2655,7 +2665,7 @@ Values with differences below this value will be treated as same. - + Select an object to project Seleziona un oggetto da proiettare @@ -2673,56 +2683,56 @@ Values with differences below this value will be treated as same. Questo tipo di oggetto non è modificabile - + Active object must have more than two points/nodes L'oggetto attivo deve avere più di due punti/nodi - + Selection is not a Knot La selezione non è un nodo - + Endpoint of BezCurve can't be smoothed Il punto finale di una curva di Bezier non può essere levigato - + Select an object to convert Seleziona un oggetto da convertire - + Select an object to array Seleziona un oggetto per la serie - + Please select base and path objects Seleziona gli oggetti di base e del percorso - + Create Point Crea Punto - + Select an object to clone Seleziona un oggetto da clonare - + Select face(s) on existing object(s) Seleziona facce sugli oggetti esistenti @@ -2755,106 +2765,106 @@ Values with differences below this value will be treated as same. Aggancio - + Found 1 multi-solids compound: exploding it è stato trovato un solido multi-componente: scomporlo - + Sides Lati - + BSplines and Bezier curves are not supported by this tool Le BSplines e le curve di Bezier non sono supportate da questo strumento - + The given object is not planar and cannot be converted into a sketch. L'oggetto non è piano e non può essere convertito in uno schizzo. - + Found several objects: creating a shell Trovati diversi oggetti: creazione di un guscio - + Found several coplanar objects or faces: creating one face Trovati diversi oggetti o facce complanari: creazione di una faccia - + Found 1 linear object: converting to line Trovato 1 oggetto lineare: conversione in linea - + Found 1 closed sketch object: creating a face from it Trovato 1 oggetto schizzo chiuso: creazione di una faccia da esso - + Found closed wires: creating faces Trovati contorni chiusi: creazione di facce - + Found several non-treatable objects: creating compound Trovati diversi oggetti non trattabili: creazione di composti - + Length Lunghezza - + Angle Angolo - + Length of current segment Lunghezza del segmento corrente - + Angle of current segment Angolo del segmento corrente - + Check this to lock the current angle (l) Seleziona questa casella per bloccare l'angolo corrente (l) - + &Select edge &Seleziona bordo - + Selects an existing edge to be measured by this dimension (E) Selezionare un bordo esistente da misurare in questa quotatura (E) - + Auto Auto @@ -2866,22 +2876,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Converti in schizzo - + Convert to Draft Converti in Draft - + Convert Converti - + Array Matrice @@ -2921,7 +2931,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2937,79 +2947,89 @@ Oppure scaricare queste librerie manualmente, come spiegato su https://github.co Per abilitare FreeCAD a scaricare queste librerie, rispondere Sì. - + No object given Nessun oggetto dato - + The two points are coincident I due punti sono coincidenti - + Co&ntinue Co&ntinua - + Cl&ose Ch&iudi - + C&opy C&opia - + Faces Facce - + Remove Rimuovi - + Add Aggiungi - + Facebinder elements Elementi di Facebinder - + Mirror Specchio - + Select an object to mirror Selezionare un oggetto da specchiare - + Pick start point of mirror line: Specificare il punto iniziale della linea speculare: - + Pick end point of mirror line: Specificare il punto finale della linea speculare: + + + Enter point + Inserisci punto + + + + Enter a new point with the given coordinates + Inserisce un nuovo punto con le coordinate date + diff --git a/src/Mod/Draft/Resources/translations/Draft_ja.qm b/src/Mod/Draft/Resources/translations/Draft_ja.qm index 8e3798a567624dd1bb71b63626aa925549bfea3a..95e530b226e223e2095ea7270f7b22ed16bca54b 100644 GIT binary patch delta 4723 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 delta 4263 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 Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point 点の追加 - + Adds a point to an existing wire/bspline 既存の連線またはBスプライン曲線に点を追加します。 @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... グループに追加... - + Adds the selected object(s) to an existing group 選択したオブジェクトを既存のグループに追加する @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array 配列 - + Creates a polar or rectangular array from a selected object 選択したオブジェクトから円形または矩形の配列を作成します @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone 複製 - + Clones the selected object(s) 選択されたオブジェクト(複数可)の複製を作成 @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point 点の削除 - + Removes a point from an existing wire or bspline 既存の連線またはBスプライン曲線から点を削除します。 @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch ドラフトからスケッチへ - + Convert bidirectionally between Draft and Sketch objects ドラフトオブジェクトとスケッチオブジェクトを相互に変換します @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder フェイスバインダー - + Creates a facebinder object from selected face(s) 選択された面(複数可)からフェイスバインダー・オブジェクトを作成 @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension 寸法を反転 - + Flip the normal direction of a dimension 寸法の法線方向を反転 @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal 修復 - + Heal faulty Draft objects saved from an earlier FreeCAD version 旧FreeCAD バージョンに保存されている、 欠陥のあるドラフト オブジェクトを修復します @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror 鏡像コピー - + Mirrors the selected objects along a line defined by two points 2点で定義された線に沿って選択したオブジェクトを鏡像コピー @@ -344,12 +344,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. 選択したパスに沿って選択したオブジェクトのコピーを作成します。 @@ -357,12 +357,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point - + Creates a point object 点を作成します。 @@ -422,12 +422,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group グループを選択 - + Selects all objects with the same parents as this group このグループと同じ親を持つすべてのオブジェクトを選択します @@ -448,12 +448,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2Dビュー形状 - + Creates Shape 2D views of selected objects 選択されているオブジェクトの2Dビュー形状を作成します @@ -474,12 +474,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar スナップバーを表示 - + Shows Draft snap toolbar ドラフトスナップ ツールバーを表示 @@ -487,12 +487,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles 角度 - + Snaps to 45 and 90 degrees points on arcs and circles 円弧や円上の点を、45度および90度にスナップさせる @@ -500,12 +500,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center 中心 - + Snaps to center of circles and arcs 円、円弧の中心にスナップ @@ -513,12 +513,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions 寸法 - + Shows temporary dimensions when snapping to Arch objects Archオブジェクトにスナップする場合は仮寸法を表示 @@ -526,12 +526,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint 端点 - + Snaps to endpoints of edges エッジの端点にスナップ @@ -539,12 +539,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension 延長線上 - + Snaps to extension of edges エッジの延長にスナップ @@ -552,12 +552,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid グリッド - + Snaps to grid points グリッド点にスナップ @@ -565,12 +565,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection 共通集合 - + Snaps to edges intersections エッジの交点にスナップ @@ -578,12 +578,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off オン/オフを切り替え - + Activates/deactivates all snap tools at once 全てのスナップツールを同時にアクティブ化/非アクティブ化 @@ -591,12 +591,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint 中点 - + Snaps to midpoints of edges エッジの中点にスナップ @@ -604,12 +604,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest 最近接 - + Snaps to nearest point on edges エッジ上の最も近い点にスナップ @@ -617,12 +617,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho 正射投影 - + Snaps to orthogonal and 45 degrees directions 45度の方向でスナップさせる @@ -630,12 +630,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel 平行 - + Snaps to parallel directions of edges エッジの平行方向にスナップ @@ -643,12 +643,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular 垂直 - + Snaps to perpendicular points on edges エッジ上の垂直点にスナップ @@ -656,12 +656,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane 作業平面 - + Restricts the snapped point to the current working plane スナップされる点を現在の作業平面に制限 @@ -721,12 +721,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid グリッドの切り替え - + Toggles the Draft grid on/off ドラフトのグリッドの オン/オフを切り替えます @@ -773,12 +773,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup VisGroup を追加 @@ -799,12 +799,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline 連線をBスプライン曲線に変換 - + Converts between Wire and BSpline 連線とBスプライン曲線を相互変換 @@ -945,17 +945,17 @@ such as "Arial:Bold" 標準の色と線幅 - + if this is checked, paper space objects will be imported too これがチェックされていると、ぺーバー空間オブジェクト[paper space object]もインポートされます。 - + if this is unchecked, texts/mtexts won't be imported チェックされていない場合、[texts/mtext]はインポートされません - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. スプラインをDXFへエクスポートする場合、それらはポリラインに変換されます。この値はポリラインの各セグメントの最大長です。0の場合、スプラインの全体が直線セグメントとして扱われます。 @@ -997,17 +997,17 @@ Values with differences below this value will be treated as same. これ以下の値の違いは、同じものとして扱われます。 - + Check this if you want the non-named blocks (beginning with a *) to be imported too (*で開始する)名称のないブロックもインポートしたい場合にはチェックしてください - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... チェックした場合、FreeCADは一致するオブジェクトをワイヤーに結合しようとします。これには時間がかかる場合があります。 - + Join geometry ジオメトリを結合 @@ -1152,22 +1152,22 @@ Values with differences below this value will be treated as same. 右面図 - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable チェックされている場合、同じレイヤーのオブジェクトがドラフトブロックとして連結されますが、高速表示をオンにすることで、より容易に編集できるようになります。 - + Group layers into blocks グループレイヤーをブロックへ - + If this is checked, all objects containing faces will be exported as 3d polyfaces これがチェックされている場合は、3Dポリフェイスとしての面を含むすべてのオブジェクトがエクスポートされます。 - + Export 3D objects as polyface meshes 3D オブジェクトをポリフェイスメッシュとしてエクスポートします。 @@ -1202,32 +1202,32 @@ Values with differences below this value will be treated as same. チェックされている場合、ドラフトワークベンチのアクティブ状態中に常にドラフトグリッドが表示されます。それ以外の場合はコマンド使用時のみです。 - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document チェックされている場合、インポートされたテキストサイズは、DXF 文書内にあるサイズから標準ドラフトで定義されたテキストサイズへ変換されます。 - + Use standard font size for texts 標準フォントサイズを使用 - + If this is checked, hatches will be converted into simple wires チェックされている場合、ハッチングは単純な線に変換されます。 - + Import hatch boundaries as wires ハッチング境界を線としてインポート - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width チェックされている場合、ポリラインに幅の定義があるときには適切な幅の閉じたワイヤーとしてレンダリングされます - + Render polylines with width 幅のあるポリラインをレンダリングします。 @@ -1292,42 +1292,42 @@ Values with differences below this value will be treated as same. 補助形状の色 - + Import インポート - + texts and dimensions テキストと寸法線 - + points ポイント - + layouts レイアウト - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction チェックされている場合、エクスポートされるオブジェクトは現在のビュー方向を考慮して投影されます - + Project exported objects along current view direction エクスポートされるオブジェクトを現在のビュー方向と平行に投影 - + Ellipse export is badly supported. Use this to export them as polylines instead. 楕円のエクスポートは十分にサポートされていません。代わりにこれを使用してポリラインとしてエクスポートしてください。 @@ -1447,52 +1447,52 @@ Values with differences below this value will be treated as same. できるだけオブジェクトの面を塗りつぶす - + Create 作成 - + simple Part shapes パート形状を単純化 - + If this is checked, parametric Draft objects will be created whenever possible ここをチェックされている場合、できる限りパラメトリックなドラフト・オブジェクトが作成されます - + Draft objects ドラフトオブジェクト - + If this is checked, sketches will be created whenever possible チェックされている場合、可能であれば常にスケッチが作成されます - + Sketches スケッチ - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. ここをチェックした場合、色は可能な限りDXFオブジェクトから読み出されます。それ以外の場合、デフォルトの色が適用されます。 - + Get original colors from the DXF file DXFファイルからオリジナルの色を取得 - + Treat ellipses and splines as polylines 楕円およびスプラインをポリラインとして扱う - + Max Spline Segment: スプラインの最長線分: @@ -1507,37 +1507,32 @@ Values with differences below this value will be treated as same. 寸法の単位サフィックスを表示する - - Automatic update - 自動更新 - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>これをチェックすると、FreeCADにDXFのインポートとエクスポートに必要なコン</p><p>ポーネントをのダウンロードと更新ができる。 また次のサイトを参照すると手動で</p><p>同様のことができる。https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries FreeCAD に、DXF ライブラリの自動的なダウンロードと更新を許可します。 - + If this is checked, only standard Part objects will be created (fastest) チェックされている場合、標準のPartオブジェクトだけが作成されます(最も高速) - + If this is checked, DXF layers will be imported as Draft VisGroups チェックされている場合、DXFレイヤーはドラフト VisGroups としてインポートされます - + Use VisGroups VisGroups を使用 - + mm mm @@ -1697,12 +1692,12 @@ Values with differences below this value will be treated as same. インポート・オプション - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) チェックされている場合、古いPythonによるインポート機能が使用されます。それ以外の場合は新しいC++による機能(より拘束ですがまだ多くの機能が欠けています)が使用されます。 - + Use legacy python importer 過去のPythonインポーターを使用 @@ -1732,15 +1727,30 @@ Values with differences below this value will be treated as same. 単位スケーリングを無効 - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. チェックされている場合、ドローイングビューはブロックとしてエクスポートされます。ポストR12テンプレートの際には失敗する可能性があります。 - + Export Drawing Views as blocks ドローイングビューをブロックとしてエクスポート + + + Note: Not all the options below are used by the new importer yet + 注: 以下のオプションには新しいインポート機能ではまだ使用できないものがあります + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + 自動更新 (旧来インポート機能のみ) + Workbench @@ -1763,162 +1773,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar ドラフトコマンドバー - + active command: アクティブコマンド: - + None なし - + Active Draft command アクティブドラフトコマンド - + X coordinate of next point 次の点の X 座標 - + X X - + Y Y - + Z Z - + Y coordinate of next point 次の点の Y 座標 - + Z coordinate of next point 次の点の Z 座標 - + Radius 半径 - + Radius of Circle 円の半径 - + &Relative 相対 (&R) - + Coordinates relative to last point or absolute (SPACE) 最後の点からの相対座標、または絶対座標[スペース] - + F&illed 塗りつぶし (&I) - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) チェックされている場合、オブジェクトは塗りつぶし表示されます。それ以外の場合、ワイヤーフレーム表示されます (i) - + &Finish 終了 (&F) - + Finishes the current drawing or editing operation (F) 現在の製図、または編集操作を終了します (F) - + If checked, command will not finish until you press the command button again チェックされている場合、再びコマンドボタンを押すまでコマンドが終了しなくなります - + If checked, an OCC-style offset will be performed instead of the classic offset チェックされている場合、従来のオフセットの代わりにくOCC-スタイルのオフセットが行われます - + &OCC-style offset OCC スタイル オフセット (&O) - + Add points to the current object 現在のオブジェクトに点を追加します - + Remove points from the current object 現在のオブジェクトから点を削除します - + Make Bezier node sharp ベジエ曲線の頂点を鋭角にする - + Make Bezier node tangent ベジエ曲線の頂点を接線にする - + Make Bezier node symmetric ベジエ曲線の頂点を対称にする - + &Undo 元に戻す(&U) - + Undo the last segment (CTRL+Z) 最後のセグメントを元に戻す (Ctrl+Z) - + Finishes and closes the current line (C) 現在の線を閉じて終了[C] - + &Wipe 消去 (&W) - + Wipes the existing segments of this line and starts again from the last point (W) 直線の既存の区間を消去して最後の点から再開します (W) - + Number of sides 辺の数 @@ -1928,132 +1938,132 @@ Values with differences below this value will be treated as same. オフセット - + XY XY - + Select XY plane XY 平面を選択 - + XZ XZ - + Select XZ plane XZ 平面を選択 - + YZ YZ - + Select YZ plane YZ 平面を選択 - + View 表示 - + Select plane perpendicular to the current view 現在のビューに垂直な面を選択する。 - + Do not project points to a drawing plane 描画平面に点を投影しないでください - + If checked, objects will be copied instead of moved (C) チェックされている場合、オブジェクトは移動 (C) ではなくコピーされます。 - + Text string to draw 描画するテキスト文字列 - + String 文字列 - + Height of text テキストの高さ - + Height 高さ - + Intercharacter spacing 文字間隔 - + Tracking トラッキング - + Full path to font file: フォントファイルのフルパス: - + Open a FileChooser for font file ファイル選択ダイアログを開いてフォントファイルを選択 - + Set/unset a working plane 作業平面の設定/非設定 - + Line Color 線の色 - + Face Color 面の色 - + Line Width 線の幅 - + Font Size フォントサイズ - + Apply to selected objects 選択したオブジェクトに適用します。 - + Toggles Construction Mode 作成モードへの切り替え - + Select Plane 平面選択 @@ -2068,237 +2078,237 @@ Values with differences below this value will be treated as same. Dワイヤー - + Circle - + Center X 中心X - + Arc 円弧 - + Point - + Distance 距離 - + Trim トリム - + Pick Object オブジェクトを選択 - + Edit 編集 - + Global X グローバル座標 X - + Global Y グローバル座標 Y - + Global Z グローバル座標 Z - + Local X ローカル座標 X - + Local Y ローカル座標 Y - + Local Z ローカル座標 Z - + Invalid Size value. Using 200.0. サイズの値が無効です。 200.0 を使ってください。 - + Invalid Tracking value. Using 0. トラッキングの値が無効です。 0 を使ってください。 - + Please enter a text string. 文字を入力してください。 - + Select a Font file フォントファイルを選択 - + Please enter a font file. フォントファイルを入力してください。 - + Draft.makeBSpline: not enough points Draft.makeBSpline: 点の数が不十分 - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: 等しい端点を強制的につなぐ - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: 無効な頂点リスト - + Found groups: closing each open object inside グループを見つけました: 内部の開いているオブジェクトを閉じます - + Found mesh(es): turning into Part shapes メッシュが見つかりました:パート形状へ変換します - + Found 1 solidificable object: solidifying it ソリッド化可能なオブジェクトが1つ見つかりました: ソリッド化します - + Found 2 objects: fusing them オブジェクトを2つ見つけました: 結合します - + Found 1 non-parametric objects: draftifying it 非パラメトリックなオブジェクトを1つ見つけました: 製図します - + Found 1 open wire: closing it 開いたワイヤーを1つ見つけました: 閉じます - + Found several open wires: joining them 複数の開いたワイヤーが見つかりました:結合する - + Found several edges: wiring them 複数のエッジを見つけました: ワイヤーとして結合します - + Unable to upgrade these objects. これらのオブジェクトはアップグレードできません。 - + Found 1 block: exploding it ブロックが1つ見つかりました:このブロックを分解 - + Found 1 parametric object: breaking its dependencies パラメトリックなオブジェクトを1つ見つけました: 依存関係を破棄します - + Found 2 objects: subtracting them オブジェクトを2つ見つけました: 減算を行います - + Found several faces: splitting them 複数の面を見つけました: 分割します - + Found several objects: subtracting them from the first one 複数のオブジェクトを見つけました: 最初の1つから残りを減算します - + Found 1 face: extracting its wires 面を1つ見つけました: ワイヤーを抽出します - + Found only wires: extracting their edges ワイヤーのみ見つかりました: エッジを抽出します - + No more downgrade possible それ以上のダウングレードはできません - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry:最初/最後の点を一致させて曲線を閉じてください。ジオメトリーはは更新されていません。 @@ -2666,7 +2676,7 @@ Values with differences below this value will be treated as same. - + Select an object to project 投影するオブジェクトを選択 @@ -2685,55 +2695,55 @@ Values with differences below this value will be treated as same. このオブジェクトタイプは編集できません - + Active object must have more than two points/nodes アクティブオブジェクトは2つ以上の点またはノードが必要 - + Selection is not a Knot 節点が選択されていません - + Endpoint of BezCurve can't be smoothed ベジエ曲線の端点はスムージングできません - + Select an object to convert 変換するオブジェクトを選択 - + Select an object to array 配列にするオブジェクトを選択 - + Please select base and path objects ベースとパスオブジェクトを選択してください - + Create Point 点を作成 - + Select an object to clone 複製するオブジェクトを選択 - + Select face(s) on existing object(s) 既存のオブジェクトの面を選択 @@ -2766,106 +2776,106 @@ Values with differences below this value will be treated as same. スナップ - + Found 1 multi-solids compound: exploding it コンパウンドが1つ見つかりました:このコンパウンドを分解 - + Sides 側面 - + BSplines and Bezier curves are not supported by this tool このツールではBスプラインとベジェ曲線はサポートされていません - + The given object is not planar and cannot be converted into a sketch. 指定されたオブジェクトは平面およびスケッチに変換することができません。 - + Found several objects: creating a shell 幾つかのオブジェクトが見つかりました: シェルを作成します - + Found several coplanar objects or faces: creating one face 同一平面上にあるオブジェクトまたは面が見つかりました:ひとつの面を作成します - + Found 1 linear object: converting to line ひとつの 線形オブジェクトが見つかりました: 線分へ変換します - + Found 1 closed sketch object: creating a face from it 閉じたスケッチオブジェクトを1つ見つけました: 面を作成します - + Found closed wires: creating faces 閉じた連線が見つかりました: 面を作成します - + Found several non-treatable objects: creating compound 複数の修復不能なオブジェクトを見つけました: 複合物を作成します - + Length 長さ - + Angle 角度 - + Length of current segment 現在のセグメントの長さ - + Angle of current segment 現在のセグメントの角度 - + Check this to lock the current angle (l) ここにチェックを入れると、現在の角度 (l)を拘束します - + &Select edge エッジを選択 (&S) - + Selects an existing edge to be measured by this dimension (E) 寸法(E)を計測したいところの既存エッジを選択して下さい - + Auto 自動 @@ -2877,22 +2887,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch スケッチに変換 - + Convert to Draft ドラフトに変換 - + Convert 変換 - + Array 配列 @@ -2932,7 +2942,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2951,79 +2961,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer FreeCADでこれらライブラリーのダウンロードを有効にするためにYesを選択します。 - + No object given オブジェクトが指定されていません - + The two points are coincident 2点が一致しています - + Co&ntinue 続ける(&n) - + Cl&ose 閉じる(&O) - + C&opy コピー(&O) - + Faces - + Remove 削除 - + Add 追加 - + Facebinder elements フェイスバインダー要素 - + Mirror 鏡像コピー - + Select an object to mirror 鏡像コピーするオブジェクトを選択 - + Pick start point of mirror line: 対称線の始点を選択: - + Pick end point of mirror line: 対称線の終点を選択: + + + Enter point + 点の入力 + + + + Enter a new point with the given coordinates + 指定された座標に新しい点を入力 + diff --git a/src/Mod/Draft/Resources/translations/Draft_nl.qm b/src/Mod/Draft/Resources/translations/Draft_nl.qm index 2c1739a496123e391554d861ed8a87bd54f50e69..29964359004bfd6c4bc5892db18efb9589333f3a 100644 GIT binary patch delta 4859 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 z z{)-HG`05w>Is$o;e#0XM!ut36EdzL=x|@F6HG1lAWAr<6Ig5B~)F0K7apP?L>C^3* zk&?c0G(9s^rGI*{C4?ra2IuG$&K@>{Yl~BCkOvKJu4WEXR}CLezQxXNHF&Oy0Hy^S zyhNK5%l9cmhdb>_4b_e=a8tO~L1)`aa(A99x(Lk5> zG+eiN&_eOG;X#!gIFV_1T=|*}u+*qrcAElv7`1KeOsRWD8WAsK5l$7c`xVH)yzYaQ_jf-3q}e7cE3>5WSHQAXqXX+FoYwK?-tBJ z9AYsGR<6(DN-Sb{CJ~-0@DKlE0q%nmtg$n~td?+7LR>_c)ok*JHb;hqCz>oX;$ml6 z&9h9gG0};hc44f0&dyMwk1ZJil;e=-Ly7gzCf*s%zb39namR5}9G@+9H^%dQDp#ZV zHiyq))WvZo0rA9$x?P99e|;OnRmZviuYV%UpTYV;`GEnkR{7Jsfl&FG3Gh{wJXtVA5`FxlbtzIIUodqRJ>k2hZ+{D zW}<4AI>TZ~s);H&OpEzHidnc4X}>Vu*`BdQ>i$8sj)76U-x_6!H$_;&qGKaXbE3>K z|GC@}6KM*Ii7=VxIw-bZ+|)kj)#mJBwjlUY+F#BJ<4u22;c%nlCTpD@mO85bOIRfL zX8%XGaGrFy+@X66wRcF1|DaX}-x!BW!%Pk);$kf^R?{4dHL8xB$j>aZsbY9+?5qe& n3_~Ga$pDceW`%uW736$u`oGlspwb87+Ir!2VspN^pW^#JZL7KH delta 4276 zcmX9>30zKT`@YV5w)dQO3#BPb_9$bEu?*rP)JJ0*DiqP6F+M&rYUbaYHIlVLS^l<2 z#%$@!G8k0II?0+(ifAmA6l00+YU=mvcb)e<=RD7SU-x}q_kBJTOG$U7b&mEl009tO z@`-^ET=x-!AT*f>$hY}>I`IxMmiUDC`vPh|;CN$T=pGGZ$sjM3KbV@yjK7jP}d%(E?)5Ziy;rm0bFO+2dFGv`2YL-{BK=^+~D-U04=qxoZc(|Hlxj`#tk zrSQzA!Dn8=^L`kR-347<&g1)y(YweCm@*4}wl@LNJkd9|8*rcq{dT$ldHLv{K*pwZ zhR=;iJ8*t8hWWPza-A`3^GZP3R*z?Y#js@3KRg+}_m=?!$JAr~W%zwYk4!z`H#HO( zc^Sha&j7c!VeB=XhPA`ElnS701jbJu3p9UNkF|aXsHNwt3K6)O=e62T?7@qV!x8xQ z3@U_t`kBM*4=tsvNQ9`RjZ|KKe!4oHd zv0Vkv2Mm~SPUyUb5ALcJytdKb`C@LzXff-enA(uJ7~ zqJTGP!q;{g81!0L+?zbsyb@N;h=AbeB&=G=j5LJ{JMDbFSFG^MBn@_?M}|co)vLDKoDMfsp8S4Xs&%sbLP!MYv5*>8%0A--4JZpI(u16;1vYFD@0v;J8F#UGAz!@uiTLOdnaS-hR?X=F zjQ&-uI!*;`(^q_l?SOlT_|C=}8sA3zxP$xr;Vyox6TLsCOOB5tDFqg(Wot6n-%IK= z&kHzsUg{mahc)&8(!djTmS&@|l5f~N*8YBJ^7l?a?PV#lf*w2+rN!TJqjld&OG}so z9ds%7>&Gmru79JTt(9Vz!~$RcBE`O;Ay4K?@i%@1Qh$~TzV8w8LI^e8Q3LdO(X-J z&!ofgG^op3=~yBSnp7s8(Ep-11xVR0OMrykQg##Ki4^I^jfTKl7pX8LgP1Jc4`YtJ zx-LDmaX)#u^t4XY%JL<9#cejTm2R@Qgccr7k);JZC?-?3Rm}&gCAo`}T2 zSe+nu^yl;CBjo|fR8f~c_4uNrJos}qucM{%@TOGbQ77byx3hsJAM3FyT@EV`18&#K z)9Y~ZCOKy29pFwcyBzy7J*nL#$JaHW598&HX{kU~O7lmV5cDd=ErGJ6ol@M(xKYvur9=6Cc3?>v??P$~-pYjhOkhEhGQZiEl)LFl z#O~Hi?rLS#1Ts2#u(E37U{;Y+jFMPXP9aWHHZ~_Uoz5tm0$AUPo0a6)wxrxsN#56% z0_~ve>_cnG`l%Y`$`s{JI;&z?sd9HI>%9a@ne0zJ>8F&Z zkB6W7%QSuJBy)XA@NSpQez)u|t>jLrLctevZVrJMj}m#8!9rljN7 z)VT)-0S+tF1v0bwxW5{co5AU8ox0-RLF|F&)iu#P(9>02zc84ccBHzm3q3t2sJ}HM z#fvl5Q|}uAU#6;$pCtf4gs3$qk|C%yM)b4O6W>8bZHW^-a51_cVluscX6&#z2Y4B0 z{B#au`duSqx9oJ_ZM@OzK6BvCUgKx;nUsE~jDzbmeDX7+@A)niq#7 z?!*B_x!Md%2jJ;$Exd7mj$H?}Sx%&Ge}Fc3bz64zcUnYiGLRjpEqLCYW71w^=4^dl<4z% zue)P_HQjY@_xbc}weFpoL**>feN+7)G>X^9=I3!<{X!4h@&u?V(Zenl&~bZzeZd5V z;Fh1hP>un_6y3g-8_rpyFLz+_G+(Z-I$2I>o~5sFnVe(tiyeSP$+BM-CwPnYXg zAJx!9i+J_{Q%Pr-+C^K*#5hw2iQg06IVR7MJf|ed^l8Q$ z)_=xKQ;+NP#N``P&v`RBirY;C1~BGJe>M%e!~>TsH-$z}G9BYgU$xKY1XE)ArgtiH z;iD<0Yik;^$+Y6W3N*+v#jhUCdEkX9aWJVLztOZ~X(A`{i>9=#=}gKOrqjvcz`bD8 zHFq+iJ}?zTZ|4_NgGy6PIb&Bf-K>o41bouQtnOOI(JRR8@-~@GW1P9kbFO!}V{X62 zht&{c?s$#Waj}WHYqTHBb-1}(cOJYl)$FBSXFIQ~$D3{m&n=zo<`L$g-`Ohi#+fIL zo66C;z&v#YQ|Eq;d3G#`^JSXu&FgnWQSrB! zH?Cs@m;7lyDUt9`Uz_hG`vMs!&BZMZOub#^l5gkn6DZ&OUxs6*b=ytFJAkPCFmdxIO}K$x{}Hq)hxm8 zEY3!sSb{fNA((eqf*;QY{D)bl^sNL=eN?i)JMg?<&vJckp zqB^n$W?I*V_vEmA)4D#4q58~Z-ST89@Ozat?`C(PZ?UybJp?GkFybidrMl)C_t9F| zo(>wiSfAKSMSc|Qw>~d^!|&PkHg)v_Zs21xwN7AhJ+|3u2eIjT+ng8sv-~?*a0_Q6_^0sSVPM4ke|-T@ gBIZm>m^{rR!x|!do*`@*p=PMN(}!lnJ)Q6KKVYmiTL1t6 diff --git a/src/Mod/Draft/Resources/translations/Draft_nl.ts b/src/Mod/Draft/Resources/translations/Draft_nl.ts index 55cd17398..94c7fa36c 100644 --- a/src/Mod/Draft/Resources/translations/Draft_nl.ts +++ b/src/Mod/Draft/Resources/translations/Draft_nl.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Punt toevoegen - + Adds a point to an existing wire/bspline Voegt een punt toe aan een ​​bestaande draad/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Toevoegen aan groep... - + Adds the selected object(s) to an existing group Voegt het/de geselecteerde object(en) aan een bestaande groep toe @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Reeks - + Creates a polar or rectangular array from a selected object Maak een polair of rechthoekige array van een geselecteerd object @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Kopieer - + Clones the selected object(s) Kopieer het/de geselecteerde(e) object(en) @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Punt verwijderen - + Removes a point from an existing wire or bspline Verwijdert een punt uit een bestaande draad of bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Van klad naar schets - + Convert bidirectionally between Draft and Sketch objects Converteer bidirectioneel tussen Draft en Sketch objecten @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Vlakenbinder - + Creates a facebinder object from selected face(s) Creëert een vlakkenbinder object van geselecteerde vlak(en) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Afmeting spiegelen - + Flip the normal direction of a dimension Keer de normaal richting van een maat om @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Repareer - + Heal faulty Draft objects saved from an earlier FreeCAD version Repareer beschadigde Draft objecten van een oudere FreeCAD versie @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Spiegelt de geselecteerde objecten langs een lijn redefiniert door twee punten @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray Padpatroon - + Creates copies of a selected object along a selected path. Maakt kopieën van een geselecteerd object langs een geselecteerd pad. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Punt - + Creates a point object Maak een punt object @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Selecteer groep - + Selects all objects with the same parents as this group Selecteert alle objecten met dezelfde ouders als deze groep @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D-uitzichtvorm - + Creates Shape 2D views of selected objects Maakt 2D-uitzichtvormen van geselecteerde objecten @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Toon Snap Werkbalk - + Shows Draft snap toolbar Shows Draft snap toolbar @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Hoeken - + Snaps to 45 and 90 degrees points on arcs and circles Vangt op 45 en 90 graden op bogen en cirkels @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Middelpunt - + Snaps to center of circles and arcs Vangt op het middelpunt van cirkels en bogen @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensies - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Eindpunt - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extensie - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Raster - + Snaps to grid points Vangt op rasterpunten @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Snijpunt - + Snaps to edges intersections Vangt op snijpunten van randen @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off In-/ uitschakelen - + Activates/deactivates all snap tools at once Activeert deactiveert/alle vanghulpmiddelen in één keer @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Midden - + Snaps to midpoints of edges Vangt op het midden van randen @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Dichtstbijzijnde - + Snaps to nearest point on edges Vangt op het dichtstbijzijnde punt op randen @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Vangt op orthogonale en 45 graden richtingen @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Evenwijdig - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Loodrecht - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Werkvlak - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Schakel raster - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Draad naar BSpline - + Converts between Wire and BSpline Converteert tussen draad en BSpline @@ -944,17 +944,17 @@ such as "Arial:Bold" Originele kleur en lijndikte - + if this is checked, paper space objects will be imported too Als dit ingeschakeld is, zijn paper space objecten ook geïmporteerd - + if this is unchecked, texts/mtexts won't be imported Als dit niet ingeschakeld is, werden teksten en mtexts niet geïmporteerd - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Bij het exporteren van splines naar DXF-formaat, worden ze omgezet in polylijnen. Deze waarde is de maximale lengte van elk van de polylijn segmenten. Als 0, dan wordt de hele spline behandeld als een recht segment. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. Deze waarde wordt gebruikt door functies die gebruikmaken van een tolerantie. Waarden met verschillen onder deze waarde zullen als gelijk worden behandeld. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Schakel dit in als de niet-genoemde blokken (die beginnen met een *) moeten ook worden geïmporteerd - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Indien ingeschakeld, zal freecad proberen gezamenlijk samenvallende objecten in draden omzetten. Pas op, dit kan even duren... - + Join geometry Geometrie koppelen @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. Rechts - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Als dit ingeschakeld is, zullen objecten op de dezelfde lagen in Draft blokken worden omgezet, waardoor het display sneller zal draaien, maar de objecten minder gemakkelijk bewerkbaar zullen zijn - + Group layers into blocks Lagen groeperen in blokken - + If this is checked, all objects containing faces will be exported as 3d polyfaces Als dit ingeschakeld is, worden alle objecten met oppervlakken geëxporteerd als 3D-polyfaces - + Export 3D objects as polyface meshes 3D-objecten exporteren als polyface netten @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document - + Use standard font size for texts Standaardlettergrootte gebruiken voor teksten - + If this is checked, hatches will be converted into simple wires If this is checked, hatches will be converted into simple wires - + Import hatch boundaries as wires Import hatch boundaries as wires - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width - + Render polylines with width Render polylines with width @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Importeren - + texts and dimensions teksten en afmetingen - + points punten - + layouts opmaken - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create Aanmaken - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Schetsen - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1695,12 +1690,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1730,15 +1725,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Draft Command Bar - + active command: actieve opdracht: - + None Geen - + Active Draft command Actieve opdracht - + X coordinate of next point X-coördinaat van het volgende punt - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-coördinaat van het volgende punt - + Z coordinate of next point Z-coördinaat van het volgende punt - + Radius Straal - + Radius of Circle Straal van de cirkel - + &Relative &Relatief - + Coordinates relative to last point or absolute (SPACE) Coördinaten relatief ten opzichte van vorig punt of absoluut (SPATIE) - + F&illed Gev&uld - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Schakel dit in als het object moet als ingevuld verschijnen, anders zal het als wireframe verschijnen (i) - + &Finish &Beëindigen - + Finishes the current drawing or editing operation (F) Eindigt de huidige tekening of bewerking (F) - + If checked, command will not finish until you press the command button again Indien ingeschakeld, zal de huidige opdracht niet beëindigen totdat u opnieuw op de command-toets druk - + If checked, an OCC-style offset will be performed instead of the classic offset Indien ingeschakeld, zal een OCC-stijl verschuiving worden uitgevoerd in plaats van de klassieke stijl - + &OCC-style offset &OCC-stijl verschuiving - + Add points to the current object Punten aan het huidige object toevoegen - + Remove points from the current object Punten van het huidige object verwijderen - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo &Ongedaan maken - + Undo the last segment (CTRL+Z) Laatste segment ongedaan maken (CTRL+Z) - + Finishes and closes the current line (C) Voltooit en sluit de huidige lijn (C) - + &Wipe &Veeg - + Wipes the existing segments of this line and starts again from the last point (W) Veegt de bestaande segmenten van deze lijn en begint weer vanaf de laatste punt (W) - + Number of sides Aantal zijden @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. Verschuiving - + XY XY - + Select XY plane Selecteer XY-vlak - + XZ XZ - + Select XZ plane Selecteer XY-vlak - + YZ YZ - + Select YZ plane Selecteer YZ vlak - + View Weergave - + Select plane perpendicular to the current view Selecteer een vlak loodrecht op het huidige aanzicht - + Do not project points to a drawing plane Projecteer geen punten naar een tekenvlak - + If checked, objects will be copied instead of moved (C) Indien aangevinkt, zullen objecten worden gekopieerd in plaats van verplaatst (C) - + Text string to draw Text string to draw - + String Tekenreeks - + Height of text Teksthoogte - + Height Hoogte - + Intercharacter spacing Intercharacter spacing - + Tracking Volgen - + Full path to font file: Full path to font file: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Lijnkleur - + Face Color Oppervlakkleur - + Line Width Lijndikte - + Font Size Tekengrootte - + Apply to selected objects Toepassen op geselecteerde objecten - + Toggles Construction Mode Constructie-modus in/uitschakelen - + Select Plane Selecteer vlak @@ -2066,233 +2076,233 @@ Values with differences below this value will be treated as same. DWire - + Circle Cirkel - + Center X Middelpunt X - + Arc Boog - + Point Punt - + Distance Afstand - + Trim Trim - + Pick Object Selecteer object - + Edit Bewerken - + Global X Globale X - + Global Y Globale Y - + Global Z Globale Z - + Local X Lokale X - + Local Y Lokale Y - + Local Z Lokale Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Select a Font file - + Please enter a font file. Please enter a font file. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Groepen gevonden: sluiten alle geopende objecten binnen - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it 1 Solide-gelijk object gevonden: solide maken - + Found 2 objects: fusing them 2 Objecten gevonden: versmelt ze - + Found 1 non-parametric objects: draftifying it 1 Niet-parametrische object gevonden: Draft object maken - + Found 1 open wire: closing it 1 open draad Gevonden: sluiten hem - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Verschillende randen gevonden: draad maken - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies 1 Parametrische object gevonden: breek de afhankelijkheden - + Found 2 objects: subtracting them 2 objecten gevonden: zal ze aftrekken - + Found several faces: splitting them Verschillende vlakken gevonden: splits ze - + Found several objects: subtracting them from the first one Verschillende objecten gevonden: deze aftrekken van de eerste - + Found 1 face: extracting its wires 1 vlak gevonden: uitpakken van de draden - + Found only wires: extracting their edges Alleen draden gevonden: uitpakken van hun randen - + No more downgrade possible No more downgrade possible - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2649,7 +2659,7 @@ Values with differences below this value will be treated as same. Kies schaalfactor: - + Select an object to project Select an object to project @@ -2669,61 +2679,61 @@ Values with differences below this value will be treated as same. Dit objecttype kan niet worden bewerkt - + Active object must have more than two points/nodes Actieve object moet meer dan twee punten/nodes hebben - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Create Point - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2757,106 +2767,106 @@ Values with differences below this value will be treated as same. Snapping - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Sides - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Lengte - + Angle Hoek - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2868,22 +2878,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Convert - + Array Reeks @@ -2923,7 +2933,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2942,79 +2952,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose &Sluiten - + C&opy K&opiëren - + Faces Vlakken - + Remove Verwijderen - + Add Toevoegen - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_no.qm b/src/Mod/Draft/Resources/translations/Draft_no.qm index 92f6f84a40c27f1aec315bf1b7374094e8f3b6c8..c1dc8d81be0212df10b467fcdf5d7908cca8201e 100644 GIT binary patch delta 4811 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 IuE)TC1D-3wk^lez delta 4259 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 Rp`_g2@vd*m&L@q%{tstUIN1OI diff --git a/src/Mod/Draft/Resources/translations/Draft_no.ts b/src/Mod/Draft/Resources/translations/Draft_no.ts index b2f869f2b..f7847af78 100644 --- a/src/Mod/Draft/Resources/translations/Draft_no.ts +++ b/src/Mod/Draft/Resources/translations/Draft_no.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Legg til punkt - + Adds a point to an existing wire/bspline Legger til et punkt på en eksisterende tråd/ bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Legg til i gruppe... - + Adds the selected object(s) to an existing group Legger til valgte objekt(er) til en eksisterende gruppe @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Matrise - + Creates a polar or rectangular array from a selected object Oppretter en polar eller rektangulær matrise av et merket objekt @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klone - + Clones the selected object(s) Kloner valgte objektet @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Fjern punkt - + Removes a point from an existing wire or bspline Fjerner et punkt fra en eksisterende tråd eller bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Utkast til skisse - + Convert bidirectionally between Draft and Sketch objects Convert bidirectionally between Draft and Sketch objects @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Flip Dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creates copies of a selected object along a selected path. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Point - + Creates a point object Oppretter et punktobjekt @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Velg gruppe - + Selects all objects with the same parents as this group Merker alle objekter med samme overordnede som denne gruppen @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Figur 2D-visning - + Creates Shape 2D views of selected objects Oppretter figur 2D-visning for valgte objekter @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Show Snap Bar - + Shows Draft snap toolbar Shows Draft snap toolbar @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Vinkler - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Center - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensions - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Endpoint - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extension - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grid - + Snaps to grid points Snaps to grid points @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Kryssningspunkt - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Aktiverer/deaktiverer alle snap-verktøy samtidig @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Midpoint - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nearest - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallel - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Working Plane - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Toggle Grid - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Tråd til BSpline - + Converts between Wire and BSpline Konverterer mellom tråd og BSpline @@ -944,17 +944,17 @@ such as "Arial:Bold" Original farge og linjebredde - + if this is checked, paper space objects will be imported too hvis denne er valgt vil papirobjekter også importeres - + if this is unchecked, texts/mtexts won't be imported Hvis denne er avkrysset vil tekster/ mtekster ikke bli importert - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Ved eksport av splines til DXF blir de konvertert til polylinjer. Denne verdien er den maksimale lengden for hver av polylinjesegmentene. Hvis 0 blir hele splinen behandlet som et rett segment. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. Dette er toleranseverdien brukt av funksjoner. Verdier med forskjeller under denne verdien vil bli behandlet som like. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Merk av her hvis du vil at ikke navngitte blokker (som begynner med *) skal importeres også - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Hvis dette er merket vil freecad prøve å sammenføye sammenfallende gjenstander som tråder. NB: dette kan ta en stund... - + Join geometry Sammenføy geometri @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. Høyre - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - + Group layers into blocks Group layers into blocks - + If this is checked, all objects containing faces will be exported as 3d polyfaces If this is checked, all objects containing faces will be exported as 3d polyfaces - + Export 3D objects as polyface meshes Export 3D objects as polyface meshes @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document - + Use standard font size for texts Use standard font size for texts - + If this is checked, hatches will be converted into simple wires If this is checked, hatches will be converted into simple wires - + Import hatch boundaries as wires Import hatch boundaries as wires - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width - + Render polylines with width Render polylines with width @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Import - + texts and dimensions texts and dimensions - + points points - + layouts layouts - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create Lag - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Sketches - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Tillate FreeCAD å automatisk laste ned og oppdatere DXF bibliotekene - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1695,12 +1690,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1730,15 +1725,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Draft Command Bar - + active command: aktiv kommando: - + None Ingen - + Active Draft command Aktiv kommando - + X coordinate of next point X koordinat for neste punkt - + X X - + Y Y - + Z Z - + Y coordinate of next point Y koordinat for neste punkt - + Z coordinate of next point Z koordinat for neste punkt - + Radius Radius - + Radius of Circle Sirkelradius - + &Relative &Relativ - + Coordinates relative to last point or absolute (SPACE) Koordinater relativt til siste punkt eller absolutt (mellomrom) - + F&illed F&illed - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - + &Finish &Finish - + Finishes the current drawing or editing operation (F) Finishes the current drawing or editing operation (F) - + If checked, command will not finish until you press the command button again Hvis denne er merket vil kommandoen ikke bli fullført før du trykker kommandoknappen igjen - + If checked, an OCC-style offset will be performed instead of the classic offset If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset &OCC-style offset - + Add points to the current object Legg punkter til det gjeldende objekt - + Remove points from the current object Remove points from the current object - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo &Angre - + Undo the last segment (CTRL+Z) Angre siste segment (CTRL+Z) - + Finishes and closes the current line (C) Fullfører og lukker gjeldende linje (C) - + &Wipe &Wipe - + Wipes the existing segments of this line and starts again from the last point (W) Wipes the existing segments of this line and starts again from the last point (W) - + Number of sides Antall sider @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. Avsetting - + XY XY - + Select XY plane Velg XY plan - + XZ XZ - + Select XZ plane Velg XZ plan - + YZ YZ - + Select YZ plane Velg YZ plan - + View Vis - + Select plane perpendicular to the current view Velg plan vinkelrett på gjeldende visning - + Do not project points to a drawing plane Ikke vis punkter på et tegningsplan - + If checked, objects will be copied instead of moved (C) Hvis merket vil objektet kopieres i stedet for å flyttes (C) - + Text string to draw Text string to draw - + String Streng - + Height of text Height of text - + Height Høyde - + Intercharacter spacing Intercharacter spacing - + Tracking Tracking - + Full path to font file: Full path to font file: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Linjefarge - + Face Color Farge på flate - + Line Width Linjebredde - + Font Size Skriftstørrelse - + Apply to selected objects Bruk på valgte objekter - + Toggles Construction Mode Veksler konstruksjonsmodus - + Select Plane Velg plan @@ -2066,231 +2076,231 @@ Values with differences below this value will be treated as same. DWire - + Circle Sirkel - + Center X Senter X - + Arc Bue - + Point Point - + Distance Avstand - + Trim Trim - + Pick Object Velg objekt - + Edit Rediger - + Global X Global X - + Global Y Global Y - + Global Z Global Z - + Local X Local X - + Local Y Local Y - + Local Z Local Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Select a Font file - + Please enter a font file. Please enter a font file. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Fant grupper: lukker alle åpne objekt inni - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Found 1 solidificable object: solidifying it - + Found 2 objects: fusing them Fant to objekter: smelter de - + Found 1 non-parametric objects: draftifying it Fant et ikke parametrisk objekt: skisserer det - + Found 1 open wire: closing it Fant en åpen tråd: lukker den - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Fant flere kanter: binder de - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Fant et parametrisk objekt: bryter dens avhengigheter - + Found 2 objects: subtracting them Fant to objekter: trekker de fra - + Found several faces: splitting them Fant flere flater: splitter de - + Found several objects: subtracting them from the first one Fant flere objekter: trekker de fra første - + Found 1 face: extracting its wires Fant en flate: ved å ekstrahere dens tråder - + Found only wires: extracting their edges Fant bare tråder: ved å ekstrahere deres kanter - + No more downgrade possible No more downgrade possible - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2642,7 +2652,7 @@ Values with differences below this value will be treated as same. Velg skalafaktor: - + Select an object to project Select an object to project @@ -2662,60 +2672,60 @@ Values with differences below this value will be treated as same. Denne objekttypen er ikke redigerbar - + Active object must have more than two points/nodes Aktivt objekt må ha mer enn to punkt/ noder - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Create Point - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2749,106 +2759,106 @@ Values with differences below this value will be treated as same. Snapping - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Sides - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Lengde - + Angle Vinkel - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2860,22 +2870,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Convert - + Array Matrise @@ -2915,7 +2925,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2934,79 +2944,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose Lu&kk - + C&opy K&opier - + Faces Flater - + Remove Fjern - + Add Legg til - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_pl.qm b/src/Mod/Draft/Resources/translations/Draft_pl.qm index e1565fecc3d75d56543cd4d9cd3d3971b2701cd7..772551a8b498c9ae6969af24bf9a86b978bb5630 100644 GIT binary patch delta 4904 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 DPDZxR delta 4267 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 diff --git a/src/Mod/Draft/Resources/translations/Draft_pl.ts b/src/Mod/Draft/Resources/translations/Draft_pl.ts index f1fb4fcfe..4b7071214 100644 --- a/src/Mod/Draft/Resources/translations/Draft_pl.ts +++ b/src/Mod/Draft/Resources/translations/Draft_pl.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -17,12 +17,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_AddPoint - + Add Point Dodaj punkt - + Adds a point to an existing wire/bspline Wstawia punkt do bieżącego szkieletu/B-Splajna @@ -30,12 +30,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_AddToGroup - + Add to group... Dodaj do grupy... - + Adds the selected object(s) to an existing group Dodawanie zaznaczonych obiektów do bieżącej grupy @@ -69,12 +69,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Array - + Array Tablica - + Creates a polar or rectangular array from a selected object Tworzy biegunową lub prostokątną tablicę z zaznaczonego obiektu @@ -121,12 +121,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Clone - + Clone Klon - + Clones the selected object(s) Klonuje wskazany obiekt(y) @@ -147,12 +147,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_DelPoint - + Remove Point Usuń punkt - + Removes a point from an existing wire or bspline Usuwa punkt z bieżącego szkieletu lub B-Splajna @@ -186,12 +186,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Draft2Sketch - + Draft to Sketch Projekt do szkicu - + Convert bidirectionally between Draft and Sketch objects Konwersja dwukierunkowa pomiędzy obiektami Draft i Sketch @@ -238,12 +238,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Facebinder - + Facebinder Grupa powierzchni - + Creates a facebinder object from selected face(s) Tworzy obiekt grupę powierzchni z zaznaczonej(-nych) powierzchni @@ -264,12 +264,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_FlipDimension - + Flip Dimension Odwróć przestrznie - + Flip the normal direction of a dimension odwróć normalny wymiar przestrzeni @@ -277,12 +277,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Heal - + Heal Ulecz - + Heal faulty Draft objects saved from an earlier FreeCAD version Naprawia błędnie zapisane obiekty Szkicu z wcześniejszych wersji FreeCAD @@ -303,12 +303,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -342,12 +342,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_PathArray - + PathArray ŚcieżkaSzyku - + Creates copies of a selected object along a selected path. Utwórz kopię wybranego obiektu względem zdefiniowanej ścieżki @@ -355,12 +355,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Point - + Point Punkt - + Creates a point object Tworzy obiekt punktowy @@ -420,12 +420,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_SelectGroup - + Select group Zaznacz grupę... - + Selects all objects with the same parents as this group Zaznacza wszystkie obiekty w danej grupie od tych samych rodziców @@ -446,12 +446,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Shape2DView - + Shape 2D view Widok 2D kształtu - + Creates Shape 2D views of selected objects Tworzy kształt 2D z widoków zaznaczonych obiektów @@ -472,12 +472,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_ShowSnapBar - + Show Snap Bar Pokaż belkę przyciągania - + Shows Draft snap toolbar Pokazuje przyciąganie do paska narzędzi w module Szkic @@ -485,12 +485,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Angle - + Angles Kąty - + Snaps to 45 and 90 degrees points on arcs and circles Przyciągaj do punktów 45-tego i 90-tego stopnia na łukach i okręgach @@ -498,12 +498,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Center - + Center Środek - + Snaps to center of circles and arcs Przyciągaj do środka łuków i okręgów @@ -511,12 +511,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Dimensions - + Dimensions Wymiary - + Shows temporary dimensions when snapping to Arch objects Pokazuj chwilowe wymiary podczas przyciągania do łuków @@ -524,12 +524,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Endpoint - + Endpoint Punkt końcowy - + Snaps to endpoints of edges Przyciągaj do punktów końcowych krawędzi @@ -537,12 +537,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Extension - + Extension Rozszerzenie - + Snaps to extension of edges Przyciągaj do rozszerzenia krawędzi @@ -550,12 +550,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Grid - + Grid Siatka - + Snaps to grid points Przyciągaj do punktów sieci @@ -563,12 +563,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Intersection - + Intersection Przecięcie - + Snaps to edges intersections Przyciągaj do miejsc przecięcia krawędzi @@ -576,12 +576,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Lock - + Toggle On/Off Przełączanie Włącz/Wyłącz - + Activates/deactivates all snap tools at once Włącza/Wyłącza wszystkie narzędzia przyciągania @@ -589,12 +589,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Midpoint - + Midpoint Punkt środkowy - + Snaps to midpoints of edges Przyciągnij do punktów środkowych krawędzi @@ -602,12 +602,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Near - + Nearest Najbliższy - + Snaps to nearest point on edges Przyciągnij do najbliższego punktu krawędzi @@ -615,12 +615,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Ortho - + Ortho Orto - + Snaps to orthogonal and 45 degrees directions Przyciągnij do pozycji ortogonalnej i kierunku 45 stopni @@ -628,12 +628,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Parallel - + Parallel Równolegle - + Snaps to parallel directions of edges Przyciągnij równolegle do kierunku krawędzi @@ -641,12 +641,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_Perpendicular - + Perpendicular Prostopadle - + Snaps to perpendicular points on edges Przyciągnij prostopadle do punktu na krawędzi @@ -654,12 +654,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_Snap_WorkingPlane - + Working Plane Płaszczyzna robocza - + Restricts the snapped point to the current working plane Przypisz przyciągany punkt do bieżącej płaszczyzny roboczej @@ -719,12 +719,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_ToggleGrid - + Toggle Grid Przełącz siatki - + Toggles the Draft grid on/off Włącza/wyłącza siatkę Draft @@ -771,12 +771,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Dodaje VisGroup @@ -797,12 +797,12 @@ Zobacz pełne instrukcje na http://www.freecadweb.org/wiki/index.php?title=Dxf_I Draft_WireToBSpline - + Wire to BSpline Linia do B-Splajn - + Converts between Wire and BSpline Konwersja Linia <-> B-Splajn @@ -943,17 +943,17 @@ such as "Arial:Bold" Oryginalny kolor i szerokość linii - + if this is checked, paper space objects will be imported too Jeśli zaznaczono, zostaną również zaimportowane obiekty z obszaru papieru - + if this is unchecked, texts/mtexts won't be imported jeśli jest to odznaczone, teksty / mtexts nie zostaną zaimportowane - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Podczas eksportu do DXF Splajny zostaną przekonwertowane do polilinii. Podana wartość jest max. długością każdego segmentu polilinii. Jeśli wartość wynosi '0', cała polilinia będzie traktowana jako pojedynczy segment. @@ -994,17 +994,17 @@ Values with differences below this value will be treated as same. Jest to wartość używana przez funkcje wykorzystujące tolerancję. Wartości poniżej tej wartości są traktowane jako takie same. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Zaznacz to pole aby importować również bloki bez nazwy (rozpoczynające się od znaku *) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Jeśli zaznaczono, FreeCAD spróbuje połączyć nakładające się obiekty w szkielet. Uwaga, to może potrwać chwilę... - + Join geometry Łącz geometrie @@ -1149,22 +1149,22 @@ Values with differences below this value will be treated as same. Prawo - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Jeśli to jest zaznaczone, obiekty z tej samej warstwy zostaną połączone w bloki Draft , będą one wyświetlane szybciej, ale za to trudniejsze do edytowania - + Group layers into blocks Zgrupuj warstwy w Bloki - + If this is checked, all objects containing faces will be exported as 3d polyfaces Jeśli to jest zaznaczone, wszystkie obiekty zawierające powierzchnie"faces" zostanią wyeksportowane jako 3d polyfaces - + Export 3D objects as polyface meshes Eksport obiektu 3D jako wielofasetowa siatka @@ -1199,32 +1199,32 @@ Values with differences below this value will be treated as same. Jeśli ta opcja jest zaznaczona, siatka modułu Draft zawsze będzie widoczna w czasie gdy moduł Draft jest modułem aktywnym. W przeciwnym razie tylko używając polecenia - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Jeżeli ta opcja jest zaznaczona, importowany tekst będzie miał rozmiar rozmiar standardowy dla tekstu w module Draft, zamiast rozmiaru jaki ma w dokumencie odpowiednim dla formatu DXF - + Use standard font size for texts Użyj standardowego rozmiaru czcionki dla tekstów - + If this is checked, hatches will be converted into simple wires Jeżeli ta opcja jest zaznaczona, kreskowanie zostanie skonwertowane do prostych przewodów - + Import hatch boundaries as wires Importowanie granic kreskowania jako przewodów - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Jeżeli ta opcja jest zaznaczona i kiedy polilinie maja zdefiniowaną szerokość, bedą one renderowane jako zamknięte przewody o prawidłowej szerokości - + Render polylines with width Renderowanie polilinii o szerokości @@ -1289,42 +1289,42 @@ Values with differences below this value will be treated as same. Kolor geometrii konstrukcji - + Import Importuj - + texts and dimensions Teksty i wymiary - + points Punkty - + layouts Układy - + *blocks Bloki - + If this is checked, the exported objects will be projected to reflect the current view direction Jeśli to pole jest zaznaczone, eksportowane obiekty będą wyświetlone aby odzwierciedlić aktualny kierunek widoku - + Project exported objects along current view direction Projekt eksportuje obiekty wzdłuż aktualnego kierunku widoku - + Ellipse export is badly supported. Use this to export them as polylines instead. Eksport elipsy jest źle obsługiwany. Użyj tego aby eksportować je jako polilinie zamiast tego. @@ -1444,52 +1444,52 @@ Values with differences below this value will be treated as same. Wypełnij obiekt powierzchniami, gdy tylko możliwe - + Create Utwórz - + simple Part shapes proste kształty Części - + If this is checked, parametric Draft objects will be created whenever possible Jeśli to pole jest zaznaczone, obiekt parametryczny Szkicownika zostanie utworzony gdy jest to możliwe - + Draft objects Szkicuj obiekty - + If this is checked, sketches will be created whenever possible Jeśli to pole jest zaznaczone, szkice zostaną utworzone gdy jest to możliwe - + Sketches Szkice - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Gdy zaznaczone kolory będą pobrane z obiektów DXF jeśli to możliwe. W innym wypadku zastosowane będą kolory domyślne. - + Get original colors from the DXF file Pobierz oryginalne kolory z pliku DXF - + Treat ellipses and splines as polylines Traktuj elipsy i krzywe składane jako polilinie - + Max Spline Segment: Maksymalna ilość segmentów krzywej składanej: @@ -1504,37 +1504,32 @@ Values with differences below this value will be treated as same. Pokaż przyrostek jednostki w wymiarach - - Automatic update - Automatyczne aktualizacje - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Użyj VisGroups - + mm mm @@ -1694,12 +1689,12 @@ Values with differences below this value will be treated as same. Opcje importu - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Jeśli to pole jest zaznaczone, to stary pythonowy importer jest używanym, w przeciwnym razie nowy C++(szybszy, ale nie ma tylu cech jak pythonowy) - + Use legacy python importer Użycie dziedziczonego importera Pythona @@ -1729,15 +1724,30 @@ Values with differences below this value will be treated as same. Wyłącz skalowanie jednostek - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1760,162 +1770,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Pasek komend projektu - + active command: aktywne polecenie: - + None Żaden - + Active Draft command Aktywne polecenie kreślarskie - + X coordinate of next point Współrzędna X następnego punktu - + X X - + Y Y - + Z Z - + Y coordinate of next point Współrzędna Y następnego punktu - + Z coordinate of next point Współrzędna Z następnego punktu - + Radius Promień - + Radius of Circle Promień okręgu - + &Relative & Względny - + Coordinates relative to last point or absolute (SPACE) Współrzędne w stosunku do ostatniego punktu lub bezwzględnej (SPACJA) - + F&illed W&ypełnione - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Sprawdź to, czy obiekt powinien być jako bryła, w przeciwnym razie pojawi się jako szkielet (i) - + &Finish &Zakończ - + Finishes the current drawing or editing operation (F) Kończy aktualny rysunek lub operację edycji (F) - + If checked, command will not finish until you press the command button again Jeżeli opcja jest zaznaczona, polecenie nie zostanie zakończone do momentu naciśnięcia przycisku polecenia ponownie - + If checked, an OCC-style offset will be performed instead of the classic offset Jeśli zaznaczone, będzie wykonywane przesunięcie w stylu OCC zamiast classic - + &OCC-style offset &OCC-styl przesunięcie - + Add points to the current object Dodaj punkty do aktywnego obiektu - + Remove points from the current object Usuń punkty z aktywnego obiektu - + Make Bezier node sharp Zrób węzeł krzywej Beizera ostrym - + Make Bezier node tangent Zrób węzeł krzywej Beizera styczny - + Make Bezier node symmetric Zrób węzeł krzywej Beizera symetryczny - + &Undo Cofnij - + Undo the last segment (CTRL+Z) Cofa ostatni segment (CTRL + Z) - + Finishes and closes the current line (C) Zakańcza i zamyka bieżącą linię (C) - + &Wipe &Wymaż - + Wipes the existing segments of this line and starts again from the last point (W) Wymazuje istniejący segment linii i rozpoczyna ponownie od ostatniego punktu (W) - + Number of sides Liczba boków @@ -1925,132 +1935,132 @@ Values with differences below this value will be treated as same. Offset - + XY XY - + Select XY plane Wybierz płaszczyznę XY - + XZ XZ - + Select XZ plane Wybierz płaszczyznę XZ - + YZ YZ - + Select YZ plane Wybierz płaszczyznę YZ - + View Widok - + Select plane perpendicular to the current view Wybierz płaszczyznę prostopadłą do aktualnego widoku - + Do not project points to a drawing plane Nie rzutuj punktów na płaszczyznę rysunku - + If checked, objects will be copied instead of moved (C) Jeśli pole jest zaznaczone, obiekty zostaną skopiowane zamiast przeniesione (C) - + Text string to draw Krzywe tekstu do rysowania - + String Ciąg - + Height of text Wysokość tekstu - + Height Wysokość - + Intercharacter spacing Odstęp pomiędzy znakami - + Tracking Śledzenie - + Full path to font file: Pełna ścieżka do pliku czcionki: - + Open a FileChooser for font file Otwórz okno wyboru pliku dla czcionki - + Set/unset a working plane Włącz/Wyłącz płaszczyznę roboczą - + Line Color Kolor linii - + Face Color Kolor powierzchni - + Line Width Szerokość linii - + Font Size Rozmiar Czcionki - + Apply to selected objects Zastosuj do wybranych obiektów - + Toggles Construction Mode Przełącza do trybu budowy - + Select Plane Wybierz Płaszczyznę @@ -2065,227 +2075,227 @@ Values with differences below this value will be treated as same. DWire - + Circle Okrąg - + Center X Środek X - + Arc Łuk - + Point Punkt - + Distance Odległość - + Trim Ucinanie - + Pick Object Wybierz obiekt - + Edit Edytuj - + Global X Globalna X - + Global Y Globalna Y - + Global Z Globalna Z - + Local X Lokalna X - + Local Y Lokalna Y - + Local Z Lokalna Z - + Invalid Size value. Using 200.0. Nieprawidłowa wartość rozmiaru. Użyj 200.0. - + Invalid Tracking value. Using 0. Nieprawidłowa wartość śledzenia. Użyj 0. - + Please enter a text string. Wprowadź tekst. - + Select a Font file Wybierz plik czcionki - + Please enter a font file. Wprowadź plik czcionki. - + Draft.makeBSpline: not enough points Draft.makeBSpline: nie wystarczająca ilość punktów - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Równe punkty końcowe, wymuszono Zamknięcie - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Nieprawidłowa lista punktów - + Found groups: closing each open object inside Znaleziono grupy: zamykanie każdego obiektu wewnątrz grupy - + Found mesh(es): turning into Part shapes Znaleziono siatkę(-ki): zamieniam w kształty Części - + Found 1 solidificable object: solidifying it Znaleziono 1 solidificable obiekt: utrwal go - + Found 2 objects: fusing them Znaleziono 2 obiekty: zostaną połączone - + Found 1 non-parametric objects: draftifying it Znaleziono 1 obiekt nieparametryczny: draftyfying - + Found 1 open wire: closing it Znaleziono 1 otwarty szkielet: zamykanie - + Found several open wires: joining them Znaleziono kilka otwartych szkiców: połączyć je? - + Found several edges: wiring them Znaleziono kilka krawędzi: łączenie w szkielet - + Unable to upgrade these objects. Zablokuj aktualizacje tego obiektu - + Found 1 block: exploding it Znaleziono 1 blok: rozstrzela go - + Found 1 parametric object: breaking its dependencies Znaleziono 1 obiekt parametryczny: kasowanie zależności - + Found 2 objects: subtracting them Znaleziono 2 obiekty: odejmowanie - + Found several faces: splitting them Znaleziono kilk fasetek: rozdzielanie - + Found several objects: subtracting them from the first one Znaleziono kilka obiektów: odejmuję od pierwszego obiektu - + Found 1 face: extracting its wires Znaleziono 1 fasetkę: ekstrakcja szkieletu - + Found only wires: extracting their edges Znaleziono wyłącznie szkielet: ekstrakcja krawędzi - + No more downgrade possible Downgrade niemożliwy - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Zamknięta tylko samym Punktem pierwszym/końcowym. Geometria nie została zaktualizowana. @@ -2637,7 +2647,7 @@ Values with differences below this value will be treated as same. Wybrać współczynnik skalowania - + Select an object to project Wybierz obiekt który ma być wyświetlony @@ -2657,60 +2667,60 @@ Values with differences below this value will be treated as same. Ten typ obiektu nie jest edytowalny - + Active object must have more than two points/nodes Aktywny obiekt musi posiadać więcej niż 2 punkty/węzły - + Selection is not a Knot Zaznaczenie nie jest Węzłem - + Endpoint of BezCurve can't be smoothed Punkt końcowy krzywej Beizera nie może być wygładzony - + Select an object to convert Wybierz obiekt, aby przekonwertować - + Select an object to array Wybierz obiekt do stworzenia szyku - + Please select base and path objects Wybierz podstawę i ścieżkę obiektu - + Create Point Stwórz punkt - + Select an object to clone Wybierz obiekt aby sklonować - + Select face(s) on existing object(s) Wybierz powierzchnię na istniejącym obiekcie @@ -2744,106 +2754,106 @@ Values with differences below this value will be treated as same. Przyciąganie - + Found 1 multi-solids compound: exploding it Znaleziono 1 złożenie wielu brył: rozstrzeliwuję to - + Sides Boki - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Znaleziono kilka obiektów: tworzenie powłoki - + Found several coplanar objects or faces: creating one face Znaleziono kilka obiektów współpłaszczyznowych lub płaszczyzn: tworzenie jednej płaszczyzny - + Found 1 linear object: converting to line Znaleziono 1 obiekt liniowy: konwersja do linii - + Found 1 closed sketch object: creating a face from it Znaleziono 1 obiekt zamknięty szkicu: tworzenie z niego powierzchni - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Znaleziono kilka nie przypisanych obiektów: tworzenie kształtu złożonego - + Length Długość - + Angle Kąt - + Length of current segment Długość odcinka bieżącego - + Angle of current segment Kąt bieżącego segmentu - + Check this to lock the current angle (l) Sprawdź to, aby zablokować bieżący kąt (l) - + &Select edge &Wybierz krawędź - + Selects an existing edge to be measured by this dimension (E) Wybiera istniejącą krawędź w celu pomiaru przez ten wymiar (E) - + Auto Automatyczny @@ -2855,22 +2865,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Konwertuj do Szkicu - + Convert to Draft Konwersja do Draft - + Convert Konwertuj - + Array Tablica @@ -2910,7 +2920,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2929,79 +2939,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose ZAMKNIJ - + C&opy K&opiuj - + Faces Ściany - + Remove Usuń - + Add Dodaj - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm b/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm index d70ae337a6a86da6ea58a5ee8868c49b6e0df2ff..6f59bc08f689884cc2d09b306aba009d431db589 100644 GIT binary patch delta 4855 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 delta 4301 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 Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -15,12 +15,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Adicionar ponto - + Adds a point to an existing wire/bspline Adiciona um ponto a um arame/bspline existente @@ -28,12 +28,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Adicionar ao grupo... - + Adds the selected object(s) to an existing group Adiciona o(s) objeto(s) selecionado(s) a um grupo existente @@ -67,12 +67,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Matriz - + Creates a polar or rectangular array from a selected object Cria uma matriz retangular ou polar a partir de um objeto selecionado @@ -119,12 +119,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Clonar - + Clones the selected object(s) Clona o(s) objeto(s) selecionado(s) @@ -145,12 +145,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Remover ponto - + Removes a point from an existing wire or bspline Remove um ponto de um arame ou bspline existente @@ -184,12 +184,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Projeto para rascunho - + Convert bidirectionally between Draft and Sketch objects Converter bidirecionalmente entre objetos do projeto e do rascunho @@ -236,12 +236,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Cria um objeto facebinder a partir de faces selecionadas @@ -262,12 +262,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Inverter cota - + Flip the normal direction of a dimension Inverte a direção normal de uma cota @@ -275,12 +275,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Corrigir - + Heal faulty Draft objects saved from an earlier FreeCAD version Corrige objetos defeituosos salvos por uma versão anterior do FreeCAD @@ -301,12 +301,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Espelho - + Mirrors the selected objects along a line defined by two points Espelha os objetos selecionados ao longo de uma linha definida por dois pontos @@ -340,12 +340,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray Cópia múltipla com caminho - + Creates copies of a selected object along a selected path. Cria cópias de um objeto selecionado ao longo de um caminho selecionado @@ -353,12 +353,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Ponto - + Creates a point object Criar um objeto ponto @@ -418,12 +418,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Selecionar grupo - + Selects all objects with the same parents as this group Seleciona todos os objetos com os mesmos pais que este grupo @@ -444,12 +444,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Forma vista 2D - + Creates Shape 2D views of selected objects Cria formas com vistas 2D dos objetos selecionados @@ -470,12 +470,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Mostrar barra de Snap - + Shows Draft snap toolbar Mostra a barra de ferramentas Draft snap @@ -483,12 +483,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Ângulos - + Snaps to 45 and 90 degrees points on arcs and circles Snap para ângulos de 45 e 90 graus em círculos e arcos @@ -496,12 +496,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Centro - + Snaps to center of circles and arcs Ativa o snap no centro de círculos e arcos @@ -509,12 +509,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensões - + Shows temporary dimensions when snapping to Arch objects Mostra cotas temporárias quando fizer snap para objetos arquitetônicos @@ -522,12 +522,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Ponto de extremidade - + Snaps to endpoints of edges Ativa snap em pontos de extremidade de arestas @@ -535,12 +535,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extensão - + Snaps to extension of edges Snap nas extensões das arestas @@ -548,12 +548,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grade - + Snaps to grid points Snap nos nós da grade @@ -561,12 +561,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Intersecção - + Snaps to edges intersections Snap nas interseções das arestas @@ -574,12 +574,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Ligar/desligar - + Activates/deactivates all snap tools at once Ativa/desativa todas as ferramentas de snap @@ -587,12 +587,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Ponto médio - + Snaps to midpoints of edges Snap em pontos médios das arestas @@ -600,12 +600,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Mais próximo - + Snaps to nearest point on edges Snap no ponto mais próximo das arestas @@ -613,12 +613,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortogonal - + Snaps to orthogonal and 45 degrees directions Snap em direções ortogonais e a 45 graus @@ -626,12 +626,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Paralelo - + Snaps to parallel directions of edges Snap em direções paralelas a arestas @@ -639,12 +639,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snap em pontos perpendiculares nas arestas @@ -652,12 +652,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Plano de trabalho - + Restricts the snapped point to the current working plane Restringe o snap ao plano de trabalho atual @@ -717,12 +717,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Alternar grade - + Toggles the Draft grid on/off Ativa/desativa a grade @@ -769,12 +769,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup GrupoVis - + Adds a VisGroup Adiciona um GrupoVis @@ -795,12 +795,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Arame para BSpline - + Converts between Wire and BSpline Converte entre o arame e BSpline @@ -941,17 +941,17 @@ such as "Arial:Bold" Cor e espessura da linha originais - + if this is checked, paper space objects will be imported too Se essa opção estiver marcada, objetos do paper space serão importados também - + if this is unchecked, texts/mtexts won't be imported Se esta opção estiver desmarcada, os textos e mtexts não serão importados - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Ao exportar splines para DXF, elas são transformadas em polilinhas. Esse valor é o tamanho máximo de cada um dos segmentos da polilinha. Se for 0, a spline toda é tratada como um segmento reto. @@ -992,17 +992,17 @@ Values with differences below this value will be treated as same. Esse é o valor usado por funções que usam uma tolerância. Valores com diferenças abaixo desse valor serão tratados como iguais. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Selecione se quiser importar também blocos não-nomeados (começando com um *) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Se selecionado, freecad tentará juntar objetos coincidentes em aramado. Atenção, isso pode demorar um pouco... - + Join geometry Juntar a geometria @@ -1147,22 +1147,22 @@ Values with differences below this value will be treated as same. Direito - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Se selecionado, objetos das mesmas camadas serão reunidos em blocos, para agilizar a exibição, mas dificultando a edição - + Group layers into blocks Agrupar camadas em blocos - + If this is checked, all objects containing faces will be exported as 3d polyfaces Se selecionado, todos os objetos contendo faces serão exportados como polifaces 3d - + Export 3D objects as polyface meshes Exportar objetos 3D como malhas Polifacetadas @@ -1197,32 +1197,32 @@ Values with differences below this value will be treated as same. Se selecionado, a grade do projeto será sempre visível quando a bancada de trabalho estiver ativa. Caso contrário, somente usando um comando - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Se selecionado, os textos importados terão o tamanho padrão do Draft, em vez do tamanho que tinham no documento DXF - + Use standard font size for texts Usar o tamanho padrão de fonte para textos - + If this is checked, hatches will be converted into simple wires Se seleconado, as hachuras serão convertidas em arames simples - + Import hatch boundaries as wires Importar limites das hachuras como arames - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Se selecionado, quando as polilinhas tiverem uma largura definida, elas serão renderizadas como arames fechados com a largura correta - + Render polylines with width Renderizar polilinhas com largura @@ -1287,42 +1287,42 @@ Values with differences below this value will be treated as same. Cor da geometria de construção - + Import Importar - + texts and dimensions textos e cotas - + points pontos - + layouts layouts - + *blocks *blocos - + If this is checked, the exported objects will be projected to reflect the current view direction Se selecionado, os objetos exportados serão projetados na direção da vista atual - + Project exported objects along current view direction Projetar objetos exportados na direção da vista atual - + Ellipse export is badly supported. Use this to export them as polylines instead. A exportação de elipses ainda não funciona sempre corretamente. Use esta opção para exportá-las como polilinhas. @@ -1442,52 +1442,52 @@ Values with differences below this value will be treated as same. Preencher objetos com faces sempre que possível - + Create Criar - + simple Part shapes peças simples - + If this is checked, parametric Draft objects will be created whenever possible Se selecionado, objetos paramétricos do Draft serão criados sempre que possível - + Draft objects Objetos de rascunho - + If this is checked, sketches will be created whenever possible Se essa opção for marcada, esboços serão criados sempre que possível - + Sketches Esboços - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Se essa opção for marcada, as cores serão recuperadas dos objetos DXF sempre que possível. Caso contrário, as cores padrão serão aplicadas. - + Get original colors from the DXF file Obter cores originais do arquivo DXF - + Treat ellipses and splines as polylines Tratar elipses e splines como polilinhas - + Max Spline Segment: Segmento de Spline máximo: @@ -1502,37 +1502,32 @@ Values with differences below this value will be treated as same. Mostrar o sufixo das unidades nas dimensões - - Automatic update - Atualização automática - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>Ao marcar esta opção, você permite que o FreeCAD baixe e atualize os</p><p>componentes necessários para importar e exportar arquivos DXF. Você também</p><p>pode fazer isso manualmente em https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Permitir que o FreeCAD baixe e atualize automaticamente as bibliotecas DXF - + If this is checked, only standard Part objects will be created (fastest) Se esta opção for marcada, apenas objetos de tipo Peça serão criados (mais rápido) - + If this is checked, DXF layers will be imported as Draft VisGroups Se essa opção estiver marcada, camadas DXF serão importadas como objetos GrupoVis - + Use VisGroups Usar GrupoVis - + mm mm @@ -1692,12 +1687,12 @@ Values with differences below this value will be treated as same. Opções de importação - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Se esta opção estiver marcada, o antigo importador python é usado, caso contrário, será usado o novo importador C ++ (mais rápido, porém ainda sem tantos recursos) - + Use legacy python importer Use o antigo importador em python @@ -1727,15 +1722,30 @@ Values with differences below this value will be treated as same. Desativar a conversão de unidades - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. Se essa opção está marcada, vistas da bancada de Desenho serão exportadas como blocos. Isto pode falhar para gabaritos pós-R12. - + Export Drawing Views as blocks Exportar vistas do desenho como blocos + + + Note: Not all the options below are used by the new importer yet + Nota: Nem todas as opções abaixo já estão usadas pelo importador novo + + + + Show this dialog when importing and exporting + Mostrar esta caixa de diálogo durante a importação e exportação + + + + Automatic update (legacy importer only) + Atualização automática (apenas importador antigo) + Workbench @@ -1758,162 +1768,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Barra de comando Traço - + active command: comando ativo: - + None Nenhum - + Active Draft command Ação ativa - + X coordinate of next point Coordenada X do ponto seguinte - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordenada Y do ponto seguinte - + Z coordinate of next point Coordenada Z do ponto seguinte - + Radius Raio - + Radius of Circle Raio do círculo - + &Relative &Relativo - + Coordinates relative to last point or absolute (SPACE) Coordenadas relativas ao último ponto, ou absolutas (SPACE) - + F&illed Preench&ido - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Marque esta opção para o objeto aparecer cheio, caso contrário irá aparecer como arame (i) - + &Finish &Concluir - + Finishes the current drawing or editing operation (F) Termina a edição ou desenho atual (F) - + If checked, command will not finish until you press the command button again Se selecionado, o comando não terminará até que você pressione o ícone dele novamente - + If checked, an OCC-style offset will be performed instead of the classic offset Selecionado, o offset será feito no modo OCC em vez do modo clássico - + &OCC-style offset Modo &OCC - + Add points to the current object Adicionar pontos ao objeto atual - + Remove points from the current object Remover pontos do objeto atual - + Make Bezier node sharp Fazer nó estrito - + Make Bezier node tangent Fazer nó tangente - + Make Bezier node symmetric Fazer nó simétrico - + &Undo &Desfazer - + Undo the last segment (CTRL+Z) Desfazer o último segmento (Ctrl + Z) - + Finishes and closes the current line (C) Termina e fecha a linha atual (C) - + &Wipe &Limpar - + Wipes the existing segments of this line and starts again from the last point (W) Limpa os segmentos existentes desta linha e começa novamente a partir do último ponto (W) - + Number of sides Número de lados @@ -1923,132 +1933,132 @@ Values with differences below this value will be treated as same. Deslocamento - + XY XY - + Select XY plane Selecionar plano XY - + XZ XZ - + Select XZ plane Selecionar plano XZ - + YZ YZ - + Select YZ plane Selecionar plano YZ - + View Vista - + Select plane perpendicular to the current view Selecionar plano perpendicular à vista atual - + Do not project points to a drawing plane Não projetar pontos no plano de desenho - + If checked, objects will be copied instead of moved (C) Se selecionada, objetos serão copiados em vez de movidos (C) - + Text string to draw Texto a ser desenhado - + String Texto - + Height of text Altura do texto - + Height Altura - + Intercharacter spacing Espaçamento entre caráteres - + Tracking Rastreamento - + Full path to font file: Caminho completo para o arquivo de fonte: - + Open a FileChooser for font file Abre um diálogo para escolher um arquivo de fonte - + Set/unset a working plane Activa/desactiva um plano de trabalho - + Line Color Cor de linha - + Face Color Cor de face - + Line Width Espessura de linha - + Font Size Tamanho de fonte - + Apply to selected objects Aplicar aos objetos selecionados - + Toggles Construction Mode Ativar / desativar o modo de construção - + Select Plane Selecionar plano @@ -2063,235 +2073,235 @@ Values with differences below this value will be treated as same. DWire - + Circle Círculo - + Center X Centro X - + Arc Arco - + Point Ponto - + Distance Distância - + Trim Aparar - + Pick Object Selecionar objeto - + Edit Editar - + Global X X global - + Global Y Y global - + Global Z Z global - + Local X X local - + Local Y Y local - + Local Z Z local - + Invalid Size value. Using 200.0. Tamanho inválido. Usando 200,0. - + Invalid Tracking value. Using 0. Rastreamento inválido. Usando 0. - + Please enter a text string. Por favor, insira um texto. - + Select a Font file Selecione um arquivo de fonte - + Please enter a font file. Por favor, insira um arquivo de fonte. - + Draft.makeBSpline: not enough points Draft.makeBSpline: não há pontos suficientes - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Pontos de extremidade iguais, fechando. - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Lista de pontos inválida - + Found groups: closing each open object inside Grupos encontrados: fechando cada objeto aberto incluído - + Found mesh(es): turning into Part shapes Malhas encontradas: transformação em em formas - + Found 1 solidificable object: solidifying it Encontrado 1 objeto solidificavel: criando um sólido - + Found 2 objects: fusing them Encontrados dois objetos: fundindo-os - + Found 1 non-parametric objects: draftifying it 1 objeto não-paramétrico encontrado: transformando em objeto Draft - + Found 1 open wire: closing it Encontrado 1 arame aberto: fechando - + Found several open wires: joining them Vários arames abertos encontrados: Junção - + Found several edges: wiring them Várias arestas encontradas: criando arame - + Unable to upgrade these objects. Não é possível promover esses objetos. - + Found 1 block: exploding it Um bloco encontrado: Explosão - + Found 1 parametric object: breaking its dependencies Encontrado um objeto parametrizado: eliminando suas dependências - + Found 2 objects: subtracting them Encontrado 2 objetos: subtraindo-os - + Found several faces: splitting them Várias faces encontradas: separando em faces isoladas - + Found several objects: subtracting them from the first one Vários objetos encontrados: subtraindo todos eles do primeiro - + Found 1 face: extracting its wires Encontrada 1 face: extraindo seus arames - + Found only wires: extracting their edges Encontrado apenas arames: extraindo suas bordas - + No more downgrade possible Não existem mais retornos possíveis - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: fechado com o mesmo primeiro/último ponto: Geometria não atualizada. @@ -2660,7 +2670,7 @@ Values with differences below this value will be treated as same. - + Select an object to project Selecione um objeto a ser projetado @@ -2680,60 +2690,60 @@ Values with differences below this value will be treated as same. Este tipo de objeto não é editável - + Active object must have more than two points/nodes O objeto ativo deve ter mais de dois pontos/nós - + Selection is not a Knot A seleção não é um nó - + Endpoint of BezCurve can't be smoothed O ponto de extremidade desta curva não pode ser suavizado - + Select an object to convert Selecione um objeto para converter - + Select an object to array Selecione um objeto para copiar - + Please select base and path objects Por favor selecione um objeto base e um caminho - + Create Point Criar um ponto - + Select an object to clone Selecione um objeto para clonar - + Select face(s) on existing object(s) Selecione faces em objeto(s) existente(s) @@ -2767,106 +2777,106 @@ Values with differences below this value will be treated as same. Snap - + Found 1 multi-solids compound: exploding it Foi encontrado 1 composto de vários sólidos: explosão - + Sides Lados - + BSplines and Bezier curves are not supported by this tool BSplines e curvas de Bézier não são suportadas por esta ferramenta - + The given object is not planar and cannot be converted into a sketch. Este objeto não é planar e não pode ser convertido em um esboço. - + Found several objects: creating a shell Vários objetos encontrados: criação de um casco - + Found several coplanar objects or faces: creating one face Vários objetos ou faces coplanares encontrados: Criação de uma face - + Found 1 linear object: converting to line 1 objeto linear encontrado: Conversão em linha - + Found 1 closed sketch object: creating a face from it 1 esboço fechado encontrado: Criação de uma face - + Found closed wires: creating faces Arames fechados encontrados: Criação de faces - + Found several non-treatable objects: creating compound Vários objetos não tratáveis encontrados: criando composto - + Length Comprimento - + Angle Ângulo - + Length of current segment Comprimento de segmento atual - + Angle of current segment Ângulo de segmento atual - + Check this to lock the current angle (l) Marcar isto para bloquear o ângulo atual (l) - + &Select edge &Selecionar aresta - + Selects an existing edge to be measured by this dimension (E) Seleciona uma aresta existente a ser medida por esta dimensão (E) - + Auto Auto @@ -2878,22 +2888,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Converter para esboço - + Convert to Draft Converter para traço - + Convert Converter - + Array Matriz @@ -2933,7 +2943,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2951,79 +2961,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer Para habilitar o FreeCAD para fazer o download destas bibliotecas, responda Sim. - + No object given Nenhum objeto informado - + The two points are coincident Os dois pontos são coincidentes - + Co&ntinue Co&ntinuar - + Cl&ose &Fechar - + C&opy C&opiar - + Faces Faces - + Remove Remover - + Add Adicionar - + Facebinder elements Elementos da Película - + Mirror Espelho - + Select an object to mirror Selecione um objeto a ser espelhado - + Pick start point of mirror line: Escolha o ponto inicial da linha de espelho: - + Pick end point of mirror line: Escolha o ponto final da linha de espelho: + + + Enter point + Inserir ponto + + + + Enter a new point with the given coordinates + Inserir um novo ponto nas coordenadas indicadas + diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-PT.qm b/src/Mod/Draft/Resources/translations/Draft_pt-PT.qm index 1e2b79070427d5f146d1d01190987839a2ef5778..dd54eea96e713651bfe76d99b564aec82326ecd3 100644 GIT binary patch delta 5479 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 diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts b/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts index bb0b24ce0..57e2e8c9f 100644 --- a/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts +++ b/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -15,12 +15,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Adicionar Ponto - + Adds a point to an existing wire/bspline Adiciona um ponto a um fio existente/bspline @@ -28,12 +28,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Adicionar ao grupo ... - + Adds the selected object(s) to an existing group Adiciona o (s) objeto (s) selecionado (s) a um grupo existente @@ -67,12 +67,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Matriz - + Creates a polar or rectangular array from a selected object Cria uma matriz polar ou retangular de um objeto selecionado @@ -119,12 +119,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Clonar - + Clones the selected object(s) Clonar os objetos selecionados @@ -145,12 +145,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Remover Ponto - + Removes a point from an existing wire or bspline Remove um ponto de um aramado ou bezier existente @@ -173,7 +173,7 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Downgrade - Diminuir + Despromover @@ -184,12 +184,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Draft para Sketch - + Convert bidirectionally between Draft and Sketch objects Converter bidirecionalmente entre objetos de Projeto e Esboço @@ -236,12 +236,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Criar um objeto facebinder a partir de face(s) selecionada(s) @@ -262,12 +262,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Inverter cota - + Flip the normal direction of a dimension Inverter a direção normal de uma cota @@ -275,12 +275,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Corrigir - + Heal faulty Draft objects saved from an earlier FreeCAD version Corrige objetos (Draft) defeituosos salvos por uma versão anterior do FreeCAD @@ -301,12 +301,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Espelho (simetria) - + Mirrors the selected objects along a line defined by two points Espelha os objetos selecionados ao longo de uma linha definida por dois pontos @@ -334,18 +334,18 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy - cria contorno paralelo ao objeto selecionado. CTRL para conectar, SHIFT para parametrizar, ALT para copiar + Cria deslocamento paralelo ao objeto selecionado. CTRL para conectar, SHIFT para parametrizar, ALT para copiar Draft_PathArray - + PathArray Cópia múltipla com caminho - + Creates copies of a selected object along a selected path. Cria cópias de um objeto selecionado ao longo de um caminho. @@ -353,12 +353,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Ponto - + Creates a point object Criar um objeto ponto @@ -418,12 +418,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Selecione o grupo - + Selects all objects with the same parents as this group Seleciona todos os objetos com as mesmas origens como grupo @@ -444,12 +444,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Visualizar Forma a 2D - + Creates Shape 2D views of selected objects Cria visualizações de Forma a 2D dos objetos selecionados @@ -470,12 +470,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Mostrar barra de Snap - + Shows Draft snap toolbar Mostra a barra de ferramentas de snap do Draft @@ -483,12 +483,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Ângulos - + Snaps to 45 and 90 degrees points on arcs and circles Ativa o snap para ângulos de 45 e 90 graus em círculos e arcos @@ -496,12 +496,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Centro - + Snaps to center of circles and arcs Ativa o snap para o centro de círculos e arcos @@ -509,12 +509,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensões - + Shows temporary dimensions when snapping to Arch objects Mostra cotas temporárias quando fizer snap para objetos arquitetónicos @@ -522,12 +522,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Endpoint - + Snaps to endpoints of edges Ativar snap em pontos de extremidade de arestas @@ -535,12 +535,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extensão - + Snaps to extension of edges Snap na extensão das arestas @@ -548,12 +548,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grelha - + Snaps to grid points Snaps aos pontos da grelha @@ -561,12 +561,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Interseção - + Snaps to edges intersections Snap nas interseções de arestas @@ -574,12 +574,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Ligar/desligar - + Activates/deactivates all snap tools at once Activa/desactiva todas as ferramentas de snap @@ -587,12 +587,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Ponto médio - + Snaps to midpoints of edges Snaps para pontos médios das arestas @@ -600,12 +600,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Mais próximo - + Snaps to nearest point on edges Snap ao ponto mais próximo das arestas @@ -613,12 +613,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortogonal - + Snaps to orthogonal and 45 degrees directions Snap em direções ortogonais e a 45 graus @@ -626,12 +626,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Paralelo - + Snaps to parallel directions of edges Snaps para direções paralelas a arestas @@ -639,12 +639,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snap para pontos perpendiculares às arestas @@ -652,12 +652,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Plano de trabalho - + Restricts the snapped point to the current working plane Restringe o snap ao plano de trabalho atual @@ -717,12 +717,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Alternar Grelha - + Toggles the Draft grid on/off Liga ou desliga a grelha do módulo Draft @@ -758,7 +758,7 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Upgrade - Atualizar + Promover @@ -769,12 +769,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adiciona um VisGroup @@ -795,12 +795,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Aramado para Bezier - + Converts between Wire and BSpline Converte entre aramado e Bezier-base @@ -941,17 +941,17 @@ such as "Arial:Bold" Cor Original e Largura da Linha - + if this is checked, paper space objects will be imported too Se essa opção estiver marcada, objetos em espaço papel serão importados também - + if this is unchecked, texts/mtexts won't be imported Se não marcado, os textos/mtextos não serão importados - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Ao exportar béziers para DXF, elas são transformadas em polilinhas. Esse valor é o tamanho máximo de cada um dos segmentos de polilinha. Se for 0, a curva bézier inteira será tratada como um segmento reto. @@ -992,17 +992,17 @@ Values with differences below this value will be treated as same. Este é o valor usado por funções que usam uma tolerância. Valores com diferenças abaixo deste valor serão tratados como iguais. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Marque, se também pretender importar os blocos sem nome (iniciando com a*) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Se marcada, freecad tentará juntar objetos coincidentes em fios. Cuidado, isso pode demorar um pouco... - + Join geometry Juntar a geometria @@ -1074,7 +1074,7 @@ Values with differences below this value will be treated as same. Alt mod - Modo ALT + Modo Alt @@ -1094,22 +1094,22 @@ Values with differences below this value will be treated as same. If checked, a grid will appear when drawing - Se estiver marcada, uma grade aparecerá quando desenhar + Se selecionado, uma grelha aparecerá quando desenhar Use grid - Usar grade + Usar grelha Grid spacing - Espaçamento da grade + Espaçamento da grelha The spacing between each grid line - O espaçamento entre cada linha de grade + O espaçamento entre cada linha da grelha @@ -1147,22 +1147,22 @@ Values with differences below this value will be treated as same. Direita - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Se essa opção estiver marcada, objetos das mesmas camadas serão agrupados em blocos, tornando a exibição mais rápida, mas dificultando a edição - + Group layers into blocks Agrupar camadas em blocos - + If this is checked, all objects containing faces will be exported as 3d polyfaces Se essa opção estiver marcada, todos os objetos que contêm faces serão exportados como polifaces 3D - + Export 3D objects as polyface meshes Exportar objetos 3D como malhas de poliface @@ -1197,32 +1197,32 @@ Values with differences below this value will be treated as same. Se marcada, a grelha do Draft será sempre visível quando a bancada de trabalho de Draft está ativa. Caso contrário só quando a utilizar um comando - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Se marcado, os textos importados vão ter o tamanho padrão do texto de Draft, em vez do tamanho que eles têm no documento DXF - + Use standard font size for texts Usar o tamanho de fonte predefinido para textos - + If this is checked, hatches will be converted into simple wires Se selecionado, as tramas serão convertidas em linhas - + Import hatch boundaries as wires Importar limites das tramas como linhas - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Se selecionado, quando as linhas de segmentos tiverem a largura definida, estas irão ser renderizadas como linhas fechadas com a largura correta - + Render polylines with width Renderizar polilinhas com espessura @@ -1287,42 +1287,42 @@ Values with differences below this value will be treated as same. Cor de geometria de construção - + Import Importar - + texts and dimensions textos e cotas - + points pontos - + layouts layouts - + *blocks *blocos - + If this is checked, the exported objects will be projected to reflect the current view direction Se ativo, os objetos exportados serão projetados na direção da vista atual - + Project exported objects along current view direction Objetos de Projeto exportados juntamente com a direção de exibição atual - + Ellipse export is badly supported. Use this to export them as polylines instead. Exportação de elipse é deficientemente suportada. Use alternativamente para exportá-las como polilinhas. @@ -1389,7 +1389,7 @@ Values with differences below this value will be treated as same. Always show the grid - Sempre mostrar a grelha + Mostrar sempre a grelha @@ -1442,52 +1442,52 @@ Values with differences below this value will be treated as same. Preencher objetos com faces sempre que possível - + Create Criar - + simple Part shapes formas simples de Peça - + If this is checked, parametric Draft objects will be created whenever possible Se marcada, objetos paramétricos do Rascunho serão criados sempre que possível - + Draft objects Objetos de rascunho - + If this is checked, sketches will be created whenever possible Se marcado os esboços serão criados sempre que possível - + Sketches Esboços - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Se marcada, as cores serão recuperadas dos objetos DXF sempre que possível. Caso contrário as cores predefinidas serão aplicadas. - + Get original colors from the DXF file Obter as cores originais do ficheiro DXF - + Treat ellipses and splines as polylines Tratar elipses e splines como polilinhas - + Max Spline Segment: Segmento Spline Max: @@ -1502,37 +1502,32 @@ Values with differences below this value will be treated as same. Mostrar o sufixo das unidade nas dimensões - - Automatic update - Atualização automática - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/> <body><p>, Marcando isto, permite ao FreeCAD baixar e atualizar o</p> <p>componentes necessários para importação e exportação DXF. Também pode fazer isso</p> <p>manualmente, visitando https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Permitir que o FreeCAD baixe e atualize automaticamente as bibliotecas DXF - + If this is checked, only standard Part objects will be created (fastest) Se marcada, apenas objetos Peça padrão (Part) serão criados (mais rápido) - + If this is checked, DXF layers will be imported as Draft VisGroups Se esta opção for marcada, camadas DXF serão importadas como projecto VisGroups - + Use VisGroups Usar VisGroups - + mm mm @@ -1544,7 +1539,7 @@ Values with differences below this value will be treated as same. the number of horizontal or vertical lines of the grid - Número de linhas horizontais ou verticais da grade + número de linhas horizontais ou verticais da grelha @@ -1599,7 +1594,7 @@ Values with differences below this value will be treated as same. Grid and snapping - Grelha e Alinhamento e atração (snaping) + Grelha/Alinhamento e atração (snaping) @@ -1692,12 +1687,12 @@ Values with differences below this value will be treated as same. Opções de importação - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Se selecionado, o antigo importador de python é usado, caso contrário será usado o novo em C++ (mais rápido, mas ainda com poucos recursos) - + Use legacy python importer Use o importador antigo em python @@ -1727,15 +1722,30 @@ Values with differences below this value will be treated as same. Desativar a conversão de unidades - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. se esta opção for marcada, as vistas de Desenho serão exportadas como blocos. Isto pode falhar para modelos (templates) pós-R12. - + Export Drawing Views as blocks Exportar vistas do desenho como blocos + + + Note: Not all the options below are used by the new importer yet + Nota: Por enquanto, nem todas as opções abaixo são usadas pelo novo importador + + + + Show this dialog when importing and exporting + Mostrar esta caixa de diálogo durante a importação e exportação + + + + Automatic update (legacy importer only) + Atualização automática (apenas importador antigo) + Workbench @@ -1758,162 +1768,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Barra de comando Draft - + active command: Comando ativo: - + None Nenhum - + Active Draft command comando Desenhar ativado - + X coordinate of next point Coordenada X do Próximo Ponto - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordenada Y do Próximo Ponto - + Z coordinate of next point Coordenada Z do Próximo Ponto - + Radius Raio - + Radius of Circle Raio do Círculo - + &Relative &Parente - + Coordinates relative to last point or absolute (SPACE) Coordenadas relativas ao último ponto ou absoluta (ESPAÇO) - + F&illed Preench&ido - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Verifique se o objeto deve aparecer como preenchido, caso contrário ele será exibido como aramado (i) - + &Finish &Finalizar - + Finishes the current drawing or editing operation (F) Termina o desenho atual ou operação de edição (F) - + If checked, command will not finish until you press the command button again Se marcado, o comando não irá terminar até que clique novamente no botão de comando - + If checked, an OCC-style offset will be performed instead of the classic offset - Se marcada, um deslocamento de estilo OCC será executado em vez do deslocamento clássico + Se selecionado, um deslocamento ao estilo OCC será executado em vez do deslocamento clássico - + &OCC-style offset &Deslocamento estilo OCC - + Add points to the current object Adicionar pontos ao objeto atual - + Remove points from the current object Remover pontos do objeto atual - + Make Bezier node sharp Tornar nó Bezier afiado - + Make Bezier node tangent Tornar nó Bezier tangente - + Make Bezier node symmetric Tornar nó Bezier simétrico - + &Undo &Anular - + Undo the last segment (CTRL+Z) Anular o Último Segmento (CTRL+Z) - + Finishes and closes the current line (C) Termina e fecha a linha atual (C) - + &Wipe &Limpe - + Wipes the existing segments of this line and starts again from the last point (W) Limpa os segmentos existentes desta linha e começa novamente a partir do último ponto (W) - + Number of sides Nr. de Lados @@ -1923,132 +1933,132 @@ Values with differences below this value will be treated as same. Offset - + XY XY - + Select XY plane Selecionar o Plano XY - + XZ XZ - + Select XZ plane Selecionar o Plano XZ - + YZ YZ - + Select YZ plane Selecionar o Plano YZ - + View Visualização - + Select plane perpendicular to the current view Selecionar o Plano Perpendicular à Visualização Atual - + Do not project points to a drawing plane Não projectar pontos para um plano de desenho - + If checked, objects will be copied instead of moved (C) Se marcado, os objetos serão copiados e não movidos (C) - + Text string to draw Cadeia de caracteres de texto a desenhar - + String Texto - + Height of text Altura do texto - + Height Altura - + Intercharacter spacing Espaçamento entre caráteres - + Tracking Monitorização - + Full path to font file: Caminho completo para o arquivo de fonte: - + Open a FileChooser for font file Abrir um diálogo para escolher um arquivo de fonte - + Set/unset a working plane Activa/desactiva um plano de trabalho - + Line Color Cor da Linha - + Face Color Cor da Superfície - + Line Width Largura da Linha - + Font Size Tamanho da Fonte - + Apply to selected objects Aplicar aos Objet. Selec. - + Toggles Construction Mode Alterna Modo Construção - + Select Plane Selec. Plano @@ -2063,228 +2073,228 @@ Values with differences below this value will be treated as same. DWire - + Circle Círculo - + Center X Centrar X - + Arc Arco - + Point Ponto - + Distance Distância - + Trim Aparar - + Pick Object Escolha objeto - + Edit Editar - + Global X X global - + Global Y Y global - + Global Z Z global - + Local X X local - + Local Y Y local - + Local Z Z local - + Invalid Size value. Using 200.0. Valor de Tamanho inválido. Usando 200,0. - + Invalid Tracking value. Using 0. Rastreamento inválido. Usando 0. - + Please enter a text string. Por favor, insira um texto. - + Select a Font file Selecione um ficheiro de tipos - + Please enter a font file. Por favor, insira um arquivo de fonte. - + Draft.makeBSpline: not enough points Draft.makeBSpline: não há pontos suficientes - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Pontos de extremidade iguais, fechando - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Lista de pontos inválida - + Found groups: closing each open object inside Encontrados grupos: fechando cada objecto aberto no interior - + Found mesh(es): turning into Part shapes Encontrada(s) malha(s): transformando em formas de Peça - + Found 1 solidificable object: solidifying it Encontrado 1 objeto solidificável: solidificando-o - + Found 2 objects: fusing them Encontrados 2 objectos: fusão - + Found 1 non-parametric objects: draftifying it Encontrado um objecto não-paramétrico: crando desenho - + Found 1 open wire: closing it Encontrada 1 rede aberta: fechando - + Found several open wires: joining them Várias linhas abertos encontradas: unindo - + Found several edges: wiring them Várias arestas encontradas: criando rede - + Unable to upgrade these objects. Não é possível atualizar estes objetos. - + Found 1 block: exploding it Um bloco encontrado: Explodindo - + Found 1 parametric object: breaking its dependencies Encontrado 1 objeto paramétrizado: quebrando suas dependências - + Found 2 objects: subtracting them Encontrados 2 objetos: subtraindo-os - + Found several faces: splitting them Encontradas várias faces: dividindo-as - + Found several objects: subtracting them from the first one Encontrados vários objetos: subtraindo-os do primeiro - + Found 1 face: extracting its wires Encontrada 1 face: extraindo suas linhas - + Found only wires: extracting their edges Encontrado apenas linhas: extraindo suas arestas - + No more downgrade possible Não existem mais despromoções possíveis - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: fechado com o mesmo primeiro/último Ponto. Geometria não atualizada. @@ -2577,19 +2587,21 @@ Values with differences below this value will be treated as same. Select an object to offset - Selecionar objeto para contorno paralelo + Selecionar objeto para deslocamento paralelo Offset only works on one object at a time - contorno paralelo só funciona em um objeto por vez + Deslocamento paralelo só funciona com um objeto de cada vez + Cannot offset this object type - Não consegue criar rebordo deste tipo de objecto + Não consegue criar um deslocamento (offset) deste tipo de objecto + @@ -2606,12 +2618,12 @@ Values with differences below this value will be treated as same. Upgrade - Atualizar + Promover Downgrade - Diminuir + Despromover @@ -2637,7 +2649,7 @@ Values with differences below this value will be treated as same. Escolher o fator da escala: - + Select an object to project Selecione objeto a projetar @@ -2657,60 +2669,60 @@ Values with differences below this value will be treated as same. Este tipo de objeto não é editável - + Active object must have more than two points/nodes Objeto ativo deve ter mais de dois pontos / nós - + Selection is not a Knot A seleção não é um nó - + Endpoint of BezCurve can't be smoothed Ponto de extremo final de BezCurve não pode ser suavizado - + Select an object to convert Selecione um objeto para converter - + Select an object to array Selecione um objeto a matrizar - + Please select base and path objects Por favor selecione objetos base e caminho - + Create Point Criar Ponto - + Select an object to clone Selecione objeto a clonar - + Select face(s) on existing object(s) Selecione face(s) em objeto(s) existente(s) @@ -2726,7 +2738,7 @@ Values with differences below this value will be treated as same. &Draft - &Traço + &Traço (Draft) @@ -2744,105 +2756,105 @@ Values with differences below this value will be treated as same. Alinhamento e atração - + Found 1 multi-solids compound: exploding it Encontrado 1 composto multi-sólidos: explodindo-o - + Sides Lados - + BSplines and Bezier curves are not supported by this tool BSplines e curvas Bézier não são suportadas por esta ferramenta - + The given object is not planar and cannot be converted into a sketch. O objeto não é planar e não pode ser convertido em esboço (sketch). - + Found several objects: creating a shell Vários objetos encontrados: criação de um casca (shell) - + Found several coplanar objects or faces: creating one face Vários objetos ou faces complanares encontrados: Será criada uma face - + Found 1 linear object: converting to line 1 objeto linear encontrado: será criada uma linha - + Found 1 closed sketch object: creating a face from it 1 esboço fechado (sketch) encontrado: será criada uma face - + Found closed wires: creating faces Linhas fechadas (wires) encontradas: serão criadas faces - + Found several non-treatable objects: creating compound Vários objetos não tratáveis encontrados: criando composto (compound) - + Length Comprimento - + Angle Ângulo - + Length of current segment Comprimento do segmento atual - + Angle of current segment Ângulo do segmento atual - + Check this to lock the current angle (l) Marcar isto para bloquear o ângulo atual (l) - + &Select edge &Selecionar aresta - + Selects an existing edge to be measured by this dimension (E) Seleciona uma aresta existente a ser medida por esta dimensão (E) - + Auto Auto @@ -2853,22 +2865,22 @@ Values with differences below this value will be treated as same. Desculpe, o deslocamento (offset) de curvas Bézier não é suportado no momento - + Convert to Sketch Converter para esboço (Sketch) - + Convert to Draft Converter para traço (Draft) - + Convert Converter - + Array Matriz @@ -2888,7 +2900,8 @@ Values with differences below this value will be treated as same. Unable to trim these objects, too many wires - Incapaz de cortar estes objetos, muitos traços (wires) + Incapaz de cortar estes objetos, demasiados traços (wires) + @@ -2905,7 +2918,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2920,79 +2933,89 @@ To enabled FreeCAD to download these libraries, answer Yes. Para permitir ao FreeCAD baixar essas bibliotecas, responder sim. - + No object given Nenhum objeto dado - + The two points are coincident Os dois pontos são coincidentes - + Co&ntinue Co&ntinuar - + Cl&ose &Fechar - + C&opy C&opiar - + Faces Faces - + Remove Remover - + Add Adicionar - + Facebinder elements Elementos Película (facebinder) - + Mirror Espelho (simetria) - + Select an object to mirror Selecione um objeto a ser espelhado - + Pick start point of mirror line: Escolha o ponto inicial da linha de simetria: - + Pick end point of mirror line: Escolha o ponto final da linha de simetria: + + + Enter point + Inserir ponto + + + + Enter a new point with the given coordinates + Insirir um novo ponto com pelas coordenadas + diff --git a/src/Mod/Draft/Resources/translations/Draft_ro.qm b/src/Mod/Draft/Resources/translations/Draft_ro.qm index bb15fb7c006267fba40d810b21c3954bfc586d0f..e48b3ac15e08482797132b2819bbfb9af29c5487 100644 GIT binary patch delta 4859 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 diff --git a/src/Mod/Draft/Resources/translations/Draft_ro.ts b/src/Mod/Draft/Resources/translations/Draft_ro.ts index 582fdef9a..09be14e19 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ro.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ro.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Adaugă punct - + Adds a point to an existing wire/bspline Adauga un punct la o polilinie/curba @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Adăugare la grup... - + Adds the selected object(s) to an existing group Adauga obiectele selectate la un grup existent @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Matrice - + Creates a polar or rectangular array from a selected object Creaza o multime polara sau rectangulara din obiectele selectate @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Clonă - + Clones the selected object(s) Clonează obiectul(ele) selectate @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Eliminare punct - + Removes a point from an existing wire or bspline Elimina un punct dintr-o polilinie/curba @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Ciorna in schita - + Convert bidirectionally between Draft and Sketch objects Conversie bidirectionala a obiectelor intre ciorna si schita @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Întoarce dimensiunea - + Flip the normal direction of a dimension Întoarce direcția normală a unei dimensiuni @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Repară - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creează copii ale unui obiect selectat de-a lungul unui traseu selectat. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Punct - + Creates a point object Creează un obiect punct @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Selectați un grup - + Selects all objects with the same parents as this group Selectează toate obiectele cu aceeaşi părinţii ca acest grup @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Vizualizare forma 2D - + Creates Shape 2D views of selected objects Creaza vizualizari forma 2D pentru obiectele selectate @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Arata bara de ancore - + Shows Draft snap toolbar Arata bara de ancore pentru ciorna @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Unghiuri - + Snaps to 45 and 90 degrees points on arcs and circles Aliniază la punctele de 45 și 90 de grade pe un arc de cerd @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Centru - + Snaps to center of circles and arcs Aliniază la centrul cercului și la arce @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensiuni - + Shows temporary dimensions when snapping to Arch objects Arată dimensiunile temporare când se aliniază la obiecte arc @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Punct final - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extensie - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grilă - + Snaps to grid points Aliniază la punctele grilei @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Intersecţie - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Comută Pornit/Oprit - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Punct mijlociu - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Cel mai apropiat - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Paralel - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Plan de lucru - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Comuta grila - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Polilinie in curba - + Converts between Wire and BSpline Converteste un obiect din polilinie in curba @@ -946,17 +946,17 @@ sau "mono", sau o familie cum ar fi "Arial,Helvetica,sans", sau un nume şi un s Culoarea şi grosime de linie originală - + if this is checked, paper space objects will be imported too dacă această căsuţă este bifată, vor fi importate şi obiecte spaţiale de hârtie - + if this is unchecked, texts/mtexts won't be imported Dacă această casuţă este debifată, textele/mtexts nu vor fi importate - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Cand curbele sunt exportate in DXF sunt transformate in polilinii. Valoarea reprezinta lungimea maxima a fiecarui segment. Daca este 0, intreaga curga este tratata ca fiind un singur segment de dreapta. @@ -997,17 +997,17 @@ Values with differences below this value will be treated as same. Aceasta este valoarea utilizată de funcţii care utilizează o toleranţă. Valorile cu diferenţe mai jos această valoare vor fi tratate ca fiind la fel. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Bifaţi dacă doriţi să importaţi şi blocurile fără nume (începând cu o *) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Daca e bifat, FreeCAD va incerca sa uneasca obiectele incidente intr-o polilinie. Atentie, operatiunea poate dura destul de mult... - + Join geometry Reuneşte formele geometrice @@ -1152,22 +1152,22 @@ Values with differences below this value will be treated as same. Dreapta - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable dacă bifaţi căsuţa obiectele de pe acelaşi strat vor fi unite în Blocuri de Schiţe, făcând afişarea lor mai rapidă dar editarea lor ulterioară devine mai complicată - + Group layers into blocks Grupează straturile în blocuri - + If this is checked, all objects containing faces will be exported as 3d polyfaces aca e bifat, toate obiectele continan fete vor fi exportate ca 3d polyfaces - + Export 3D objects as polyface meshes Exporta obiectele 3D ca "polyface meshes" @@ -1202,32 +1202,32 @@ Values with differences below this value will be treated as same. Daca este bifat, grila pentru Ciorna va fi vizibila continuu cat timp modulul Ciorna este activ. Altfel va fi vizibila doar cand o comanda este activa - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Daca e bifat, textele importate vor primi inaltimea de tex standard pentru Ciorna in locul inaltimilor proprii din documentul DXF - + Use standard font size for texts Utilizaţi dimensiunea standard a fontului pentru texte - + If this is checked, hatches will be converted into simple wires Daca e bifat, hasurile vor fi convertite in linii simple - + Import hatch boundaries as wires Importa marginile hasurii ca si linii - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Daca este bifat, cand poliliniile au latime definita vor fi afisate cu latimea corecta - + Render polylines with width Afiseaza grosimea poliliniei @@ -1292,42 +1292,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Import - + texts and dimensions texte și dimensiuni - + points puncte - + layouts aspecte - + *blocks *blocuri - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1447,53 +1447,53 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create Creează - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Obiect ciornă - + If this is checked, sketches will be created whenever possible Dacă selectați aceasta, schițele vor fi create de cîte ori este posibil - + Sketches Schițe - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Dacă selectați aceasta, culorile vor fi extrase din obiectele DXF ori de câte ori este posibil. Altfel vor fi aplicate culorile implicite. - + Get original colors from the DXF file Ia culorile originale din fișierul DXF - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1508,37 +1508,32 @@ Altfel vor fi aplicate culorile implicite. Arată sufixul unităților în dimensiuni - - Automatic update - Actualizare automată - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Permite FreeCAD să descarce automat și să actualizeze bibliotecile DXF - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1698,12 +1693,12 @@ Altfel vor fi aplicate culorile implicite. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1733,15 +1728,30 @@ Altfel vor fi aplicate culorile implicite. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1764,162 +1774,162 @@ Altfel vor fi aplicate culorile implicite. draft - + Draft Command Bar Draft Command Bar - + active command: Comanda activă: - + None Niciunul - + Active Draft command Comanda activă proiect - + X coordinate of next point Coordonata X a punctului următor - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordonata Y a punctului următor - + Z coordinate of next point Coordonata Z a punctului următor - + Radius Raza - + Radius of Circle Raza cercului - + &Relative &Relativ - + Coordinates relative to last point or absolute (SPACE) Coordonatele relative la ultimul punct sau absolute (SPAȚIU) - + F&illed Pl&in - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Verifica dacă obiectul ar trebui să apară ca umplut, altfel va apare ca wireframe (i) - + &Finish &Termina - + Finishes the current drawing or editing operation (F) Termina operatiunea curenta de editare sau desenare (F) - + If checked, command will not finish until you press the command button again Dacă bifaţi casuţa, comanda nu se va termina până când nu apăsaţi butonul de comandă din nou - + If checked, an OCC-style offset will be performed instead of the classic offset Daca este bifat, o expandare tip OCC va fi folosita inlocul expandarii clasice - + &OCC-style offset Expandare tip &OCC - + Add points to the current object Adăuga puncte la obiectul curent - + Remove points from the current object Elimina puncte din obiectul curent - + Make Bezier node sharp Fă nodul Bezier ascuțit - + Make Bezier node tangent Fă nodul Bezier tangent - + Make Bezier node symmetric Fă nodul Bezier simetric - + &Undo &Anulare - + Undo the last segment (CTRL+Z) Anulare ultimul segment (CTRL + Z) - + Finishes and closes the current line (C) Încheie şi închide linia curentă (C) - + &Wipe &Şterge - + Wipes the existing segments of this line and starts again from the last point (W) Şterge toate segmentele existente ale acestei linii şi reporneşte de la ultimul punct (W) - + Number of sides Numărul de laturi @@ -1929,132 +1939,132 @@ Altfel vor fi aplicate culorile implicite. Compensare - + XY XY - + Select XY plane Selectare plan XY - + XZ XZ - + Select XZ plane Selectare plan XZ - + YZ YZ - + Select YZ plane Selectare plan YZ - + View Vizualizare - + Select plane perpendicular to the current view Selectare plan perpendicular pe vizualizarea curentă - + Do not project points to a drawing plane Nu proiectează punctele pe planul desenului - + If checked, objects will be copied instead of moved (C) Dacă este bifată, obiecte vor fi copiate, și nu mutate (C) - + Text string to draw Șir text de desenat - + String Şir - + Height of text Înălțimea textului - + Height Înălţime - + Intercharacter spacing Intercharacter spacing - + Tracking Urmărire - + Full path to font file: Calea întreagă la fișierul text: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Culoarea liniei - + Face Color Culoarea feţei - + Line Width Grosimea liniei - + Font Size Dimensiunea font-ului - + Apply to selected objects Se aplică la obiectele selectate - + Toggles Construction Mode Comută în Modul de Construcție - + Select Plane Selectare plan @@ -2069,229 +2079,229 @@ Altfel vor fi aplicate culorile implicite. DWire - + Circle Cerc - + Center X Centrul X - + Arc Arc - + Point Punct - + Distance Distance - + Trim Taiere - + Pick Object Alege obiect - + Edit Editare - + Global X Global X - + Global Y Global Y - + Global Z Global Z - + Local X Local X - + Local Y Local Y - + Local Z Local Z - + Invalid Size value. Using 200.0. Valoare dimensiune nevalidă. Utilizați 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Introduceți un șir text. - + Select a Font file Selectați un fișier font - + Please enter a font file. Introduceți un fișier font. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Grupuri gasite: se inchid toate obiectele deschise din interior - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Am gasit un obiect solidificabil; il colidific - + Found 2 objects: fusing them Am descoperit 2 obiecte: le unesc - + Found 1 non-parametric objects: draftifying it Am gasit un obiect neparametric; il schitam - + Found 1 open wire: closing it Am gasit o linie deschisa; o inchid - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Am gasit mai multe margini; le imbin - + Unable to upgrade these objects. Nu se poat actualiza aceste obiecte. - + Found 1 block: exploding it S-a găsit 1 bloc: se extinde - + Found 1 parametric object: breaking its dependencies Am gasit un obiect parametric fara toate dependentele - + Found 2 objects: subtracting them Am gasit doua obiecte; le scadem - + Found several faces: splitting them Am gasit mai multe fete; le divizam - + Found several objects: subtracting them from the first one Am gasit mai multe obiecte; le scadem din primul - + Found 1 face: extracting its wires Am gasit o fateta; ii extragem liniile - + Found only wires: extracting their edges Am gasit doar linii; le extragem marginile - + No more downgrade possible Imposibil de retrogradat - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2642,7 +2652,7 @@ Altfel vor fi aplicate culorile implicite. Alege factorului de scalare: - + Select an object to project Selectați un obiect de proiectat @@ -2662,60 +2672,60 @@ Altfel vor fi aplicate culorile implicite. Acest tip de obiect nu poate fi editat - + Active object must have more than two points/nodes Obiectul activ trebuie să aibă mai mult de două puncte/noduri - + Selection is not a Knot Selecția nu este un nod - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Selectați un obiect de convertit - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Creează un punct - + Select an object to clone Selectați un obiect de clonat - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2749,106 +2759,106 @@ Altfel vor fi aplicate culorile implicite. Ancorare - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Părți - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Lungime - + Angle Unghi - + Length of current segment Lungimea segmentului curent - + Angle of current segment Unghiul segmentului curent - + Check this to lock the current angle (l) Bifați asta pentru a bloca unghiul curent (l) - + &Select edge &Selectează marginea - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Automat @@ -2860,22 +2870,22 @@ Altfel vor fi aplicate culorile implicite. - + Convert to Sketch Convertește la schiță - + Convert to Draft Convert to Draft - + Convert Converteşte - + Array Matrice @@ -2915,7 +2925,7 @@ Altfel vor fi aplicate culorile implicite. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2934,79 +2944,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose În&chide - + C&opy C&opiază - + Faces Fete - + Remove Elimină - + Add Adaugă - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_ru.qm b/src/Mod/Draft/Resources/translations/Draft_ru.qm index c2280fe38e3c2e84ec1f05f70e53a5adbb6f6d60..e2be252aa6ff9250862352d94d7764394322e889 100644 GIT binary patch delta 5097 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 delta 4517 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 Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Добавить точку - + Adds a point to an existing wire/bspline Добавляет точку к существующей Направляющей/B-сплайну @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Добавить в группу... - + Adds the selected object(s) to an existing group Добавляет выбранный объект(ы) в существующую группу @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Массив - + Creates a polar or rectangular array from a selected object Создает круговой или прямоугольный массив из выделенного объекта @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Клонировать - + Clones the selected object(s) Создаёт дубликат выделенных объектов @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Удалить точку - + Removes a point from an existing wire or bspline Удаляет точки из существующих Направляющих или B-сплайнов @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Преобразовать в эскиз - + Convert bidirectionally between Draft and Sketch objects Конвертировать двунаправленно между объектами проекта и эскиза @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Граневяз - + Creates a facebinder object from selected face(s) Инструмент Граневяз. Создаёт объект, состоящий из выделенных граней другого объекта. @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Перевернуть размер - + Flip the normal direction of a dimension Перевернуть нормальное направление размера @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Лечить - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray Массив по направляющей - + Creates copies of a selected object along a selected path. Создаёт копии выбранного объекта вдоль выбранного пути. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Точка - + Creates a point object Создать объект точка @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Выбрать группу - + Selects all objects with the same parents as this group Выделяет все объекты группы, включая родительские @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D вид фигуры - + Creates Shape 2D views of selected objects Создать 2D виды выбранных объектов @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Показывать панель привязок - + Shows Draft snap toolbar Показать панель инструментов привязки черчения @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Углы - + Snaps to 45 and 90 degrees points on arcs and circles Привязка к октантам дуг и окружностей @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Центр - + Snaps to center of circles and arcs Привязка к центру окружности или дуги @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Размеры - + Shows temporary dimensions when snapping to Arch objects Временно показывать размер при привязке к дуге @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Конечные точки - + Snaps to endpoints of edges Привязывает по конечным точкам ребра @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Продолжение - + Snaps to extension of edges Привязка к продолжению сегмента ребра @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Сетка - + Snaps to grid points Привязывает по сетке @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Пересечение - + Snaps to edges intersections Привязка к пересечению рёбер @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Включить/выключить привязки - + Activates/deactivates all snap tools at once Включает и выключает все установленные привязки @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Середина - + Snaps to midpoints of edges Привязывает к середине ребра @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Ближайшие - + Snaps to nearest point on edges Привязывает к ближайшим точкам на рёбрах @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ортогональная - + Snaps to orthogonal and 45 degrees directions Привязывает к ортогональным и на 45 градусов пересечения продолжения сегментов @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Параллельно - + Snaps to parallel directions of edges Привязывает параллельные направления рёбер @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Нормаль - + Snaps to perpendicular points on edges Перпенликуояпная привязка к ребру @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane К рабочей плоскости - + Restricts the snapped point to the current working plane Привязывает точки к рабочей плоскости @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Переключить сетку - + Toggles the Draft grid on/off Включение или выключение сетки чертежа @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Направляющая в BSpline - + Converts between Wire and BSpline Преобразование Направляющей в B-сплайн и наоборот @@ -944,17 +944,17 @@ such as "Arial:Bold" Оригинальный цвет и толщина линии - + if this is checked, paper space objects will be imported too если выбран этот пункт, объекты в пространстве листа будут тоже импортированы - + if this is unchecked, texts/mtexts won't be imported если этот пункт не выбран, тексты/мультитексты импортированы не будут - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. При экспорте сплайнов в DXF, они превращаются в полилинии. Это значение максимальной длины для каждого из сегментов полилинии. Если 0, то весь сплайн рассматривается как прямой отрезок. @@ -996,17 +996,17 @@ Values with differences below this value will be treated as same. Значения, отклоняющиеся на меньшую величину, будут также приемлемыми. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Проверьте это, если вы хотите неименованные блоки (начиная с *) для импорта тоже - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Если отмечено, freecad будет пытаться совмещать совпадающие объекты. Осторожно, это может занять некоторое время ... - + Join geometry Присоединиться к геометрии @@ -1151,22 +1151,22 @@ Values with differences below this value will be treated as same. Вправо - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Если этот параметр выбран, объекты одного слоя будут объединены в блоки. Это ускорит работу с объектами, но сделает сложнее в редактировании - + Group layers into blocks Группировать слои в блоки - + If this is checked, all objects containing faces will be exported as 3d polyfaces Если этот параметр выбран, все объекты, содержащие грани, будут экспортированы как 3d многогранники - + Export 3D objects as polyface meshes Экспорт 3D объектов как многогранной сетки @@ -1201,32 +1201,32 @@ Values with differences below this value will be treated as same. Если флажок установлен, сетка Чертежа всегда будет видна при активном рабочем окружении. В любом другом случае только при использовании соответствующей команды - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Если этот параметр выбран, то импортированные тексты будут получать стандартный размер текста чертежа, взамен размера указанного в DXF файлах - + Use standard font size for texts Использовать стандартный размер шрифта для текстов - + If this is checked, hatches will be converted into simple wires Если этот параметр выбран, то штриховка будет преобразовываться в простые каркасные связи - + Import hatch boundaries as wires Импорт областей штриховки как контуров - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Если этот параметр выбран, то когда определена ширина полилинии, они будут отображаться как закрытые каркасы с правильной шириной - + Render polylines with width Отображение полилиний с использованием толшины @@ -1291,42 +1291,42 @@ Values with differences below this value will be treated as same. Цвет вспомогательной геометрии - + Import импорт - + texts and dimensions текст и размеры - + points точки - + layouts layouts - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction Если включить, то экспортируемые объекты будут проецироваться относительно текущего вида - + Project exported objects along current view direction Проецировать объекты относительно текущего вида - + Ellipse export is badly supported. Use this to export them as polylines instead. Экспорт эллипсов плохо реализован. Экспортируйте эллипсы как полилинии. @@ -1338,7 +1338,7 @@ Values with differences below this value will be treated as same. The path to your Teigha File Converter executable - The path to your Teigha File Converter executable + Путь к исполняемому файлу конвертера Teigha файлов @@ -1446,52 +1446,52 @@ Values with differences below this value will be treated as same. Залить объекты поверхностями, если это возможно - + Create Запаковать - + simple Part shapes Простые формы Part - + If this is checked, parametric Draft objects will be created whenever possible Если возможно, будут создаваться параметрические объекты Draft - + Draft objects Объекты Draft - + If this is checked, sketches will be created whenever possible Если включено, то будут создаваться эскизы Sketch, если возможно - + Sketches Эскизы (Sketches) - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Если включено, будут использоваться цвета DXF объектов, когда возможно. Иначе будет использован цвет по умолчанию - + Get original colors from the DXF file Использовать цвета из файла DXF - + Treat ellipses and splines as polylines Преобразовать Эллипсы в полилинии - + Max Spline Segment: Макс. шагов сегмента @@ -1506,54 +1506,49 @@ Values with differences below this value will be treated as same. Показать суффикс единиц для размеров - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm мм Grid size - Grid size + Шаг сетки the number of horizontal or vertical lines of the grid - the number of horizontal or vertical lines of the grid + количество горизонтальных или вертикальных линий сетки lines - lines + линии @@ -1688,7 +1683,7 @@ Values with differences below this value will be treated as same. DXF - DXF + DXF @@ -1696,12 +1691,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1713,12 +1708,12 @@ Values with differences below this value will be treated as same. OCA - OCA + OCA SVG - SVG + SVG @@ -1731,15 +1726,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1762,162 +1772,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Командная строка Draft - + active command: Текущая команда: - + None Ничего - + Active Draft command Активная команда черчения - + X coordinate of next point абсцисса следующей точки - + X X - + Y Y - + Z Z - + Y coordinate of next point ордината следующей точки - + Z coordinate of next point аппликата следующей точки - + Radius Радиус - + Radius of Circle Радиус окружности - + &Relative &Относительно - + Coordinates relative to last point or absolute (SPACE) Координаты относительно последней точки или абсолютные (SPACE) - + F&illed Заполненный - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Установить флажок если объект должен отображаться как заполненый, в противном случае он будет отображаться как каркас (i) - + &Finish &Готово - + Finishes the current drawing or editing operation (F) Завершить текущий чертёж или операцию редактирования (F) - + If checked, command will not finish until you press the command button again Если установлен, команда не будет завершена до нажатия кнопки снова - + If checked, an OCC-style offset will be performed instead of the classic offset Если флажок установлен, вместо классического смещения будет выполняться смещение в стиле OCC - + &OCC-style offset Смещение в стиле &OCC - + Add points to the current object Добавление точек к текущему объекту - + Remove points from the current object Удаление точек из текущего объекта - + Make Bezier node sharp Сделать узел Безье острым - + Make Bezier node tangent Создать касательный узел Безье - + Make Bezier node symmetric Создать симметричный узел Безье - + &Undo &Отменить - + Undo the last segment (CTRL+Z) Отменить последний сегмент (Ctrl + Z) - + Finishes and closes the current line (C) Закончить и замкнуть текущую линию (C) - + &Wipe Стереть - + Wipes the existing segments of this line and starts again from the last point (W) Стирает существующие сегменты этой линии и начинает снова с последней точки (W) - + Number of sides Количество сторон @@ -1927,132 +1937,132 @@ Values with differences below this value will be treated as same. Смещение - + XY XY - + Select XY plane Выберите плоскость XY - + XZ XZ - + Select XZ plane Выберите плоскость XZ - + YZ YZ - + Select YZ plane Выберите плоскость YZ - + View Вид - + Select plane perpendicular to the current view Выберите плоскость, перпендикулярную текущему виду - + Do not project points to a drawing plane Не проецировать точки на плоскость рисунка - + If checked, objects will be copied instead of moved (C) Если флажок установлен, объекты будут копироваться, а не перемещаться (C) - + Text string to draw Cтрока текста для рисования - + String Строка - + Height of text Высота текста - + Height Высота - + Intercharacter spacing Intercharacter spacing - + Tracking Отслеживание - + Full path to font file: Полный путь к файлу шрифта: - + Open a FileChooser for font file Открыть ВыборФайла для файла шрифта - + Set/unset a working plane Указать/ снять рабочую плоскость - + Line Color Цвет линии - + Face Color Цвет грани - + Line Width Толщина линии - + Font Size Размер шрифта - + Apply to selected objects Применить к выбранным объектам - + Toggles Construction Mode Переключение режима конструирования - + Select Plane Выберите плоскость @@ -2067,229 +2077,229 @@ Values with differences below this value will be treated as same. DWire - + Circle Окружность - + Center X Центр X - + Arc Дуга - + Point Точка - + Distance Расстояние - + Trim Обрезка - + Pick Object Выберите объект - + Edit Правка - + Global X Глобальный X - + Global Y Глобальный Y - + Global Z Глобальный Z - + Local X Локальный X - + Local Y Локальный Y - + Local Z Локальный Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Выберите файл шрифта - + Please enter a font file. Пожалуйста, введите файл шрифта. - + Draft.makeBSpline: not enough points Draft.makeBSpline: недостаточно точек - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Найдены группы: закрытие каждого открытого объекта внутри - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Найден 1 незамкнутый объект: исправляем его - + Found 2 objects: fusing them Найдены два объекта: слияю их - + Found 1 non-parametric objects: draftifying it Найден один непараметрический объект: draftifying it - + Found 1 open wire: closing it Найден один открытый провод: закрываю его - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Найдено несколько ребер: провожу их - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Найден один параметрический объект: уничтожаю его зависимости - + Found 2 objects: subtracting them Найдено 2 объекта: вычитание их - + Found several faces: splitting them Найдено несколько поверхностей: расщепите их - + Found several objects: subtracting them from the first one Найдено несколько объектов: вычитание их из первого - + Found 1 face: extracting its wires Найдена 1 поверхность: извлечение ее направляющих - + Found only wires: extracting their edges Найдены только направляющие: извлечение их кромок - + No more downgrade possible Дальнейший откат обновлений не возможен - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2640,7 +2650,7 @@ Values with differences below this value will be treated as same. Выберите коэффициент масштабирования: - + Select an object to project Выберите объект для проекции @@ -2660,59 +2670,59 @@ Values with differences below this value will be treated as same. Этот тип объекта не редактируется - + Active object must have more than two points/nodes Активный объект должен иметь более двух точек/узлов - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Выберите объект для преобразования - + Select an object to array Выберите объект для создания массива - + Please select base and path objects Please select base and path objects - + Create Point Создать точку - + Select an object to clone Выделите объект для клонирования - + Select face(s) on existing object(s) Выберите поверхность(и) на существующем(их) объекте(ах) @@ -2744,106 +2754,106 @@ Values with differences below this value will be treated as same. Привязка - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Стороны - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Длина - + Angle Угол - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2855,22 +2865,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Convert - + Array Массив @@ -2910,7 +2920,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2929,79 +2939,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose За&крыть - + C&opy Ко&пировать - + Faces Изображения - + Remove Удалить - + Add Добавить - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_sk.qm b/src/Mod/Draft/Resources/translations/Draft_sk.qm index 87cf1bdf3e785a9a1d18e0ba8bd9cd6f64f51c1a..32141746e82423f268d58cbff2a80b9b4a4d32c4 100644 GIT binary patch delta 4877 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 delta 4260 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 Yfc>6Hc^f@-Nw>D0^G=%a>_6WB2ZDw<4FCWD diff --git a/src/Mod/Draft/Resources/translations/Draft_sk.ts b/src/Mod/Draft/Resources/translations/Draft_sk.ts index 96bb720de..ac8d597c5 100644 --- a/src/Mod/Draft/Resources/translations/Draft_sk.ts +++ b/src/Mod/Draft/Resources/translations/Draft_sk.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Pridá bod - + Adds a point to an existing wire/bspline Pridá bod do existujúceho drôtu/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Pridať do skupiny... - + Adds the selected object(s) to an existing group Pridá vybraté objekty do existujúcej skupiny @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Pole - + Creates a polar or rectangular array from a selected object Vytvára polárne alebo obdĺžnikové pole z vybratého objektu @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klonuj - + Clones the selected object(s) Klonuj vybraný objekt(y) @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Odstráni bod - + Removes a point from an existing wire or bspline Odstráni bod z existujúceho drôtu alebo bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Návrh do Náčrtu - + Convert bidirectionally between Draft and Sketch objects Previesť obojsmerne medzi Návrhom a Náčrt objektov @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Flip Dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creates copies of a selected object along a selected path. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Bod - + Creates a point object Vytvor bodový objekt @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Vyberte skupinu - + Selects all objects with the same parents as this group Vyberie všetky objekty s rovnakými rodičmi ako má táto skupina @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Tvary 2D - + Creates Shape 2D views of selected objects Vytvorí 2D pohľady vybratých objektov @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Show Snap Bar - + Shows Draft snap toolbar Shows Draft snap toolbar @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Uhly - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Center - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Rozmery - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Koncový bod - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Rozšírenie - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Mriežka - + Snaps to grid points Snaps to grid points @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Priesečník - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Midpoint - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nearest - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Súbežne - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Kolmo - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Pracovná rovina - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Toggle Grid - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Drôt na BSpline (drážku) - + Converts between Wire and BSpline Konvertuje medzi drôtom a BSpline (drážkovanie) @@ -947,17 +947,17 @@ napríklad "Arial:Bold" Pôvodné farby a šírkaČiary - + if this is checked, paper space objects will be imported too ak je začiarknuté, budú importované aj objekty priestoru výkresu - + if this is unchecked, texts/mtexts won't be imported ak nie je začiarknuté, texty/mtexty nebudú importované - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Keď sa exportujú drážky do DXF, tak sú transformované do kriviek. Táto hodnota je max dĺžka každej krivky segmentu. Ak je 0, tak sa s celou drážkou zaobchádza ako s rovným segmentom. @@ -999,17 +999,17 @@ Values with differences below this value will be treated as same. Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebol. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Začiarknite, ak chcete aby boli importované aj nepomenované bloky (začínajúce *) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Ak je začiarknité, freecad sa pokúsi spojiť zhodné objekty do drôtov. Pozor, môže to chvíľu trvať... - + Join geometry Spojiť geometriu @@ -1154,22 +1154,22 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Vpravo - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Ak je začiarknuté, objekty tej istej úrovne spojí do Návrhových blokov, čím bude zobrazenie rýchlejšie ale ich editácia pomalšia - + Group layers into blocks Zoskupenie úrovní do blokov - + If this is checked, all objects containing faces will be exported as 3d polyfaces Ak je začiarknuté, všetky plochy exportuje do 3D mriežky - + Export 3D objects as polyface meshes Exportuje 3D objekty ako mriežky jednotlivých plôch @@ -1204,32 +1204,32 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document - + Use standard font size for texts Use standard font size for texts - + If this is checked, hatches will be converted into simple wires If this is checked, hatches will be converted into simple wires - + Import hatch boundaries as wires Import hatch boundaries as wires - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width - + Render polylines with width Render polylines with width @@ -1294,42 +1294,42 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Construction geometry color - + Import Importovať - + texts and dimensions texts and dimensions - + points body - + layouts layouts - + *blocks *bloky - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1449,52 +1449,52 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Fill objects with faces whenever possible - + Create Vytvoriť - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Sketches - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1509,37 +1509,32 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Show the unit suffix in dimensions - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1699,12 +1694,12 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1734,15 +1729,30 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1765,162 +1775,162 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo draft - + Draft Command Bar Draft Command Bar - + active command: aktívny príkaz: - + None Žiadny - + Active Draft command Aktívny príkaz návrhu - + X coordinate of next point X-ová súradnica ďalšieho bodu - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-ová súradnica ďalšieho bodu - + Z coordinate of next point Z-ová súradnica ďalšieho bodu - + Radius Polomer - + Radius of Circle Polomer kruhu - + &Relative &Relatívne - + Coordinates relative to last point or absolute (SPACE) Súradnice vzhľadom na posledný bod alebo absolútny (priestor) - + F&illed V&ýplň - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Začiarknite, ak má objekt zobraziť vyplnený, inak sa zobrazí ako drôtový model (i) - + &Finish Hotovo - + Finishes the current drawing or editing operation (F) Ukončí aktuálne kreslenie alebo editovanie (F) - + If checked, command will not finish until you press the command button again Ak je začiarknuté, príkaz sa neskončí kým znova nestlačíte tlačítko - + If checked, an OCC-style offset will be performed instead of the classic offset Ak je začiarknuté, tak sa namiesto klasického použije OCC štýl odchýlky - + &OCC-style offset &OCC-štýl odchýlky - + Add points to the current object Pridá body do aktuálneho objektu - + Remove points from the current object Odstráni body z aktuálneho objektu - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo &Späť - + Undo the last segment (CTRL+Z) Vrátiť späť posledný segment (CTRL + Z) - + Finishes and closes the current line (C) Dokončiť a uzavrieť aktuálnu čiaru (C) - + &Wipe Zotrieť - + Wipes the existing segments of this line and starts again from the last point (W) Vymaže existujúce segmenty tejto čiary a začne znovu od posledného bodu (W) - + Number of sides Počet strán @@ -1930,132 +1940,132 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Odsadenie - + XY XY - + Select XY plane Vybrať rovinu XY - + XZ XZ - + Select XZ plane Vybrať rovinu XZ - + YZ YZ - + Select YZ plane Vybrať rovinu YZ - + View Pohľad - + Select plane perpendicular to the current view Vyberte rovinu kolmú na aktuálny pohľad - + Do not project points to a drawing plane Nepremietať body do kresliacej roviny - + If checked, objects will be copied instead of moved (C) Ak je začiarknuté, objekty nebudú presúvané, ale skopírované (C) - + Text string to draw Text string to draw - + String Reťazec - + Height of text Výška textu - + Height Výška - + Intercharacter spacing Intercharacter spacing - + Tracking Tracking - + Full path to font file: Full path to font file: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Farba čiary - + Face Color Farba predného panelu - + Line Width Hrúbka čiary - + Font Size Veľkosť písma - + Apply to selected objects Aplikovať na vybrané objekty - + Toggles Construction Mode Prepína konštrukčný režim - + Select Plane Vybrať rovinu @@ -2070,230 +2080,230 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Návrhová krivka - + Circle Kružnica - + Center X Stredové X - + Arc Oblúk - + Point Bod - + Distance Vzdialenosť - + Trim Odrezať - + Pick Object Vybrať objekt - + Edit Upraviť - + Global X Globálna os X - + Global Y Globálna os Y - + Global Z Globálna os Z - + Local X Lokálna os X - + Local Y Lokálna os Y - + Local Z Lokálna os Z - + Invalid Size value. Using 200.0. Neplatná hodnota veľkosti. Použije sa 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Vyberte súbor obsahujúci písmo - + Please enter a font file. Zadajte súbor obsahujúci písmo. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Nájdené skupiny: uzatváram v nich každý otvorený objekt - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Našiel som 1 upevniteľný objekt: upevňujem ho - + Found 2 objects: fusing them Nájdené 2 objekty: zaisťujem ich - + Found 1 non-parametric objects: draftifying it Nájdený 1 objekt bez parametrov: navrhujem ho - + Found 1 open wire: closing it Nájdený 1 otvorený drôt: uzatváram ho - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Nájdených niekoľko hrán: pripájam ich - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Nájdený 1 parametrický objekt: zastavujem jeho väzby - + Found 2 objects: subtracting them Nájdené 2 objekty: rozdeľujem ich - + Found several faces: splitting them Nájdených viacero plôch: rozdeľujem ich - + Found several objects: subtracting them from the first one Nájdených viacero objektov: rozdeľujem ich od prvého - + Found 1 face: extracting its wires Nájdená 1 plocha: získavam jeho drôty - + Found only wires: extracting their edges Nájdene iba drôty: získavam ich okraje - + No more downgrade possible No more downgrade possible - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2644,7 +2654,7 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Vyberte merítko: - + Select an object to project Select an object to project @@ -2664,60 +2674,60 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Tento typ objektu sa nedá editovať - + Active object must have more than two points/nodes Aktívny objekt musí mať viac ako dva body/uzly - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Create Point - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2751,106 +2761,106 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo Snapping - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Strany - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Dĺžka - + Angle Uhol - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2862,22 +2872,22 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo - + Convert to Sketch Konvertovať na náčrt - + Convert to Draft Konvertovať na návrh - + Convert Konvertovať - + Array Pole @@ -2917,7 +2927,7 @@ Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebo - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2936,79 +2946,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose Zatvoriť - + C&opy K&opírovať - + Faces Predné strany - + Remove Odstrániť - + Add Pridať - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_sl.qm b/src/Mod/Draft/Resources/translations/Draft_sl.qm index d0c15c9923b9a96ed908a9d882b70bc73c561237..6ee8dd4a87d0e848ef88e24488588def7851f38c 100644 GIT binary patch delta 5154 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 D0jdt| delta 4474 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 Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install - Prenos knjižnic DXF ni uspel. + Prenos knjižnic DXF je spodletel. Prenesite in namestite jih ročno. Celotna navodila si oglejte na http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Dodaj točko - + Adds a point to an existing wire/bspline Doda točko k obstoječi žici/b-zlepku @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Dodaj k skupini … - + Adds the selected object(s) to an existing group Doda izbrane objekte k obstoječi skupini @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Vzorec - + Creates a polar or rectangular array from a selected object Ustvari polaren ali pravokoten vzorec iz izbranega objekta @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Kloniraj - + Clones the selected object(s) Klonira izbrane objekte @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Odstrani točko - + Removes a point from an existing wire or bspline Odstrani točko z obstoječe žice ali b-zlepka @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Osnutek v skico - + Convert bidirectionally between Draft and Sketch objects Dvosmerno pretvori med osnutkom in skico @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Vezalnik ploskev - + Creates a facebinder object from selected face(s) Ustvari objekt vezalnika ploskev iz izbranih ploskev @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Obrni mero - + Flip the normal direction of a dimension Obrni običajno smer mere @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Popravi - + Heal faulty Draft objects saved from an earlier FreeCAD version Popravi napačne objekte osnutka, ki so bili shranjeni v prejšnjih različicah FreeCADa @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Zrcali - + Mirrors the selected objects along a line defined by two points Prezrcali izbrane objekte preko črte, ki jo določata dve točki @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray Črtni vzorec - + Creates copies of a selected object along a selected path. Ustvari kopije izbranih objektov vzdolž izbrane črte. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Točka - + Creates a point object Ustvari točkovni objekt @@ -410,23 +410,23 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Scale - Merilo + Povečava Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy - Poveča/pomanjša izbrane objekte iz izhodiščne točke. Ctrl za pripenjanje, Shift za omejitev, Alt za kopiranje + Poveča/Pomanjša izbrane objekte iz izhodiščne točke. Ctrl za pripenjanje, Shift za omejitev, Alt za kopiranje Draft_SelectGroup - + Select group Izberi skupino - + Selects all objects with the same parents as this group Izbere vse objekte z enakimi nadrejenimi objekti kot to skupino @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Pogled 2D oblike - + Creates Shape 2D views of selected objects Ustvari poglede 2D oblik izbranih objektov @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Prikaži vrs. pripenjanja - + Shows Draft snap toolbar Prikaže orodno vrstico za pripenjanje @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Koti - + Snaps to 45 and 90 degrees points on arcs and circles Pripne na 45 in 90-stopinjske točke na lokih in krogih @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Središče - + Snaps to center of circles and arcs Pripne na središče krogov in lokov @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Mere - + Shows temporary dimensions when snapping to Arch objects Prikaže začasne mere ob pripenjanju na arhitekturne objekte @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Končna točka - + Snaps to endpoints of edges Pripne na končne točke robov @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Podaljšek - + Snaps to extension of edges Pripne na podaljške robov @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Mreža - + Snaps to grid points Pripne na mrežne točke @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Sečišče - + Snaps to edges intersections Pripne na sečišča robov @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Vklopi/Izklopi - + Activates/deactivates all snap tools at once Aktivira/deaktivira vsa orodja za pripenjanje naenkrat @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Sredina - + Snaps to midpoints of edges Pripne na sredino robov @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Bližnje - + Snaps to nearest point on edges Pripne na bližnje točke robov @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Orto - + Snaps to orthogonal and 45 degrees directions Pripne na ortogonalne in 45-stopinjske smeri @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Vzporedno - + Snaps to parallel directions of edges Pripne na vzporedne smeri robov @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Pravokotno - + Snaps to perpendicular points on edges Pripne na pravokotne točke robov @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Delovna ravnina - + Restricts the snapped point to the current working plane Omeji pripeto točko na trenutno delovno ravnino @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Preklopi mrežo - + Toggles the Draft grid on/off Vklopi/izklopi mrežo osnutka @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup Vidljive skupine - + Adds a VisGroup Doda vidljivo skupino @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Žica v b-zlepek - + Converts between Wire and BSpline Pretvori med žico in b-zlepkom @@ -947,17 +947,17 @@ stalno širno"), družina (npr. "Arial,Helvetica,sans") ali ime s slogom (npr. Uporabi izvirno barvo in širino črt - + if this is checked, paper space objects will be imported too če je to označeno, bodo uvoženi tudi objekti papirne površine - + if this is unchecked, texts/mtexts won't be imported če je to odznačeno, besedila/m-besedila ne bodo uvožena - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Ob uvažanju zlepkov v DXF se bodo ti preoblikovali v lomljenke. Ta vrednost je največja dolžina vsakega odseka lomljenke. Če je enaka 0, potem se celotni zlepek obravnava kot ravni odsek. @@ -999,17 +999,17 @@ Values with differences below this value will be treated as same. Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Označite to, če želite uvoziti tudi neimenovane bloke (ki se začnejo z *) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Če je označeno, bo FreeCAD poizkusil spojiti sovpadajoče objekte v enega. Pozor, to lahko traja nekaj časa … - + Join geometry Spoji geometrijo @@ -1154,22 +1154,22 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Desno - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable če je to označeno, bodo objekti istih ravni spojeni v bloke, kar bo pospešilo prikaz, vendar jih bo težje urejati - + Group layers into blocks Združi ravni v bloke - + If this is checked, all objects containing faces will be exported as 3d polyfaces Če je to označeno, bodo vsi objekti s ploskvami izvoženi kot večploskovni objekti 3D - + Export 3D objects as polyface meshes Izvozi objekte 3D kot večploskovne mreže @@ -1204,32 +1204,32 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Če je označeno, bo mreža vedno prikazana, ko je dejavno delovno okolje za osnutke. V nasprotnem primeru bo prikazana samo ob uporabi ukaza - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Če je to označeno, bodo uvožena besedila prejela običajno velikost besedila namesto velikosti dokumenta DXF - + Use standard font size for texts Uporabi običajno velikost pisave za besedila - + If this is checked, hatches will be converted into simple wires Če je to označeno, bo šrafiranje pretvorjeno v preproste žice - + Import hatch boundaries as wires Uvozi meje šrafiranja kot žice - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Če je to označeno, bodo lomljenke izrisane kot zaprte žice s pravilno širino, ko jo imajo določeno - + Render polylines with width Izriši lomljenke s širino @@ -1294,42 +1294,42 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Barva pomožne geometrije - + Import Uvozi - + texts and dimensions besedila in mere - + points točke - + layouts razporeditve - + *blocks *bloke - + If this is checked, the exported objects will be projected to reflect the current view direction Če je to označeno, bodo izvoženi objekti projecirani za odraz trenutne smeri pogleda - + Project exported objects along current view direction Projeciraj izvožene objekte skupaj s trenutno smerjo pogleda - + Ellipse export is badly supported. Use this to export them as polylines instead. Izvoz elips je slabo podprt. Uporabite to, da jih izvozite kot lomljenke. @@ -1449,52 +1449,52 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Zapolni objekte s ploskvami, ko je to mogoče - + Create Ustvari - + simple Part shapes preproste oblike delov - + If this is checked, parametric Draft objects will be created whenever possible če je to označeno, bodo ustvarjeni parametrični objekti osnutka, ko je to mogoče - + Draft objects Objekti osnutka - + If this is checked, sketches will be created whenever possible Če je to označeno, bodo ustvarjene skice, ko je to mogoče - + Sketches Skice - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Če je to označeno, bodo iz objektov DXF pridobljene barve, ko je to mogoče. V nasprotnem primeru bodo uporabljene privzete barve. - + Get original colors from the DXF file Dobi izvirne barve iz datoteke DXF - + Treat ellipses and splines as polylines Obravnavaj elipse in zlepke kot lomljenke - + Max Spline Segment: Najv. odsek zlepka: @@ -1509,37 +1509,32 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Prikaži pripono enot v merah - - Automatic update - Samodejno posodobi - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>Z označevanjem tega dovolite FreeCADu prenos in posodobitev</p><p>komponent, ki so potrebne za uvoz in izvoz DXF-a. To lahko storite tudi</p><p>ročno z obiskom strani https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Dovoli FreeCADu samodejni prenos in posodobitev knjižnic DXF - + If this is checked, only standard Part objects will be created (fastest) Če je to označeno, bodo ustvarjeni samo običajni objekti delov (najhitrejše) - + If this is checked, DXF layers will be imported as Draft VisGroups Če je to označeno, bodo ravni DXF uvožene kot vidljive skupine osnutka - + Use VisGroups Uporabi vidljive skupine - + mm mm @@ -1699,12 +1694,12 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Možnosti izvoza - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) Če je to označeno, bo uporabljen star uvozilnik Python, v nasprotnem primeru pa novi C++ (hitrejši, vendar z manj značilnostmi) - + Use legacy python importer Uporabi zastarel uvozilnik Python @@ -1734,15 +1729,30 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Onemogoči umerjanje enot - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. če je to označeno, bodo risalni pogledi izvoženi kot bloki. To lahko spodleti pri predlogah mlajših od R12. - + Export Drawing Views as blocks Izvozi risalne poglede kot bloke + + + Note: Not all the options below are used by the new importer yet + Opomba: nov uvozilnik še ne uporablja vseh spodnjih možnosti + + + + Show this dialog when importing and exporting + Prikaži to pogovorno okno med uvažanjem in izvažanjem + + + + Automatic update (legacy importer only) + Samodejna posodobitev (samo zastareli uvozilnik) + Workbench @@ -1765,162 +1775,162 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake. draft - + Draft Command Bar Ukazna vrstica osnutkov - + active command: dejaven ukaz: - + None Brez - + Active Draft command Dejaven ukaz osnutka - + X coordinate of next point Koordinata X naslednje točke - + X X - + Y Y - + Z Z - + Y coordinate of next point Koordinata Y naslednje točke - + Z coordinate of next point Koordinata Z naslednje točke - + Radius Polmer - + Radius of Circle Polmer kroga - + &Relative &Relativno - + Coordinates relative to last point or absolute (SPACE) Relativne koordinate glede na zadnjo točko ali absolutne (PRESLEDEK) - + F&illed &Zapolnjeno - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) To označite, če naj se objekt pojavi kot zapolnjen, v nasprotnem primeru se bo pojavil kot žični model (i) - + &Finish &Končaj - + Finishes the current drawing or editing operation (F) Zaključi trenutno opravilo risanja ali urejanja (F) - + If checked, command will not finish until you press the command button again Če je označeno, se ukaz ne bo zaključil, dokler ponovno ne pritisnete gumba za ukaz - + If checked, an OCC-style offset will be performed instead of the classic offset Če je označeno, bo izveden odmik sloga OCC namesto klasičnega - + &OCC-style offset Odmik sloga &OCC - + Add points to the current object Dodaj točke k trenutnemu objektu - + Remove points from the current object Odstrani točke iz trenutnega objekta - + Make Bezier node sharp Naredi Bezierjevo vozlišče ostro - + Make Bezier node tangent Naredi Bezierjevo vozlišče tangentno - + Make Bezier node symmetric Naredi Bezierjevo vozlišče simetrično - + &Undo &Razveljavi - + Undo the last segment (CTRL+Z) Razveljavi zadnji odsek (Ctrl + Z) - + Finishes and closes the current line (C) Zaključi in zapre trenutno črto (C) - + &Wipe &Počisti - + Wipes the existing segments of this line and starts again from the last point (W) Počisti obstoječe odseke te črte in začne znova pri zadnji točki (W) - + Number of sides Število strani @@ -1930,132 +1940,132 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Odmik - + XY XY - + Select XY plane Izberite ravnino XY - + XZ XZ - + Select XZ plane Izberite ravnino XZ - + YZ YZ - + Select YZ plane Izberite ravnino YZ - + View Pogled - + Select plane perpendicular to the current view Izberite ravnino, ki je pravokotna na trenutni pogled - + Do not project points to a drawing plane Ne projeciraj točke v risalno ravnino - + If checked, objects will be copied instead of moved (C) Če je označeno, bodo objekti kopirani namesto premaknjeni (C) - + Text string to draw Niz besedila, ki ga želite narisati - + String Niz - + Height of text Višina besedila - + Height Višina - + Intercharacter spacing Razmik med znaki - + Tracking Sledenje - + Full path to font file: Polna pot do datoteke pisave: - + Open a FileChooser for font file Odpri izbirnik datotek za datoteko pisave - + Set/unset a working plane Nastavi/Odstrani nastavitev delovne ravnine - + Line Color Barva črt - + Face Color Barva ploskev - + Line Width Širina črt - + Font Size Velikost pisave - + Apply to selected objects Uporabi za izbrane objekte - + Toggles Construction Mode Preklopi pomožni način - + Select Plane Izberi ravnino @@ -2070,240 +2080,240 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Žica osn. - + Circle Krog - + Center X Središče X - + Arc Lok - + Point Točka - + Distance Distance - + Trim Prireži - + Pick Object Izberi objekt - + Edit Uredi - + Global X Splošen X - + Global Y Splošen Y - + Global Z Splošen Z - + Local X Lokalen X - + Local Y Lokalen Y - + Local Z Lokalen Z - + Invalid Size value. Using 200.0. Neveljavna vrednost velikosti. Uporabljeno bo 200,0. - + Invalid Tracking value. Using 0. Neveljavna vrednost sledenja. Uporabljeno bo 0. - + Please enter a text string. Vnesite besedilni niz. - + Select a Font file Izberite datoteko pisave - + Please enter a font file. Vnesite datoteko pisave - + Draft.makeBSpline: not enough points Draft.makeBSpline: ni dovolj točk - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: enaki končni točki sta bili prisilno zaprti - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: neveljaven seznam točk - + Found groups: closing each open object inside Najdene skupine: zapiranje vsakega notranjega objekta - + Found mesh(es): turning into Part shapes Najdene mreže: spreminjanje v oblike delov - + Found 1 solidificable object: solidifying it Najden 1 objekt, ki ga je mogoče spremeniti v telo: spreminjanje - + Found 2 objects: fusing them Najdena 2 objekta: zlivanje - + Found 1 non-parametric objects: draftifying it Najeden 1 neparametričen objekt: spreminjanje v osnutek - + Found 1 open wire: closing it Najdena 1 odprta žica: zapiranje - + Found several open wires: joining them Najdenih več odprtih žic: spajanje - + Found several edges: wiring them Najdenih več robov: pretvarjanje v žico - + Unable to upgrade these objects. Teh objektov ni mogoče nadgraditi. - + Found 1 block: exploding it Najden 1 blok: razbijanje - + Found 1 parametric object: breaking its dependencies Najden 1 parametričen objekt: odstranjevanje njegovih odvisnosti - + Found 2 objects: subtracting them Najdena 2 objekta: odštevanje - + Found several faces: splitting them Najdenih več ploskev: razcepljanje - + Found several objects: subtracting them from the first one Najdenih več objektov: odštevanje od prvega - + Found 1 face: extracting its wires Najdena 1 ploskev: izvlečenje njenih žic - + Found only wires: extracting their edges Najdene samo žice: izvlečenje njihovih robov - + No more downgrade possible Podgradnja ni več mogoča - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: zaprta z enako prvo/zadnjo točko. Geometrija ni bila posodobljena. @@ -2660,7 +2670,7 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake. Scale - Merilo + Povečava @@ -2684,7 +2694,7 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake. - + Select an object to project Izberite objekt za projekcijo @@ -2705,61 +2715,61 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake. - + Active object must have more than two points/nodes Dejaven objekt mora imeti več kot dve točki/vozlišči - + Selection is not a Knot Izbira ni vozel - + Endpoint of BezCurve can't be smoothed Končne točke Bezierjeve krivulje ni mogoče zgladiti - + Select an object to convert Izberite objekt za pretvorbo - + Select an object to array Izberite objekt za kopiranje - + Please select base and path objects Izberite osnovni objekt in pot - + Create Point Ustvari točko - + Select an object to clone Izberite objekt za kloniranje - + Select face(s) on existing object(s) Izberite ploskve na obstoječih objektih @@ -2793,106 +2803,106 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake.Pripenjanje - + Found 1 multi-solids compound: exploding it Najden 1 večtelesen sestav: razbijanje - + Sides Strani - + BSplines and Bezier curves are not supported by this tool B-zlepkov in Bezierjevih krivulj to orodje ne podpira - + The given object is not planar and cannot be converted into a sketch. Dani objekt ni ravninski in ga ni mogoče pretvoriti v skico. - + Found several objects: creating a shell Najdenih več objektov: ustvarjanje lupine - + Found several coplanar objects or faces: creating one face Najdenih več koplanarnih objektov ali ploskev: ustvarjanje ene ploskve - + Found 1 linear object: converting to line Najden 1 premočrten objekt: pretvarjanje v črto - + Found 1 closed sketch object: creating a face from it Najdena 1 zaprta skica: ustvarjanje ploskve - + Found closed wires: creating faces Najdene zaprte žice: ustvarjanje ploskev - + Found several non-treatable objects: creating compound Najdenih več nepopravljivih objektov: ustvarjanje sestava - + Length Dolžina - + Angle Kot - + Length of current segment Dolžina trenutnega odseka - + Angle of current segment Kot trenutnega odseka - + Check this to lock the current angle (l) To izberite za zaklepanje trenutnega kota (I) - + &Select edge I&zberi rob - + Selects an existing edge to be measured by this dimension (E) Izbere obstoječi rob za merjenje s to mero (E) - + Auto Samodejno @@ -2904,22 +2914,22 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake. - + Convert to Sketch Pretvori v skico - + Convert to Draft Pretvori v osnutek - + Convert Pretvori - + Array Vzorec @@ -2959,7 +2969,7 @@ Vrednosti z razlikami pod to vrednostjo bodo obravnavane kot enake. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2978,79 +2988,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer. Da FreeCADu omogočite prenos teh knjižnic, odgovorite z Da. - + No object given Objekt ni podan - + The two points are coincident Dve točki se sovpadata - + Co&ntinue &Nadaljuj - + Cl&ose &Zapri - + C&opy &Kopiraj - + Faces Ploskve - + Remove Odstrani - + Add Dodaj - + Facebinder elements Elementi vezalnika ploskev - + Mirror Zrcali - + Select an object to mirror Izberite objekt za zrcaljenje - + Pick start point of mirror line: Izberite začetno točko zrcalne črte: - + Pick end point of mirror line: Izberite končno točko zrcalne črte: + + + Enter point + Vnesi točko + + + + Enter a new point with the given coordinates + Vnesi novo točko z danimi koordinatami + diff --git a/src/Mod/Draft/Resources/translations/Draft_sr.qm b/src/Mod/Draft/Resources/translations/Draft_sr.qm index 3474f00853cba7f328b474ea087f434fd2086f81..f2d34134ce9bc33b8f62f915ac96427d4be7e6b9 100644 GIT binary patch delta 4906 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 F{trD4!~g&Q delta 4315 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 IJ}&S7e-E)iP5=M^ diff --git a/src/Mod/Draft/Resources/translations/Draft_sr.ts b/src/Mod/Draft/Resources/translations/Draft_sr.ts index fc7e551d9..e20b348a7 100644 --- a/src/Mod/Draft/Resources/translations/Draft_sr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_sr.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Додај тачку - + Adds a point to an existing wire/bspline Adds a point to an existing wire/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Додај групи... - + Adds the selected object(s) to an existing group Додаје изабрани објекат постојећој групи @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Распоред - + Creates a polar or rectangular array from a selected object Creates a polar or rectangular array from a selected object @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Клон - + Clones the selected object(s) Клонира одабрани објекат/те @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Уклони тачку - + Removes a point from an existing wire or bspline Removes a point from an existing wire or bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Нацрт у Cкицу - + Convert bidirectionally between Draft and Sketch objects Convert bidirectionally between Draft and Sketch objects @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Flip Dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Исцели - + Heal faulty Draft objects saved from an earlier FreeCAD version Исцели неисправан цртеж сачуван у ранијој верзији FreeCAD-a @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Огледало - + Mirrors the selected objects along a line defined by two points Пресликава изабране објекте дуж линије одређене двема тачкама @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Ставара умношке изабраног објекта на изабраној путањи. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Тачка - + Creates a point object Креира тачку објекта @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Одабери групу - + Selects all objects with the same parents as this group Одабире све објекте са истим родитељима за ову групу @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D приказ облика - + Creates Shape 2D views of selected objects Cтвара 2D поглед одабраних објеката @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Show Snap Bar - + Shows Draft snap toolbar Shows Draft snap toolbar @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Углови - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Центар - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Димензије - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Крајња тачка - + Snaps to endpoints of edges Поравнај са крајњим тачкама ивица @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Додатак - + Snaps to extension of edges Поравнај са продужетком ивица @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Мрежа - + Snaps to grid points Поравнај са мрежним тачкама @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Преcек - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Средишња тачка - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Најближи - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Паралелно - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Управан - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Радна раван - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Toggle Grid - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Wire to BSpline - + Converts between Wire and BSpline Converts between Wire and BSpline @@ -944,17 +944,17 @@ such as "Arial:Bold" Оригинална боја и ширина линије - + if this is checked, paper space objects will be imported too if this is checked, paper space objects will be imported too - + if this is unchecked, texts/mtexts won't be imported if this is unchecked, texts/mtexts won't be imported - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. @@ -996,17 +996,17 @@ Values with differences below this value will be treated as same. Вредноcти које cе разликују иcпод те вредноcти ће бити третиране као једнаке. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Означите ово ако желите да неименовани блокови(почевши cа *) буду увезени - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... - + Join geometry Join geometry @@ -1151,22 +1151,22 @@ Values with differences below this value will be treated as same. Деcно - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - + Group layers into blocks Групира слојеве у блокове - + If this is checked, all objects containing faces will be exported as 3d polyfaces If this is checked, all objects containing faces will be exported as 3d polyfaces - + Export 3D objects as polyface meshes Export 3D objects as polyface meshes @@ -1201,32 +1201,32 @@ Values with differences below this value will be treated as same. If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document - + Use standard font size for texts Корист стандардну величину фонта за текст - + If this is checked, hatches will be converted into simple wires If this is checked, hatches will be converted into simple wires - + Import hatch boundaries as wires Import hatch boundaries as wires - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width - + Render polylines with width Render polylines with width @@ -1291,42 +1291,42 @@ Values with differences below this value will be treated as same. Боја конcтрукционе геометрије - + Import Увези - + texts and dimensions текcт и димензије - + points тачке - + layouts layouts - + *blocks *блокови - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1446,52 +1446,52 @@ Values with differences below this value will be treated as same. Попуни објекте cа површима кад год је могуће - + Create Stvori - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible Ако је ово обележено параметарcки Нацрт објекти ће бити направљени кад год је то могуће - + Draft objects Нацрт објекти - + If this is checked, sketches will be created whenever possible Ако је ово обележено, cкице ће бити направљене кад год је то могуће - + Sketches Cкице - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. Ако је ово обележено, боје ће бити преузете из DXF објеката, кад год је то могуће.У cупротном,биће примењене подразумеване боје. - + Get original colors from the DXF file Преузми оригиналне боје из DXF датотеке - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1506,37 +1506,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Аутоматcко оcвежавање - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>Ако ово обележите,дозволићете FreeCAD-у да преузме и ажурира</p><p>компоненте потребне за DXF увоз и извоз. Такође то можете урадити</p><p>мануелно,поcећивањем https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Дозволи FreeCAD-у да аутоматcки преузима и ажурира DXF библиотеке - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm мм @@ -1696,12 +1691,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1731,15 +1726,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1762,162 +1772,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Нацрт Командна трака - + active command: активне команде: - + None Ниједан - + Active Draft command Активна команда нацрта - + X coordinate of next point 'X' координата следеће тачке - + X 'X' - + Y 'Y' - + Z 'Z' - + Y coordinate of next point 'Y' координата следеће тачке - + Z coordinate of next point 'Z' координата следеће тачке - + Radius Полупречник - + Radius of Circle Полупречник круга - + &Relative &Релативно - + Coordinates relative to last point or absolute (SPACE) Координате у односу на последњу тачку или апсолутна (размак) - + F&illed Ис&пуњено - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - + &Finish &Заврши - + Finishes the current drawing or editing operation (F) Завршава актуелни цртеж или покренуту измену (Ф) - + If checked, command will not finish until you press the command button again If checked, command will not finish until you press the command button again - + If checked, an OCC-style offset will be performed instead of the classic offset If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset &OCC-style offset - + Add points to the current object Додај тачке актуелном објекту - + Remove points from the current object Обриши тачке из актуелног објекта - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo Врати - + Undo the last segment (CTRL+Z) Поништи последњи сегмент (CTRL+Z) - + Finishes and closes the current line (C) Завршава и затвара тренутну линију (C) - + &Wipe &Обриши - + Wipes the existing segments of this line and starts again from the last point (W) Брише постојеће сегменте ове линије и почиње поново од задње тачке (W) - + Number of sides Број страна @@ -1927,132 +1937,132 @@ Values with differences below this value will be treated as same. Померај - + XY 'XY' - + Select XY plane Изаберите 'XY' равaн - + XZ 'XZ' - + Select XZ plane Изаберите 'XZ' раван - + YZ 'YZ' - + Select YZ plane Изаберите 'YZ' равaн - + View Приказ - + Select plane perpendicular to the current view Изаберите раван нормалну у односу на тренутни приказ - + Do not project points to a drawing plane Немојте пројектовати тачке на раван цртања - + If checked, objects will be copied instead of moved (C) Ако је потврђен избор, објекти ће бити копирани уместо премештени (C) - + Text string to draw Text string to draw - + String Нит - + Height of text Виcина текcта - + Height Висина - + Intercharacter spacing Intercharacter spacing - + Tracking Праћење - + Full path to font file: Цео пут до датотеке фонта: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Боја линије - + Face Color Боја лица - + Line Width Ширина линије - + Font Size Величина слова - + Apply to selected objects Примени на изабране објекте - + Toggles Construction Mode Укључује режим изградње - + Select Plane Изаберите раван @@ -2067,241 +2077,241 @@ Values with differences below this value will be treated as same. Д-жица - + Circle Круг - + Center X Центар 'X' - + Arc Лук - + Point Тачка - + Distance Distance - + Trim Trim - + Pick Object Изаберите објекат - + Edit Измени - + Global X Global X - + Global Y Global Y - + Global Z Global Z - + Local X Local X - + Local Y Local Y - + Local Z Local Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Одабери датотеку Фонта - + Please enter a font file. Молим, унеcите датотеку фонта. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Found groups: closing each open object inside - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Found 1 solidificable object: solidifying it - + Found 2 objects: fusing them Пронађено 2 предмета: спајам их - + Found 1 non-parametric objects: draftifying it Found 1 non-parametric objects: draftifying it - + Found 1 open wire: closing it Found 1 open wire: closing it - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Found several edges: wiring them - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Found 1 parametric object: breaking its dependencies - + Found 2 objects: subtracting them Found 2 objects: subtracting them - + Found several faces: splitting them Found several faces: splitting them - + Found several objects: subtracting them from the first one Found several objects: subtracting them from the first one - + Found 1 face: extracting its wires Found 1 face: extracting its wires - + Found only wires: extracting their edges Found only wires: extracting their edges - + No more downgrade possible Даљње умањивање није могуће - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2661,7 +2671,7 @@ Values with differences below this value will be treated as same. Изаберите фактор размере: - + Select an object to project Select an object to project @@ -2682,60 +2692,60 @@ Values with differences below this value will be treated as same. - + Active object must have more than two points/nodes Активни објекат мора да има више од две тачке/чвора - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Нацртај тачку - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2769,106 +2779,106 @@ Values with differences below this value will be treated as same. Snapping - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Стране - + BSplines and Bezier curves are not supported by this tool Овај алат не подржава БСплајн и Безијеове криве - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Дужина - + Angle Угао - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Изаберите ивицу - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2880,22 +2890,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Пребаци у скицу - + Convert to Draft Пребаци у нацрт - + Convert Пребаци - + Array Распоред @@ -2935,7 +2945,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2954,79 +2964,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Про&дужи - + Cl&ose За&твори - + C&opy У&множи - + Faces Површи - + Remove Obriši - + Add Додај - + Facebinder elements Facebinder elements - + Mirror Огледало - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_sv-SE.qm b/src/Mod/Draft/Resources/translations/Draft_sv-SE.qm index e0d320e24934012acdfc3df05fd511c9ab326796..b1f7d65ccafafea7bd165545122bfc18e5cd39d8 100644 GIT binary patch delta 4890 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 Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Lägg till punkt - + Adds a point to an existing wire/bspline Lägger till en punkt i en befintlig tråd/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Lägg till i grupp ... - + Adds the selected object(s) to an existing group Lägger till de markerade objekten till en befintlig grupp @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Matris - + Creates a polar or rectangular array from a selected object Skapar en polar eller rektangulär matris från ett markerat objekt @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klon - + Clones the selected object(s) Klonar ett eller flera valda objekt @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Ta bort punkt - + Removes a point from an existing wire or bspline Tar bort en punkt från en befintlig tråd eller bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Rita till skiss - + Convert bidirectionally between Draft and Sketch objects Konvertera bidirektionellt mellan ritning och skiss objekt @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Växla riktning på dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Skapar kopior av ett markerat objekt utmed vald bana. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Punkt - + Creates a point object Skapar punktobjekt @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Välj grupp - + Selects all objects with the same parents as this group Markerar alla objekt med samma föräldrar som denna grupp @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D form vy - + Creates Shape 2D views of selected objects Skapar form 2D vyer för markerade objekt @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Visa snäppfält - + Shows Draft snap toolbar Visar snäpp-verktygsfältför ritning @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Vinklar - + Snaps to 45 and 90 degrees points on arcs and circles Fäst mot 45- och 90-graderspunkter på bågar och cirklar @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Mitten - + Snaps to center of circles and arcs Fäst mot mitten av cirklar och bågar @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensioner - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Ändpunkt - + Snaps to endpoints of edges Fäst mot kanters ändpunkter @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Förlängning - + Snaps to extension of edges Fäst mot kanters förlängning @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Rutnät - + Snaps to grid points Fäst mot rutnät @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Skärning - + Snaps to edges intersections Fäst mot kanters skärningspunkter @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Växla på/av - + Activates/deactivates all snap tools at once Aktiverar/inaktiverar alla fästverktyg samtidigt @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Mittpunkt - + Snaps to midpoints of edges Fäst mot kanters mittpunkt @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Närmaste - + Snaps to nearest point on edges Fäst mot närmaste punkt på kanter @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Vinkelrät - + Snaps to orthogonal and 45 degrees directions Fäst mot vinkelräta och 45 graders riktningar @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallell - + Snaps to parallel directions of edges Fäst mot kanters parallellriktningar @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Vinkelrätt - + Snaps to perpendicular points on edges Fäst mot kanters vinkelräta punkter @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Arbetsyta - + Restricts the snapped point to the current working plane Begränsar fästpunkter till den aktuella arbetsytan @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Tänd/släck rutnät - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Tråd till BSpline - + Converts between Wire and BSpline Konverterar mellan tråd och BSpline @@ -947,17 +947,17 @@ som "Arial:Bold" Original färg och linjebredd - + if this is checked, paper space objects will be imported too om denna är ikryssad så kommer pappersrymd objekt att importeras också - + if this is unchecked, texts/mtexts won't be imported Om detta inte är ikryssad, så kommer texter/mtexts inte importeras - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Vid export av splines till DXF, så omvandlas de till polylines. Detta värde är den maximala längden för varje polyline segment. Om 0, så behandlas hela splinen som ett rakt segment. @@ -998,17 +998,17 @@ Values with differences below this value will be treated as same. Detta är det värde som används av funktioner som använder en tolerans. Värden med skillnader under detta värde kommer att behandlas som samma. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Markera här om du vill att icke-namngivna block (börjar med *) ska importeras också - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Om markerat, så kommer freecad att försöka förena sammanfallande objekt till trådar. Akta dig, detta kan ta en stund ... - + Join geometry Förena geometri @@ -1153,22 +1153,22 @@ Values with differences below this value will be treated as same. Höger - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Om detta är markerat, så kommer objekt från samma lager att förenas till skissblock, vilket ger snabbare skärmuppdatering, men reducerar redigeringsförmågan - + Group layers into blocks Gruppera lager i block - + If this is checked, all objects containing faces will be exported as 3d polyfaces Om detta är markerat, så kommer alla objekt som innehåller ytor att exporteras som 3D-polyfaces - + Export 3D objects as polyface meshes Exportera 3D-objekt som polyface nät @@ -1203,32 +1203,32 @@ Values with differences below this value will be treated as same. Om markerat, så kommer rit rutnätet alltid vara synligt när ritarbetsbänken är aktiv, annars bara när du använder ett kommando - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Om detta är markerat, så kommer importerade texter att få standard ritnings-textstorlek, i stället för den storlek som de har i DXF-dokumentet - + Use standard font size for texts Använd standardteckensnittsstorlek för texter - + If this is checked, hatches will be converted into simple wires Om detta är markerat, så kommer tvärsnittsmarkeringar att konverteras till enkla trådar - + Import hatch boundaries as wires Importera tvärsnittsmarkeringsgränser som trådar - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Om denna är markerad, så kommer de polylinjer som har en definierad bredd att renderas som stängda trådar med korrekt bredd - + Render polylines with width Rendera polylinjer med bredd @@ -1293,42 +1293,42 @@ Values with differences below this value will be treated as same. Konstruktionsgeometrifärg - + Import Importera - + texts and dimensions texter och dimensioner - + points punkter - + layouts layouter - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1448,52 +1448,52 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create Skapa - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Sketches - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1508,37 +1508,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Automatisk uppdatering - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/> <body><p>Genom att välja detta, tillåter du FreeCAD att hämta och uppdatera de</p> <p>komponenter som behövs för DXF-import och -export. Alternativt kan du göra detta</p> <p>manuellt, genom att besöka https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1698,12 +1693,12 @@ Values with differences below this value will be treated as same. Importalternativ - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1733,15 +1728,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1764,162 +1774,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Draft Command Bar - + active command: Aktivt kommando: - + None Inget - + Active Draft command Aktivt ritkommando - + X coordinate of next point Nästa punkts X koordinat - + X X - + Y Y - + Z Z - + Y coordinate of next point Nästa punkts Y koordinat - + Z coordinate of next point Nästa punkts Z koordinat - + Radius Radie - + Radius of Circle Cirkelradie - + &Relative &Relativ - + Coordinates relative to last point or absolute (SPACE) Relativa koordinater till sista punkten eller absoluta (MELLANSLAG) - + F&illed F&ylld - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Markera detta om objektet ska visas som fyllt, annars kommer det att visas som trådmodell (i) - + &Finish &Klart - + Finishes the current drawing or editing operation (F) Avslutar den aktuella ritningen eller redigeringsoperationen (F) - + If checked, command will not finish until you press the command button again Om markerat, så avslutas inte kommandot förrän du trycker på kommandoknappen igen - + If checked, an OCC-style offset will be performed instead of the classic offset Om detta är markerat så kommer en offset i OCC-stil utföras istället för klassisk offset - + &OCC-style offset &OCC-stil offset - + Add points to the current object Lägg till punkter till det aktuella objektet - + Remove points from the current object Ta bort punkter från det aktuella objektet - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo Ån&gra - + Undo the last segment (CTRL+Z) Ångra det sista segmentet (CTRL+Z) - + Finishes and closes the current line (C) Avslutar och stänger den pågående linjen (C) - + &Wipe &Rensa - + Wipes the existing segments of this line and starts again from the last point (W) Rensar befintliga segment av denna linje och börjar om från den sista punkten (W) - + Number of sides Antal sidor @@ -1929,132 +1939,132 @@ Values with differences below this value will be treated as same. Offset - + XY XY - + Select XY plane Välj XY plan - + XZ XZ - + Select XZ plane Välj XZ plan - + YZ YZ - + Select YZ plane Välj YZ plan - + View Vy - + Select plane perpendicular to the current view Välj plan vinkelrätt till nuvarande vy - + Do not project points to a drawing plane Projicera inte punkter till ett ritplan - + If checked, objects will be copied instead of moved (C) Om markerad, så kommer objekten att kopieras istället för att flyttas - + Text string to draw Text att rita - + String Sträng - + Height of text Texthöjd - + Height Höjd - + Intercharacter spacing Intercharacter spacing - + Tracking Spårning - + Full path to font file: Fullständig sökväg till teckensnittsfil: - + Open a FileChooser for font file Öppna fildialog för teckensnittsfil - + Set/unset a working plane Ställ in/inaktivera ett fungerande plan - + Line Color Linjefärg - + Face Color Ytfärg - + Line Width Linjebredd - + Font Size Teckenstorlek - + Apply to selected objects Applicera på valda objekt - + Toggles Construction Mode Växlar konstruktionsläge - + Select Plane Välj plan @@ -2069,230 +2079,230 @@ Values with differences below this value will be treated as same. DWire - + Circle Cirkel - + Center X X center - + Arc Cirkelbåge - + Point Punkt - + Distance Distans - + Trim Trimma - + Pick Object Välj objekt - + Edit Redigera - + Global X Globalt X - + Global Y Globalt Y - + Global Z Globalt Z - + Local X Lokalt X - + Local Y Lokalt Y - + Local Z Lokalt Z - + Invalid Size value. Using 200.0. Ogiltigt värde. Använder 200,0 istället. - + Invalid Tracking value. Using 0. Ogiltigt värde för spårning. Använder 0 som värde. - + Please enter a text string. Ange en textsträng. - + Select a Font file Välj en teckensnittsfil - + Please enter a font file. Ange en teckensnittsfil. - + Draft.makeBSpline: not enough points Draft.makeBSpline: ej tillräckligt antal punkter - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Lika slutpunkter tvingade sluten - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Ogiltigt punktlista - + Found groups: closing each open object inside Hittade grupper: stänger alla öppna objekt inuti dem - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Hittade 1 solidifierbart objekt: solidifierar det - + Found 2 objects: fusing them Hittade 2 objekt: förenar dem - + Found 1 non-parametric objects: draftifying it Hittade 1 icke-parametriskt objekt: görs om till skiss - + Found 1 open wire: closing it Hittade 1 öppen tråd: stänger den - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Hittade flera kanter: gör trådar av dem - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Fann 1 block: exploderande det - + Found 1 parametric object: breaking its dependencies Hittade 1 parametriskt objekt: bryter dess beroenden - + Found 2 objects: subtracting them Hittade 2 objekt: subtraherar dem - + Found several faces: splitting them Hittade flera ytor: delar dem - + Found several objects: subtracting them from the first one Hittade flera objekt: subtraherar dem från den första - + Found 1 face: extracting its wires Hittade 1 yta: utvinner dess trådar - + Found only wires: extracting their edges Hittade bara trådar: utvinner deras kanter - + No more downgrade possible Ingen mer nedgradering är möjlig - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2666,7 +2676,7 @@ Values with differences below this value will be treated as same. - + Select an object to project Välj ett objekt att projektera @@ -2686,60 +2696,60 @@ Values with differences below this value will be treated as same. Denna objekttyp kan inte redigeras - + Active object must have more than two points/nodes Aktiva objekt måste ha mer än två punkter/noder - + Selection is not a Knot Markerat föremål är inte en knut - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Välj ett objekt att konvertera - + Select an object to array Välj ett objekt att föra in i matrisen - + Please select base and path objects Vänligen välj objekten base och path - + Create Point Skapa punkt - + Select an object to clone Välj ett objekt att klona - + Select face(s) on existing object(s) Välj yta/ytor på befintligt/befintliga objekt @@ -2773,106 +2783,106 @@ Values with differences below this value will be treated as same. Fästning - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Sidor - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Längd - + Angle Vinkel - + Length of current segment Längd på aktuellt segment - + Angle of current segment Vinkel på aktuellt segment - + Check this to lock the current angle (l) Markera för att låsa nuvarande vinkel (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Automatisk @@ -2884,22 +2894,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Konvertera - + Array Matris @@ -2939,7 +2949,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2958,79 +2968,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose S&täng - + C&opy K&opiera - + Faces Ytor - + Remove Ta bort - + Add Lägg till - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_tr.qm b/src/Mod/Draft/Resources/translations/Draft_tr.qm index 40542bfaf061e7f7ea70e80c0dce7f9c025e89cd..20056e31e73c1ba1cd57c1c2f75de065e84c0a3a 100644 GIT binary patch delta 4859 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 delta 4260 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 Mm_dmbi+2tDKjDx%xc~qF diff --git a/src/Mod/Draft/Resources/translations/Draft_tr.ts b/src/Mod/Draft/Resources/translations/Draft_tr.ts index 8d0d87acb..1ba90dff6 100644 --- a/src/Mod/Draft/Resources/translations/Draft_tr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_tr.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Nokta Ekle - + Adds a point to an existing wire/bspline Mevcut bağlantı/bspline'a bir nokta ekler @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Gruba ekle... - + Adds the selected object(s) to an existing group Seçili nesneyi/nesneleri mevcut bir gruba ekler @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Dizi - + Creates a polar or rectangular array from a selected object Seçilen bir nesneden yuvarlak ya da dikdörtgen bir dizi oluşturur @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Klon - + Clones the selected object(s) Seçili nesnelerin birebir kopyalarını oluşturur @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Nokta Kaldır - + Removes a point from an existing wire or bspline Mevcut bağlantı veya bspline içinden bir noktayı kaldırır @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Taslaktan krokiye - + Convert bidirectionally between Draft and Sketch objects Taslak ve Kroki nesneleri arasında çift yönlü olarak dönüştür @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Flip Dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creates copies of a selected object along a selected path. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Nokta - + Creates a point object Bir nokta nesnesi oluşturur @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Grubu seç - + Selects all objects with the same parents as this group Aynı ebeveynelere sahip nesneleri bu grup olarak seçer @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view Şekil 2B görünümü - + Creates Shape 2D views of selected objects Seçili nesnelerin Şekil 2B görünümünü oluşturur @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Yaslanma çubuğunu göster - + Shows Draft snap toolbar Taslak yaslanma araç çubuğunu gösterir @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Angles - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Center - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Dimensions - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Endpoint - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extension - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grid - + Snaps to grid points Snaps to grid points @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Intersection - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Midpoint - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nearest - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallel - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Working Plane - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Izgarayı(klavuzu) Aç/Kapa - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline BSpline'a bağla - + Converts between Wire and BSpline Tel ve BSpline arasında dönüştürür @@ -945,17 +945,17 @@ Bu değer, "Arial", varsayılan stiller "sans", "serif" veya "mono", veya aile a Öz renk ve çizgi kalınlığını kullan - + if this is checked, paper space objects will be imported too Eğer bu işaretliyse, sayfa uzay nesnesi de içeri aktarılacaktır - + if this is unchecked, texts/mtexts won't be imported Eğer bu işaretli değilse, metinler(texts)/mmetinler(mtexts) içeri aktarılmayacaktır - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Dilimleri DXF'e aktarırken, Dilimler çokludoğrulara dönüşürler. Bu değer her bir çokludoğru bölümü için en büyük uzunluktur.. Eğer sıfırsa, bütün dilime tek bir bölüm gibi davranılmıştır. @@ -996,17 +996,17 @@ Values with differences below this value will be treated as same. Bu bir tolerans kullanan işlevler tarafından kullanılan değerdir. Bu değerin altında farklılıkları olan değerler aynı olarak kabul edilecektir. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Eğer isimlendirilmemiş blokları istiyorsanız, bunu işaretleyin - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Bu onay kutusu işaretliyse, freecad çakışan nesneleri tel olarak birleştirmeyi deneyecek. Dikkat edin, bu biraz zaman alabilir... - + Join geometry Geometriyi birleştir @@ -1151,22 +1151,22 @@ Values with differences below this value will be treated as same. Sağ - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Seçiliyse, aynı katmanlardan nesneler Taslak bloklarında birleştirilecektir, görüntü hızlanır ama onları düzenlemek daha az kolay olacaktır - + Group layers into blocks Grup katmanları bloklara - + If this is checked, all objects containing faces will be exported as 3d polyfaces Seçiliyse, yüzleri içeren tüm nesneler 3d polyfaces olarak ihraç edilecektir - + Export 3D objects as polyface meshes 3d nesnelerini Polyface kafesler olarak ihraç et @@ -1201,32 +1201,32 @@ Values with differences below this value will be treated as same. Eğer işaretliyse, Taslak tezgahı etkin olduğunda Taslak ızgarası(klavuzu) daima görünürdür. Aksi taktirde sadece bir komut kullanıldığında görünür - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Seçiliyse, ithal edilen metinler DXF belgesi içindeki boyutları yerine, standart taslak metin boyutunu alacaktır - + Use standard font size for texts Metinler için standart yazı tipi boyutunu kullan - + If this is checked, hatches will be converted into simple wires Seçiliyse, taramalar basit tellere dönüştürülür - + Import hatch boundaries as wires Tarama sınır boyutlarını teller olarak ithal et - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width Bu seçiliyse, polylineların tanımlanmış genişliği varsa, onlar doğru genişlikle kapalı teller olarak oluşturulur - + Render polylines with width Polylineları genişlik ile işle @@ -1291,42 +1291,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Import - + texts and dimensions texts and dimensions - + points points - + layouts layouts - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1446,52 +1446,52 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create Oluştur - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Sketches - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1506,37 +1506,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1696,12 +1691,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1731,15 +1726,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1762,162 +1772,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Draft Command Bar - + active command: Etkin söz dizisi: - + None Hiçbiri - + Active Draft command Aktif Çizim komutu - + X coordinate of next point birsonraki noktanın X koordinatı - + X X - + Y Y - + Z Z - + Y coordinate of next point birsonraki noktanın Y koordinatı - + Z coordinate of next point birsonraki noktanın Z koordinatı - + Radius Yarıçap - + Radius of Circle Çemberin Yarıçapı - + &Relative &Göreli - + Coordinates relative to last point or absolute (SPACE) Mutlak ya da son noktaya göre koordinatlar.(SPACE tuşu) - + F&illed &Dolduruldu - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Bunu eğer nesne doldurulmuş görünmesiyle işaretleyin, yoksa telkafes olarak görünecektir(i) - + &Finish &Bitir - + Finishes the current drawing or editing operation (F) Geçerli çizim ya da düzenleme işlemini(F) tamamlar - + If checked, command will not finish until you press the command button again Eğer işaretliyse, komut tekrar komut tuşuna basana kadar bitmeyecek - + If checked, an OCC-style offset will be performed instead of the classic offset Bu onay kutusu seçiliyse, klasik kaydırmanın yerine OCC-tarzı kaydırma gerçekleştirilecek - + &OCC-style offset &amp; OCC tarzı ofset - + Add points to the current object Etkin nesneye noktalar ekle - + Remove points from the current object Etkin nesneden noktalar kaldır - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo Gerial - + Undo the last segment (CTRL+Z) Son segmenti geri al (CTRL+Z) - + Finishes and closes the current line (C) Sonlandırır ve geçerli çizgiyi kapatır (C) - + &Wipe & Silme - + Wipes the existing segments of this line and starts again from the last point (W) Bu çizginin mevcut bölümlerini siler ve son noktadan yeniden başlar(W) - + Number of sides Yüzlerin sayısı @@ -1927,132 +1937,132 @@ Values with differences below this value will be treated as same. Uzaklaşma - + XY XY - + Select XY plane XY düzlemini seçin - + XZ XZ - + Select XZ plane XZ düzlemini seçin - + YZ YZ - + Select YZ plane YZ düzlemini seçin - + View Görünüm - + Select plane perpendicular to the current view Geçerli görünüşe dik düzlemi seçin - + Do not project points to a drawing plane Çizim düzlemine noktaların izdüşümünü almayın - + If checked, objects will be copied instead of moved (C) Bu onay kutusu işaretliyse, nesneler taşıma değil kopyalama yapılır (C) - + Text string to draw Text string to draw - + String Dize - + Height of text Height of text - + Height Yükseklik - + Intercharacter spacing Intercharacter spacing - + Tracking Tracking - + Full path to font file: Full path to font file: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color Çizgi rengi - + Face Color Yüz rengi - + Line Width Çizgi genişliği - + Font Size Yazı tipi boyutu - + Apply to selected objects Seçili nesnelere uygulayın - + Toggles Construction Mode Konstrüksiyon duna geçer - + Select Plane Düzlemi seçin @@ -2067,229 +2077,229 @@ Values with differences below this value will be treated as same. DWire - + Circle Çember - + Center X Merkez X - + Arc Çember yayı - + Point Nokta - + Distance Uzaklık - + Trim Kırp - + Pick Object Nesne Seç - + Edit Düzenle - + Global X Global X - + Global Y Global Y - + Global Z Global Z - + Local X Local X - + Local Y Local Y - + Local Z Local Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Select a Font file - + Please enter a font file. Please enter a font file. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Gruplar bulundu: içindeki açık her nesne kapatılıyor - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Katılaştırılabilir 1 nesne bulundu: Katılaştırılıyor - + Found 2 objects: fusing them 2 Nesne bulundu: eritiliyorlar - + Found 1 non-parametric objects: draftifying it 1 Parametrik olmayan nesne bulundu: Eskizleniyor - + Found 1 open wire: closing it 1 açık çizgi bulundu: kapatılıyor - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them Birkaç kenar bulundu:Kablolanıyor - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Bulunan 1 parametrik nesne: bağımlılıkları çözülüyor - + Found 2 objects: subtracting them Bulunan 2 nesne: birbirlerinden çıkarılıyor - + Found several faces: splitting them Bulunan birden fazla yüz: yüzler ayrıştırılıyor - + Found several objects: subtracting them from the first one Bulunan birden fazla nesne: ilk nesneden bulunanlar çıkarılıyor - + Found 1 face: extracting its wires Bulunan 1 yüz: bağlantıları ayıklanıyor - + Found only wires: extracting their edges Bulunan sadece bağlantılar: kenarları ayıklanıyor - + No more downgrade possible Daha fazla versiyon düşürme mümkün değil - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2640,7 +2650,7 @@ Values with differences below this value will be treated as same. Ölçekleme katsayısını seçin: - + Select an object to project Select an object to project @@ -2660,60 +2670,60 @@ Values with differences below this value will be treated as same. Bu nesne düzenlenebilir değildir - + Active object must have more than two points/nodes Etkin nesne ikiden fazla nokta/bağlanma noktasına sahip olmalıdır - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Create Point - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2747,106 +2757,106 @@ Values with differences below this value will be treated as same. Yapışma - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Sides - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Uzunluk - + Angle Açı - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2858,22 +2868,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Convert - + Array Dizi @@ -2913,7 +2923,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2932,79 +2942,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose &Kapat - + C&opy K&opyala - + Faces Faces - + Remove Kaldır - + Add Ekle - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_uk.qm b/src/Mod/Draft/Resources/translations/Draft_uk.qm index 0c90331abbeb8947c91a18f25332cd8c465e5b77..839da8687d82d1d2dda5fd161797a996b144136c 100644 GIT binary patch delta 4871 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 f_!E;{)9!rx<5y|3cW>6F9Y65h(6sl@{fGQNM Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point Додати Точку - + Adds a point to an existing wire/bspline Adds a point to an existing wire/bspline @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... Додати до групи... - + Adds the selected object(s) to an existing group Додати обраний(ні) об’єкт(ти) до вже створеної групи @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array Масив - + Creates a polar or rectangular array from a selected object Creates a polar or rectangular array from a selected object @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone Клонувати - + Clones the selected object(s) Клони вибраного об'єкту(ів) @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point Видалити Точку - + Removes a point from an existing wire or bspline Removes a point from an existing wire or bspline @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch Креслення у Ескіз - + Convert bidirectionally between Draft and Sketch objects Convert bidirectionally between Draft and Sketch objects @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Зібрання поверхонь - + Creates a facebinder object from selected face(s) Поєднати обрані поверхні у зібрання @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Обернений напрямок написання розміру - + Flip the normal direction of a dimension Обернути нормальний напрямок написання розміру @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Виправити - + Heal faulty Draft objects saved from an earlier FreeCAD version Виправити пошкоджене креслення об'єкту, який був збережений у попередній версії FreeCAD @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creates copies of a selected object along a selected path. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point Точка - + Creates a point object Створює об'єкт точка @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group Обрати групу - + Selects all objects with the same parents as this group Обрати всі об’єкти, які були породжені такими самими групами, як і ця @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D вигляд фігури - + Creates Shape 2D views of selected objects Creates Shape 2D views of selected objects @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar Показати панель прив'язування - + Shows Draft snap toolbar Показати панель інструментів прив'язки креслення @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Кути - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Центр - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions Розміри - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Кінцева точка - + Snaps to endpoints of edges Прив'язати кінцеві точки до ребер @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extension - + Snaps to extension of edges Прив'язати до подовження ребер @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Сітка - + Snaps to grid points Прив'язати до сітки точок @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection Перетин - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Середня точка - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Найближчий - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Паралельно - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Перпендикулярно - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Робоча площина - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid Показати або приховати сітку - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline Wire to BSpline - + Converts between Wire and BSpline Converts between Wire and BSpline @@ -947,17 +947,17 @@ such as "Arial:Bold" Оригінальний колір та товщина лінії - + if this is checked, paper space objects will be imported too якщо це обрано, об'єкти простору аркуша будуть також імпортовані - + if this is unchecked, texts/mtexts won't be imported якщо це НЕ обрано, тексти/мультитексти не будуть імпортуватись - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. При експортуванні сплайнів у DXF, вони трансформуються у полілінії. Це значення є максимальною довжиною кожного сегменту полілінії. Якщо значення дорівнює 0, то весь сплайн розглядається як відрізок прямої. @@ -999,17 +999,17 @@ Values with differences below this value will be treated as same. Значення, що відхиляються на меншу величину, також будуть вірні. - + Check this if you want the non-named blocks (beginning with a *) to be imported too Check this if you want the non-named blocks (beginning with a *) to be imported too - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... - + Join geometry Об'єднати геометрію @@ -1154,22 +1154,22 @@ Values with differences below this value will be treated as same. Направо - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - + Group layers into blocks Групувати шари у блоки - + If this is checked, all objects containing faces will be exported as 3d polyfaces Якщо встановлено, всі об'єкти, що мають грані, будуть експортовані у 3D багатогранники - + Export 3D objects as polyface meshes Експортувати 3D-об'єкти як багатогранні сітки @@ -1204,32 +1204,32 @@ Values with differences below this value will be treated as same. If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document Якщо ця позначка встановлена, імпортований текст отримає стандартний розмір тексту креслення замість розміру, визначеного у DXF-документі - + Use standard font size for texts Використовувати стандартний розмір шрифту для текстів - + If this is checked, hatches will be converted into simple wires Якщо вибрана ця опція, штрихування буде конвертоване в прості лінії - + Import hatch boundaries as wires Імпортувати границі штрихування як лінії - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width - + Render polylines with width Render polylines with width @@ -1294,42 +1294,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Імпортувати - + texts and dimensions тексти та розміри - + points точок - + layouts шари - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1449,52 +1449,52 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create Створити - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Об’єкти креслення - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Ескізи - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1509,37 +1509,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Автоматичне оновлення - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>Обравши це, ви дозволите FreeCAD-у завантажувати та оновлювати</p><p>компоненти, які потрібні для імпорту та експорту DXF-файлів. Ви також можете зробити це</p><p>вручну, перейшовши за посиланням https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm мм @@ -1699,12 +1694,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1734,15 +1729,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1765,162 +1775,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Панель команд креслення - + active command: активна команда: - + None Немає - + Active Draft command Активна команда креслення - + X coordinate of next point X координати наступної точки - + X X - + Y Y - + Z Z - + Y coordinate of next point Y координати наступної точки - + Z coordinate of next point Z координати наступної точки - + Radius Радіус - + Radius of Circle Радіус кола - + &Relative &Відносно - + Coordinates relative to last point or absolute (SPACE) Координати по відношенню до останнього пункту або абсолютні (Пробіл) - + F&illed За&повнити - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - + &Finish &Завершити - + Finishes the current drawing or editing operation (F) Завершити поточне креслення або операцію редагування (З) - + If checked, command will not finish until you press the command button again If checked, command will not finish until you press the command button again - + If checked, an OCC-style offset will be performed instead of the classic offset If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset Зміщення у &OCC-стилі - + Add points to the current object Додати точку до поточного об'єкта - + Remove points from the current object Видалити точки з поточного об'єкту - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo &Скасувати - + Undo the last segment (CTRL+Z) Скасувати останній сегмент (Ctrl + Z) - + Finishes and closes the current line (C) Завершити та закрити поточну лінію (C) - + &Wipe &Очистити - + Wipes the existing segments of this line and starts again from the last point (W) Wipes the existing segments of this line and starts again from the last point (W) - + Number of sides Кількість сторін @@ -1930,132 +1940,132 @@ Values with differences below this value will be treated as same. Зміщення - + XY XY - + Select XY plane Вибір XY площини - + XZ XZ - + Select XZ plane Вибір XZ площини - + YZ YZ - + Select YZ plane Вибір YZ площини - + View Вигляд - + Select plane perpendicular to the current view Вибір площини, перпендикулярної до поточної - + Do not project points to a drawing plane Не проектувати точки на площину креслення - + If checked, objects will be copied instead of moved (C) Якщо це обрано, об'єкти будуть скопійовані замість переміщення (C) - + Text string to draw Text string to draw - + String Рядок - + Height of text Висота тексту - + Height Висота - + Intercharacter spacing Міжсимвольна відстань - + Tracking Відстеження - + Full path to font file: Повний шлях до файлу шрифта: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Встановити/відмінити робочу площину - + Line Color Колір лінії - + Face Color Колір площини - + Line Width Ширина лінії - + Font Size Розмір шрифту - + Apply to selected objects Застосувати до вибраних об'єктів - + Toggles Construction Mode Перемикання режиму конструювання - + Select Plane Вибір площини @@ -2070,238 +2080,238 @@ Values with differences below this value will be treated as same. DWire - + Circle Коло - + Center X Центр X - + Arc Дуга - + Point Точка - + Distance Відстань - + Trim Обрізати - + Pick Object Виберіть об'єкт - + Edit Правка - + Global X Глобальна X - + Global Y Глобальна Y - + Global Z Глобальна Z - + Local X Локальна X - + Local Y Локальна Y - + Local Z Локальна Z - + Invalid Size value. Using 200.0. Неприпустиме значення розміру. Буде використано 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Введіть рядок тексту, будь ласка. - + Select a Font file Обрати файл шрифту - + Please enter a font file. Введіть файл шрифта, будь ласка. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside Found groups: closing each open object inside - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it Found 1 solidificable object: solidifying it - + Found 2 objects: fusing them Found 2 objects: fusing them - + Found 1 non-parametric objects: draftifying it Знайдений 1 непараметричний об'єкт: конвертується у креслення - + Found 1 open wire: closing it Знайдений 1 відкритий каркас: закривається - + Found several open wires: joining them Знайдено декілька відкритих каркасів: об'єднуються - + Found several edges: wiring them Знайдено декілька ребер: перетворюються у каркас - + Unable to upgrade these objects. Оновлення цих об'єктів виконати не вдалося. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies Знайдений 1 параметричний об'єкт: розривання його залежностей - + Found 2 objects: subtracting them Знайдено 2 об'єкти: їх віднімання - + Found several faces: splitting them Знайдено декілька поверхонь: їх розділення - + Found several objects: subtracting them from the first one Знайдено декілька об'єктів: віднімання їх від першого - + Found 1 face: extracting its wires Знайдена 1 поверхня: отримуємо її каркас - + Found only wires: extracting their edges Found only wires: extracting their edges - + No more downgrade possible No more downgrade possible - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2657,7 +2667,7 @@ Values with differences below this value will be treated as same. - + Select an object to project Select an object to project @@ -2677,61 +2687,61 @@ Values with differences below this value will be treated as same. Цей тип об'єкта не редагується - + Active object must have more than two points/nodes Активний об'єкт повинен мати більше двох точок/вузлів - + Selection is not a Knot Виділений елемент не є вузол - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Обрати об'єкт для перетворення - + Select an object to array Оберіть об'єкт для розмноження - + Please select base and path objects Please select base and path objects - + Create Point Створити точку - + Select an object to clone Виділіть об'єкт для клонування - + Select face(s) on existing object(s) Виберіть face(s) на існуючому(-их) об'єкті(-ах) @@ -2765,106 +2775,106 @@ Values with differences below this value will be treated as same. Snapping - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Сторони - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Знайдено декілька об'єктів: створення оболонки - + Found several coplanar objects or faces: creating one face Знайдено кілька компланарих об'єктів або поверхонь: створення однієї поверхні - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Знайдені закриті каркаси: створюються поверхні - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length Довжина - + Angle Кут - + Length of current segment Довжина поточного сегменту - + Angle of current segment Кут поточного сегменту - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Оберіть ребро - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Автоматично @@ -2876,22 +2886,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Перетворити на ескіз - + Convert to Draft Перетворити на креслення - + Convert Перетворити - + Array Масив @@ -2931,7 +2941,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2950,79 +2960,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose Зак&рити - + C&opy Копіювати - + Faces Грані - + Remove Видалити - + Add Додати - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-CN.qm b/src/Mod/Draft/Resources/translations/Draft_zh-CN.qm index 4d654504bd24f36544e0df7fe7a5073b78461af8..d40db7ed0f6c77be92644d03876df44aa6ebda88 100644 GIT binary patch delta 4890 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 VUD|-94dt{(;n{9!hcl$E{|9`GBi;Z2 diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts b/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts index 381affd43..f4e24bfd4 100644 --- a/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts +++ b/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point 添加点 - + Adds a point to an existing wire/bspline 添加点至现有多段线/B样条曲线 @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... 添加到组... - + Adds the selected object(s) to an existing group 添加选中对象至现有组 @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array 阵列 - + Creates a polar or rectangular array from a selected object 从所选对象创建极坐标或矩形阵列 @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone 克隆 - + Clones the selected object(s) 克隆所选对象 @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point 删除点 - + Removes a point from an existing wire or bspline 自现有多段线或B样条曲线上删除点 @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch 草图转草绘 - + Convert bidirectionally between Draft and Sketch objects 绘图和草绘间双向转换 @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder Facebinder - + Creates a facebinder object from selected face(s) Creates a facebinder object from selected face(s) @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension Flip Dimension - + Flip the normal direction of a dimension Flip the normal direction of a dimension @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal Heal - + Heal faulty Draft objects saved from an earlier FreeCAD version Heal faulty Draft objects saved from an earlier FreeCAD version @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror Mirror - + Mirrors the selected objects along a line defined by two points Mirrors the selected objects along a line defined by two points @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray PathArray - + Creates copies of a selected object along a selected path. Creates copies of a selected object along a selected path. @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point - + Creates a point object 创建点对象 @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group 选择组 - + Selects all objects with the same parents as this group 选择同一父级下的所有对象 @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 2D 形体视图 - + Creates Shape 2D views of selected objects 创建所选对象的2D形体视图 @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar 显示捕捉栏 - + Shows Draft snap toolbar 显示绘图捕捉工具栏 @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles Angles - + Snaps to 45 and 90 degrees points on arcs and circles Snaps to 45 and 90 degrees points on arcs and circles @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center Center - + Snaps to center of circles and arcs Snaps to center of circles and arcs @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions 尺寸 - + Shows temporary dimensions when snapping to Arch objects Shows temporary dimensions when snapping to Arch objects @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint Endpoint - + Snaps to endpoints of edges Snaps to endpoints of edges @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension Extension - + Snaps to extension of edges Snaps to extension of edges @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid Grid - + Snaps to grid points Snaps to grid points @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection 交集 - + Snaps to edges intersections Snaps to edges intersections @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off Toggle On/Off - + Activates/deactivates all snap tools at once Activates/deactivates all snap tools at once @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint Midpoint - + Snaps to midpoints of edges Snaps to midpoints of edges @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest Nearest - + Snaps to nearest point on edges Snaps to nearest point on edges @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho Ortho - + Snaps to orthogonal and 45 degrees directions Snaps to orthogonal and 45 degrees directions @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel Parallel - + Snaps to parallel directions of edges Snaps to parallel directions of edges @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular Perpendicular - + Snaps to perpendicular points on edges Snaps to perpendicular points on edges @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane Working Plane - + Restricts the snapped point to the current working plane Restricts the snapped point to the current working plane @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid 切换网格 - + Toggles the Draft grid on/off Toggles the Draft grid on/off @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup Adds a VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline 多段线转换为B样条曲线 - + Converts between Wire and BSpline 多段线和B样条曲线相互转换 @@ -944,17 +944,17 @@ such as "Arial:Bold" 原始颜色和线宽 - + if this is checked, paper space objects will be imported too 选中则导入图纸空间的对象 - + if this is unchecked, texts/mtexts won't be imported 选中则导入文本/多行文本 - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. 当导出样条曲线至DXF时,将被转化为多段线.这个数据是多段线每节分段的最大长度.如果为零,样条曲线将被视为直线段. @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. 设置相关功能的公差,在此范围内的数据皆视为相同. - + Check this if you want the non-named blocks (beginning with a *) to be imported too 选中则导入匿名块(块名以"*"开头) - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... 选中则FreeCAD将尝试把重合对象联合成线.注意,此操作较耗时间... - + Join geometry 联合几何图形 @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable 选中则同一图层的对象组成绘图图块, 显示速度较快, 但不易编辑 - + Group layers into blocks 图层编组创建成图块 - + If this is checked, all objects containing faces will be exported as 3d polyfaces 选中则所有含面对象转换成三维多边形网格面 - + Export 3D objects as polyface meshes 导出3D对象为多边形网格 @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. 选中则在草图工作台下草图网格总是可见.否则仅命令过程中可见. - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document 选中则导入文本使用标准绘图文字大小, 而非DXF文档中指定的大小 - + Use standard font size for texts 文本使用标准字体大小 - + If this is checked, hatches will be converted into simple wires 选中则填充被转换成简单线条 - + Import hatch boundaries as wires 填充边界导入为线 - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width 选中则当多段线定义了线宽, 它们显示为相应宽度的闭合线框 - + Render polylines with width 显示多段线线宽 @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. Construction geometry color - + Import Import - + texts and dimensions texts and dimensions - + points points - + layouts layouts - + *blocks *blocks - + If this is checked, the exported objects will be projected to reflect the current view direction If this is checked, the exported objects will be projected to reflect the current view direction - + Project exported objects along current view direction Project exported objects along current view direction - + Ellipse export is badly supported. Use this to export them as polylines instead. Ellipse export is badly supported. Use this to export them as polylines instead. @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. Fill objects with faces whenever possible - + Create 创建 - + simple Part shapes simple Part shapes - + If this is checked, parametric Draft objects will be created whenever possible If this is checked, parametric Draft objects will be created whenever possible - + Draft objects Draft objects - + If this is checked, sketches will be created whenever possible If this is checked, sketches will be created whenever possible - + Sketches Sketches - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. - + Get original colors from the DXF file Get original colors from the DXF file - + Treat ellipses and splines as polylines Treat ellipses and splines as polylines - + Max Spline Segment: Max Spline Segment: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. Show the unit suffix in dimensions - - Automatic update - Automatic update - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries Allow FreeCAD to automatically download and update the DXF libraries - + If this is checked, only standard Part objects will be created (fastest) If this is checked, only standard Part objects will be created (fastest) - + If this is checked, DXF layers will be imported as Draft VisGroups If this is checked, DXF layers will be imported as Draft VisGroups - + Use VisGroups Use VisGroups - + mm mm @@ -1695,12 +1690,12 @@ Values with differences below this value will be treated as same. Import options - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) - + Use legacy python importer Use legacy python importer @@ -1730,15 +1725,30 @@ Values with differences below this value will be treated as same. Disable units scaling - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks Export Drawing Views as blocks + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar Draft Command Bar - + active command: 当前命令: - + None - + Active Draft command 当前绘图命令 - + X coordinate of next point 下一个点的X坐标 - + X X - + Y Y - + Z Z - + Y coordinate of next point 下一个点的Y坐标 - + Z coordinate of next point 下一个点的Z坐标 - + Radius 半径 - + Radius of Circle 圆半径 - + &Relative 相对(&R) - + Coordinates relative to last point or absolute (SPACE) 相对于上一点坐标或绝对坐标(空间) - + F&illed 填充(&F) - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) 若选中则对象显示为填充,否则现实为线框 - + &Finish 完成(&F) - + Finishes the current drawing or editing operation (F) 完成当前绘图或编辑操作(F) - + If checked, command will not finish until you press the command button again 选中则命令连续运行直至再次按下命令按钮 - + If checked, an OCC-style offset will be performed instead of the classic offset 若选中则使用OCC风格偏移而非经典偏移 - + &OCC-style offset &OCC风格偏移 - + Add points to the current object 将点添加到当前对象 - + Remove points from the current object 从当前对象中删除点 - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo 撤消(&U) - + Undo the last segment (CTRL+Z) 撤消上一段(CTRL+Z) - + Finishes and closes the current line (C) 完成并闭合当前线段(C) - + &Wipe 擦除(&W) - + Wipes the existing segments of this line and starts again from the last point (W) 清除线段的现有段并从上一点重新开始 - + Number of sides 边数 @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. 偏移 - + XY XY - + Select XY plane 选择XY平面 - + XZ XZ - + Select XZ plane 选择XZ平面 - + YZ YZ - + Select YZ plane 选择YZ平面 - + View 视图 - + Select plane perpendicular to the current view 选择垂直于当前视图的平面 - + Do not project points to a drawing plane 不在绘图平面上投影点 - + If checked, objects will be copied instead of moved (C) 选中则对象将被复制而非移动(C) - + Text string to draw Text string to draw - + String 字符串 - + Height of text Height of text - + Height 高度 - + Intercharacter spacing Intercharacter spacing - + Tracking Tracking - + Full path to font file: Full path to font file: - + Open a FileChooser for font file Open a FileChooser for font file - + Set/unset a working plane Set/unset a working plane - + Line Color 线条颜色 - + Face Color 表面颜色 - + Line Width 线宽 - + Font Size 字体大小 - + Apply to selected objects 应用于选中对象 - + Toggles Construction Mode 切换构造模式 - + Select Plane 选择平面 @@ -2066,229 +2076,229 @@ Values with differences below this value will be treated as same. 草图线 - + Circle - + Center X 圆心 X - + Arc 圆弧 - + Point - + Distance 距离 - + Trim 修剪 - + Pick Object 选择对象 - + Edit 编辑 - + Global X Global X - + Global Y Global Y - + Global Z Global Z - + Local X Local X - + Local Y Local Y - + Local Z Local Z - + Invalid Size value. Using 200.0. Invalid Size value. Using 200.0. - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. Please enter a text string. - + Select a Font file Select a Font file - + Please enter a font file. Please enter a font file. - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside 发现组:关闭组中打开的对象 - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it 发现可实体化对象: 实体化 - + Found 2 objects: fusing them 发现两个对象:融合 - + Found 1 non-parametric objects: draftifying it 发现一个非参数化对象:草绘修正 - + Found 1 open wire: closing it 发现一个开放多段线:闭合 - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them 发现若干边:组成多段线 - + Unable to upgrade these objects. Unable to upgrade these objects. - + Found 1 block: exploding it Found 1 block: exploding it - + Found 1 parametric object: breaking its dependencies 发现一个参数化对象:去除依赖 - + Found 2 objects: subtracting them 发现两个对象:相减 - + Found several faces: splitting them 发现若干面:炸开它们 - + Found several objects: subtracting them from the first one 发现若干对象:从第一个中减去 - + Found 1 face: extracting its wires 发现一个面:提取线框 - + Found only wires: extracting their edges 仅发现线框:提取边 - + No more downgrade possible 无法再降级 - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2639,7 +2649,7 @@ Values with differences below this value will be treated as same. 选择缩放比例: - + Select an object to project Select an object to project @@ -2659,60 +2669,60 @@ Values with differences below this value will be treated as same. 此类型对象不可编辑 - + Active object must have more than two points/nodes 当前对象必须包含2个以上的点/节点 - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert Select an object to convert - + Select an object to array Select an object to array - + Please select base and path objects Please select base and path objects - + Create Point Create Point - + Select an object to clone Select an object to clone - + Select face(s) on existing object(s) Select face(s) on existing object(s) @@ -2746,106 +2756,106 @@ Values with differences below this value will be treated as same. 对齐功能 - + Found 1 multi-solids compound: exploding it Found 1 multi-solids compound: exploding it - + Sides Sides - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. The given object is not planar and cannot be converted into a sketch. - + Found several objects: creating a shell Found several objects: creating a shell - + Found several coplanar objects or faces: creating one face Found several coplanar objects or faces: creating one face - + Found 1 linear object: converting to line Found 1 linear object: converting to line - + Found 1 closed sketch object: creating a face from it Found 1 closed sketch object: creating a face from it - + Found closed wires: creating faces Found closed wires: creating faces - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length 长度 - + Angle 角度 - + Length of current segment Length of current segment - + Angle of current segment Angle of current segment - + Check this to lock the current angle (l) Check this to lock the current angle (l) - + &Select edge &Select edge - + Selects an existing edge to be measured by this dimension (E) Selects an existing edge to be measured by this dimension (E) - + Auto Auto @@ -2857,22 +2867,22 @@ Values with differences below this value will be treated as same. - + Convert to Sketch Convert to Sketch - + Convert to Draft Convert to Draft - + Convert Convert - + Array 阵列 @@ -2912,7 +2922,7 @@ Values with differences below this value will be treated as same. - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2931,79 +2941,89 @@ https://github.com/yorikvanhavre/Draft-dxf-importer To enabled FreeCAD to download these libraries, answer Yes. - + No object given No object given - + The two points are coincident The two points are coincident - + Co&ntinue Co&ntinue - + Cl&ose 关闭 - + C&opy 复制(&C) - + Faces - + Remove 删除 - + Add 添加 - + Facebinder elements Facebinder elements - + Mirror Mirror - + Select an object to mirror Select an object to mirror - + Pick start point of mirror line: Pick start point of mirror line: - + Pick end point of mirror line: Pick end point of mirror line: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm b/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm index 898736fc2428374d50ae5d8bf882c274f069e57e..f95ea8bc45c07ff6152d5665f0b4de1567a4281b 100644 GIT binary patch delta 4893 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 aCh)Pv|5ER*N^ga09l{&LmIZI_*X2J20i9R? delta 4289 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 diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts b/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts index 59308f6c1..fda5e590d 100644 --- a/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts +++ b/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts @@ -4,7 +4,7 @@ Draft - + Download of dxf libraries failed. Please download and install them manually. See complete instructions at @@ -18,12 +18,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddPoint - + Add Point 添加點 - + Adds a point to an existing wire/bspline 將點添加到現有的聚合線/雲形線 @@ -31,12 +31,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_AddToGroup - + Add to group... 加入群組... - + Adds the selected object(s) to an existing group 將所選的物件添加到現有群組 @@ -70,12 +70,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Array - + Array 矩陣 - + Creates a polar or rectangular array from a selected object 由所選物件建立一個極或矩形陣列 @@ -122,12 +122,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Clone - + Clone 複製 - + Clones the selected object(s) 複製所選物件 @@ -148,12 +148,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_DelPoint - + Remove Point 移除點 - + Removes a point from an existing wire or bspline 從現有的有聚合線或雲形線中移除點 @@ -187,12 +187,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Draft2Sketch - + Draft to Sketch 底圖至草圖 - + Convert bidirectionally between Draft and Sketch objects 於底圖及草圖物件間雙向轉換 @@ -239,12 +239,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Facebinder - + Facebinder 面連接器 - + Creates a facebinder object from selected face(s) 由所選面中建立一個面連接器物件 @@ -265,12 +265,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_FlipDimension - + Flip Dimension 翻轉維度 - + Flip the normal direction of a dimension 翻轉一維度的法線方向 @@ -278,12 +278,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Heal - + Heal 修復 - + Heal faulty Draft objects saved from an earlier FreeCAD version 修復以較早FreeCAD版本儲存之底圖物件 @@ -304,12 +304,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Mirror - + Mirror 鏡射 - + Mirrors the selected objects along a line defined by two points 依由兩點定義而來的對稱線鏡射所選物件 @@ -343,12 +343,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_PathArray - + PathArray 路徑陣列 - + Creates copies of a selected object along a selected path. 沿所選路徑建立所選物件之複製 @@ -356,12 +356,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Point - + Point - + Creates a point object 建立一個點物件 @@ -421,12 +421,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_SelectGroup - + Select group 選取群組 - + Selects all objects with the same parents as this group 選取此群組中同系物件 @@ -447,12 +447,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Shape2DView - + Shape 2D view 造型2D視圖 - + Creates Shape 2D views of selected objects 建立選定物件之2D造型視圖 @@ -473,12 +473,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ShowSnapBar - + Show Snap Bar 顯示鎖點列 - + Shows Draft snap toolbar 顯示底圖鎖點工具列 @@ -486,12 +486,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Angle - + Angles 角度 - + Snaps to 45 and 90 degrees points on arcs and circles 鎖定圓及弧的四分點 @@ -499,12 +499,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Center - + Center 中心 - + Snaps to center of circles and arcs 鎖定圓及弧的中心點 @@ -512,12 +512,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Dimensions - + Dimensions 尺寸 - + Shows temporary dimensions when snapping to Arch objects 於鎖定弧時顯示目前的尺寸 @@ -525,12 +525,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Endpoint - + Endpoint 終點 - + Snaps to endpoints of edges 鎖定邊緣的端點 @@ -538,12 +538,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Extension - + Extension 延伸 - + Snaps to extension of edges 對齊邊界之延伸 @@ -551,12 +551,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Grid - + Grid 格線 - + Snaps to grid points 對齊至格線上之點 @@ -564,12 +564,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Intersection - + Intersection 交集 - + Snaps to edges intersections 對齊至邊界交叉處 @@ -577,12 +577,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Lock - + Toggle On/Off 切換開/關 - + Activates/deactivates all snap tools at once 一次啟動/取消所有鎖點工具 @@ -590,12 +590,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Midpoint - + Midpoint 中點 - + Snaps to midpoints of edges 對齊至邊界之中點 @@ -603,12 +603,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Near - + Nearest 最近處 - + Snaps to nearest point on edges 對齊至邊界上的最近點 @@ -616,12 +616,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Ortho - + Ortho 垂直 - + Snaps to orthogonal and 45 degrees directions 鎖定至垂直或45度方向 @@ -629,12 +629,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Parallel - + Parallel 平行 - + Snaps to parallel directions of edges 鎖定至邊緣之平行方向 @@ -642,12 +642,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_Perpendicular - + Perpendicular 垂直 - + Snaps to perpendicular points on edges 鎖點至邊緣上的垂直點 @@ -655,12 +655,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_Snap_WorkingPlane - + Working Plane 工作平面 - + Restricts the snapped point to the current working plane 限制目前工作平面被鎖定的點 @@ -720,12 +720,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_ToggleGrid - + Toggle Grid 切換網格 - + Toggles the Draft grid on/off 開/關底圖格線 @@ -772,12 +772,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_VisGroup - + VisGroup VisGroup - + Adds a VisGroup 增加 VisGroup @@ -798,12 +798,12 @@ http://www.freecadweb.org/wiki/index.php?title=Dxf_Importer_Install Draft_WireToBSpline - + Wire to BSpline 聚合線轉雲形線 - + Converts between Wire and BSpline 聚合線和雲形線之間的轉換 @@ -944,17 +944,17 @@ such as "Arial:Bold" 原有的顏色和線寬 - + if this is checked, paper space objects will be imported too 若勾選此項,圖紙空間的物件也將一併匯入 - + if this is unchecked, texts/mtexts won't be imported 若未勾選此項,文字/多行文字將不會被匯入 - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. 當雲形線匯出為 DXF,它們將轉換為聚合線。這個值是聚合線每個線段的最大長度,如果值為0,則整條雲形線將被視為一條直線段。 @@ -995,17 +995,17 @@ Values with differences below this value will be treated as same. 這是透過公差函數的使用值。低於此值時不同的值將被視為相同值。 - + Check this if you want the non-named blocks (beginning with a *) to be imported too 如果您要(以 * 開頭)的未命名圖塊也要一併匯入,請勾選 - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... 如果勾選此選項,freecad 將嘗試接合重合物件到聚合線。請注意,這可能需要一些時間... - + Join geometry 加入幾何形 @@ -1150,22 +1150,22 @@ Values with differences below this value will be treated as same. - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable 若勾選此項,相同圖層之物件將會被整合至底圖圖塊,使顯示加快,但卻使其修正變困難 - + Group layers into blocks 將圖層作為圖塊 - + If this is checked, all objects containing faces will be exported as 3d polyfaces 若勾選此項,所有具面之物件將會以3d聚合面匯出 - + Export 3D objects as polyface meshes 以聚合面網格匯出3D物件 @@ -1200,32 +1200,32 @@ Values with differences below this value will be treated as same. 若勾選,底圖格線當底圖工作區啟動時皆會顯示,否則僅要求時顯示 - + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document 若勾選此項,匯入之文字會採用標準底圖文字尺寸來代替DXF文件中的尺寸 - + Use standard font size for texts 文字採用標準尺寸 - + If this is checked, hatches will be converted into simple wires 若勾選此項,剖面線會轉變為簡單線條 - + Import hatch boundaries as wires 匯入剖面線邊界為線條 - + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width 若勾選,當聚合線具有寬度設定時,其會以正確寬度的封閉線條彩現 - + Render polylines with width 彩現帶有寬度之聚合線 @@ -1290,42 +1290,42 @@ Values with differences below this value will be treated as same. 輔助用幾何色彩 - + Import 匯入 - + texts and dimensions 文字和尺寸 - + points - + layouts 配置 - + *blocks *塊 - + If this is checked, the exported objects will be projected to reflect the current view direction 若勾選此項,已匯出的物件將被投影(射),以反映當前的視圖方向 - + Project exported objects along current view direction 匯出沿目前視圖方向投影物件 - + Ellipse export is badly supported. Use this to export them as polylines instead. 橢圓的匯出支援度很差,改用聚合線匯出 @@ -1445,52 +1445,52 @@ Values with differences below this value will be treated as same. 當可行時將物件以面填滿 - + Create 建立 - + simple Part shapes 簡單零件造型 - + If this is checked, parametric Draft objects will be created whenever possible 若勾選此項,許可時將建立可參數化底圖物件 - + Draft objects 底圖物件 - + If this is checked, sketches will be created whenever possible 若勾選此項,許可時將建立草圖 - + Sketches 草圖 - + If this is checked, colors will be retrieved from the DXF objects whenever possible. Otherwise default colors will be applied. 若勾選此項,許可時將自DXF物件中引用色彩,否則將會使用預設值。 - + Get original colors from the DXF file 從DXF檔中取得原始色彩 - + Treat ellipses and splines as polylines 將橢圓及spline當作聚合線 - + Max Spline Segment: 最大Spline片段: @@ -1505,37 +1505,32 @@ Values with differences below this value will be treated as same. 於標註中顯示單位 - - Automatic update - 自動更新 - - - + <html><head/><body><p>By checking this, you will allow FreeCAD to download and update the</p><p>components needed for DXF import and export. You can also do that</p><p>manually, by visiting https://github.com/yorikvanhavre/Draft-dxf-importer</p></body></html> <html><head/><body><p>勾選時, 您將允許FreeCAD下載並更新</p><p>匯入及匯出DXF所需之元件,您也可以手動</p><p>至https://github.com/yorikvanhavre/Draft-dxf-importer下載</p></body></html> - + Allow FreeCAD to automatically download and update the DXF libraries 允許FreeCAD自動下載並更新DXF函式庫 - + If this is checked, only standard Part objects will be created (fastest) 若勾選此項,僅會建立標準零件物件(最快) - + If this is checked, DXF layers will be imported as Draft VisGroups 若勾選此項,DXF層將會以底圖 VisGroups形式匯入 - + Use VisGroups 使用 VisGroups - + mm mm @@ -1695,12 +1690,12 @@ Values with differences below this value will be treated as same. 匯入選項 - + If this is checked, the old python importer is used, otherwise the new C++ one (faster, but not as many features yet) 若勾選此項,將使用舊有的python匯入器,否則將使用新的C++(更快,但尚未有許多功能) - + Use legacy python importer 使用舊有python匯入器 @@ -1730,15 +1725,30 @@ Values with differences below this value will be treated as same. 停止單位縮放 - + if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. if this is checked, Drawing Views will be exported as blocks. This might fail for post-R12 templates. - + Export Drawing Views as blocks 將視圖以圖塊形式匯出 + + + Note: Not all the options below are used by the new importer yet + Note: Not all the options below are used by the new importer yet + + + + Show this dialog when importing and exporting + Show this dialog when importing and exporting + + + + Automatic update (legacy importer only) + Automatic update (legacy importer only) + Workbench @@ -1761,162 +1771,162 @@ Values with differences below this value will be treated as same. draft - + Draft Command Bar 底圖指令列 - + active command: 啟動指令: - + None - + Active Draft command 啟動底圖指令 - + X coordinate of next point 下一個點的X座標 - + X X - + Y Ÿ - + Z Z - + Y coordinate of next point 下一個點的Y座標 - + Z coordinate of next point 下一個點的Z座標 - + Radius 半徑 - + Radius of Circle 圓半徑 - + &Relative 相對(&R) - + Coordinates relative to last point or absolute (SPACE) 最後一點的相對或絕對坐標(空間) - + F&illed 充填 (&F) - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) 若要物件顯示填滿請點選此項目,否則其將顯示為線架構 - + &Finish &結束 - + Finishes the current drawing or editing operation (F) 結束目前繪圖或編輯程序(F) - + If checked, command will not finish until you press the command button again 如果選取,命令將不會完成直到你再次按這個命令按鈕 - + If checked, an OCC-style offset will be performed instead of the classic offset 若勾選,會以OCC型式取代基本印刷型式 - + &OCC-style offset &OCC型式印刷 - + Add points to the current object 於目前物件中增加點 - + Remove points from the current object 將點從目前物件上移除 - + Make Bezier node sharp Make Bezier node sharp - + Make Bezier node tangent Make Bezier node tangent - + Make Bezier node symmetric Make Bezier node symmetric - + &Undo 復原(&U) - + Undo the last segment (CTRL+Z) 復原上一段 (CTRL + Z) - + Finishes and closes the current line (C) 完成並閉合當前線(C) - + &Wipe 擦(&W) - + Wipes the existing segments of this line and starts again from the last point (W) 清除此現存在片段並重新由最後一點開始(W) - + Number of sides 邊數 @@ -1926,132 +1936,132 @@ Values with differences below this value will be treated as same. 偏移複製 - + XY XY - + Select XY plane 選擇 XY 平面 - + XZ XZ - + Select XZ plane 選擇 XZ平面 - + YZ YZ - + Select YZ plane 選擇 YZ 平面 - + View 檢視 - + Select plane perpendicular to the current view 選取垂直於當前視圖的平面 - + Do not project points to a drawing plane 不投射點到繪圖平面 - + If checked, objects will be copied instead of moved (C) 若選取,物件將被複製而不是移動(C) - + Text string to draw 要繪製之文字字串 - + String 字串 - + Height of text 字高 - + Height 高度 - + Intercharacter spacing 字元間距 - + Tracking 追蹤 - + Full path to font file: 字型檔完整路徑: - + Open a FileChooser for font file 選取字型檔 - + Set/unset a working plane 設定/取消設定工作平面 - + Line Color 線條顏色 - + Face Color 面顏色 - + Line Width 線寬 - + Font Size 字體大小 - + Apply to selected objects 應用於所選物件 - + Toggles Construction Mode 切換建造模式 - + Select Plane 選擇平面 @@ -2066,227 +2076,227 @@ Values with differences below this value will be treated as same. DWire - + Circle - + Center X 中心 X - + Arc - + Point - + Distance 距離 - + Trim 修剪 - + Pick Object 選取物件 - + Edit 編輯 - + Global X 全域X - + Global Y 全域Y - + Global Z 全域Z - + Local X 區域X - + Local Y 區域Y - + Local Z 區域Z - + Invalid Size value. Using 200.0. 無效值。使用 200.0。 - + Invalid Tracking value. Using 0. Invalid Tracking value. Using 0. - + Please enter a text string. 請輸入一段文字 - + Select a Font file 選擇一個字型檔 - + Please enter a font file. 請輸入字型檔。 - + Draft.makeBSpline: not enough points Draft.makeBSpline: not enough points - + Draft.makeBSpline: Equal endpoints forced Closed Draft.makeBSpline: Equal endpoints forced Closed - + Draft.makeBSpline: Invalid pointslist Draft.makeBSpline: Invalid pointslist - + Found groups: closing each open object inside 找到群組:封閉內部各開放物件 - + Found mesh(es): turning into Part shapes Found mesh(es): turning into Part shapes - + Found 1 solidificable object: solidifying it 找到1可實體化物件:將其實體化 - + Found 2 objects: fusing them 找到兩個物件:將其融合 - + Found 1 non-parametric objects: draftifying it 找到一個未參數化物件:編輯此物件 - + Found 1 open wire: closing it 找到一開放線條:將其封閉 - + Found several open wires: joining them Found several open wires: joining them - + Found several edges: wiring them 找到數個邊緣:將其轉為線條 - + Unable to upgrade these objects. 無法升級這些物件 - + Found 1 block: exploding it 發現一個圖塊:進行拆解 - + Found 1 parametric object: breaking its dependencies 找到一參數化物件:分離其相依性 - + Found 2 objects: subtracting them 找到兩個物件:取其差集 - + Found several faces: splitting them 找到數個面:將其分割 - + Found several objects: subtracting them from the first one 找到數個物件:由第一個進行差集 - + Found 1 face: extracting its wires 尋找一面:擷取它的線條 - + Found only wires: extracting their edges 僅找到線條:提取邊緣 - + No more downgrade possible 無法在下降 - + _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. _BSpline.createGeometry: Closed with same first/last Point. Geometry not updated. @@ -2635,7 +2645,7 @@ Values with differences below this value will be treated as same. 選取縮放比例: - + Select an object to project 選取一個物件至專案 @@ -2653,56 +2663,56 @@ Values with differences below this value will be treated as same. 此物件類型是不可編輯的 - + Active object must have more than two points/nodes 使用中的物件必須有兩個以上的點/節點 - + Selection is not a Knot Selection is not a Knot - + Endpoint of BezCurve can't be smoothed Endpoint of BezCurve can't be smoothed - + Select an object to convert 選擇一個物件進行轉換 - + Select an object to array 選擇一個物件進行陣列配置 - + Please select base and path objects 請選擇基礎和路徑物件 - + Create Point 建立點 - + Select an object to clone 選擇一個要複製的物件 - + Select face(s) on existing object(s) 選擇於已存在物件上的面 @@ -2734,100 +2744,100 @@ Values with differences below this value will be treated as same. 對齊 - + Found 1 multi-solids compound: exploding it 發現一個多實體組合:進行拆解 - + Sides Sides - + BSplines and Bezier curves are not supported by this tool BSplines and Bezier curves are not supported by this tool - + The given object is not planar and cannot be converted into a sketch. 給定的物件非平面並且無法轉換為草圖 - + Found several objects: creating a shell 發現數個物件:建立為殼層 - + Found several coplanar objects or faces: creating one face 發現數個共平面物件或面:建立為一個面 - + Found 1 linear object: converting to line 發現一個線性物件:轉換為線 - + Found 1 closed sketch object: creating a face from it 發現一個封閉之草圖物件:由此建立面 - + Found closed wires: creating faces 發現封閉線段:建立面 - + Found several non-treatable objects: creating compound Found several non-treatable objects: creating compound - + Length 長度 - + Angle 角度 - + Length of current segment 此線段之長度 - + Angle of current segment 此線段之角度 - + Check this to lock the current angle (l) 勾選此可鎖定目前的角度(I) - + &Select edge 選取邊緣(&S) - + Selects an existing edge to be measured by this dimension (E) 選取一個現有的邊緣來衡量此一尺寸(E) - + Auto 自動 @@ -2838,22 +2848,22 @@ Values with differences below this value will be treated as same. 抱歉,目前尚未支援貝茲曲線的偏移複製 - + Convert to Sketch 轉換為草圖 - + Convert to Draft 轉換為底圖 - + Convert 轉換 - + Array 矩陣 @@ -2888,7 +2898,7 @@ Values with differences below this value will be treated as same. 過多交錯點 - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either enable FreeCAD to download these libraries: @@ -2905,74 +2915,84 @@ https://github.com/yorikvanhavre/Draft-dxf-importer 之說明啟動FreeCAD來下載這些函式庫,並回答確定。 - + No object given 未給定物件 - + The two points are coincident 此兩點重疊 - + Co&ntinue Co&ntinue - + Cl&ose &關閉 - + C&opy 複製(&C) - + Faces - + Remove 移除 - + Add 新增 - + Facebinder elements Facebinder elements - + Mirror 鏡射 - + Select an object to mirror 選擇要鏡射的物件 - + Pick start point of mirror line: 選取鏡射對稱線之起始點: - + Pick end point of mirror line: 選取鏡射對稱線之終點: + + + Enter point + Enter point + + + + Enter a new point with the given coordinates + Enter a new point with the given coordinates + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.qm index 6fa9e4bd5b75df769f45d9a9b85897ce8d6cdf43..ccc71b915db21d30f2e542b00b5a62967d5854e0 100644 GIT binary patch delta 1241 zcmbtRYe-aS7=F$B%Fc59bNh+U($6`}|#h_a@A&#?;>^rQIr&ck`X?|I+n zdA{E_aq)I;+bFK4BcX3rs@K#{-V#LdLFBbUsti+e~R^B5%uf7Z|#G zNll?>c)leB_}Yy1X-k07S;j!r26$Rn1)pXzzRXjpM;}vopS55xVaF!=Eu5clw&n=n z{*|5Jo#n3T#I>y>fz&?|^$7*h#Op^Gkl$$gQdVXMg(-%Sd0 zO-lx!(>({v5$t^NEmk2={=FBrO}`AZ_Q_B_YK7Zn8pyo1c1^1r3hU2ZuspdVBB5t_|+@)PVdC-%|23)!)_StF<+{bnSTLDUmnZS2`TKJ%ThQFmBf;%t6%RMC9aGp zO;FJKv4ixfLo}eYeqb}FYf)?+s?b2UBRVsHX5#xvMMSTV4m4sV)im{=&(RcXci$_f zb5+0Pr*9BV#8jxFDN^+rGS!>(Swks=5t{i?WNB4{5>ezpv+Qq)M95_0N;&j}b6E|` z{&29VQBf6HZBXQJlM<lF;X%n)U1;fl)j?JlbCp>C2LdHe A)Bpeg delta 681 zcmXAmYe=B}KGyvV!5=>tvEgS2{{E*y$JoSSAa0Z?=z0LyEzG5hGk~gr zY5wsQuud?y8kT^RW%7v8Ubc_1wc=~~+`@J(P&0;Qw#PaR1dp)eOF4jTn)N;T0+?gC z;QR4_?kpGG(NE`Y&M%X?#;0~t*Ugl3Qu7p=krID_xtNK-z6( z(fSII*hb8pmbGM%LQZC_4&vcthwX%_|1Hhxj8}co2GZWGw*L%NJoUzX7+ F{R15W%Y6U< diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts index e883bd571..e4a093eb7 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts @@ -670,22 +670,22 @@ Do you want to continue? No active document - + Geen aktiewe dokument There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.qm index ba0232c8b55cceca3289a870372656cfc9261cf0..5fb598fe2d7b40249d66b83c7cc79cf83330d132 100644 GIT binary patch delta 2191 zcmb_ddr(w$7(I8{z5Bd(mG?p}7ZH>|6vbGGho<44@3VRfB}19$a)_LIX~|C;aUT6ZW{xw#Fgzd z5OPtplZgk6L{YZ~pl^wW4i)7iE&^G0OkQ09IHewR&Be_UljjaX<%J&sW?{x7 zbWVK>Ge^A1IO{MoPs2}8#d8Q54peCmGHygwpdXO76}M=H87gjxJU@(CDGpZFjy0{P z0E66vBQx>JDKB7s1g~|KFyUSJ^~?!iSbzMcVa_}FJ#t=;3lW@wOA$ORxTM{{z(k>P z-7_KJ>Js7h#xB4TD=h#1I8bm6u9cksD2yMfFYZs20Xrv zaaTsIX$`TWk(>0nZA_H-h5nB87{FxEuii0>y*t-~qiXcq_pze9Ed38Fd_eJ8Lv7-0 zAU(Gd_IT6+$NoiFw%F<4x?jDhm%#GRF!IdBh%ojE_T z!cOt{%Rf-cW8zn3WwbYo7rs$h;Uwdzb3X&NCyj+?(%FhTj7wTrSbUZ-5-;~DPvjZhqk*whpc4t+&3%7CFstPkWzn zVlBq+@&R+fG|Ti(R-6)VdET&{y{fcq>twHr`&$lWn0bEKayWYuD{xs;qT{$evNb1) z)9v`&I&sShDo|#flaxtiPFd%?@fgqdsRyEFho)Qa{oKff$+O-+VFDZBux=?>49E%A zpS~rnRLSNv&?~OfHn4LnX`Zl^cWcY;uzBvKzD4o2J-;?`B9Ghl@27uCtLcfK)`%Y9yY zVK4O7whg8nOXZZIyEvgC zxgd0rjh!eLp67GjTk>`Lx>^1P`N&hB0SQawla>y+aAm1{v4DbSp0r1IFXhfWXCHIm z7?59OAKT&K+oQ`~knWEve7)gWTk1^sQH=oHSOhP8I12?8JXNC! z4VZ_8sxvwy)TkdDQj?ppu-Ddy)3gizWv3kdG3{OrRrpq0Usf^}DvoNENMdM{*n&{rhn+DV|X9N6dds0bU zET&-`#z*e@Qii`zDwl*I>h#euag8h>z$`(Ht{^dIfCbGSQrdf8$53w6(CV`L@asd` z4HL43B{Z+0A{Q9nO_Lx4HTNo1LvHg}M~Nz_1>0$Clr1)=YT22iJJsB)$wp}d>mhGjQU0e z3&W4++r;7`;WkQqRGTYy*d3X~2AUtGc{820-fP3G-D=NjBht^|Jj{bT{88}|K^U)g Ym!zd?{ZVLEjk&#Ue_N*T6Qym!AI(HL$N&HU delta 1790 zcmZ`(3s6*L6#jPEz5BeEw+INV5HC@1QG`W?c=}57S*d`g$YYhj0S2ox473Gf8fl;~Bc+YR zL5WD|%V*$wNR`olJ7(1{0D?VTm~aa(h($o`AuJsF3oxB`Vd7_4w1b4ByRbO^D_k`u>Ht&UTi|HY#4DGc_IEJZou~1Yk*pE;rJGOajgI_ z?7*>$sU+Np!GSBl*xh*G#6|c=#&Kp0Irlg4$hlvmND@1N&{2woyFLbz4k=!(xM&0P zK8g*0_5+FY6i%Y?Ns7*2xp!Zp^h-Mlh*Oo}VQhnUw$fRV|2*Y#@3Vj1jKZogFuOtz|vMzX&n>eSY%U=nAm>-Rs$8Q7~n zx~!W17uCI@1ZY|XL-w0&-Rpwy`B=`%5h1vJFO~EZQm!+xV7pNHY$JJA3AMHuIsn49 zhP!}|O>kxw*DN&DRg(Cg(6;aZFu_acj=jUm`h@Bf@*mUm&E4!# z@@DmnIq-8j|${f22xSExXqp)epCh+kzWJpMlSd+fb# zOKn!e#-BB8P?KTv)TwNMzoE%e14wa(JHIon(VoU&HNAYlF@|<$GRNxc>CiL

  • wpBHlj#Azh(6W+fqO}QCE(@;8P&j-h+m!I1PrCv}G|~FM z<69ZgL@Sw5jwgFqQDr}<4|K$M-%zDzAd|rnC|CjOv_a~Gn2_Y*4V`L%fsrGU=0J6ITJGd TZ(qx>94qNXy&YK@I~D%|HAun; diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.ts index a82037e80..22bdb8c41 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.ts @@ -207,13 +207,13 @@ &Spreadsheet View - &Spreadsheet View + Zobrazení Tabulky Inserts a view of a selected spreadsheet in the active drawing - Inserts a view of a selected spreadsheet in the active drawing + Vloží zobrazení vybrané tabulky v aktivním výkresu @@ -294,7 +294,7 @@ PDF file - PDF file + PDF soubor @@ -360,12 +360,12 @@ Chcete pokračovat? Opening file failed - Opening file failed + Otevření souboru selhalo Can't open file '%1' for writing. - Can't open file '%1' for writing. + Soubor "%1" nelze otevřít pro zápis. @@ -597,12 +597,12 @@ Chcete pokračovat? Show hidden lines - Show hidden lines + Zobrazit skrité čáry Show smooth lines - Show smooth lines + Zobrazit hladké čáry @@ -670,22 +670,22 @@ Chcete pokračovat? No active document - + Žádný aktivní dokument There is currently no active document to complete the operation - + Pro dokončení operace není žádný aktivní dokument No active view - + Není aktivní pohled There is currently no active view to complete the operation - + Pro dokončení operace není žádný aktivní pohled @@ -816,7 +816,7 @@ Chcete pokračovat? Scalable Vector Graphic - Scalable Vector Graphic + Škálovatelná vektorová grafika @@ -852,12 +852,12 @@ Chcete pokračovat? All Files - All Files + Všechny soubory Select exactly one Spreadsheet object. - Select exactly one Spreadsheet object. + Vyberte právě jeden objekt Tabulky. SVG (*.svg) diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.qm index 355dfebee10cd45b9a3a3c438ae1082b5d64e73f..7554a6e84729aa4e6fb9fc6ec8953d1a650870be 100644 GIT binary patch delta 1258 zcma))Z%kWd6vm%>Z%b>-y@g6mVXoY`QD6)J3rA@lzSoI#uzGR>xOVJ?|5W|@hb8BP+7AGT>w8O(Dp%AzjD56yYs z`=0Zh=XXxue1ZFQFSoaViwwEioZ$#egCjt3Xes&wLpwcuI`7Ng&Vy59S~f@?b|&I)U~nKIB$4k zF~39n1lVwvKX^em!}EuIUjg|O{PgStR9?YfeE%HKP$=ZRu?ncj2rKs=q4x&Ckn!zd zBJa7)-)WkhrtbBXrYp~@Ksamea&H6N51L~c56PFXX5MWz&sC&J<1$nDptE)&XXGim z)~h*FkuktO%qIA%aPwO00Mig+vcxOUJok~ynN#zYZg5GhTSYKcml!qY)4KKMrg!#+ItgC;gao(wfB%n z!d~oj0j6Pll|VbVHDKR-m^ku(v3C}gleZt)r-I6dPq1239lvpy#ZBc+dD(ry+O48z z6DbDVV#)D2fIBI+^wVJYr^U<;n*aJK@yTP40G_z`?upN6Fa6@=vq5s;V5dypY&cgc zuKXA%8khXpML>K>3j9_I2yW@V=^1J~CVlhzd7$ta>3iEzpmK$@=>L-19&~u&3X9jMM)x zO1XW6sw>2(Mn($~hE}_Qr~L`rfdR@(A&PGFwiv1BDNSAGY-;URl8PKl$Kywd?$Kxc73;J?EZ3jZEh?rZJ4Mc)|D+)4hBkB2ajAs0s+|5GJJ%BC3}wScf`U2xz`|hW3X71`E3YlTUuZ z8nY5ag}aK*X%q^-jHIKAS6wm?ZxFSEBs2b|Xvw+_7#l=uHMv!&MaNPrV4e_N3v)o+ zfSk(dS*uqr;wYRCvYXS{()gghG4ks85%f+UNZvDp-pB1ElBdc@bvVFZR~k7AYNJiL zqnkX1&MS{^Fpws@JkFJ}85(&TZ(`GZvYR)Ub=kyZJ|V>n{|1;bDYuHg#$J*tYbhLK zuyp>}0YGc{_E9Fws;xsu$V`qZ&)g5h1gMIO=ylfJB|t`QPnqy5R<U{K2>TE8*U3fz diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts index 949ec8966..02cc18c0e 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts @@ -668,22 +668,22 @@ Do you want to continue? No active document - + Kein aktives Dokument There is currently no active document to complete the operation - + Es gibt derzeit kein aktives Dokument um die Operation abzuschließen No active view - + Keine aktive Ansicht There is currently no active view to complete the operation - + Derzeit gibt es keine aktive Ansicht zum Ausführen der Operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_el.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_el.qm index 19931804471df757e5af3eee418852f0ef864225..8d039f6fb6da532f8c2e0a625473277ff11bf176 100644 GIT binary patch delta 1240 zcmbVJZERCz6n^e~`?Z#PJ3AI9xbDJ2O}o*u!9Kc=PB)BhFbrWC)5MTjuWQZP+jMtr zrm#jd5+yN~*GPm65(p?iMwrWlDX`(xkqJamB>wPgFc&ra5ffBodfMrJpfScD?|tt1 zdd_*ynSM^#^`h|dVxc3Q-|h(f48xASfRoK*WqW#?Q}mxo54e3T<#Rx(8?CRl0Y#hV z(f<-QOI<+uT6Em{30Ph@kG1!wueCq6W*y$1Re?qKV(fANSoRry{eA{mRfd}x^nHil zvi2F=%3>dW&tO@OP%TXW#nnQ`{v$x$dg1Aw%YgNOu;a(8K+UJZ?(MU{>M4Fma5dI_ zBW{)6BX?TdKTX4wT@;U1T>^3^#i`j%K4z~qV5%&4A)d7bi-dsAz6dgk4u}0 zq}^8J$OjCiHZP+aEcMzRJVrY1Fx#G3;-;C5{CyS`8$!IoP$|~e@rc3Qkek{~B6dp7 zwZvHEkycFH0E8pbLrGeU*disi(*C_~O3%Fe2vE3A8ag{ki`^)VJ|6(;NBDVzD-}2) z7p)uz?z$xVQ*(6YujQIw?xFGv^7^SOw3G|-7l*$B3I^nFt*3#KdU?+O3AMdycUU*IuV49FcMJ7O30Hj~_FQY#G{_<%@_!7eF!hTcDjk-~{*e>} ztzQ@@Dist)iDjizDaz8Yf+EbmSYgR1s1H^Inbyzw>2UAmo_o$c7tV6ir?~TRoE(fV z(Yb3Nw6p_8ehKZP!GMuCGlL!G)!SQ(faFp{(6NA0sTx>&7iIH5ffU0M%J+i5O7_}@ zFc_`^mTkntNe{5{E&hC+0WvRRE`sIwyNFgB<|FkN{EO6$oGgt1sWMmA)eYngb4LzN z0;(%q%j{=BF5oVm2m>}3y~UZDT{}sW^n|rJ(lxy(#!Gsg6F|%u84vGb>$}O!{r5nw zpO3ko3YZ6YLq|WG=kpPoY_DMJWVA^+!m+eiKv^ZU4*8gS&l1|d3!!l)GkZk%ai$J% zQ?WX+5=f{LYa5Kv!|4-SZxjRiZ{olnKMctEhItvm}# zZ&h#UWuBHR)ccdnOj|vj;OmI{9o;NAi0dW|2xh0TfHCE?Noga$0j^ux;b&hXTcw63 z7LFxFI{vr`#g zjskHt+D$K~StfJZ{0IA3zfoJ{46(>BYO8(hb&kSXV10Do0dZA2t;j0xYtE*+|NoA} A+5i9m diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_el.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_el.ts index dc4b90c7d..a63805ca6 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_el.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_el.ts @@ -668,22 +668,22 @@ Do you want to continue? No active document - + Κανένα ενεργό έγγραφο There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.qm index 60c851a2f73899c9794b7cd55f44f6aaabe0418d..42684c34d19be73be9bb8311bb8b57c62c7fc3d6 100644 GIT binary patch delta 1217 zcmb7BTTB#Z6#iyrcUc!_78WmvVHvTmA_z!eZ+k{k89|iUvKl}!LYXvu(!{m^FeQ?op&}m9HGm*Dv zyRr>KBcxt>%`nvy27KF$P3eum!eL_|ZU@|htd>tV8>e$MAUA`lyw_GdVCvgLrE`Jl zOv4GlRmTST{HnsSq|UZ98r_woD-^Ft`u+q13g(y>pCJbYZ<}3JM}fjE=CXGvi0L!4 zcjhoTtTs13o&xgsv1NjTcc-#i!OmBtu#jLc_XI7czM~jxc3XaM%%NDvELZYsh~&fM zEZcm*;7HCFXa|cslB@eEN2)Vto*tVcvI~l^9C-$_*@J$f-=}IzS;)_hwkf4H2+PfHs|#!2{f>E|zQ0_pdq3Cmd^uSS|F8ztEZt8M%}U|zq~ zclj1jzTUd_tU{?Xt#!^J;FW4?({_pa`vbIv8v^Jm9PlBG2sHSiAb=^He9LIc&C16n zs={c(Bl^qOL3b3iA_SFcjcu8`$Y$FVk^PDmh^z9Bh|(HT!)%FT0qb9FEtauWAD0m) zY|-guT|%Qe4!@byVWLlZLBc%CGZMorTBvk&lP`tFT4^Zwmnvz?x?35|)NlW%uNNs2 zo)d|l%TX1jI!2#N-3T#8iC5K)#i$q5Pa@P+6StUROs%M_YgS{b9B7f1)>uppYr%Fo z{P)P3tVLuc5{d>@O_jA~RgOf}n4jIuUX%zEivPzT|ME`%&p7iN(_HSC+Kva*wwGHz JIa+u=?N2`dQS|@- delta 677 zcmXAmTS!z<7=_o_=Nz3&$I;P2(L6%th_@-78RyJsN7Mp)2p=-DNTj4p0_kGf#i=yV zgo=h87K!>GU6hhB%S%a87KIulB?e)EHVIJ#nFx8Q?fCS;-u&xd>t7$Pa@QNVYhj$? zF%=rs%Mcox0r~VA?S&qu55JqWBz#L%S5eh=gCcOPIG#iF0JSX$+#5-j^^!aqMdI7J!;V!v@kZ5=?yeeUdu zNkCW6HT?bxxD@V2-7JuHi$37Y=QFcOjr0<54w1I$RWqlE*D(PEFOZShooqap_|BZF(0(ze9ufr z8jLgNfH1Ei`|ULA No active document - + Ningún documento activo There is currently no active document to complete the operation - + Actualmente no hay documentación activa para completar la operación No active view - + Sin vista activa There is currently no active view to complete the operation - + Actualmente no hay vista activa para completar la operación diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.qm index 16e11bcdaa1930f3c0e44efc3227754a26e2c567..872f5c729c02d67ed96d148354b6647ed6e82d24 100644 GIT binary patch delta 1252 zcmbtReP|PR7=G?9ZPR3T2~lUQZ9G33SFLTVwrSFuXjP`0tvZWlf@q9qli4ICy`+AJ zI$aS#Ek8fN;`)a;*&m9-ZKWc0YZax=IoYHz@Uv=QYz%bFZED?nSL`2S6NVhWd+&Yj zectzZe($qg+~<3^{UbSl+o-vJm}+kyPVP%QtwZJV90Gyq8s>c|f zX>t17c&_I!@Iue`aTQ`OFwxHWJ3a-f9&%fn`Tnydw?F46);!qk2{g zzg4_Ia6aF0PZQ(kPrGga)`NUsdKuAo@ejVd1yt-2tS2S{g?|Y7M?2|%wxG8uTf;=& zKEdTMboG&%vb5px?kM2v&8W{=4U9Htgp+o_)5L1{9An0lsVXp~fhoM#Hsfw)`-ha4 zzm<8;e+qED$G+f;tDSjS+nPrJZ(hvOC(Kxx_01^;6wft|Jx2!%tyYI3Zf$slX77^^8D#_G&g=~1!rtcitWb0ki^`eE; z6)+}Sa;FA?H;zc2KPLl%L0Z%|K!Zcl%};IvIimE?)D28MC=I&5r&wXJ4QvNS z7Fp(8y$84j%iQiDxei$BTwS#GotFAl65+uxFuPI!mBN7qNFas?0u)s`XFkaAPpK)z ze1strx`EIzJxMxE^c^5{9WgdgZ3GIUglQE4BQ-=O9b0Wo4g}S3Qjyoif{BR2mQEVY ztWJwF54FV9x(0PllK8UTSwZtKUmE7KrH)*U$a+dvrM9CEAtJb0rfN+{klqnA5>p{W6Qk-gWWpOMkCRl*Tny3q!}@%6AtkQJ;U+nl zh{u(v+OSEE{=;%qmDQLWj71t76jhPckRrz#m3V;dFBqdaN+n;zjkXH9FkS8cbn()J U8JeQ zx9o?gKZK$}Qw+b7N=-5?QbP74R$+-0_$Lc1Kk9YcH02v3lOXq!n z*1^^P_zKu2xVzWpfs`qwgEL;q_{OTmmo%zs_EeoASzSUf4q_i{;2$72%uh2%9+!Uk{i@~{Q|vj3>qrx z1kwhTF_x5*SgZC_(s!H3)BzdEBkDJu3Xt$f6E#FK%|?war=3#bHTH|-HmE`4Tx%s8 zRhr`EMY<;|>AaE2xr&RIn9ZtqcqzkPq3xR_uZ}$JlrfmR_h_fhxkTd7#Tdc?;gBwg zr=lXObo;uS&~ z;mc(p%&gz_b{4Rn(eHkClIE}V`SJi&UaNPzC_3w82?gEWb52zjuXHB6dVChY;Xeyb B%ryW2 diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts index f5a35e1e6..a0ac09641 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts @@ -670,22 +670,22 @@ Haluatko jatkaa? No active document - + Ei aktiivista dokumenttia There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.qm index 8554a498708371ebc22b5aa8233e3f3023cf9f42..f0ac50bc73fec5b12ffea3851f891736fd74fb8d 100644 GIT binary patch delta 1255 zcmbV}YiJW$6vzKFlcw2ZXHwIxw%s)y)F!R=>DnggBQ;UMSFLENMOd^O#~NuSF`cBi zYJ(Qk>X())_CtMuqT&ZdDJm6F@wHM{P-Jlz@l{vL%I=B}w7%+|r0TN!L1Y>3oO|xM z=YP)c+zXqyjt;KlE3UpXt`S~&*dursx8GKBPVp=-?jl#eb3fo73;CV>@n$UiA;-_ah~0eOzR+mBH^TS&+_CNYt> zj&Tm^di$ulqeu6&T?M?Rq{j3`KzcCAAGHD%t5`LkZb*7DK?CwKnZmm*CHwT@&E2AQ1g? zgL`NPrN1&Pdi@kA>|)u1jW7R|RSPu#Usyn}mbvxDW0wfSlV!YO`+~5h7_a8dAdwxW zEK3@on`0^v=ncM^ZJK_FI7ZwxEzQgYoGaLQLFK&*S&6Qculj=pbh%Y2u`YsW6RlH8 z(X~y?KKlaTdc~R+8VtW&jIO5n7d;f$o>>T3H;aca{z&h#R_tBx1}4YYWt}bN*(hb@ zp9V57Nv_xsAl6A`FYS~*D9!G>M}@~rH}~EKGP?dI1`kyFg3!=F%a5MrN&390IdmR@ zkCqAP4u26Mf3RI{B{8S^plS$J~(GY$|xaR#Jf>1xgRn;z2!iwx~mVJ?MSW&g6m9qL@UQO15 zvM(42H7S}RYs(Zl7*fIwY_UBf&K6tuKe^tIj5_@=2S1H4?tLcFFwist{D-LglSEO! O((-AVo@>R;sec1QtWjM6 delta 677 zcmXAmUr1A77{;ITopW?<9hWo7G>?XDA?cR?_RqPMf1s#ll-YU$>nS_i+VE#_9xw#37Gg90Zt_48)$OvW za)xVJ{sCAgx%;;kfXqhP$LVg^zLG}iEgRn^-E*5}E|LLL5Qyp_;|r&NoFJKhJ_DF$ z`R$LBf&CBpgw7$h*YY8mtTrLNi^;}Yg(ht@pcoc>!=)_!y)7D@f`6RZ%#ILNT5AAD zxmXoj2E<+#tLtUN!!jZIo}LC0_J}Xa8-R!waaxLGLbbGx*fkmJVI9p^+53X95m!H8 z^w4)ipJ%XzyBpYdu{*;|VK&ny73RDiK<`&ruCcUXzZCY3E*9g2 zqHJviNL`}YypC85w3L^LRZrc#Y|S~R9Qwer+Ut~`brCH41LZ{O5hk*#O4P&vf>WjE z*`anHQym^)nWDa_F2toUZvh(QYlvfj779j^n@8P3ib*bDO2%bLJNg^o{8CW^YmHoz z>KoZ{^arJzZ_WbpUFq3afE{s4^53xoxj{NF=!kuWN}}w@Zi<|KGz;wNh}^JzVW#8M zn(rPU=A`=2r#Zk}sLp>?!RBstvB?i;b?T~8R-L)Gniah?ctw;`sVk#mursSR`acId B%W41s diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts index c21a2c74f..c61de1acb 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts @@ -668,22 +668,22 @@ Do you want to continue? No active document - + Aucun document actif There is currently no active document to complete the operation - + Il n'y a actuellement aucun document actif pour terminer l'opération No active view - + Pas de vue active There is currently no active view to complete the operation - + Il n'y a actuellement aucune vue active pour terminer l'opération diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.qm index 93c0c69bca596f30eb20aa085585f21ed9e767b1..47a8e473ed9b3c6129de9b87123e7c7e26e21f30 100644 GIT binary patch delta 1247 zcmbtRZ)g*D7=G?9X>W;l32{nSHJ)~MWY)yhCT&`q%qlY7qNt@S+oZqHIk*==q%*pWTt@hvaU19Pt-vcDd1 zpPHz_rFdIt23~uB#_@Z=te%NlJ(B&kVf}(JoE=pF`+l6i5u(@E@yE|2fNvaQX8jz0 z8g+g*#?2bWUuGR-s)Rvc_NPo^?70k{cp7{zA*$J#ip(+1gyx1Wf(Ts;1mPuvd?;MZER?T#Ym?=n5Nhl|L*v_#s{W zOA7`X`+&eY{S@o1^Q8*6bxkH}ccD3}%tP>_NK zK9oO94lDSkvAfjg*XMAhY>?3-9PR&}9^>5AHBQ@^D-@&lj_sS$7bsT5_HEfR+NRe& z(=`R)@^&vr|Dbr2{f!fp!`Wkhzt}_Ga{6U1&W1(ZZwasqhxM4n6LzK#0I&K4_YzVJ z+!W>v-Uk?6SlLC3VatTnR@%QeBXnPS2blhuaPq4!X|YxzmkE)BclE25(sbxOapt@W zz)K}!Fr5b`Ef=dFzC!dq@vWiTGYF>pse3fUzr0+COMkdiiBrXAY97(^G4A-|PNkvjSB)K!0q;PGU zrT9~cB`qPziCBA^qA8NrqDYB$B^lM!MBGS}PCZAOM;kNUK4XfGep&HtTIQCgu6^0qGG!wDset=mspO;9C0uY;9hr{gC%(;R&l7 zPZvu8jStVKo$PiOet%s6c9dZ?#3cL)@f+4c?7`pvG+Q{kI09_z=3MPvfWyUIs+b1U zTCOoL56A)TX8j_N@`c{#3|AaWq*fed#}7#R95Z7MkUn_|2+t!Ei$?(a3R!sk3CNK7 z@XiFlc$klC9RzfKJ|tre2-Y?xySZMtniv5nmjvHX5li2_&a@7}Kf!FJRtU>YZU?Z6as7El$(q5*No+~DftN|x-~=+q=z?G%S>sexNIO%%YiI7w0@0i{==i|8f1%TV zz6?bC((Qgb$2RHG?Rj>Rg^AbY%YGnXqt0E#s>@g_V?}ojoL7t*Y0y$UU`)NG{|8nQ B&07Ef diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts index 07cf12767..4a482bf8a 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts @@ -670,22 +670,22 @@ Do you want to continue? No active document - + Nema aktivnog dokumenta There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.qm index c80a0d2bcb5a7e81f75dbb10d9da15b4ed461da5..30c4f92117d934f21d9a9657d6804b6321fd7cb2 100644 GIT binary patch delta 4128 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 Yv*&&fy^P-DUTHlamCnF>1;>Q{0taCAdjJ3c delta 3571 zcmbtW3s98T75?`1?|T<{h@!$GZx&Dx1r&KHK2l$a)GEZL2+NA4EM-@XiS5P^A8qVR zl0Q|azLJ=x=|e}mQ;m&P6U-RJX0+N#+Nn0x7*k^#TOU-d+V9>UMKU^Zro+Jb@4e^T z^PTTJF1uFiZak-ZAvRnL81@5$rvb(aAUc||l5#v{73Ctzag=XTaxePNl+{2C^$NEG zgH8b>U!i?}pzd2h+Eh)JHo~}aJuu{uCP!?C@n{-t--huxfW(hr@}2;~NuO&UMFXKM z*u;xEkiCTpy6Gt0L&u5LC_U4_i!Y!|$b^-cx~2w5iqYh#Pw@?>9~kyS%)WUUNWP-U z;#Vg4)1>bMRgV=U_0qkz3J) zRjhsX9AGNcWd2tC_M8uJ#A4rvWpua=*Uz5?a>KYGWeNT(WS$*2<@!C`mg`4##m-J3 z#ipCR`R72%Yr3a{ABF*2n{MU5KLLshbkb4&P+jLgxOQLF$5$K#oX7NODgPwp$MrIz zgbDh2F&_Yd)>J=?NI3ewG4cZ7>Yk zxQplI2I;3D-I%{AOh*Gx8J|gu0W3wvHE+))SEk^P)sL{+emcFTTzi__67&`o)0NU^?k^0p_!cy?QzCS*^q!%OmjdO5)z1lHqGg z>1PC%^r{k?wuQB^M0qysr2(M4wEij(=T#)K;cJ!k9U(ftsO*`&jfJKtU3pi4ejUmu zZ(SmVN0kfJ)j({ga`Ow7k(HQ7UhO7RUi0YlX+X|p^Y<1rp#JB~+IkQ20oOP*qGm35Y~TbtAHOktC4%SS!b;nCg8Gd5@^*4``p;xR2XRylSPTS1? zDk4KmY>##^V9#*dR?}{#{BVVBSJx?E%of|xbSraawjIlvOk}^ZCq>7xU8?MP23B># z3Hzk&XUTxU-jt99jA*boy}NSHstFKW`XQPYk%=cMQv)z@yKh2)`yL;T;2JY9nYl;XwrN!-^%fyY!Z3f0>8JOa9 zOyzGS{8$oMW}2gq@6Y9Uw4)wP2*HC{Xoe4q)o$~5!>ceEtq5}6&a)s->-l@H_99K2 zy8+sJs5PJ39%<9UuLkb;&?wL6VL{JMCeO3D*UZ~{ZR(|VGZx7k8qsc}yTww;AGvAS zX-yeQtTWL@G(H|R@)qIE*9Z4!(aXd4L;Yo>A`%f*LxegLg%enLf7=6&_sh(!1oK7zD-3O;pR!qtp)Oz*)Zi0?~46Kyo4 zjp{ptCRhbZxmKeFpA5f=nw}CAWg@Ia0gC$<%5>i;;zpi56na`}B`P@UEmoFiFV)C{ zjqwHG$z(1AbR{Sg2BM=v;()bHDkLSXJol+BLzabK|3ARqhq@kk4+T`7f?j=i%j^Lmyo(Ksd9jWJ2Od0y{I?Q zFtSV)k9sUK%NonW8eyQ$NQpDrJT>iVeyVrKU~bQnnG{v1*$Qe!=0oacPibSbvwg-xSSO z4yw~q;v*Z=Li&_RcgH>ZXCicz~K;52Uq&DP?Hrp_pJ6`pToT8rZT=i4=JxA`R=Pu-a zt@w_-p1VS?ULQU)a;c!ySYFm=?0IBFB33bF(oi73M(}SYSB3In=+j;5?UFckSyArD z!iT)4k9Fj4MU4jj-#?|N7=yBSICRt*V{-aMVFqatubXIRjyQGs7%#OeNmC0UP2ip& zEEqXBrc#%d$=RtrK4Pk9BU&_~U#`R)YNu-T*i|}bF{+tHF*K=mzuc?+%RhID=eVAA zA}^yBORZuA6WzP3p%dldml)e*i8QD$R^$vyz%=fQV(*0@T8~W^IbTtv8_Y0F2P7U$Wi<0z^xq2Fl_yW9KzU}It W#+6N;@{slqddctJ7HJ!QQ1?H9Q!VNM diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts index 09a44f504..6731b8d74 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts @@ -49,13 +49,13 @@ &Draft View - &Draft View + Tervrajz nézet Inserts a Draft view of the selected object(s) in the active drawing - Inserts a Draft view of the selected object(s) in the active drawing + Beilleszt a kiválasztott tárgy(ak)ról egy Tervezet nézetet az aktív rajzba @@ -207,13 +207,13 @@ &Spreadsheet View - &Spreadsheet View + &Számolótábla megtekintése Inserts a view of a selected spreadsheet in the active drawing - Inserts a view of a selected spreadsheet in the active drawing + A kiválasztott számolótábla-nézetet illeszt be az aktív rajzba @@ -226,13 +226,13 @@ &Symbol - &Symbol + &Szimbólum Inserts a symbol from a svg file in the active drawing - Inserts a symbol from a svg file in the active drawing + Egy szimbólumot szúr be az aktív rajzon szereplő svg-fájlból @@ -294,7 +294,7 @@ PDF file - PDF file + PDF-fájl @@ -334,38 +334,36 @@ Different orientation - Different orientation + Eltérő tájolású The printer uses a different orientation than the drawing. Do you want to continue? - The printer uses a different orientation than the drawing. -Do you want to continue? + A nyomtató a rajztól eltérő tájolást használ. Szeretné fojtatni? Different paper size - Different paper size + Eltérő méretű papír The printer uses a different paper size than the drawing. Do you want to continue? - The printer uses a different paper size than the drawing. -Do you want to continue? + A nyomtató a rajztól eltérő méretű papír méretet használ. Szeretné fojtatni? Opening file failed - Opening file failed + Fájl megnyitás sikertelen Can't open file '%1' for writing. - Can't open file '%1' for writing. + Nem lehet megnyitni a "%1" fájlt írásra. @@ -389,108 +387,108 @@ Do you want to continue? Right click for axonometric settings - Right click for axonometric settings + Jobb kattintás az axonometric beállításokhoz Top left x / y - Top left x / y + Bal felső x / y Spacing dx / dy - Spacing dx / dy + Térköz dx / dy Axis out and right - Axis out and right + Tengely ki és jobb Vertical tilt - Vertical tilt + Függőleges döntés X +ve - X +ve + X + ve Y +ve - Y +ve + Y + ve Z +ve - Z +ve + Z + ve X -ve - X -ve + X - ve Y -ve - Y -ve + Y -ve Z -ve - Z -ve + Z -ve Isometric - Isometric + Izometrikus Dimetric - Dimetric + Dimetrikus Trimetric - Trimetric + Trimetrikus Scale - Scale + Méretarány View projection - View projection + Vetítés megtekintése Axis aligned up - Axis aligned up + Tengely felfelé igazítása Flip - Flip + Átfordítás Trimetric - Trimetric + Trimetrikus @@ -510,12 +508,12 @@ Do you want to continue? View from: - View from: + Nézet ebből: Axis aligned right: - Axis aligned right: + Tengelyek jobbra igazítottak: Primary View @@ -597,12 +595,12 @@ Do you want to continue? Show hidden lines - Show hidden lines + Mutassa a rejtett vonalakat Show smooth lines - Show smooth lines + Mutassa a sima vonalakat @@ -670,22 +668,22 @@ Do you want to continue? No active document - + Nincs aktív dokumentum There is currently no active document to complete the operation - + A művelet elvégzéséhez jelenleg nincs aktív dokumentum No active view - + Nincs aktív nézetet There is currently no active view to complete the operation - + A művelet elvégzéséhez jelenleg nincs aktív nézet @@ -741,32 +739,32 @@ Do you want to continue? Landscape - Landscape + Fekvő Portrait - Portrait + Álló %1%2 %3 - %1%2 %3 + %1%2 %3 Insert new %1%2 %3 drawing - Insert new %1%2 %3 drawing + Új %1%2 %3 rajz beszúrása %1%2 %3 (%4) - %1%2 %3 (%4) + %1%2 %3 (%4) Insert new %1%2 %3 (%4) drawing - Insert new %1%2 %3 (%4) drawing + Új %1%2 %3 (%4) rajz beszúrása @@ -816,7 +814,7 @@ Do you want to continue? Scalable Vector Graphic - Scalable Vector Graphic + Méretezhető vektoros grafika @@ -826,7 +824,7 @@ Do you want to continue? No page found - No page found + Az oldal nem található @@ -836,12 +834,12 @@ Do you want to continue? Create a page first. - Create a page first. + Először hozzon létre egy oldalt. Select exactly one Part object. - Select exactly one Part object. + Jelöljön ki pontosan egy tárgy alkotórészt. @@ -852,12 +850,12 @@ Do you want to continue? All Files - All Files + Minden Fájl Select exactly one Spreadsheet object. - Select exactly one Spreadsheet object. + Jelöljön ki pontosan egy számolótábla tárgyat. SVG (*.svg) @@ -909,19 +907,19 @@ Do you want to continue? Make axonometric... - Make axonometric... + Axonometric létrehozás... Edit axonometric settings... - Edit axonometric settings... + Axonometric beállítások szerkesztése... Make orthographic - Make orthographic + Ortografikus létrehozás diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.qm index a5824a377b3e59bc9b35fb5d74879c6600dd666c..e8d4322d1f8ed3cac23b87c45ed675364b124886 100644 GIT binary patch delta 1217 zcma)(ZERCz6vzMf-mWdJ_jc~44{Uk`q2euIb#c-9%=w?T?d+JvXY&ehpC6|#`RH{Dzy5dw*!T$UYSwiJ zzm@&VD3)y=ziakEC+8Mt0sB*2XzYEU+s+LSUII+-a{GU|4s1Ef9eimX=-9+2I7hJi zbAFHbC0#$mk6qJX^!!xkMWCvVFU&s;_@?x zj~acYQ6g+HhVL#=oWj-$4&G~EJ%WwjqGt)g*5&h=roW{&0s+%G$1-Yb*mS<-aT3{S zZm`w>I)}McpdHj5F+Vm%eN=_b&#iJ2+XVYcNbGF}QK<%9Lz3C*CD@rBL1+t?S>)eaL@`5FB z_8PFc+49iIDA4+|rLS{_);?+J-yzZcz8Gy`OaMv1fdG>9rJy2$-H74X^A*RN8(Pr| z1%vcu=~c!qiipyGf^L&gncuLo+S;3vBT+S$Q{-K#Xf~lFRd(KGU$$;3mxYZra)gvs z(#;`aq>|9nk?v*YSX)yqOS>#gc7;dYBpfX~OEB@JVpLKtBWfTTRE&;VzSW{MtiM4d zV3|~wifdk)ax!G2^p+qmPQKQ5rmPi5lZhS{gCeYIUA4EnZ$QZ?a%@nJW-}S;FaCm@ z{7cianv$cbL^`ghimVPOaw@H4BCK)EO06%~Yya6(6ixVnxRS&{BiF{}xkn!PKjeP~ VcW?ez@LWt8`e*24Y1irMKLBI3Pj&zR delta 677 zcmXAmT}YEr9LAsbyze{b*6VaCip#gmTr73v*S^$EEu$_fA-^bel&N^*MIRdKGAok0 z$$7{kQz5}9NG&ll#UP7fRum!9g$e2syekVyn{_s?9{%TWp7Z>k|D87O=?$(eg0r|I zi?xp35L!C{d1O;fMz>2Q)?s&-Vb|e~LSTCw0&2aA5~&(UnLw%U7qG*(shRoi-^HiW ze0Z@`32e#1%NaYn9mLwQ7ueH`^?;_~uV42@!55gP@Gme|a29D2*jd1p_B;f#%DKj~ zGl1$Y*ZOl2uq|@8FE0UUwe&HkZ_ZjJP10+2e3SId`@`grLGv^arX!xEV?gE);(hiF zF#q90AH)NRNBG#T5g_yyAFxSp7gD;JZA_bRDIpwC76~0=WsH7pQ%&W z*8+|cVs*3=h#C-U>SX9(^@<&jih!*x;`5XBKybV`D}^wlFnXTYwW)K8&MW8G`_qc? z(tg0yPTvq?o^dhARnNYQDhUe2NG%9@-%o*LjZ!zxVkS2zEqT3wu|jEWV6=*ErG2BD zVN@xd>nlJ~56$59#F|UXc$wI8sEe0vnHN+eQ;gN#sQRQ2X6(bN&q;@v$vyQpZ6qM* z)kdBzO4p}8ILMg7oa(9=1Iso?r} No active document - + Nessun documento attivo There is currently no active document to complete the operation - + Attualmente non esiste alcun documento attivo per completare l'operazione No active view - + Nessuna vista attiva There is currently no active view to complete the operation - + Attualmente non c'è nessuna vista attiva per completare l'operazione diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.qm index f62774edace9f192efd0ca09ffd43ca17c721468..105658aad199c84e498a4f6902f00f11ee388ba2 100644 GIT binary patch delta 1238 zcmbtRZERCz7(Msib}JqCb}3AUllEq;ckQ-r??xwVBwIQ~2QnaGfd<88mg`oswzKQH zOkwpS8PWK|@+J~983Y2v7!kvlQv${**5Tq;lq?Dc=A1DxQD-C*H+_0H@rQ=Q_@}4O zbD#4(=bZPa=s@@Li-kZcZ?oNZ1g6~sKz{ukdf!Oxa)_)lwa-(rwrUnA8bZ?x&A^iI z95O4m$Zder9IWPC>LKCru1kQWOxXSNH$Y{+u=lA+pmZxgENBf?SH+$3 zy8s&#_g~A1*&`lb@i`zn#gWNPG(ICvoW25-PfNK+mjQ(_Y3aT*z{0mAV@=tEToxUL z-mgqUBc!hEvT5p>2;jSDZp&{07P-u!goD;^;Z0(`#eBUqPCL?E7whaLV_5@FQ|Vop zbvAH}PKf-JSl&>a&fe9t2(XW58y89f*&iO`fOfy7;4CT74p>$;90H10TWTI7Bj&Z1 zy4gXZ4_aDoOaZQG?vgaI;v?Q9QT~HGEIDc``>kg#k`15J`mwfvYz@i_UAx8*!?hljL1%HNYBVl{ZR=`L}32@jh*^|{Htz%sAwxF-|L zM%gud9S}Cj8+s@hAuT6%QvTYH@{{ju1#Ukqzn*@df-R7T`s;w@DL!h_lD>%I^u7%& zKC09tXX%+wDz($afY_+48yTm=waVoqUsHe+%D2{YbZ%6ct@(_w-)0~019A`A{G-=^ z3cu~{b3tk);DRs<182npy^CFq}yo||OlZ*n4}_Ykp&JKXmr`_PPbnv5B&5W0vPL^su$PJ}jg zpqF})f4Q-pdYReq{G>|L86`pb4WpBoI(0H?;>Hb?`khqANNYxE6p__81=csW>oHvo zb*aJbSd6@N^s1467*^v^H5d(dcIa_kjkoJ+v{R3@@+;0I{JdsMCjN(;`NRyh|Ix)? UCTg(imM${M-`c?m-Tj>HPcD{JJOBUy delta 675 zcmXAmT}V@L7{;IT<&Li7kvYv$C#jpxZ6_5#{Wl##5vkzBhlmrot zLv~?m6eR_TBD72?$}%wxvxanGfjUOrMA;YlQLppr;s5pgpWpMg)qktGs%Nr2QKh=f zIPfiPKuqqcS`?4lz}mVz?dFu-ttG&^V+g9P31w0hka85|OFw|v538#9JU>ehnfKsv z;0O@99Z#q1bb14SzxV-TFBXD&5{oNp+JL3t`ZN9o*ZY}lX$XiLX39J70UO^lr|YHw z(aN-Zp97RD%=P8~kUF70U`%Jz%h*Qg1#K6xoii(8M7Af(2S^F*XrP#$*RlSG9|3C( z7txgjB-V2A?OtHb02j0|Px2WZWUK$fHyI;=kPCe4fP?5=t7_TH_m5J{v|@h#QZ(N8NO_|f>sEoJXJYIi#Y~PCv-5A04v0CYh*sDo+Lt>BLoZe= z%+tLZbrWY|Z3U`>Gq8$Yb#sO-%3_%JHL+$~3!5;75_?YATkB3T`K3+JMFCu)R^ez+ zQIp!j9%7Ol+RF82$`(+4Ts52NQVaOaZ2C>r&6~3f+sMf>EE$J>15B}0)IhBLvC76`1IXR)RjMcIp-a9KO*a9 z&j1m( No active document - + アクティブなドキュメントがありません There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.qm index 3c34eb27fab224d51511cbcad4ab9c959d758d07..a121fd38395b3b08d16d32fcd14555ca91d62961 100644 GIT binary patch delta 1254 zcmbtSacmQH6#nk6-Hz6~j>2GybjN@~VYE`&x^Aw`1_Uq+h)!HI21_}%)Ad@qTMN3a zQKJN7i1imBurNYElz#{dQJgM794Z--fW{CpDjDF+5)*ZrMUd+2O(0RjANt4Lm-p^{ z-+SMCckpHIvsby-Cv#2N;I;cHUgz} z;~4xHk4w#fKY^y3zW`;$<5;sP`@`Dxi?VosSOxA`gOe9Sz>Gm$AGroR5W@` z(rKXjEWdAvhFO^7j|RQ~CR+Ky;YW!+mB04xH$c^Dq3Erdfai=beeZFgXq#ZlRESLC zU1gR1mcBviUa`Y6x=jbdk6D{b)&WyDS+$gl$SN$AeC=iyvv|TqnO$UJzvNm% zih-x4*#lz$*DI|~(_;8Xq*Mp(-}|HV!iP`L?+}oB&wN6Q?Uedn2?4b~v2zx8CNv_K zE;t3;`+*$HaY|qF<6%4ql*K-_=fj&C>YmVlpWFY9!=n7v7APLkV0v!faJWG!b4ac6b&YHJ$ zE|yW8&nQ$8r3#IrjTCJ_oZ@!G%&&$>GAN+Oxhk$iqK1}Il@0M|drZ|0cA>18UG_Qr z_hS{Y?kJ^*s~}}+rf)0AcN9`=jk_dIW!rs`Ocxr_LX@OQ)6hob{0K=ilOMkoTPUah zOOwBiOI3zh6{U9!31X_I{d_*(L!o@a>=mJmMv=ba_JrZa7B#6VTALDWPbSG>>lQ`- zhi%1(E75o?(W)A%Vzj7AJfS8dh8EXvEhLlrACCT7+kbI#%SbJ1?&>6^sp-4BICj~0 G+W99jT~m($ delta 677 zcmXAnT}abm6vm(bmz$e^H4;k%UyAWGs#<_}YQD?j(-6Oi>v z(BDl0EW<)VXCI(%6+&a|^U5sP01So^%b%0c`0DBt@y)tX?0!lbqbM*!of^t8MV2tO!I$&oZ@H#@_74Yn^~9T!ehe_q%?Q5WDS zW^Z|GUV4GbUq|a=6ICG@wi4C*E(WCf)y4smnfhJr%DV-mjjP@DotAv$m_O6%|~-MdC%93rtPJZM`#lbF@R{*S_KNq zsMqf4CQniM+T-yS($>Q!glax#Biki9`RoPe7cGiuCrxsU$;pGi0j@{hUq@Ht56QKS z6i!-&-2A$j{)i&?3=dI=-{k&FUfNvA=0r2^DPgi?+MZb-Idx|mh-;5rb&mrnE}dca zED(K7m-}G`aAxUtyr`slyRJa#r^v7Be5G_cXLA*hv# No active document - + Geen actief document There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.qm index 5ae604b02d14fab3abc034ac56f94ae8eb03687b..e277f2902471c5cd612236b41669c5877c8f451d 100644 GIT binary patch delta 1243 zcmbtRZD>b+DBzy=$*FH(i>h z)M-N%EdDdRP+^^xAvy+|)0HV5qGfd-bP5||2(l^Yy0R}At`R2Kkj>Y zpZ7V>bI!Sc_Xr>M3WpX64Vk=pSM|HF^!5WwE9cO!XZE^TpeJ+0Tk>N0EU@xr)b`Z@ z?w&ae)Z-PY87ON-!^|z9aO)ffr!s%mzfsYS&&E~2aTOP?gz1&x&TnHt$qr1LxBz!e z{1r1MzK44TmX-+tX#^;05gGw2%kK)oJX94G!XpX74#Uji`+49wRh|ugPnhF$-RuSyG3WZr zH-O4U=kw>IWCI3wT1&mzK5V8+ zGcU}^D``TU-a8PZP8~_3pZX|X`dnM$N+g=pQmWDvk9NdVJ;_fO=JDYYr@sJOh^f%r zD6ur8h^f%25q3V9ApbidrKz3sZ2pdKN4gtzXfgJgObzYCkCKvvSuwP|)+T5LFL#VWj_X2ZNJ7 GtLr`v22rU1 delta 677 zcmXAmUr1A77{;ITopao2<9KYTmD3XyuBOYmt?g_R7Fmg1givZL{F8}JAtbC6%VioQ z-B{y*UC7);loTb3kXe%89||ofLJUbIYY0XNSrnPp=e+vC_wqj9^SsZaR_1pzb32}K z1rrMOSpvA$4j@I@plv!Bkcs14Fl5?utUVu)n-QgB7$-$PknsV&)gQplybUVl!Jma^ zGw1MZp#soNV`$1trv!f%BY=4fD^UjUcb)qRuo|U^e^G`QmpB6Ks$zWM2Y{=JxpH9& z(0Z8G?_U5#%iL*M05VI|$BePbwMrVrQNTGw!t?89DoKwr3B;9=@r4s~T|**IW`X^F zHm++ou=gXI66yz}2pg5Lp5d&WRCaq2cP(`bAlSL~=fyOA?FQ|H8yKfHt)IB%n>9d| zh4*hO1rkU2>N*()I1POJ!vestnSWYVPX(6v88H^nEUA}>S8th#>9~Fou*orlzHY#7 zR>w$2w%Mi$)YI=08#GZHmLkpTZWTyt5DbIVX4+?eC z$}*knR0nG$jwZF3m5KAb8enCQ(x&a7pjkZ?+PB6{^i&htcjlv1WKp+6p8#;lx(t>U zm2_N}+e0(Og>{ulChF~$I?2|MtaIuS&Pm)QYJf8-@?olEZxd5TegVuqF|VFpjpT@R zjkKKf9I<)$G?3gR_P%;aON@vEH@tv*N{w(v;u%*(UOr&+#m?NH1GavRU30$&Oot`? z=c_ No active document - + Ingen aktive dokumenter There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.qm index 1524195b2ed7b123ec6eb87503a1e026c14f7af6..dc1e7781ff1c1a322789206b28b7e3d93299e7cd 100644 GIT binary patch delta 1233 zcmbtSU2GI(6g@Mu+b+Az?7HQrVBJp9t}JbLYiYYbZ5Lb7h@tC)4OC+#WjeG&ySvSH zx(!0R5e(J0ZoY&*G_?>>gAZ7O+SU*tph8+P7((ztB>}OC2??PjM1kU+sq}$F6XV0o z%{_C^z31FJd-rjZ?{P!RxaREgE$*lbmcbFA;O0WC8p!s0_|Qyt)E9WAVjd{zN8^De zz_V!~h7Mw@*bY4RIhr5b0g9ejh!Hh=bIbPi3}4NvfMY*SU5NtnMf~~u4IuCt?wPR@ z_l;N{!~-**!$ULQ&4t9Xz?#im^VkufW(T*s=L%q7$_?KB6^K~4;k~oKdJp@E^ET8x z{P8T&zm+ymU#F$qmVW;DDzI`;`pte4SeKRN!M{e^3Emtp4%Clzwt;%o{|(b*3=+gl{UuWEFK2?4+|cu|iwB#?xTRw&qs<2$V} z-;#1PAVo+g8+EQMZKLm<=tUeV)#~WA5g9r3xMNAVRnfJyDz_z--ng1zLxn4t6mXUo zAVxIVY^y^`?J)gUBZRYGwdU=%B)sNz%|mRD~3zOvKR8gjE5LJTpwIYTDA+nm)(h(=lB#YKG^nmW{!Dr-Hm(wj=D z3B7BVoOs-`F6&8INyfXoR9%(z4pmNetEpC2U$n|_lu7>&H-9h8RQn%YJTehR&A+-x OYii#=J2)-{boXEQbV-u{ delta 677 zcmX9+TS${(7=HefTU-BTo0`X&hO6aLr~NxPnPdkNiY_vfXi0{OHwIb?<~k^--9+On zyAU-Cl7wU-q$^3t%CICu#48J|u?RYlMd7L5=GDXZ@_o?~OuSw3cU!g{>MQ|F#fYF?gJW_vkZnTQ>Q5kT(>gld_L!46{2htC6Wxe+R=QMY|eh$!V zHG`(mf35yM+jitxmM{5N-S)@lu8nP<<0SAA5lm>pJGeh`~vcYYU5uS84%w zpHv-R4#d?t!S0nh2aW=XW75c}MnD~u=4Blb^|N!l$B<);>S{d;=#?`?aZtSU^nHW(ibO z!ix4lfILNewN;50(#F`VP|Lf&vVEeRcfDXf(c&=eC8oT9oH70z;Cki5jg%T+AU8Bq zIhohx%TJHfA2G@gUQSTz7CG4Fq0NOXB$|1*lgW~)F!zLR{_cBVbGvTMH3L{G^o9=? y0AoPEdujntIQ^a{r)fT+FL4B^@>}|9FGZ&m*8l}+Lv>P>h274s9GbCJ8vX&ez{djs diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts index 0bea72be4..baaece7dc 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts @@ -668,22 +668,22 @@ Do you want to continue? No active document - + Brak aktywnego dokumentu There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.qm index c57d27d44717b0e68ddb53adca9b6ab110e1ed2f..2565a2dd8a7c1e1a8eee600fa8e8a379bea77ebf 100644 GIT binary patch delta 1215 zcmb7>U2Icj7{~wToUZFS&uMMfY!2v7#;DAFw2ZFnKIpp5h!O`ETVTpbT5I)pX7DnPv*L?w4KjbH8I)HVf{FOJq0qREu>q{$vdtMe+92%qZ^@1+r z^D>clmil2BpQP!&^M<+MI1s#<(^J$96b|P^(@vmqFKg$EOgYyoG@zoGDSW`@JzyMt znm&Ekjpw>f0sb2H24CIknaUmLvs0@(SD)au=6-aF0dBi#**PL`?=ksXj{=^Mss0Hv zVmxUIEF306$<%#g4yZoBRtYY?VVboIl>b#06Pyj}O3h;z$wts&{=}6>wz|!qRz5%? z2lGp84#3cqUoFrbEc55zf0}&UnV0`)aXC=8lf5Uz`Ih@wt-;4P8(GXy-fSHlArnKQ z^IlT)9~W0$xCU@9h@1K-7~UtQ`ze3-toYPB4*@Gw@wE@$r+XO|$M*z)<^gue;2I1* zCzVva4czsyR6n>t*Zh^#@Y~(gJ|R6gIZcDT($_D33lzO7T{TYtl^xPT{bw}xSBq_W z7f|rLrRCBT(2!?on+TKZa!Y63I8bJ_^lX)AKNJO8b_f7$aG?cpsL&9?45p!)&ODZ5 ztSG6(MksU=K?*U**hc?^_4n+q#=a{kwA(hSawx1t(~7)J4X0vCTw|FvWrbeqB_-;L z;Cp(;7nNAh?pPk8Nl~N`GSPS#X-P{e>}OXod(v%T3D3iucK=Bv+n6HAUc%84=(!~Q z_mDcm?Sag*+7Ss;cZ$X*sWU`NMS@h4OV47 zR%3}?MN?!gqR47ONrtqj8qcOs)&GACWV0Du%7)Mq1eFDoDRq?+{IBSZ|B9ZDDt-Tm N&FS1{E_yobw*XWOPtgDX delta 677 zcmXAmUr1A77{;ITopW@5I?kq|Og%>G!qnNE+s>vQ$^J@3kbe?O%)-Q*1(puVnHFST zM9o8bA?ig?Sxqb zQ>K?wz_oP)qGgTN4PK8(q<(Kt+NOP-B|uUaLX?_tP^bmAOrw1HC$O<*jm`q^ud<`r zi+C8U0oJA9>5NRb3Hb9p0GJ+QDMUB^t}?3#%OSG(7vg0`62^e!drWy>KahKbIdgIb z&@?k`^IrkSN2cps5Xg2ZKE`-9_XlYbp3`wF>6=?MQ$Yspejsv^Oa+SpXOIN$e*$bl zHu6R?u=ysN*fUJ`yV#J7rG+#1QdxtIYe|g)RK;B9qe_~-evQ_>+{hHQnWN?w+FgLW zhp&yR0%F_wx<(Q4klyp1w@QHofqzi#2GoiCtPnwk1f_wp~`&}0htxaoJXS>YiY=ELEy1{5HpN)}1&E^env*55+v*doAO752MnYs4lr zHqql`%0lb23Lx=>aQDRoJ)&P2xgZ01lS+UylKc;fz>5VrEfKTVKLc^Th!w{>YTBUF ze`yAyJ9JxL&jI#Q-L@yk=)6H!VjlrgB6YQuv^u-5jut&WRL_g)ipzXxsLxUy^&bL! B#>oHx diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.ts index 82ed21c8e..cc9a45ebe 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.ts @@ -669,22 +669,22 @@ Do you want to continue? No active document - + Nenhum documento ativo There is currently no active document to complete the operation - + Não há atualmente nenhum documento ativo para concluir a operação No active view - + Não há nenhuma vista ativa There is currently no active view to complete the operation - + Não há atualmente nenhuma vista ativa para concluir a operação diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-PT.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-PT.qm index eba1d018ea3d8fa180ad27d5dded5cd5b2ed84d5..d80840144a1d315d59b19c7aa75d68a4368bdc55 100644 GIT binary patch delta 2825 zcmb7EYj9I#8h%cioLtXI+9thWn?M>$Db%L)mbMg1TB|5nrR=iQDlrW-ZfQDg8bHcM zU??oIj`(SD1Oau>+L?86vrCIIg%KPsWd#?ZJFBQzSsX@GM7*)UzULg^$FA$dA7`HL zeCNGA&-=dT!}Z)g#yx3`&I1zm0d@zVo(@|HGf=b> z$fBosJK<+Q;{ss9W(B>ELA{pF4yIuFgHRuL0U9UNCn(m~L1^;c1ES;JRt{4yf`4Qy z6*3nSUm^pp36*;&@z_*Uj{1Sz>8O%0vko&0uK~CJ3A1_|==)^_ryjtsg+)L~0p?x( z2FO0E;Iy^)&9ju)^%dq9zD;pPFu#a!q79Ao9>v5tXp}EDqOrpQ7RZ(J8_J-QMl@i^yLH(F38PG@7y>B*A@BXe}`Fi#4BgDj0p}zF{ zHo*IeW>MNhK>CO#7|EiP|~b7=;Cs~Pky0SqC{X+fko9?f@oVM^G;8*A54s}}IK zck^j>dikuO9i*t2uZ(_16^>iRhiAV;39I>4dE^N2Pi_7dNFCr6B})0tt0|DDo8L3< zHK2SCKb(J=7@p)m9lS&>1OIt#E!lhdt6wr;(hhC$x8IRs8g2P`7qw)8cEu7RmcBwO z$1B;TJ^C8ixmW60F?(cPFGpK;Vk93|#NfB+2uIk!WpyD~*Lsuw)Tchh44ghJ# zbbI$5ry;ze`{8ktkdNt&r-x`G%Jg|p{uP)S)weVrp&{F#Z^vqyoxAm~KSixWzy8k; zo*<=`>JQexM{yoDXfKwMQeQ?5_YD(cr_S(4&2H-bF2leu^=igm!}0NYdcS0NchX(N zAkAn`vQeU5V}1fncV@5g&YfpTfw{(o8M&kgXI%Iet!(ns#&sWSDd8Ooa!f(h1qC$= z6y)z$P#bkA2i^M$8h8bbe^F5AQP8|p!Ng1jyO~>ay`NgvCaipGKK(b239lbI zNYkGv?Cz-|1zo~{LzOgJ#lqnRYGF>RsO}~I#1*2UI+(R zPxKlf_KD>`3j!fQ;+nzYIe_{$BB#hkBXcY)%^e9j)U(&DDSV zgw|_^**oM13Z5}HloFBgTg;1^sI`?>gFsDP0yQNG<57(^gb;=g=P-&83u>k~i%^3A zI_YUc3w?E3z|H()>_79^K0Vv)N8F=Gt1Hz%bv@$ zPsHmPo2tuI#cRyA82aM0Eq2uV76mv-m2%ugye0M>2-4$_6^gJPYc>9t07TsRf4ee46VnTyw$MJyTI z1}bk3vv_q>UO7ui{71arvFxP2_)~o#8e@XBK7NN^rKE6=vVPm$l8~`6DW|ktAJf@0 znK^3)U1hW7_I$Q6E5h~Dtxvj%Ew^(?_DPt1V~o47SRUjM{E*JlaEIA-OKNh`?2yCf z4+kRwM{~&EwK&igW-mBxY}@VT)FSeywII(HoRLRCUJ6!VwcX~UwFx2upN^&mJU!yA zNGx$eh7^ExyBqIa^+tv1Sg~}z|NXY7QZOwl2?z%CbJ}NAPcJlAI zxyQFkn%2+~=mbokiw&UA^y zP! delta 2036 zcmai!4NR1E9LK-UarfNI^Kx*&oq%w>bRhDQ@_v9I3W!e4)CxgULQpKBfx-&(O7pFj zIi86ohHj)$4F}x_EvHOuC`S%w&eevfz;INSndVDazq?19&1-FU_j&&R=l^^A{(k@K zl9R1m{B)^&MafDUlzn7s0M+B1g9|xtR_yvygtA z0-HOLK2%JOuOP$8fKkkASWFIf%e1!OC1Dj1=Y#z5-+{0#GSgnglD!o0nO!J|`v#a) zgMtJnJ5cCa-$Eg+ZHSzT!b(pdyc$cLFCr_j)Oj$n70b+i6nH)MY#IerD`h4G;;YdT zfFHxjOBoa}9rwpZfM*Brz{TD8)5$4oG47%Tf4SJfqzK)VP(PD@;8P%dCsSK>$p&z# z%(mZ#fiw-{3KYMe>HeA4UPgs!dJiBv6qc|XfG?+TRTS{C;uY_6z%;X>PN24=wki%> zBL$}JRJ0{uB)jhwy`zgLfUjcY%gaEDpNHosVL()yN8m@D^nQtlD^5a_a%z)}0tG}X z-?DfEnzPD=ua}YJl`@mcmB)Iil0>ue){b%@^9|Li3Cn>AjjFQhAPTHfHGK90wTx38 zEvf;uhg1WCNPaf6T+SA15m?{zu{0|MY|x2Ar0@`%ew`8v@nhG`Zw7*{vYTvCWB{=B zjWk%sT2@vdfNk8ojsmY>kLMo&k`A(t*xP{NLw5M+Ex>Y+{V6Ah&a2t+UnHt5N1b@* z4^qlQojPWrR?JmzsG));WT{>L;`XWgj?lT7wVHtAq(scHCS?XC5bMy`tZ!0p*}IyI zhctZ28#T)xP=M&0nyro!z$9r-cJ%`j8#VXdBk9;QEjMt2Zp?LU)UFP|TC81N*h@nd zt$iJvX=Z-Zw%1e3(4hU|0=@GR10{o@$wyUEKS#W&!FBuFYBp z=pEecU#a4-9zIA#37H1@P{&MQ@_ByF5dCi$2KnOc)VgW!@Tc!r(QOIl`})W})X1N6 zaRWaVNeb9Phxxk>>aFpt5R^?yB>M}NZt5k|BRp3_k}FDu>bh>~Re|vKsRA0B3ZeZB zNjzm-IJPx|l+y~Q&!p3^T@=nPrq+e?qOyVPJr{|(EN@CEUo>?_(D3r2Ii?Hn?-8xG zhk$TcOuZL@Ja|By+dD*(?iU9R4+4Je;zKL-E;?Lq7}`kJu1TNu?KQeaJM=S86x06O z`o+nVxg}k{Y8mx1mNNWt7)T+`m`BDfQ6;naC zV&#)(Xgvv~sK9GvQG`fZ7hxUBP)+u=>`u2n8%3^Otz{OHOK+)G9m-TlZR!B}?Nje@ zXJBvDL@M09kb=1uxBIE0CELun2Q~pV5z3?KF z=i1#7&xe&$rT?RVWE9if`fn7ky4jDDj9xzW5q%Eh=A~19f2NMYFA|DSNy3&;cuL}t zUI7MoE+g!@-YrkLvwQh&dTP_v;sK+PS?%hD+LZFRaC^CFP|Y+*^Ucd?tIOQM?4{>G zNea$(tuyVBAs4))AL0w`TvDBqneS9uYEJdn=02VVsUpKyx|te7`pNGM+!K>xFH1`l a^g)>15s^w>lh|ZTK7K;}BZ_ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-PT.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-PT.ts index c0bb3a52a..2da8cfb1b 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-PT.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-PT.ts @@ -6,7 +6,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -17,7 +17,7 @@ Inserts an Annotation view in the active drawing - Insere uma Anotação no desenho (folha) ativo + Insere uma Anotação na folha de desenho ativa @@ -25,7 +25,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -36,7 +36,7 @@ Inserts a clip group in the active drawing - Insere um grupo de corte no desenho ativo + Insere um grupo de corte na folha de desenho ativa @@ -44,7 +44,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -82,7 +82,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -96,13 +96,13 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) Insert new drawing - Inserir novo desenho (folha) + Inserir nova folha de desenho @@ -110,17 +110,17 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) Insert view in drawing - Inserir uma vista no desenho (folha) + Inserir uma vista na folha de desenho Insert a new View of a Part in the active drawing - Inserir uma nova Vista de uma peça no desenho ativo + Inserir uma nova Vista de uma peça na folha de desenho ativa @@ -128,7 +128,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -146,7 +146,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -165,7 +165,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -175,7 +175,7 @@ Insert an orthographic projection of a part in the active drawing - Inserir uma projeção ortográfica de uma parte no desenho ativo + Inserir uma projeção ortográfica de uma peça na folha de desenho ativa @@ -183,7 +183,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -202,7 +202,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -221,7 +221,7 @@ Drawing - Desenho (layout) + Desenho de folhas (layout) @@ -232,7 +232,7 @@ Inserts a symbol from a svg file in the active drawing - Insere um símbolo de um arquivo svg no desenho ativo + Insere um símbolo de um arquivo svg na folha de desenho ativa @@ -340,7 +340,7 @@ The printer uses a different orientation than the drawing. Do you want to continue? - A impressora utiliza uma orientação diferente do desenho. Deseja continuar? + A impressora utiliza uma orientação diferente da folha de desenho. Deseja continuar? @@ -353,7 +353,7 @@ Do you want to continue? The printer uses a different paper size than the drawing. Do you want to continue? - A impressora usa um tamanho de papel diferente do desenho. Deseja continuar? + A impressora usa um tamanho de papel diferente da folha de desenho. Deseja continuar? @@ -668,22 +668,22 @@ Do you want to continue? No active document - + Nenhum documento ativo There is currently no active document to complete the operation - + Não há atualmente nenhum documento ativo para concluir a operação No active view - + Não há nenhuma vista ativa There is currently no active view to complete the operation - + Não há atualmente nenhuma vista ativa para concluir a operação @@ -754,7 +754,7 @@ Do you want to continue? Insert new %1%2 %3 drawing - Inserir novo desenho %1%2 %3 (folha) + Inserir nova %1%2 %3 folha de desenho @@ -764,7 +764,7 @@ Do you want to continue? Insert new %1%2 %3 (%4) drawing - Inserir novo desenho %1%2 %3 (%4) Folha + Inserir nova %1%2 %3 (%4) folha de desenho @@ -877,7 +877,7 @@ Do you want to continue? Show drawing - Mostrar desenho + Mostrar folha de desenho Front @@ -927,7 +927,7 @@ Do you want to continue? Drawing - Desenho (layout) + Desenho de folhas (layout) diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.qm index f310b314d4973c46955d64d570f2db476f1d5ea1..98a4e74091cc1b1accbf0ddec30c71ec07fed6e8 100644 GIT binary patch delta 1242 zcmbtST}&KR6#iyr7uH>87PrtMZI@|*HI%;v3d=6AOVI~0Qkxc$G-;Z3I)x$Z&Sn`F zsVy5dDQbL>+_abw*&cF;cXpou=* z`^`D`eCM3+oH;VYO~1yyp3QX(=d`<;vSAq-1vW0OpwBye$jt|S7#=IGc%o_OyoZ-3B&?R+;v82eP5}imu4DXtpm8VneD6iT-pvjDb`7Y%#*Mr<4{ZI2y~BB$ z8*lOl#m~q+#*bg6W~z?yDc=PkYl5Gd-vu=M%3uHZGT<)|vfe8Iw(Jl#j-90U3c*ZM zlVT$8-t60LnVg}nYAY?bUWo!tt=7)my}-Jsty;oO>8-4l&$U?>N({>bQJ)V~H;yO3#Cs7_^mb({g^&SQI0G2{Wxj;L}``z()igaY%aqQ14rrs{G&xI)8^aiW3)bc?}W+@J3B}agg zGSU4QWvt5+i>4L;?gR0uei{tFQ%oGB`B%IuzHoLo{SJQd!!M?3uqEQ;;UEya#AYp? zWawKdzw8X~@R;OJF4LONN`X6%5dAyp$(cDS{I>MtyH|kRUg?JYG?lw4E&I*o20dW@9f+ok^dKswlFP#LgB$S>_Zef421dh&~T#L zdTh(4Qf#Mhg^r9qdY36mC%X?3sAL;#M`q4LuI;)URtznn%KLPsFQT%q3)itwmD9U{ z_&Tw|#4#vKf><)$8ezYUN+W}gbf3>=J$Y#&TkBPlgJ?q+1;$O1hF+qkOUF$Q6-N&S z$d_(=b%|AN(z{_sDRf5=Bc@88bTfuoLneRBtQ97YMpm@tet)61E;X*oTCc41#p7z! z=oyfst0YGa+0bQ0kHmUZLzRs#Rn}u_JZxxsl$|TgNvldG{)eK!hW1~S{4Jyr_5Y|O Pp{f1$H delta 677 zcmX9+ZAg=06g}_PHn-kwOf7TyS}hmq{FrX;owiw4ls}>}zX*nulvp5=HU!{B;s5Z}T_Duiw#_55$%tgtCMpu?$GPg5vopU~Tpix;y;83iqeo zz|)BXz%o6ak9dJKQ~3KW2qd4tYzXa`Tf~$w%!le1_!p{oGqTtVSdK8ofxAFv4|B3| z1kfI08h(BO+b5G&U#JufU4=-F`6G$br-h+ zPF{J%Cg&u5SJze3y5-aAkPN$|e$%P|Hc?~lCYiQ+jhu56NII->*N|IPjmEpsLgT+R zC9{)2qM|rCE9?58_&5ruPpRXiO!rr9$7}MsVMP1R8b;nN+V{3xBDtlDHAMpaI$bhH zK}FB#wzrWd;~(9@=y<@9s|<4$tXHLM_;8?~LcA_^p7+w`TqVd`SQhLc^xF0G{Y!0T*3D)c2NbE&26iRr7t{{zw< B$GZRk diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.ts index 555f6b744..6e8c202fa 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.ts @@ -668,22 +668,22 @@ Do you want to continue? No active document - + Nici un document activ There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.qm index 72cf4a3aa20d3cdb06d8f055d2d52fe73a80fa09..d2f6966c4b068d94869dfe0c9e12b8e5ff1a2457 100644 GIT binary patch delta 1798 zcmbtSYfMvT7=GG*z0md)ds}CKwfPo6*H(%jN~q#9h=ebzZ=|J*Zi-#bnu!bKdWLzxVPy z&-b=%kZj&6c_Um>(H1c`@*-eg4%of}+q?^iv5(rU2W>6-ppB4EJ_}f!ZM$QAFTyt9 z0HVS$(=-B1ejBs5mji}TGp5JK%;uoUQbPPyPqB1jJ zi(wc2R@g=VOV~Xjz{F%M7UK`GI1rzdk0r5@fX^6<9WP%6I5{GaO9kg z2AXj1+8{7xAMT5`3J(G{&4OXkzln#Uzg}YIx(U!uNyVOhKwh|HP5n7QJwvkj_sf9w zO^G-sqgvAaEBV1YrTVGIAsmuK7Ug{;ZRUC?r&zk@Qh;ok^kB}nK*%C#@6`oB?pxBq zkADJk_RB&(oB$;8vY6c+)Z?5??3w8iIH@5%JArlf612>_Y-md@P#}}99JdS@+b4H5 z8c6Whh1t?^y!_5&FZI}}&=hYZp$&?N)2Tq{1%;vOeG;loXptuPOcxcqS}83nPjR^7 z0FYg#=u5o?j7d>k{$vQ4uvGC&aWN2XR}5blfW%H^*6llh_Po-1%}8>EDqEVuXm*2A zglMW%_8*|Ul=-UhhlxT;m&#o99+29mvb;p{D>kWYBkvN$MAfqULy#ePP%z38;>{O> zs_ngi@n}#TTIt=^1hsEF4q!vjp`~Yt(`}(frY}6I-Y@SYp$zJdJ`&0nr~W1(hu!*qg~-NPBXNi<12H@B$+K1kCQTzXbFt9O9-HtT-;;5?uo(p^z^0nhB$jabg4)1fRlbYLwIb|bj( z)Fr??K6qM}14v#ST%JQr;vWRBT%x16-9`J=>MxUDh)}WVER9)MuHQO-c2G<-8^>~( zjpeZ{R>Y<ZobOlbu~Kq6>djE zjkDG(v>PLY8&iVQqA>?<@Th_VUbxT*CwYx@a-!);2i=nn!mu$aP$=}L+I?$Lj%rHu zh(#{cQ>g^x1My#M%Ah+gGCQsP`AP)N1ppGh?6bXRwiZghM*OBib zr~#mE)D}O%S5RK<^f-A}J@07nc!=Ms)qL$gNb_Dd?{L@Dt#W#uytmrPyX%~uD&gz6 z$N(c>3mNQOm{_xLvAZ?}|V5;HUWDVe{?LRl!SVqgIuEj26krFl4C9mJA)z;WkTQEC>h)iQ}P; zftp~%o8aQIEgP8z6A)}NVB$;!Bl0jqU5HU+fe|uh+_H+AA)BY=KVxow`R+Nt-#ONwA4O0`}g{bFnQYa4vd) zXdU)-6##~w4YW7okWdCBhoNx&4@ zb}!sDA;6YM91i;L;Bdgd)q>*KD2h|#gEyCf6RdgT$CiPs%U(defG=mAR4@S#R+fMy z25SM_K8$~Yb|=<@n2$$6{E5jFMv2h7OyPwdz~N+0*3JT|y-fT4TR_GyOt8?7ezBJ^ zw>ah{jlvkYJ0uqts6Xo^Nq@!-Amor_V)-DDIVV}V@+*+GDh>H~GhpGRo6Zda+F5BZ zjqR$;cAnBkmC9Z>=>UaZ*7bQYDST!FQ!8b|6GS(~CG)>sNfSt7%OZ~e5tD3ry#cAP z&$3;gJO{)iu|vliD8X%ZPS61IX-=Jcng(Ft!e^{N=uOUW?J^12Bz8#5EjujS*;93t zx0M?y>;qCiQ?Kcv{UTTGXl zRm&sUUrz&EL9ColA61oQC&AH z$?jIoY|ke)@#@&na6o2PTcxyJ(MQ#L`Ke(0p9uWoB@I=a(X6~bT zK=0Q)bdX4vdTr=pGoZVtbxkh-=^ky)H4ph`v;`T&FaEx^teAEpy}O(?sMlA+-V9fu z6y>OZ*H;v?PpJzhM z@npB}uI+$K@1zu!l*CKnb@VRqrU6FLl@=L7W(m2Eks}aXCbrqL)6@Px04CVzq)?2B z7W_YvJ~rcbX((Joqk`_9qI}c@kzsdnT(T7h;h{1WbY2Qx81Xz^dx%jL5ilYzNTV8o Mo; PDF file - PDF file + PDF файл @@ -414,46 +414,46 @@ Do you want to continue? X +ve - X +ve + X +ve Y +ve - Y +ve + Y +ve Z +ve - Z +ve + Z +ve X -ve - X -ve + X -ve Y -ve - Y -ve + Y -ve Z -ve - Z -ve + Z -ve Isometric - Isometric + Изометрический @@ -596,7 +596,7 @@ Do you want to continue? Show hidden lines - Show hidden lines + Показать скрытые линии @@ -669,22 +669,22 @@ Do you want to continue? No active document - + Нет активного документа There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation @@ -755,7 +755,7 @@ Do you want to continue? Insert new %1%2 %3 drawing - Insert new %1%2 %3 drawing + Вставить новый чертёж %1 %2 %3 @@ -765,7 +765,7 @@ Do you want to continue? Insert new %1%2 %3 (%4) drawing - Insert new %1%2 %3 (%4) drawing + Вставить новый чертёж %1 %2 %3 (%4) @@ -815,7 +815,7 @@ Do you want to continue? Scalable Vector Graphic - Scalable Vector Graphic + Масштабируемая векторная графика (SVG) @@ -851,7 +851,7 @@ Do you want to continue? All Files - All Files + Все файлы diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.qm index c2865647d100b8ee971d93aa2e1d1cb5e7886cf2..c46515bd4919915274c3bf7dbbe89628fc927c30 100644 GIT binary patch delta 1250 zcmbtRZ%h++7=G@qEwy-8R&^p^JwfU^rDZ6ktylunM5nm8HHa?L)N+F=ZAm%W_y_Bs zM8pq7^4sKtaegqm7!#s0AuRsc=5z+dj2J^=)FnDcT=a{Y7)6dK5|p6*F9;C0KN`=ZRR>)>QsFwZUsCER>@}?_0Q(0G~*Iec%Nn71jB({^jW;f zaHhHwaIIyhc}InFLt1lU67bNhWCr{t+anfMBMS~8X#vtJbC$dTI?jTcejrmI9b2Wmh^oj%_#U8 zm==&c$r1X^KT6)`vx$C3THbe$gttq#kNyc{mPvn`&XL@ZG~&5V*k-oe+XhT7HJA6_ z1>D)@PtOH`xm{*|NiUG+HrIYFQ9T?2%03W4i-Zm3h|m>gZ{tRAU(rqAf`f*Rafn_x+2czMJdPP-awN8NyAA}F;Lh-BFCMaZu~xvYeS z5YoD}9!z}@3IoLuw3YOwWvqfEOp+|nM2epLD9E&q^XUiYaQ^52(b>Vwwlmig7&(|& zX(*Zn7w7`gI<}eL6!eS49u9U(IY&a}fH;FF?bmQZ@B(=a@NBFC8GYN7O~JLw8fzmS zE!6@$RCqe$rni;&^J5X%>&1GM8TcFJ3O1q~z`re;os2Au1DT&0Pj5fqv@sVNX8>&t z6IlKRI3mpLD@%Z7RT*H6ZO%#3DooJh0O_6IG6OQ?mvR zxit5q+V7*^?R>6|+Q|E*emkfDCPtGwMs1qvHF9YmkXxZ~o~LP5A&q;p2Pn9qsa{_J z_5_te)=2DSN);;-hphNn(ItDdqi<-|B1!w+7(=t)(oW@;QISqvx*-wZ%sMkmhe{dI z9Uh{Y;=b$7rbyINmNL!Olj1|lLC#KGnTns29O410RNxY_$A1INuyE8zTO;K{ODi46 zG%H+waSGTyB|LaNNk?lF!dKmZt4mqrjHKwMBJg5~?Pu)V-LF7$N$jTc1MU8m-mq{H yNGR6tdpA!v3F!AfIYYyw>&qQsAWPPJt7vtFpXzAQ{^15bA}O5Z No active document - + Žiadny aktívny dokument There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sl.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sl.qm index 2ffd9427d8dde767afcdcdb18950e3e8ac5132bb..f26f32503ff03ef3fa28a7cffae4c0f6ec3c7db7 100644 GIT binary patch delta 1523 zcmbVKZBSHY6n^gAWj|Q%-3?tnLY6DA;0mnB^09n~LNOr)nC*-N5;4mSwqO^RWtmW1 zKPHKP(QP!x%o@i`e~?NO(m2=%1VJ`g=e*L^g`r$GLc9f;hE zlC(u2DGQ|sZGa(aDO&en8&?mk--L>VpMcfOQp_>o>DP^v-$Z5FFkpNemFfOCi7J1d z5REE-o=}AC1Gxki@RX}^39h-d$$Qfs6KDYs7 zF*4oBIAG0yEc$34{g0LfFfF4J#~NZY-17c0qLRK@KG)?W+ph-IN7Mje1wjt40kBR; zrEG){bT`QZn35HmqL+Z^*A)6IW*}5h7zR!N@ljF-o8U_;QXJV&ZRz_I7b<#yjJFiy z=AQwbsF*%KM>4-vd|y-qtmsuN{2&pfZOV*a?gAkjl{vSKWYZhUjZ6ZvvTKRn7byWJqq2jIxASYk|6LmeRTvtyZYQSUy@~+Qj^S(lVc0+8z+bI?gf9IpeDzy_YI!#ns%|QR0_c&h;P2Cybrk z&}bg*b2aygZI1S^jF%sz^L!j1TtNOL?%~7x5@}Wqd`!wmK!k(O_AS!--QaV6r8@g= zDgVUS6fqs(ufH=1gg?oD6FdN{t>zcA$pF)$Hgsw?4PuM7;PNfn5tsIn0XrG3*4ncA zX;25W_0>GpM;t)@mGS)7bAI3S=7 zBAySlIq9pOzWg;8UO+3FsN#fY89->6OQ^Mb99~hVbJ<&)M5nYPK1@nY(H5+E0AMo# z)}xW&>Xw1=_rbglu}#{Mp!Xw5yUjJeM%dsET;ECroOE8G_rE4g-R;YyxZn(U;UuXd z{d1w2(EZ*xh}C_6Hrg6QwI`Y9@k=SgvFXWmjnQ5fIlX0oVH@Vu7Xi}PAlinpP%H;h+E6_7 z4TxoeXg`HThm91!M2YnlU~ELmWIsNI(;u4*aQb7@LO3hKfVgHX4&)DFaUlN?u4n@= zp$Ug-27s0Pjo{0qTevdd1~iGd{x}DSX~yq&{Xo)L{0X2NfBl#|6+?meJN^aY9ZZJU z4vddsijSWLGA=Tk*F6T*XPDZreSp1$2{f9NFP~*h-puK2wRn@#O7{3`zrNY*dHW+k z*Ti-X6jFHs+kfdfFxkt6or(kEuW(U~E%ZH#3(#0*@RnmlJEn)%a(vO#fqSrwpKq3HdtADQy=t#{|-aAMCCAw5&uaVBg+p3Jb zCSc+bRputzi!e%+GklEtd{dSF83c!fFS3m@jkjG_uW)wKzUQgeVmn|Sp}w&H4uDPS zi%T8?>CLi-ld|kRAuU~GW0oi6zDZ5C>OvkQ6%c)oCOTXXa8EQT9G#V+M>F$$KiT_A zvph0^YS?qY@QZg*Co%bGA}mpIYkkT3+xvBP@u4k@o3- OrpXpT@2g2K5dQ=HMGjj4 diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sl.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sl.ts index 5197a33da..ee8f1d57a 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sl.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sl.ts @@ -584,7 +584,7 @@ Ali želite nadaljevati? Scale - Merilo + Povečava Primary x / y @@ -670,22 +670,22 @@ Ali želite nadaljevati? No active document - + Ni dejavnega dokumenta There is currently no active document to complete the operation - + Trenutno ni dejavnega dokumenta za dokončanje opravila No active view - + Ni dejavnega pogleda There is currently no active view to complete the operation - + Trenutno ni dejavnega pogleda za dokončanje opravila @@ -756,7 +756,7 @@ Ali želite nadaljevati? Insert new %1%2 %3 drawing - Vstavi novo %1 %2 %3 risbo + Vstavi novo risbo %1 %2 %3 diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sr.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sr.qm index 3b6727985d269e8690dd7f9c325edaa18ff7776c..f2a4da78d5f5d5429312b38233d552894284eec4 100644 GIT binary patch delta 1255 zcmbtRZEO>D9DeTZzpZP%>r&VpFYS(zl~kY|+uF6=XtmR*z%Yac77|0|?bwRzb?Lfm zP)6fRAdsLg{{$jqVnUqpg9Jl#&Ja*uf*CH+5P~MYL=cCf9~2BKZuo0A=LZdm@x%4$ z@44U0^E}6&7tZY#UYaYk4U}(iM25k34Fb;IX$({k^t;5+lLJE@->SMPVCi+V?u!Gi zv(p&59~D^ zN1=WhlLcIdI|ck&2+F5{>UV{Wbsu&SVsvGOPD$L>%k2m5dsuco zNE-t;<(kvC03jEF6;G`tTeD>ybxyMo59q$C*19=}@Yc zzYok4lu&L8xM!6T{%r}3A5hkeU7^GKlrM(A0`C1z`PO=Z&fQU_LKg^MwL7lt0Oovd ze_;GF5NxrxoX~(}=k4*vQDAYUz4LK}_`L}r+9Cn4!p&SP%7V}=RHB%kV_S>PcvgFv zllfUQtA)yHS(wFGkkzr3EW+xEX&?-<7JBa|F2-tSryXlkYP*(6n7Z1L()yCRk>TqW zmGdf}-Ms`aJQWUzaiYW%~snn|fzD%sPmXLL2wrK_nPJ>AZYntAywa_0YVGm}_B?SFLf Vmx&OX?&>0+{M{WK+w0ru_!CKKN-+Qc delta 677 zcmX9*T}V@57=F%o&e@KRqS_1{AOU1a{uoM6JmGtMItR zhsTSj0K;{R%(~b%7t7xkfaGed1Th)^HZVoRYH)sv_28V(Y4RwrYmh7M=mH$)xJy;D zK*)El>BnclzRcZjSOhE*?dD8%PCcoWU$W;;(h=AYqmn-R3=nQ16N`u0xk45meE>4@ z`0#u2fcZ2Z*ERqs-F%QHO%g2ajCR`@p*|r3&`%02Pu$FX-zHiIg`o*1GtDO~`6_`d zhgcq60z}P-6*Wf0!nQ89+&==uTE)Rq4HG~elVO}%cp;M+1KpP32PCCd)?ihBckpTb2kixT~ zV#*8$`k1Hivxc%5Gt-n!XZT8zRZsH-8*!ebUcqcP?q^Kt$K-_3KLF>E4|!N>BwDVi zW#uIPman`x3T$taAHE)ECEk*U8eM>Mnl1 No active document - + Нема активног документа There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.qm index e5748eaf181b76b554f101d08225aee99f32f8a5..ff6f4d3c7318cec405b7579f16c0bbe6f664d17b 100644 GIT binary patch delta 1249 zcmbtST}%{L6#iyrS(e?-?79{t)UFdND~P)wxUdU?5sh)1f`7zf8#UWy3RBrxvJ6XY zl?^n(G|{AZjcAPZ!Kk%O4A!Wn8fa>*4XueyYfMd)Lc~ZgE$7VcB~Wm_Is=0c+1545 z$5V5E1QRB1#*~S}Tu{6UEX?NWkDmd`Kj%Jdy$#rNxV?Wq07A7~Z`U|be1M(gyww#Y z{BH3(AUMSzzfWR{PVs$Zw*c2herS9%m52G!i}!%i6N2mXYe3#X;nic80Ou{iq$%0Q zMBcM7P-N*JB2~*XEDt}{fXbS*#_SzHR&Sb`^bq~qtcK6Fr9CRpiQ_R-_$qgCruFDY zv|YZ|dZqp>5ZKNx@cwFlNBW-jxl|fXH#;mloc_~U1}q)4y>f*V`0{MQ>Jx+$w$KM; z#QMIiYVuQ3=&|j1@{sa2vRuK-mkqKSf#%=GVuGhUbklz6N3yYEzx}2+gKUZRpO=Pd zilvSP?o7b4$l(|04su+Mb$#T+wcqh>PCjY7%&rL zlNR{C0kSVkq0}VsQiD|f&tfY7ReED+gc^5AcTWui^G-`+_5onYJZUoY3$-0^x<@*I zxp$naZrlgTGMuXiqV%{%oONaWbnVT~#%&VC*Q<03{Q_u^@M0A-T5;%5kbsKw@1>39 ztzCjJMH?xmLq-HU2~{M`T?1wBL>ppsszJ9A5v=sNYvXbxs;fywZiq+QVv5Gjd9v7W zp|fZ{YN^N|ip~%zv`Z4Dg7#SgX_kO>=H?iMY=eJmssnXsGSwMHDq86urTz(8rUEo$ z7sU)0&$lqN8o4uC>0CFnqV$iUg(?k)2Cr`RkSX3`_KKK7~O8yTwGXwiCF8(!9iHaAx QNUBQviyfRlA zjaxGiH4wB95=&55rj$jYeTj$^SYQpIAN|lQ@T-p7uZQ;>&htJW=Sc%oU&q{B%Q$_8 ze7)NbuCW=|5Da5RrOzu7dyB8dyk);X50G34p}hi!#S$Q`0R_vyfrR-m$_C$j{;~90 zJe@fKX!7lpxu<$boqy6yyq-a1eaQ?PP7AIJ)NRCh!L!l|WZn>p z7v});3&qZwh~26bu@Z44C|*`_%RAJ4qtvTwS^dcrNxgg3W2xDcq(ie&ZveQ>nlzRc zWz=c*byH8e>zb2BGu32KCfG9K{-f;W9K^Y#csa8y?V(JW4l!x?FTgw$bE;@+ No active document - + Inget aktivt dokument There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.qm index e441b1443f32921cadf61ba9814cf4ac2bf10244..1bff1a2927a15266cca231b5944932fefd43cf09 100644 GIT binary patch delta 1248 zcmbtRZERCz6n^f#?N(dw?JSM~LV3YatNMn=vkQfgo<(rMt4;F5PXH z=|%%6lYcg^x*sqI@hkpW&_&6VpaDO}M>Gl}CWBZfW_r#e61O9 zr>A4^6-4DYP`(;1*DeDKeA6);%KfsYZCMl_PO5-o7$1*E0QM99xNr_w8pTyJmf%k_ zj^mmc2k}=vmX!!W`7p5XVWDNuJ3viPc)oiau)BnTi$4RQ&xOIQlR(9H{7u1AUvoz6 zlRu^OHgV5c5>s|c+*f@9D2j?>lTQKRaq-*-KLXW)RP^@!z=MaRc|-dF=U0+Rv+R2= zi|&Pi?UvCo>R!3ta%qPSL>$)mtPQ}-kE~k84Fpf~Msb$SdS$Tzcq_OnMqCw77VO+c z&&pi|2U>=Kz%YMb^w;~37WVhdpwf7u*`fS+;n86ZEcwlL-vLtK+h_~czYh2xvxS}` zBL(fY$kcA2s?WCJ>LtQ$;fo}X7;NB;l3NT_@`U6Lho7+D~9?jl=5_HUM~ zB9a#z^IgS&#qRJ+w1YWo9gprKA4RV^HqP;qCMW+)(#1#<4_Kc%Lp>L_}1*dCb zGce<%v+meg+RKa1M-Ilw^*zq!>QP$zE@ynbLirOKZJ}QRPzn#~Fe#K{6FSj~Ub>Au zYh~VG0}RS((816KmHx)*Wavc_n`~5y0{UD{N!A)Ow2aEyld*I{)%o7inS8g;8JLSE zf-)kF5tW9FS)QSrik@2p%HISTP3_@lyv6xy{*r%Pb~BpMLFklOsiB+LVo1|FpV5i6 zljJbE-QK62a(Qgx29gmvkBZTmKo?c2l*t=1%pQ#LUGz?o-n`l*^i{V+u4wL1Q!3NC zSuCAOsk+hG%k+O5H<*!Rv1FpFQ#Dj(bf_%ZrKVa9EveshmCgJQM>i&CD*lg7ZW^gY R%^jWOH}LN+Mkf3nuInK$Qndg8 delta 677 zcmXAmYenev3Yy?uXW3+q-1@y#b4K*28Z4G+?eGQ_tX;3Wrft(j8nf(DQ&yLZ4KlHPxJU4=e zlluW>E1rzFfwV99`)vZqieM&6ihm2tF2rn<@tBX2at^5vSh0>PX}JkF?s3Nsj{piS z7ySMeuzR>m4U<6bc6ysLoN)R`z4Q#Q&6Ad~1v6gKW*-JL#bjWzkbN&C6CIy`H3438 zVtQxC#^esqH6XKJ?mWuU##PAObIt7gZ+Y3w zG+>;iR^C9YPpOY*rDZTF(z+IKL)v?w{u2fsk z#>w0%o$4(GmexpjU-q*RBU0BHH@j@26M})b(x@cr*IK-)(d(aqCF80&XM~xysI}wA zf%tdo^+RKTl~ZqcypO$~S9|SUZ1T%$zmHXC-BHDg{?mR)bQo#5X?J_jT&evJB2dV- diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.ts index ce51ff2be..2341ed6ee 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.ts @@ -670,22 +670,22 @@ Do you want to continue? No active document - + Etkin belge yok There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.qm index 6b814c9e603c908a6efe6220623247c1b4ffb1e3..796ddc83f83641793edac758286f10dd63ed0d5c 100644 GIT binary patch delta 1255 zcmbtRQEXFX7(Msie_QRiw@uk_AnPvTYPPYhcJ0=7Ti11B#JB;WnTrW7vs|~5^|p3h z7Zhl~MD$^a%OB-|OcXM3BoKt)99fVsjb^$8qh`K{fiV_Ico7Xzr1 zpZ}ciJLmhy-w-Yj3vU$(T_eSvw%}Q?eFuQj>809mX=ImOZ0sHxt*Cv*l?B!fqy3#Q zP*%EB8{K$L?gi@H=(_U@u;!1+P2}tlcDZ9UKP&X5rO=Il#PK*!S~Qpy`mXfA1pTvGOs&5ekfn zJLOLa-Yg!xLS|eaizget1FWOs%;FZHd0brh=n~)?ldMPA0+otXIyyo3Yb2vheG`{O z`=eeHo17sx_4DlJn>rAj&+9Ge1|GKLMbmbmahSJ@C8oSvRVnJRmuq6c=8oncc#Vz? zYW`H$3Bc>-XT+M2lNIb5S`Mt3EHEb2T`2hK1P5x?n;w}W2Q|k`-q2y7c8|&T3I)ke zm;%{%$)RHEzI_v@p5x_`L-gO^?Go+(I*&Cw3g(NBhbUIu{PnsG)MTo# z%vKDrqQV-9-eA?S!lzGC4(meUORFl#+uQszNf%oyxrfz@EsV!lMT<4FpF;d9+n=P4 z-VfyR>05v>CT|>~#fU*Uy_5D|Ym@g}cpg}NSN`ye&uOvM^5p9Qpk;v1GDjw;D`nN^ zft9U_FO#KbKCk$Hdz|FoD$mZ$)8H4BACCM8l$0yi%;$ir_m!;g8>$@^+x%{z$Zctz zy#n})Ep6u_lsaY!H%!vApR)9BRS55m0Fs%XXa)CkGBNf|R#!V`2(lGmKmIP~@R4Yq{) zw4|m+2h_-5GD+e3cc}V56051W8i~ge{aQ*>Q+=8mPiV;=ezANdce*T@^#4e6Z)1kr Y|Cr*h5I!_MFhy?j4^D8p%9&mMCzrlQ`~Uy| delta 681 zcmXAmZAep57{~wj+HyxW?t%;i-x7n+(co4Z?jEqkGmDDouJkSGOgai-=97p!G!r`#y`eC|JjQLKP#}b%q=!X5(a>%15AE<2e7rA zId^&-(41r%e*XZR8s0&IkX#%Mc1_6hMv`;RJi6A|8FJNdTBU9P5eKqkt z`2yGl)^I-xh}E%St$nl}$@<5n+~Jbi=-71+xC_xifZEJ8Jud)6tk71*c}A!#YZf+#l?zF=S@xDTe@p{vF3wi6}4(yGZwd(TD?&lZZrX0 zur`6EL4|f|_w>-63_k6N&={(1LGiMsM82l%;!;UkiQ?j7?BY&3Db*lE56l6~U15I} zb&YHjDr;ysan-`bSBHW1OTxo9!!)$(f~Q^v(mpFb&O*{ZDFQEMSYPWV?tKM9qIHXo zkJS4*z47~bAlRzkJ~~M=ap`xwI7aWi`W(B5M*c`&R6wn>zb~dn5A~Mw^|8ueVzv@t LHT2FT{|fpK@7~FS diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts index 56d1a0f59..a64e4556f 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts @@ -668,22 +668,22 @@ Do you want to continue? No active document - + Немає активного документу There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.qm index 6389b17bb00e2c46099aa37604ef4194ff8a6256..4671bebfdc9a35dee6f9203d1103f63acbbd3501 100644 GIT binary patch delta 1223 zcmbtRYiJZ_6g@Muo9rf;*{~XkCfN*)+0B^UJU7)SM3Ppjl0?vuE(Ni19Fx_3vDr*W zo4D4JF8$Z#Ya6JfL5lJ5Ln5LQ4O-OFnpRMxh~ficW2zVh6~wA(?`)#|(IS-onLGD< z_i@g-{gHvLFXnT;WKOHyI}B4|H?S~oHhRt^`y6~leR5DKUt2W;6z@aR*Db)J4YRQ# zAMcCpz>@3my?g@X56;HQ{^WG)X150?rZm9v0H?3i(d&o!90W6Lw=$bfm4+K)(xd5NWN=38nX zv21$&7;s)?#e$PBpJq)0`G0~11;_Hr{Tau9CK=x9jEhby$(_u&_END_zX2%DB#Ra0{U7A?t6N}G2 z1-SRbb=_nPcTm)O$$!^5@sl$j0J)vw;h%n_yWJH>KdS?(_p%EnXWXkxg`V$$9G6rZ zp8>3`((-36fOkrbrP5DwU;UCHv8=zK=x`|{e=m-%NpA| zr&Lm%u(d25rL*6+wQrON@ACsS#RBM5f!~wkD1j68P%H!>4M(<_$BLA!z@Bz%aK-xl zTB1Xpdm-bS!*ZJ%^Xrj!75?f6^nh}PKHmHcf4;>n1I{j(remz0@ zdxGxQx?goOr?M)(11;#F>S(Idk51}W(M7p|glK92J%ok+WzQDEjN0H_rA*ZZ8{znzBMATx%8&w$YzgfYN?aDXOUp?wbga7~l delta 675 zcmXAmYe-XJ9LAsXo^#xColT}o(_D~kdNwz8m6xDNmSi8I@J=9Rk;^_v^-kaQZQtKWew9qUYq^#3S6u8v|P zcoNWl!NXZMogTyQ&x?RHfRzx-@#jAiHCPR;r|>tl&K5G22_U{(DDAofr0Ru+npr@z zAhdk@2sr12KvNJEilo-jGD@GnPJ691JV`cf71Hw6YQR+@ zdt%A~DTZ5HzOqdB zJbagEWsU}3CYqTukNZUP?v(WKq34t}?NRu&bpvIu34fJ*kVNKmTa6|_tkgM08q}sn zUETm?QXIO*C{gYyu_z4IHl*3+XP3TqX8)-O} zeC5*kQ6Q#9x%=!XweD4ho89#D4!$T^nM>k|Y|gg5)z5do2cl&CTGngoe%fICa2|-r wGwgl2Kw)ML`yQO2FeXD`#xRY1$>1rY>KwW%Dtd76to$Z{FR8hMtM)eiKb%&@#{d8T diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.ts index f82f27148..8d1d2b698 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.ts @@ -670,22 +670,22 @@ Do you want to continue? No active document - + 没有活动文档 There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.qm index 28874126427ba0eb2719a0bc5190a41188df1b10..767675b9a660422f1127d1da92406ab2bbbbdca6 100644 GIT binary patch delta 1214 zcmbtSZDIB0dEaH4ar|5=M#7VcRW3?!)1x3V9Dp<838-uBHv)b)92xDLFx!=R@ z<$0dFj;5~YuIWN;X2u$O@CXbYdx2NZjiYx%W{X4g9nS3Y1XjF02F&{u)w@H$%#m^Q zwPUT^2o!gs_Qhi$zjz$|$1^{#+33E7??xD4+Kmf0D}dP#@$BJ!z&VW3EPjpWI=WWl zMHUP2XBKw|WpW>FdoI)-I1ZE?5k6|U3FLkubo_b`@F#?>PeuTDC;v)tRR*St?eayU z-x3ep)y0&E-K95xDXYYRk<~O_CEow`HZXsuly|HUP&Z0*_MHW+Po(S`PZ^g*$2{+L zL(c%I@$4`>`aA{%`;CpW>Hxdh7)dz*Uq7!FXPJyo=WDd1n=`S(?k>&QyNyauZ%%LR zNx*x8pAkzcor&BnZPS3MgSpuY#rJZroa8`}(Nxe&3X0w{l~o=l{KZuMAsI1THC2r5 zCxvCEy3t2K;Ti6fT%xa75Sm?iEIXg%;f&t4_mzivtE!TX@DNVO^u6+g| z!CE5GH<-T3`gS+@n6lHlDc?hy3VFX26NAtA8-_QlxxA{4f)T!vQ|*+0(Lwp+AJ@_Eus}X_`4WAnKDpFu7*7P-zcPP-$yiuTbFT2(Z8@fxL7s$_&B{7nZh>ZGxwRHF32*tVL2xZHR|kql~{hXC}{c+Jdj5263pUM;IC+NP$t6qBn-N$$4dR zo)0G4 z&?F;97o%lwsKh6zPLfnzXdJO+llm5inpl#lkrp-FnoP2o*1TDb{ljuhQ?wEbxN|!`f delta 675 zcmXAmTS(Jk7{;If$xY|q)tntRT%Pvd!8MYsslg&kNGQDUkVGOWXnnJnk0Ii~+ z_2EQBB?6_BOsv#0g)9_JFhslvD>NB+6{$pdsJHFv2jBO-&-Xmf+fwa4e_zjK_~MFm z&UA?0HekowFfBiP9usfh?`yYNPWlUgok4_XkH#sv5-=N3ytxV(EMcZ*`qqldlxn;V zo&(f=jLf-#-OKp1yaXiIVm-t|*a&eEn;|~M-~UW8avAa{scmq@osR)WI(NBt4p80Y zyg$DKso+|!2LZ*vo^wi*<00QDzX$A7eCGn0Ng3t?u2~>DkDmzU)AJdA>D3p&7B6h; zP6iUng!uM;K(i)gt6^I8;@||?vKYmc+cki*P^#Qj z3g{xGs(KTQuop`HCxw9iw={6JfdrbRc{v76W zumgg^+vZt`K+Ac+Jc21J^-NU%BxT(@5;d(vQufxUPmWv?8PM#}#Q_2|PJtGsuh1M1 zP^Rd6nhJxBy!EkJp@w(fVL9SK-tmojM4QWWjFhamWb^1RfXkKh8mKkynOxsU%SqZN zUwe0&T1u09$H%Dke0lJun|@AXOQOO%MJ7w8!TC1q&mwgwc7YS@a$?5xS9g_b6MNq~S diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.ts index 3f8675238..cdf0e16e3 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.ts @@ -668,22 +668,22 @@ Do you want to continue? No active document - + 未選擇文件 There is currently no active document to complete the operation - + There is currently no active document to complete the operation No active view - + No active view There is currently no active view to complete the operation - + There is currently no active view to complete the operation diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm index 1258fe6ed4364583bdce207d359206ee15f89b1d..61e6cfe7f073cb5e12362e1665c4be7701eb62f7 100755 GIT binary patch delta 4221 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 T`lUTddVzJNliIE=n5X_P-M?@3 delta 2138 zcmXYydsI}{6~@2&nz{27h-&L;j!fJ~Xc8o=>m z!J@lB*2e%|5|q4x%2+}5JwffJpz)`I9({13DO&{0vj_P=(Ap?y%YfX-1B=?AZf9(E zAJhw}K*18I-8+CuQG#Wg_pbtOskb#weM1@Lh>|eBD*M8i!|wKI4kvrl$20GX&|Kz+^3uy z1*f~Ebtcc-z`Q0tka=N(`MafG-B<|t_etJPYOYR`dVZk-`cyf+a03u@PJUT_A24l_ zf0Jqh!n5RklXi3eee%&rGG&e2`ddF>;##@GZzc~MB6q)Z3J6UT4673y-!6B1p1g?q zTm)POxo3MAFn@~tO&c>!U!jJ?&0l7grc4jY-(584k%VudO-&WfD zr%|(XrTuOIkaR+|xi$lfhNvNzGk_73RCi`DFylKldDKO|zoVAD%7e!~R?AHtz=HAW z=JLfnV5z!u0^>t-)V*^)0utw|^_5Jlz^NXLuV$jd)g~7c{6UIfXoE*Qj6E(mAxZsY z_iSnwp`Lz?+7`U7UfKE;V0WumXD}i4rh4!7p99t_>ix=Q4&80x`%2_r9WivU(lL%@W8@t+L20`>lbU?iE-?T2Zk{ruK>Yag5$Oc zM&%e1`a6MH_Y8>_>HtsRIPoxY^dQ#`vRyD}FdnqdkhHdu8?QE$Mm?tM2MlGM3MDBv zRCTfqhu0Wt3wTq*4MSZ9OFpI8aOmtB#{XgPy1Rfew*;ND4S(+5Pwf*8z4f{9Af(th zEP$pM-6}X?t1)Ox7ar7vtqcvb-RNakKACD<%2B+|?Y(@p9ALyX#$c zhh+X@14~{6b6+7RU-Yjn>a}Gw@exb(VYa2~tR>broDxP`;yha>v%M-TPrdwr6_72{ zdzpEm&+`1~iySzAx2(L%lE*X(#wH796$oY<1s7}+%=H({`@~XlCXW}$wp0bP!cV_q z*|B~qC5{q|I3ySuY4QA}mRe?XT1N+P#;1o^!#W~pq9E(ip0T`1rghZ>y3|!_-FS@e zQ}sOWQ1%u*q6;j@lPhTK{@<52fg`ewAO%QT;b-|Km!|{)4vI zn|6L>m)nx>*3v6g9^0Gu7_c~PwW%8am}a~7h#O|c+OEfsRsXEs+UAGd0U+M25(#R$tl%sCGlQg@k0Iob@e|A diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts index f2383135e..8ef22dfb2 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts @@ -38,17 +38,17 @@ Fem - Fem + Fem Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Invoerfout + Invoerfout @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Vee uit + Vee uit @@ -541,13 +541,13 @@ Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Voeg by + Voeg by Remove - + Verwyder Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_cs.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_cs.qm index 82bce8f59dde206291a8d4ee9d3cb729bcd98f43..f9c8644bc09c90ead4bae1d3eccdb31e23dd4de5 100644 GIT binary patch delta 5303 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 Fem - Fem + Fem Create FEM displacement constraint - + Vytovří MKP vazbu posuvu Create FEM constraint for a displacement acting on a face - + Vytovří MKP vazbu pro posuv na stěně @@ -205,7 +205,7 @@ Add a solver to the Analysis - Add a solver to the Analysis + Přidat řešič do Analýzy @@ -263,27 +263,27 @@ Default analysis settings - Default analysis settings + Výchozí nastavení analýzy Default type on analysis - Default type on analysis + Výchozí typ analýzy Static - Static + Statická Frequency - Frequency + Frekvenční Eigenmode number - Eigenmode number + Počet vlastních tvarů @@ -293,18 +293,18 @@ High frequency limit - High frequency limit + Horní limit frekvence Low frequency limit - Low frequency limit + Dolní limit frekvence Hz - Hz + Hz @@ -398,7 +398,7 @@ Input error - Chyba zadání + Chyba zadání @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Zadejte prosím sílu větší než 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Zadejte prosím tlak větší než 0 @@ -527,7 +527,7 @@ Delete - Odstranit + Odstranit @@ -535,19 +535,19 @@ Selection error - Chyba výběru + Chyba výběru Nothing selected! - + Nic není vybráno! Selected object is not a part! - + Vybraný objekt není součást! @@ -720,7 +720,7 @@ Activate analysis - Activate analysis + Aktivovat analýzu @@ -747,36 +747,36 @@ Cross Section - Cross Section + Průřez Use FreeCAD Property Editor - Use FreeCAD Property Editor + Použijte editaci vlastností ve FreeCADu to edit the cross section values - to edit the cross section values + pro upravení rozměrů průřezu References - References + Reference Leave references blank - Leave references blank + Ponechte reference prázndné to choose all remaining shapes - to choose all remaining shapes + pro výběr všech zbývajících tvarů @@ -792,7 +792,7 @@ to edit the thickness value - to edit the thickness value + pro úpravu tloušťky @@ -815,27 +815,27 @@ Analysis type - Analysis type + Typ analýzy Static - Static + Statická Frequency - Frequency + Frekvenční Write .inp file - Write .inp file + Zapsat .inp soubor Edit .inp file - Edit .inp file + Editovat .inp soubor Write Calculix Input File @@ -873,17 +873,17 @@ References - References + Reference Leave references blank - Leave references blank + Ponechte reference prázndné to choose all remaining shapes - to choose all remaining shapes + pro výběr všech zbývajících tvarů @@ -898,7 +898,7 @@ External material resources - External material resources + Vnější zdroje materiálů @@ -1052,7 +1052,7 @@ [Nodes: %1, Edges: %2, Faces: %3, Polygons: %4, Volumes: %5, Polyhedrons: %6] - [Nodes: %1, Edges: %2, Faces: %3, Polygons: %4, Volumes: %5, Polyhedrons: %6] + [Uzly: %1, Hrany: %2, Plochy: %3, Mnohoúhelníky: %4, Objemy: %5, Mnohostěny: %6] @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Předepsané posunutí Select multiple face(s), click Add or Remove - + Vyberte plochy, klikněte Přidat nebo Odstranit Add - Přidat + Přidat Remove - + Odstranit Displacement x - + Posunutí x @@ -1386,7 +1386,7 @@ Free - + Volné @@ -1396,37 +1396,37 @@ Fixed - + Pevné Displacement y - + Posunutí y Displacement z - + Posunutí z Rotations are only valid for Beam and Shell elements. - + Rotace jsou platné jen pro nosníkové a skořepinové elementy. Rotation x - + Rotace x Rotation y - + Rotace y Rotation z - + Rotace z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm index 10f239434733289d2b037600c287c0d4abae21cd..8cfea4ef0642876d77adeb68ae33b816c823b6b8 100755 GIT binary patch delta 4512 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 Yv=@g;h@ci+>?{gyN;Y)f?7UC^f3MAw82|tP delta 2150 zcmXYydsI|a6vn@~uemdK9wI1@5(IGw7;tC=0bw8!MMOm%6nU$;5=*UAG+TKQB?B~V zjTH$POT`k=%5jmJsVVp05KOx^(4*)5`zJ4A}}Qyh%y1O^xpU#K&Ce^VLq`INUsA1JYbxg4rF`| zU?rpGEF=FMqZrC4l`+cG8C9K|E%dV(l_EximC-b`pPk?uDd60p5Y{&W6CDt~Nd*e3 zAard2qF-Q~vX^n{SjK5TF*-{avu`ry^!!g1xhL61emY}8Xg?o9j6Fob;~*yc5f?z5 zK>;&rATF)}rZz(?i6j07@qN1Gq=68R%>z8|AYg$HRmh2m4;?`EQ?O5?ism(8()_o9 znYWS4R|1aX$WMz`fx?w&EFBIw;~8gW;j_YGfZu|PUQUwZZ*;4}0CR@M=fpZd6RGiS zp!eerX@ci30FrGQYyEy;ayPMs_%5-Nn5MB^CK=Pe*EnL=kTlSw{&^3G>0nGguUV#3 zw*pzEv>@iCGv>EwR&|pc-u@bQ2Wc+s&|G>|0CZv8`0N$H5Igr8cL2~=aqp!XfskIV z# zIehHvg3($A%+3)4E~WuKFAH(${y>^pNP6NtJ^x%-{yGH?sTE3f?LbbLP*$1;Bpeeq zh134P`$F}E!@x7WLPG^5R*)_1jB!z-tA!>jCFtM9IIK@)i;yhF5#7Sk&0|TkWkSn3 z(zf8R@ZB3XN&Byb%g<0kVxI8po38+-OyOR|BEUGDaeRQ#cYP2^(k)6=KLFETV4TT| z@*XcBAV7R}E+uAND3;`sWX=y6bJc&u)#I{&B&WE^LZ%w>9;4k;tlmuloV|>*R*8+3 zB#CDuqoZ7GDlQ`TmxxUpC}81H@uLckykrr(5~6`=d!@jDwLst<#_%r~Bd#*9 zb}8YTZGh@Gmo1)nuAeQ8PX_e!m41FJIhHok!NF2-*dua%m9)Hrr=c`os_dXP^u8(8 z&!n4b_eBXY zP3t$uP7^O#n;f!*CR~lyY5pDXJE;A5+&uDxulBUo6Yx5qy-=`&Ogd3}S)=--@>a=+dKym3jivI-0 z1nYtlDk;&2x-eWIGkWL}9+pzKyu}!QPv_94kau3yZMmyDscph^msXIAM;GeuKWHM? zX6Re3n*rZ;Mn4}$|3UiJ`Uf<40`;dG+~kFP{pnM!B*{X3=N_8xoS?t@)_x%6BmK1% zRPs5K^|!KV^4Z^2ge!BXl5tApUTVvzO^W^WAoAQkC0Z?yB8^Tcqh7mD6{uE5U!}|o z`;^%&=V{>ls4TinB_DZc^NIf& z*6Zk|9yZ2!w_)RPo=SU{G4W?Z-B+ajoa=^j``#ugo;BQ@;R53047VRu(Cn`^+J7?9 zUpCs9)LTzpX;Y2w{7M^!0%LuuNFUZ4ulz*^W}Y+Ni17vF3X{*L+v%WYQy`X6>2pn% z;|*lCTGQgtdo)O9nJQKU(!~7C^vSI-s$7KWDo6c2A=1>>`q%>>nAfyZ>8F2c-ZnUe zMzO`*e3laOvX~DAkW_(|7`6yk7$d{YmqGt`-$?WIo+IRme~Rg!`;z;HEOVN*u3od< wmFX$C&l(Q5Tz>?Qbk7JKpmqB^y)?!Zy(r6N8>w?YTDVUB4=Q*@=l}o! diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts index 3b48c14f2..8eee6763d 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts @@ -38,17 +38,17 @@ Fem - Fem + Fem Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Eingabefehler + Eingabefehler @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Löschen + Löschen @@ -535,19 +535,19 @@ Selection error - Auswahlfehler + Auswahlfehler Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Hinzufügen + Hinzufügen Remove - + Entfernen Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_el.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_el.qm index c54cf25c0f99a4edfb422955d2327c89e32ffded..5581cb4fa35e37bede136399c4419b31668e7f1b 100644 GIT binary patch delta 4318 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 delta 2149 zcmXYydsLNW7RH}*zRUT}9k~ReiQEH@3W9(@Kp+Z&sE7ihSXxVQHCiD`7w4cv$r&}A zL$f5uVkB6FSTh`BN-G@&MV-(gWQ~fBd29YKv}LZ0)j0DoFMs{M^M3F5?)~oP+56Pp z(lzz#8hxE!fIJF#?E;i?;2A&iIbil`!0K1)70Skaz=AnYHqR#Cfbs#8&+UeC`~|?f20`lsSg8?A`zRe) z(vJ8dR5eXTIEg3%N7 zL(Z`mj%u+m?S1`~ogqMRmwx0FGtJv083S3e=|?5InKuc(Dj5EO-p4+n3YS??|nKJ%IkW)O~s{C0H*xPcCF> zZX=UX*9gp8{mxlQSl z7?h7S&7o%ga?jh;c6qvddB;t__Od+u3=>iy|G4{Adcj+M(69lp_z7lxFF*RukCNP1 z)Zg6(3P%Kssub;zFYsif^86Ym7FDKfE~jLRk_Ahg+mvl{mjbD8D2)*`)ub;3XPi^^ z9%O(;uL&+yl@1pr@lF;@`Aq4oe3tH4mCjuZSe~bR+MwtDBg#Y!jupPGDk0LZzird>DyI0LH0!^G-w{!=h;_Bflz`5!fXQwIZnqE<#frt6#4EdvrI zaj32VwxQoewWWkNRUfMda#`{Oi+b>E6{QPSJ+lXakV}G*h3emjS}E0a^;%mooS0f< z@bRZ9rfe0QHq{WgI-Uo#8!{u`Patq}lEn zZj8-^#m6+0VLmHyOPh*%U{mI>Y|= z`CQwd{{zjGu64Q!xWS?w>iU8=+9a47q8+(i!TC@pSOV?r$4sd7SMB`8I=0#KM#GA9 zz_iaeq4H-SJ;E50<^opM7^88Kf&XSq`?Z$c@=!1-+n8?1rgzpF-@E55=FER=yi!9K zCw*%C>6cEr_E}S}qY3aI5DW+roIKIg+wu!<)?n&u^U&q@Ons+&Dak|A;GrnC6-?Lm z90oG}WV&9%lCL~#x>d@_7aMPuudb$vzc)|+gl#!}y*a+mkDj|=p5?5MqefquleYc@ zgx)u&USsCvZ<(L#`IZCczvd0YEP32q!Gzm_h0TJC*9b228E3m-=^At0>7~3tz1cN| z70w7T@7kQeF6a}C*e4kMvf24f3$@JGTb}gijL*xrg!G5gL^CZFS3>#WsAXdeT{>N7 zd99o8=ha(w8hKOuWx*t!<((4}C)^UjlyJ-bbJV_KiRB+%?^23aEH{_AIjS2hcON%! z_WN4n|7~N%ldKu{Tj-@+r}Ym%a>2aX+LEL2Loe&qQ65;Z)_NmxBL60j+5-OC%7ebP z1*4j!KVyqH(FPQmY#XB6ztJ?nnv1&fv diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts index de89a3520..25975972a 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts @@ -43,12 +43,12 @@ Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Σφάλμα εισαγωγής + Σφάλμα εισαγωγής @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Διαγραφή + Διαγραφή @@ -541,13 +541,13 @@ Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Προσθήκη + Προσθήκη Remove - + Απομάκρυνση Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.qm index 8ac5f2c9bcf485e368bab49f6c40b322e7e1842e..9868d09a89abf4e757b11dfde50427b2a654141d 100644 GIT binary patch delta 4242 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 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts index bc9b1be61..b90606956 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts @@ -38,17 +38,17 @@ Fem - FEM + FEM Create FEM displacement constraint - + Crear restricción de desplazamiento FEM Create FEM constraint for a displacement acting on a face - + Crear restricción FEM para un desplazamiento actuando en una cara @@ -398,7 +398,7 @@ Input error - Error de entrada + Error de entrada @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Por favor especifique una fuerza mas grande que 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Por favor especifique una presión mas grande que 0 @@ -527,7 +527,7 @@ Delete - Borrar + Borrar @@ -535,19 +535,19 @@ Selection error - Error de selección + Error de selección Nothing selected! - + Nada seleccionado! Selected object is not a part! - + El objeto seleccionado no es una pieza! @@ -983,7 +983,7 @@ Ok - Ok + Aceptar @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Desplazamiento Prescrito Select multiple face(s), click Add or Remove - + Seleccione cara(s) múltiple(s), haga click en Agregar o Remover Add - Añadir + Añadir Remove - + Quitar Displacement x - + Desplazamiento en x @@ -1386,7 +1386,7 @@ Free - + Liberar @@ -1396,37 +1396,37 @@ Fixed - + Fijo Displacement y - + Desplazamiento en y Displacement z - + Desplazamiento en z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotación x Rotation y - + Rotación y Rotation z - + Rotación z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm index 163f44c50fbdf5bf6a562752b46bea25fc2a2380..a649758065888b73b8f216b8a522e559ca2ad565 100755 GIT binary patch delta 4239 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 delta 2140 zcmXYydr*|u8OER8@3P;wS1*XLi69rDz^WjEqFgkHa)}}r5m-P>lM##~X@W}Z*ri${ zP;9lRH5yVzg;88>B8fJ}7^4s|X;D$J35H3G+9snSqgG=xNgsOrW9N7FoU`Y==Xu`u z-PZ36hc6kn_;^MD@)Kax5|gMwlm?-uNy0;6K zyaHwVab9!>$}A^e833h#7iMNdsoD)>bA2^~&)yH^FUvT80m`YD0G~_*F88BSk1=sS zAF-$nvAI;VH~{l2w)6XPxFxEa6pYgJ86KeIF4}7+06Dh=^RM8;C6$!!ZG7RAPdm=w zmL~*ov>E))Yyu3E4F0X$KYf%Tv|>4s{D#5R@*Y)cBs<9@@-mQh*ARUz6i7d4NS?ld z*1(YV=spk^DVP#rSfzX32J#{~Ad5~2x}y!hxm5)C-ZOOc(sQ}i(En>0&`uiX71jXb zvW@GEe*?@J#y8V!KzN05cl0)%|Gx1^1UYA;vFoi-%$s0i ssi%y6ubc)#0t6>` z1zoAeKF{#Nq$)8nd7H7nF&HS=XT19z#11;fuvF3SRX{wK-R zTuqB!m0WGyH|J|9rJAmUm{H0A^*%t@RAd-7UApH!;v8+3R9}fmXqgwH`4D zyC^uRTmE?49C|ie?%YIgOQy(Q)_n_%2$ZkQWnp0B_ORvZRlkgjy<5ZEapp1`Rbl@N*?d49{lVz&OcN;5-tOwR|O;L)W7%brT12K zpfw*J1m~JYk7ZJf|Fhua5hmvgu{_`%)2#4al>WXc-|-M|o;AHQ_a&h0oT=M1no2x2 zT`AkgB$Z6phx__9sr?$!=w`6uS?vt9H$&V2b$ z1k1|LJh1gWVD_N->l#X4E}L%@vhz(zwa8z+Kqa?ZCLLy3MweS+yT{N%)e`5~7{l_~ zZJD<20Toa!GY1%XX|-i(=OsXIvaGyD$zuxy;|B#7UKPySBv=^olwQGNw`IfGMSOtU z(hxv}XIEG@ub#>(cp&(Te+jypEuMe0(98L%b=+9?_^b?TaL)ult+ST(hp^6*tyNLX z(#b>CwMV(0@vgN|=SxR=1rv1ZA5Tl{a7BWNIo9US>3#WL>%}A6X~ik)w*^gX)myE% zf2wCga@u15ZRfx2DqG6E7Ut3lk8Q^gC#*YcEolmWSZ4d`2@hPb#&$j4pDlNq-S605 zzCgAIVHKtS#2$9K703^@S4G?h0+!k9Yl7H-a_sNkh-ANLwGS9s-}B7&$6doYu*k8Y zhtlU%I`;UcGSDrKqvsirPo3j Fem - FEM-Elementtimenetelmä + FEM-Elementtimenetelmä Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Syötteen virhe + Syötteen virhe @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Poista + Poista @@ -535,19 +535,19 @@ Selection error - Valintavirhe + Valintavirhe Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Lisää + Lisää Remove - + Poista Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm index db3c0702668ff53207091ffe206323a32541a339..8849409068d0f5d540870e55aca1352b27f4d228 100755 GIT binary patch delta 4320 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 delta 2158 zcmXYyc~DeW7RJBVZ|V2?^&$uejo1o^EG>c{0fK-M5Zo}b2m%d=7_lm7MMY*3=P{5) zT1}j^S{O6|l}se)B;c4}b^%4BXtbqD1tKPzrA(rwNz`(jInMR3-{ro`JQT&6xKB;}TECqE8r0&iJ<<)XIR*qzWDFT(jI7iRYL7oe z`?HPd>vUJP1Oi2W=zcv;nJ%j26)UwYrj@s-R7vnf#;`fOU0q0;ALi|Q){!*hdHcI` zE~|`Bakh~ZiTt7s2kD+ver-|-F!do{Z&^yFZszy7djZ`5f8<0Hkm}^Mo@{Duf`vbM zGm$iVjz4*8965cqV6xW(%U=>~mofoghmbIL0y(`|Nbx7f&si^Qc$ET&Rtt5?08rv1 z)YlbLfHA_h2-^3&Av9%u3Ouu0Xltaz%5#Nx<6I=gsL)}j1Z}>I!A^}WLW3Bi>xD12 zKSPecF7&=e+LnJVT;B8@U}+GBW>G@oeBt)%e*sJng*%PafblkCR=03()SD#PDN38K z19=Y_3tL6`pce(K6qi>}VpDgCHAN)Zk_<+N_LKPcj68DV$KtjSGF8BJ#@HUQ>3s^Y zWD{etLu_}FBx83orhY4SRF#qYWwB!`1zdJk{8yun&Yuh zRGAci^E?&!p_FuPFQ8dBvxWbTC%nfvzVHdV83O{OlZMo186sjLP zj!ZG}KaA1m^wwoDH1Xo~sZ-vf3Aa|CYxy0p{-FOLqmn!^Q{S&23wZ6;Uv%szv-Rk& zJ)R2%qq0Fi7pSO_C*l?Q|4VZCae6K0Lvq?Qy5A#5u9hjGJp`vsV?U+!?urvpa$U}rZ~8?kEu`hMzZwI^(Trc@Zwwrm3`l#8jw?Y_NvCmj1i5tjx5mF7 zq3;VTj9V0{)Wg7-G;Dn17*DNrF{Y*)_k2y-uZS>y)478J8;sxOyMUx@ps6KYq?TPX4L_g@b1F>N;{0gjrkH&{+D8`^n Fem - Fem + Fem Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Erreur de saisie + Erreur de saisie @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Veuillez préciser une force supérieure à 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Veuillez préciser une pression supérieure à 0 @@ -527,7 +527,7 @@ Delete - Supprimer + Supprimer @@ -535,19 +535,19 @@ Selection error - Erreur de sélection + Erreur de sélection Nothing selected! - + Aucune sélection ! Selected object is not a part! - + L'élément sélectionné n'est pas une part ! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Ajouter + Ajouter Remove - + Enlever Displacement x - + Déplacement en X @@ -1386,7 +1386,7 @@ Free - + Libre @@ -1396,37 +1396,37 @@ Fixed - + Fixé Displacement y - + Déplacement en Y Displacement z - + Déplacement en Z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation en X Rotation y - + Rotation en Y Rotation z - + Rotation en Z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm index efc360c32f6cd017b602d64c50b9accd7070b824..533415bdf597d9aed2252eae53f0754c42fe8f73 100755 GIT binary patch delta 4213 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 delta 2138 zcmXYyc~n(Z6vn?hzWd&NgW|xX5Tk+*2S8*BLF-#8KnV6-Sdo^GW4Q8olO|#GpYtg<7q}yA@~N`uwWC!%?&`}a)=ibfm~OJ zJr%&@I>uQ;oE^;WQ`;DA8H{sl88a*Xr-rQgY$CgzF{ha^*A6NC1dx;iX}TM66Qpd~ zFzGm?WxIjd2OzDEAYO*F_gTtLD5TSi0HKW|9H{|$1~ioV0X8$^934(RQ49##xHK}8NUnFS2q>Za%-j;dJ&|9>9|QF3`JIU-z_*RxJ$W0g zznecCK#Y_4*7ux%pj-TTry1m*cln;>Ex==^8GXhu2E_9{+M@>(^4Ns6l<(c_4b1K5 zZ?#dRGw%v|H%eL1PQjwmNxX^~{Q?B5Y9q~y1Z(w+biyvdx}V;Q%M@bm^(4_PA!AK5 ztrID%j9vhYzbS06kgvj52(?{j0RDh*^z06jAXU)5OsCWauN2M=Mv}98g>!eDsS0eO z$+`iU-zj=tN(M&H5F=7NfEndttowKLToc#4P8<7{h^6}Tz`XCp4W$LZv>W2q2{b?a z8F9y~Q$Tc=SYJ+o<@AgD!zwAz_r)eF1vuseqnEeF2EJ1mCma($-} z5if7L4w%!$zBmd<91!nrc?mGy5$}~R1=QP&aRfeUkj-(v z3R2P26xjGGX>~qHX4}M=rEQniCuISVPfA<;$yDxp87Cf;b~Mrkwl>CjVN!#gByk$e z7_nVyDt?mOzeH-PpbhiVq(kLAc}bLdqNh^HZjrq_Hv*nE#_M7gbx$pMp+&w@p9u|~S9K$t$rK*3j8OM?bM4qV9wd+PuCLZd#3+u?Fi*)^u`a=4@ib0n`nHW$W z!)sKYBb2~4sut5$C4LgEKa5kBDiqMPjmir<4pMccDWy-Gqxv85j#54Q7r>`OX|ksR zVON#r!^bId8)KxbocO7bH0@^08l!X^q=0f1jh>Y(48d_`qq?0W)wAVYx<=+_E&$f~z^9)_h0n}aw3|HPh0>rF0TrHuL=eHPc zH_27!*c5V8K#f{Gxd*qrr0|* zJM|JUvRD2<&#=kXph+ot0?u=X8)FYAS1=R zEZ`nBk~njDi5E4XwdRj*1X92F!hD6N`i_6u{Gj!b2iz@X=PC7R+b#P>$5Wt1mZKLa zAg3*s6P_fMhyN)y7`KWsFv`*g`oB9nS+4!^8M)P~n4-Gm=vM|guBh^YA;R&o@uG9( fZQpT~C;i$Tq2r2Vhi%dy!IeiAggG`myIT1VhT=X* diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts index 05a3308d8..178b2b0ea 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts @@ -38,17 +38,17 @@ Fem - Fem + Fem Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Pogreška na ulazu + Pogreška na ulazu @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Izbriši + Izbriši @@ -541,13 +541,13 @@ Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Dodaj + Dodaj Remove - + Ukloniti Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm index dadfddd725a1f2b7c85945dec06f67f6a84993da..24d345b9fc436654bd8221929999198468058e37 100755 GIT binary patch delta 5229 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 Fem - Végeselemes analízis FEM + Végeselemes analízis FEM Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -258,7 +258,7 @@ Working directory - Working directory + Munkakönyvtár @@ -273,12 +273,12 @@ Static - Static + Statikus Frequency - Frequency + Gyakoriság @@ -309,7 +309,7 @@ Materials - Materials + Anyagok @@ -398,7 +398,7 @@ Input error - Bemeneti hiba + Bemeneti hiba @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Törlés + Törlés @@ -541,13 +541,13 @@ Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -764,19 +764,19 @@ References - References + Hivatkozások Leave references blank - Leave references blank + Hagyja üresen a referenciákat to choose all remaining shapes - to choose all remaining shapes + minden fennmaradó alakzat kiválasztása @@ -800,12 +800,12 @@ Mechanical analysis - Mechanical analysis + Mechanikai analízis Working directory - Working directory + Munkakönyvtár @@ -815,27 +815,27 @@ Analysis type - Analysis type + Elemzés típusa Static - Static + Statikus Frequency - Frequency + Gyakoriság Write .inp file - Write .inp file + .Inp fájl írása Edit .inp file - Edit .inp file + .Inp fájl szerkesztése Write Calculix Input File @@ -853,12 +853,12 @@ Time: - Time: + Idő: Mechanical material - Mechanical material + Mechanikus anyag @@ -868,22 +868,22 @@ choose... - choose... + válasszon... References - References + Hivatkozások Leave references blank - Leave references blank + Hagyja üresen a referenciákat to choose all remaining shapes - to choose all remaining shapes + minden fennmaradó alakzat kiválasztása @@ -893,17 +893,17 @@ Properties - Properties + Tulajdonságok External material resources - External material resources + Külső anyag típusú erőforrások MatWeb database... - MatWeb database... + MatWeb adatbázis... @@ -922,7 +922,7 @@ Material Description - Material Description + Az anyag leírás Pa @@ -939,12 +939,12 @@ No active Analysis - No active Analysis + Nincs aktív elemzés You need to create or activate a Analysis - You need to create or activate a Analysis + Létre kell hozni, vagy aktiválni kell egy elemzést @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Hozzáad + Hozzáad Remove - + Törlés Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm index c9960e92ddc4267a9f3cc684250b95ff836e4543..d7f9959495b7f7b438f07d5584e0bc353a09e848 100755 GIT binary patch delta 4214 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 XdlHXi`f2hvB`G~#QQlr#@ulv6p>K2S delta 2146 zcmXYydsG$I6~@20Gjs3UH$jw#L>?jn_o^rgVt5(Eh#*>C@;0EUV54RkqJ}PWi9{1n z8(o+#qd^IXtq3*+VIx|{e!HUxN_#B3Oxdw;}M&YtWF5ch?nk#1j87~WF@4=^Q$^f|lgC3cbV;AnY zn0A}5Sh3Sx-6AbYvH>;$yO(ES17<1yQaarMQJv%sZr{ z?;ijQjteG4Nv|1QM}f>X4#@n|f`#*>H}2#DlLw^sYt&pxm2Uo00kk~b3ptd>H(Iwt z_X%LE)4iW$1%mr@N5T(s|3+O~D48^<>;AxQ zoZYAV<=_%(c0lQRo7xsdDqprhLX592*%!3TgqN!6*QlRLo4zo1yi)vwsVX;Mlh~O>-eUKnmGjX?r6Oy8BoDLwa;%7F$_0&@Ka;Ve=FG`V+9v2HpUqe>76R$;eWX@S+5@$ zZ*HfH7o9Uc{GkO%=rMIW4+37z6MQV_`_$B3{{wGUZ0c!hrx$WfJr}zvNu#O1m3>|s zGYuU$10;r;Zf|GGiyxata@hIi6`GYVOPEPN^X$_s%kVeM5j~SBp^tfiYu8+s*B*1! zj)%-Zj`_JEM!sghxwz{(-E1&#y2X@7R0u}33#O+CW|;+Z?+WJa7A#0MS6$5F1q#hI z)0pAs51aRGozE)h6%2_MbY_`df32sMX%&`dJ=x<^&shTdX7DdH&r)=AI&V^L+3cW8 z!@VsPXZb$GYT0Y#P2JoCqn}#d?Ub3?-w4KLSn4iQ`;reWe`|Y>QvApAb#^UVb(Q7b zlWHLQsx{&tHujHpYy4O}y|m6{{q=oLm`knoNh&`~w|@DU8?OA(IvnXuH+S2-{?N!9 z#MlDx8dG0q3+`;9**a~TLm#k_B-^UD2e1K6wf%l1jQ!%IZAi!ZUbfEmsC(Q4i|ti? zOnv&Oyz})5C_1ceVcmp!q@x diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts index c3e90b3bf..b179f5e5a 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts @@ -38,17 +38,17 @@ Fem - Fem + Fem Create FEM displacement constraint - + Crea un vincolo di posizione FEM Create FEM constraint for a displacement acting on a face - + Crea un vincolo FEM di posizione su una faccia @@ -398,7 +398,7 @@ Input error - Errore di input + Errore di input @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Specificare una forza maggiore di 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Specificare una pressione maggiore di 0 @@ -527,7 +527,7 @@ Delete - Elimina + Elimina @@ -535,19 +535,19 @@ Selection error - Errore di selezione + Errore di selezione Nothing selected! - + Nessuna selezione! Selected object is not a part! - + L'oggetto selezionato non è una parte! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Posizione prescritta Select multiple face(s), click Add or Remove - + Selezionare più facce, fare clic su Aggiungi o Rimuovi Add - Aggiungi + Aggiungi Remove - + Rimuovi Displacement x - + Posizione x @@ -1386,7 +1386,7 @@ Free - + Libera @@ -1396,37 +1396,37 @@ Fixed - + Fissa Displacement y - + Posizione y Displacement z - + Posizione z Rotations are only valid for Beam and Shell elements. - + Le rotazioni sono valide solo per gli elementi Beam e Shell. Rotation x - + Rotazione x Rotation y - + Rotazione y Rotation z - + Rotazione z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm index 087c2fb46c37e02ab6818fbcc3b9a7d536cb235a..ce327cef28cb4650cb39d5cc86cb63f6e4bc902d 100755 GIT binary patch delta 4712 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 G_5T2gq3Q?# delta 2670 zcmZXV3sjTm8OQ%gzAyQ5w}^ru5UwIbKtTjV5HS!?)NS4>UTPH)XTfn1ZP$j1waP?Y zqt@EGF%XYM?5t7S={h$RMb~LXWmBnB)SjL*UF+0gZBMs<^0IDcJvqtmy*-!rd7k&l zy5p+GcGVVt*8o6z3Yc#JaxpNvhFl0FMgh8Uz_=N}NDC0x3FPkvvPJ*}OUdm(;V!`R zP_XDjVDd-ckDzL*p!z3*nifHca^7?DVL_Mnm>B4C1eKJ2o)$FpD>U>#-A02&YawlH z12PgIed3@q7a?^w0@-n$wmDIyDrr%d(rPWgoDn}pF zHM~-A)GSqv-t`M$!X6ID{C^4-B&c5b>{;NME|sT?IoA}buD>J!+PUid*{guTSJf}8 znQvXK`YneU2wkRrJ83KRzob4moJ?Jy?s&%!h(4h{?>B)46?OND6F_i`UFSL;s+$8>axnKG)cHRWn5m z8v7oeOMOq1-O$QZ{8Tfoc0WV?NK=(L4+!6@S!12UqW*!V4l-dn75?t;7i<3lxo+}aA>Sl zr#}zmIi)pqbAg0jX-hoUEuGSig5Ltkg;MJVI#$pu?MZdh(Rot4oel;D3I(XZ6yl*O}WwNY~ciX6`RaJvnqpb4_}%X*FP|lOAp;2lSf-Qy)uDZVh5e z&db`L-37+~LooNStnBxv!CCU+MRY8@L|$3Ul;u1X%y)etznV9LMHD1&iD6L%BnrmV z$UFAYz=RY*#|gQufhn;r6HF?V+smF~^*iPEMj9-$r^jW%G*3L!!&M#ck`E2a^ z>#JDBBQEM6ebvs;{>9K?-^v@C`Z-xJ;8jCM(^tG%hoQ68!&*o*be`#8u0sr$_YY@# zS#P-U^Fu&NmEqC@*K$$VqNdwiDBp~mFSL9DrQ<7n4wBY}b0 z#xXBHVgx1|$KIgllPt!Cr!KMKJT#W~FyzBN6pT+79Di7F!fnC4M!|foptHtUe`W^t zUNAOSN?d>XQN&A%Q=!M&!6 zcvflDCDV&XxSw&{v{BESniB*^M4C3A&@i<71QY*k+Vw}~zG#x^;=yf9#a`3xnQpe~ zeWrWgZeT-7F(-d+VgGp3oc(1JFM7~r-u{3K$~WdFhfF~~^QTX#FssAdn>vKm{Dmd( zgBB{fW(h|PL*HkKInl~uTW+Zs{*cf0m}SGNaCXeEE$`on<1;L^+)(pG0OT zv)20a41LZ>YxCe-I@)VJa)Az6d#y*qn5rQ$&0=7y7mPS;?E(Ma2X3<7y8k;CV{sY1 zy6x#zHmW>frUE5C4LMlMj|~g?twIHsV2K1! z1FNXg8zZ5~h8K8wu~Oy>gU#odH<~pZE#lcK&)M`eDJ>xZw538`AF?@PuX!)VX$| z7*i;_*eiz&9*o9F*!!9f&)Hrcm2jT*cODJ9Fl)05)co9WxDq2K?t gF#11Iem*g8(ihWLpRi|> Fem - 有限要素法 + 有限要素法 Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -205,7 +205,7 @@ Add a solver to the Analysis - Add a solver to the Analysis + 解析にソルバーを追加 @@ -263,12 +263,12 @@ Default analysis settings - Default analysis settings + デフォルトの解析設定 Default type on analysis - Default type on analysis + デフォルトの解析タイプ @@ -304,7 +304,7 @@ Hz - Hz + Hz @@ -398,7 +398,7 @@ Input error - 入力エラー + 入力エラー @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + 力に0より大きい値を指定してください @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + 圧力に0より大きい値を指定してください @@ -527,7 +527,7 @@ Delete - 削除 + 削除 @@ -535,19 +535,19 @@ Selection error - 選択エラー + 選択エラー Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -753,7 +753,7 @@ Use FreeCAD Property Editor - Use FreeCAD Property Editor + FreeCADのプロパティエディターを使用 @@ -815,7 +815,7 @@ Analysis type - Analysis type + 解析タイプ @@ -830,12 +830,12 @@ Write .inp file - Write .inp file + .Inp ファイルの書き出し Edit .inp file - Edit .inp file + .Inp ファイルを編集 Write Calculix Input File @@ -898,7 +898,7 @@ External material resources - External material resources + 外部の材質リソース @@ -1052,7 +1052,7 @@ [Nodes: %1, Edges: %2, Faces: %3, Polygons: %4, Volumes: %5, Polyhedrons: %6] - [Nodes: %1, Edges: %2, Faces: %3, Polygons: %4, Volumes: %5, Polyhedrons: %6] + [点: %1, 線: %2, 面: %3, ポリゴン: %4, 体積: %5, ポリへドロン: %6] @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - 追加 + 追加 Remove - + 削除 Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm index 6a7f7cdfb3863f425d2dd61420b893011718a140..2ca8be81f4081d0d97fc61a457b207887064d941 100755 GIT binary patch delta 4292 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 t_5+qSe@|!l1kdG&c+cU8jqTSWm+3uYCI)- Fem - EEM + EEM Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Invoerfout + Invoerfout @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Verwijderen + Verwijderen @@ -535,19 +535,19 @@ Selection error - Selectie fout + Selectie fout Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Toevoegen + Toevoegen Remove - + Verwijderen Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm index 4924e1c9a68472b6916e56cf2ec118aa0f865a0f..2e5c024a4e8409e8bc8b766049e88b3bf1e8d8e5 100755 GIT binary patch delta 4245 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 Fem - Fem + Fem Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Inndatafeil + Inndatafeil @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Slett + Slett @@ -541,13 +541,13 @@ Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Legg til + Legg til Remove - + Fjern Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm index 21b60c9e88c79904525df5a628b6eae6b5d17096..d69d49eb061574db3b4319fe834b53181db0e18e 100755 GIT binary patch delta 4451 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 delta 2136 zcmXYydsLNG8pfaV-OhLJh#24vK?Q{)pojq;4=Nyd!7Ep}DP~H|f@V@=oYfq{vN$8= zh!&|djEXZN<|Hms%$Z36u|{hMDbYwR$)z^hSSz!}nTOf__1kOj@7w#`@AJIxzJ1HE z^`c>$pT`GK9s)j>05uOt8c(hSrbh$D89=%Xm~028r2(n?frSQO?pksqFs~kP+!ZX2 z1QwhEz_mddxHd?6h@kQ(L3KdTxKq%h-xdSYYl3DTGWesVP|z0em|c*XxM{HhWlIx- z(4c&r0_1-IrMCu%*&&!-DYz&^aPen?OE(H;{Un$h^nZGg`$$aWRSD)lD_BqpHLi^Z z{TJ%Y;k@M(s98L4-YTeNyMaY}pq9szJy8F!hVy+;|GpaVZAZ{E40_>IO!~7M$Z{cO zDKonKCeqjP)>#trWG~>liGs8Q4^XI}sgh}5njn~&jgv(sOkFZA`DIX!H5l-W1?)2o z0cT!eYJCiWjr{(}JBD#aZusp$E-AbOhoxgm$!rf*>34yos4w;8?tFQQx=^nJ1o4(SXnSENOoElQu7SiS-*}FmCMcp z{4TjuPV_cXir3}E8xAwo+vVq71wh0CxyrGerY@8B^|S-hF1ht=9VN(@J!cj%wXv(^ zb9WNx_LK6td;Y*|uVQmn0V{MR=n|dp@2AAi8x5rVM@by<3D?gn8#eRc(0rxRbOFdI zR;nuVfrJ5NTLkBa^eA<6-veeUN@Fzx%ipgYm{!X`6P0Es0~{S77;@Sp2B9MaBWEjr z+mTGoW-0BjP}>4OrSH`*sr?D%$}9$?^eNwN{WV}qQ|?!n0@ftKlwjq-wPAocMAd$G z16WclnDM=;ANJ#cdFoTE7+CmiwLFiKEo~KC?nzW%oRbO6Sf_3arKv_<5}aJ5)*a#j z%OIG&Uv2VI65p2uT}RaBk`;7+q1s%-0}IpDBh?bWPgZ+fvB2UzT5!-yz?iFo;qwJ2 zrD<_@x_LpH=K6Rq;0cTngW;)zcT+rj>+0qU-Cm4c#&&Db>8) zEW;<(YYo}FsrE?Qo5qyK_G^bec%Jj;wU+oEVBAo_34Pi>diT)_-CBQR20RF^G7j~p zDS}Q2Ms79^FOFfyt1!+C+r7_aYO4zLbs_r1*_o-f4bdL4!r|b3e zzX8S{)0@2ufcSg*;iD%Qd4S-I(R$mBLTdVxU~ZfK!9fO;*QtMWaTBZKfytQfruLtj zhLrq3(@imjxV$v)+oo__q#11{*Uy!#mNSC!!6vsciQcIv?%H%j;RolP`S749u}i z?`PzN+bt{GKVgFjvXow7%44j8(@qL5u?a5wS}>7`ejxv5Vyv9=TS9~`Iar_ zrk$^Bsx9$e1HH1&V|)EuPFS|t8d6mL_?+$Yhum;si|zWfKt91A+5_I*$Bo+T!C24K z@3x1YZlu|^+sh{22S)wTUR@E)j(OMq&R5~=7YFVA66-tFY=6)(=z&bfrVC8{l2eYo zPb4wW97pR%49NFqM_Ul38WWl<1{2>AbRKbB8GOV2uR5-M^H;hxs)TQDX3KTG*U+-s n8W~t?3Jt4$dO}+5sIa=0rzd=-wcLsxh^_5RcDLAnQDFKX>_9j5 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts index 070bc084f..0c9f712dc 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts @@ -38,17 +38,17 @@ Fem - Mes + Mes Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Błąd danych wejściowych + Błąd danych wejściowych @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Usuń + Usuń @@ -535,19 +535,19 @@ Selection error - Błąd selekcji + Błąd selekcji Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Dodaj + Dodaj Remove - + Usuń Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.qm index 3efd00d6d7bd252518f6bc4e67d8f5a21d8ef49c..b969141a2615cd44f7f4ac7ecefd9f1febf8d26e 100644 GIT binary patch delta 4200 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 delta 2170 zcmXYyc~q5k8pprydf)fHcOe$p6l5RZCMbz)UQonT6bJ#4RYXT=(WXUd9C-<}g21S2 z9nwgSh?5A_fXaj|X5gCI2x10$T7)yxkYhJ*|fsiOrI zSh111xvCcVLM>p=L*bG*9Vo6sTV)WivWGEe1jmcZ0HFfcT(d}yOBmGy0LwYfhA*CCOQxc{22@1<0?j11Jg3NuFE8YSk4V?69MH2|7dPGF#QvLJO6jU$nkHd zn1PTqesAP%djAmL8A?p~7vJ}eGx=r*f6;j%1^gpF`1DD@e}XaSB}UsSeo&wMVOBT0 zi1>{ks`CeOzvge9qD)uB3#!+o0V4#fMwJA#FotvsHZ6@bcM@z(&ygg&U^__PEshZq zYgz7Zr+IU!uUl6Jn)$5m-GgR#g^I zfaPLCINdwfiH%D?1{U;)tu>Tb(L(WHw1cF$Ahz2mL7z;UTIw^B^KT!ZOJFevSJwX_3P4$i?hj%<5EK~nQF!i#yRm)<6#PrRnEBD zF16K?BreMs?cP#**&5md!%}-a1uQ-;mi1S_E5z{O;`QW-WWyPQ3*frkaHZ$~nXSd}{p4QA z?o*70Wx$#WWhQn4F%e4GDVi3`4kbB)-go+4*`!cH@xLg~G#&!n-c~A$&(i$6{-`vi z{zPV4q_o%4dW=s~Iyyh1@oQ(azoGPu6w!Xz&X}L8oI6Ab6|Pe*U8$z&_*yj-*a6K` zeW>g%nQlz=PpAdf+SD*yq1FCZHQ~2PnwD1?maB^v6vFXpp==aoA zQ=LkcI(0I}1({wuDNt+gGtSpdP3KAb(g4#xI^U$gvrIqaIA~ROn8qH|(C)XHqyA~3 z{c+Wtc)OVj{Y5vw^)p>)gXZQGiCQ*nzCJ+@X2hDmkM^XM>uvGqZlQ-NEPi;NTK~Bv z_+%@P<7C+!dWXif-%?ZVM+>ON^0%8|G=`y;8$8YTl6Nfk`lyp7=dINjsr4%pt^21X z(<+{0J$8u_aye)1@g=Edh96{yu%(O-ueT0^{=a*aTfh71Q!- z6YgTCdW++paWtr*4$aA@i!%p%I_iT%9L;ggj)uTs$G(tP92-Jnx~7NzC_8-TdOIr2 QYS-B8&giazr%KiT0SjJE!~g&Q diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts index 3593e7a77..f13c259bd 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts @@ -38,17 +38,17 @@ Fem - MEF + MEF Create FEM displacement constraint - + Criar uma restrição de deslocamento FEM Create FEM constraint for a displacement acting on a face - + Criar uma restrição FEM para um deslocamento atuando sobre uma face @@ -398,7 +398,7 @@ Input error - Erro de entrada + Erro de entrada @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Por favor, especifique uma força maior que 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Por favor, especifique uma pressão maior que 0 @@ -527,7 +527,7 @@ Delete - Excluir + Excluir @@ -535,19 +535,19 @@ Selection error - Erro de seleção + Erro de seleção Nothing selected! - + Nada selecionado! Selected object is not a part! - + O objeto selecionado não é uma peça! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Deslocamento prescrito Select multiple face(s), click Add or Remove - + Selecione várias faces, clique em Adicionar ou Remover Add - Adicionar + Adicionar Remove - + Remover Displacement x - + Deslocamento x @@ -1386,7 +1386,7 @@ Free - + Livre @@ -1396,37 +1396,37 @@ Fixed - + Fixo Displacement y - + Deslocamento y Displacement z - + Deslocamento z Rotations are only valid for Beam and Shell elements. - + As rotações são válidas apenas para elementos de tipo Viga e Casco. Rotation x - + Rotação x Rotation y - + Rotação y Rotation z - + Rotação z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.qm index 7c30b708bdaa5c355582b84c4e3d43facbdbfa84..506d57ae49ce6761f9fd85b1dbbaf8825efe75ff 100644 GIT binary patch delta 5800 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 M)Nk^Ma>z04-`p3=+yDRo delta 3439 zcmbW22~btn8OQ(kz5DhB6%CsLfvXHWfu4mBlrAxK$-ub#82} zOKVI>T^qx*rZs7`Zc!68aiLMsY{t|U8?B~Bld=8ZcSxq0q|=$so6GOq@0|PX-{Drb z)O|r(*Vow#kRJiPp9gd$K(dRh07jh#45NYUTwu5zh}{p2dl|?H1)iBf?g28k0=<4N zSn&do^#=g0g3>iXZK0riPf(vCXz1B@nu3MEbV$&AQ_wxV~O{Bq$cIX_Nf!ux2wZxHsh3;3=fy@Z#4%YylI}k9_n;ELa&>e}u#0W&^ zGozC`kUe7qP*Iw^7FQkDi%>I0S` zrd%+oS!y;pe+f)jzy&$EK(OQ;>A9PefF~Lx*LjvfZjr7olmX+*nsLSRfd02M&uV@L znC@zRk!k}%<29S3Sbyx+bPOR=KF}QB(uaK$uQ}W2X_n@`rnBJ)5Y)rLi^O|GjHc76 zZbWVnf?+2$S62rCMX{Q{pP;9iUujLgOj*>YS`P~&3EnIix>Xxt$pNBIYa_NcF~XDD zh*x+nHBy_@*3J@L(dNzF%ha#bHYSt-;qPmgcuZzfKhVB(@fe`_P7V};7+)_~a8GC4+m{Caq^qu?W8sT+EhQ{jeuv;>r-yEFS|Pjfk#1cGn`%I| z;FFSW<8B(r|A%1F7TvBkmc(<0;OJ1@p4zGG{&~7RYiO|SobJ_C8un6{t}`J9$lI?U z7_bZ&SSJ{ERdDDX{mAa~3~;(W;oa?k)8~O$`2I`Kud;_n1^Wm0aD_gxX%`jy>ubXv z14+a6bI)s8^LO-Z=Q)O6$@*q*xZtn^gKuRt72Gh43EjjSZj_h~>Ztr!njVr^UX^m^_U7dwUt{jdW;~-8g6C zPN1L5*gEAD=f9t9+?sit%@l9k)0PFq&ou7s_&vw(is0yt#)F@hvlIrwNt=wPchaGf zmBw?ImU7HCnGB_gfW^nuyY>N_?zAZ=p$(YoYYM|98a`x7__~#27%mw1qAAgk%-(ru z+Vr`zfb+WDbafuPINoNu|B&~3(m&0|BVGV}a(cL3aKK*k@of(o*%|Z6b{Bggz+AOePnVfLoX3<;U1Yvd%$x7YT8n(Gl1=<)OXP1jmQm|0(I@-y z;>xkaIF}CxyrV56p1ltY?y`)!PS4A&mWpE+c)=7|>bsco=tY7ff(6HW3Qo8nSo~|j zN%4Y{KesG>tB?UmmNtK8cx<<2P0Le2K&#-7UK5PiU~!(=##&}CunzFz9iRDIYtY%j zfWF0Ael?hp?65k**`-n8)&&Q+pJB1CHZjs(X9eS?Sl1rWGPSD&6V_O_zRlWK46(k~ zv4MsYte;F&cvXL9?S8z9cmEb!^k3|}KQ7sl?rdYAT~6E2?owdsv~5e(F=bu0YmcZf z=L6fvu|B+VJ?-AFzeGhV?E}$FMK*iLk#;s)tKBi=9>?`7`>J^Zd1GF+zjh;xV>rxy zUBmevS8f0DI5Rorb&sWInfmdkJhnfPOh*rU95_dZJU{k07{F2mhQBEmVM7InCVO;& z|KGj0dwg{JkL-z^wG8JCx`Y&E;M9J~J}Xijgrna&%k*xsOi42NJRBf~AMJ=tV&vc$_GfK)R@X)KQHCEbnpLBo}_?5$Yv-_D57(fR9x+T ztKhmqO{r_dGjB_N{aFtOEvnwL?mU+7K2{5d5}LX2ztq=PNzL?DZeC2dtZEpFVw=ig7Vf&nOVr?p)?*+r&En?80SOH zToYB-P^$LfJ^r2Mj;)G&YDOz4Q9Cw}lc_qvFJ0#RKKg-yY>rBI_-gw%a$6lP4iFEk zqtxVzE54)&2xKUtGTH89YNx4|gw;kRx+GQ#Qof$sg)uX5|VlU2jqJX(=xM s*-qndBSOSoW8`>1&qoePOU*WLVJdRWnN?X+Up2!$JKx-nX)VG329{r5vH$=8 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.ts index 88059d432..c4cb8e486 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.ts @@ -38,17 +38,17 @@ Fem - Fem + Fem Create FEM displacement constraint - + Criar restrição de deslocamento FEM Create FEM constraint for a displacement acting on a face - + Criar restrição FEM para um deslocamento atuando sobre uma face @@ -228,7 +228,7 @@ FEM - FEM + FEM (Método de Elementos Finitos) @@ -273,12 +273,12 @@ Static - Static + Estática Frequency - Frequency + Frequência @@ -398,7 +398,7 @@ Input error - Erro de Inserção + Erro de Inserção @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Por favor, especifique uma força maior que 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Por favor, especifique uma pressão maior que 0 @@ -527,7 +527,7 @@ Delete - Apagar + Apagar @@ -535,19 +535,19 @@ Selection error - Erro de seleção + Erro de seleção Nothing selected! - + Nada selecionado! Selected object is not a part! - + Objeto selecionado não é uma peça (parte)! @@ -704,7 +704,7 @@ TaskObjectName - TaskObjectName + TaskObjectName @@ -720,7 +720,7 @@ Activate analysis - Activate analysis + Ativar análise @@ -733,7 +733,7 @@ The FEM module is built without NETGEN support. Meshing will not work!!! - The FEM module is built without NETGEN support. Meshing will not work!!! + O módulo da FEM está construído sem suporte NETGEN. Meshing não funcionará!!! @@ -747,36 +747,36 @@ Cross Section - Cross Section + Secção transversal Use FreeCAD Property Editor - Use FreeCAD Property Editor + Use o Editor de propriedade do FreeCAD to edit the cross section values - to edit the cross section values + para editar os valores da secção transversal References - References + Referências Leave references blank - Leave references blank + Deixar referências em branco to choose all remaining shapes - to choose all remaining shapes + escolher todas as formas restantes @@ -792,7 +792,7 @@ to edit the thickness value - to edit the thickness value + para editar o valor da espessura @@ -815,27 +815,27 @@ Analysis type - Analysis type + Tipo de análise Static - Static + Estática Frequency - Frequency + Frequência Write .inp file - Write .inp file + Gravar arquivo .Inp Edit .inp file - Edit .inp file + Edite o arquivo .inp Write Calculix Input File @@ -873,17 +873,17 @@ References - References + Referências Leave references blank - Leave references blank + Deixar referências em branco to choose all remaining shapes - to choose all remaining shapes + escolher todas as formas restantes @@ -903,12 +903,12 @@ MatWeb database... - MatWeb database... + Base de dados MatWeb... Young's Modulus: - Young's Modulus: + Módulo de Young: @@ -931,7 +931,7 @@ Poisson Ratio: - Poisson Ratio: + Relação de Poisson: @@ -978,7 +978,7 @@ Fillet works only on parts - O Filete/Listrel só funciona em partes + O boleado (fillet) funciona somente em peças @@ -997,7 +997,7 @@ Combo View - Visualizar Combinação de visualizações + Visualização Combinada combiTab @@ -1084,27 +1084,27 @@ Y displacement - Deslocamento em Y + Deformação em Y X displacement - Deslocamento em X + Deformação em X Z displacement - Deslocamento em Z + Deformação em Z Von Mises stress - Von Mises stress + Tensão de von Mises Abs displacement - Abs displacement + Deformação Abs @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Deformação prescrita Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Adicionar + Adicionar Remove - + Remover Displacement x - + Deslocamento x @@ -1386,7 +1386,7 @@ Free - + Livre @@ -1396,37 +1396,37 @@ Fixed - + Fixo Displacement y - + Deslocamento y Displacement z - + Deslocamento z Rotations are only valid for Beam and Shell elements. - + As rotações são válidas apenas para elementos de tipo Viga e Cascas. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z @@ -1599,12 +1599,12 @@ FEM - FEM + FEM (Método de Elementos Finitos) &FEM - &FEM + &FEM (Método de Elementos Finitos) diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ro.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.qm index 21b7615720cf7c373e693a18c5509513b708eb2d..78e727bd5ebabbe3512861f8fd03e624e1af13be 100644 GIT binary patch delta 4257 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 delta 2135 zcmXYydsxnA7{|Zw@AUrOGbtTND%HxXqJ!dnS}WPO!cww^ zT+^~mkLl2E-H~IF^_ROic!q(|~!SfQfp*e+e-AApQOqn41MeIs4isGe8Z?c$*AAQXvhLrTLol>Lny7KAi^MA4Fys+ zLFnEF_|!AbD`kux%NWzb7?;kN(8-wi{r@y0sg7-=crvD1zv2Uk0Te{I7sMHM#6=Jj z=)&+F5SLW~(G?I^2NK&Me)JX)F%06FHvr30IONz+g?usLlOP~LhEE(-G0^YEaL(ne4UXE@V&Th84pO#xMy|-hG`Wx=ZXMDq{6m_ z-Vcxz@Y73bNTLgT z%$g%q`ZxKNrZixDJ-^wIOr|d44_s@a%5r?;`ErtAF>gK>O{MkQ#J4?|Lhf$n+a6m3 zvswh5aWjySDmYx91K6w<0>j4uVOGNQQJwVsxv=J4y4cM^$XB%kiFU%~{8YLC!uIjB zKVq*?K9`I#^_lme7iG*G%FICib&hk zFN7QK4UqPQLhnopNURW^yuTLE4+&3;mjb$rjG_ZLEJ6Ih3mxH5|YF+ zlF@Wrtjk_R?oSr$w$X)Y7sbzuIr7qIvD@Sa#B7%w9ku|Drx`uIW1LVg1w81W1m{bp ztNQ`7T_IbHDtpC2#?dLSc#6^9SqfTJO9x9*w#Pr@`bud{2M>gMNG0oV;FzX*GSJYlPBRgM6xe3f142g#(t%G)pJLcG1KR)z!V zOXRUA1SY%59xc=@h88*4i_W*0EH9NQpecvs73GJ4kp*&oMjQ3NRjXVT@epubEZ3Dp z(hHD})PF@8ZDE`?PCj`zoiy!dOv;ik9HxL$mdjVV3TQlstCXohfOeE>c=mHLU7X6v zR01rLRUYV~i@Q{&zw@bEeq;>vQUxi4$wSVnir>uf)HYG7o;-4KV5REWi#lL>s=C>@ z6R^F*Xy?l~W~REi`UPc{t8T4nATRLh*7MCINv!(X5qE%_rS98t448ReeJhVjz9>h1 zCy^%KBwLMeb1|9tFOBDC)Rx|n8lP4x@?3|;&s;c>G`g&ryx|#D0Gg?N6nVO&$!zMR z0b{RO+Dj$(F*5phGRC}MoPUlnaV=xgFvjFgO~LsEl)xTM$r!5e%y7-N)xOjPe=@#y zk7Vg@+^Kgb{{b(D&VThN1uAX)-hM3q2hO)X?EnA( diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts index f3e6d6768..af6ead168 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts @@ -38,17 +38,17 @@ Fem - Metoda elementelor finite + Metoda elementelor finite Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Eroare de intrare + Eroare de intrare @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Ştergeţi + Ştergeţi @@ -535,19 +535,19 @@ Selection error - Eroare de selecție + Eroare de selecție Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Adaugă + Adaugă Remove - + Elimină Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm index 2ae3e2b841730e1c36d58722158dc429e20e4d86..4bbaadbc952a12c17b2dc2b8b8cd4abe36375a38 100755 GIT binary patch delta 4522 zcma);30M^88OQ&-J9{s?h!_qz1_T0#hyn_NfLt0pKrY35*&SeUS?KOUK$|Ynnna?h zW@8>}Vnd^t#xn+^skOB=;?+bGB^ZOTQFFGjjZd^DCXekq`w`HRD)2DBZ@!uDz2A3O zdrordOUXLl*(U(*HZWoZAfFFRJ4Q4DQ}O`iWT3bT7^er)rvp>B0wvju3*QDFsiFHW zpkOoLyOD9}p7jg;T)n`IKa!x`jLK&j)gu`-J&ZaMF23hAo>5=NXjsTNtdP+s6VmOZ zWa%n!YqkTkmVMkuA!#jB`2|7x*)pV*B_XMxl|hs*&+0eSrkKZp@0&+7YaqXn2 z*pGM=n0B`QT#TR)MoBVKR)T&cdAGg+Cf#Jr?UppEe*?_j%V=KCDBP0#;BEY*S1OVYcX1GML)Q|C4V;Zf4Zq;FCxH%Wh;=kfx^yd-@g;W?6jUb^kgaX|EH z>FY6cU*Ik6deH}%@DJ%}A1bCvPfL3mjsOpT#2C}YIQl!r@kxwHGZ>Q{(%v=Uz=9I# zKaY{&vm<2cK#Jsq=Vb;hITo8FGq}V>yi^vaokhj5SQfY0NgjVGi`zyo7A%%!wo!M3UykI?BrLJq7sel zsU<&R=K%t6WnC*K5l0m89M5>jL~U~G1nN! zXc&`T;SN8S3(P#k9euKv&VTRXK78sbFuaPpIE5@!e$QQhrUe-G2KUWs8{pl{Sg?=# z_VNhI*-g3P=}&?3RgCij<*Hr2r1$ zYGLH7`*@f!>}^GclLkrIWQ8U64t2{jibv1ND0ebN+ga-8z#EG8ITQg+q2lFfl#;Z| ziXEpMl;bQ#XKFVvI+t? zW`~N$D(Y{QD)tz)o6jq%oUv4-Bm7l16&aTGxXQlqRUqIAm7`}I^?&rgRjrFplEA~N z&C{;|aa&Y7dOo0B8HpE&dx;+cMu}=?+YBJ{Z>n9d|DHT|GvA1L>! z#~3rc)fvhhD#C8{rhie$9yzD(ZKm$X{JHwZcRQ&Y$~3m0-2h~{ny$F#C_-L+tY8fP zSku-19YvyCbE2b@y66+liQ`?A$~BtqT`}}Ao36R!TECCJQVp7qo4d)7!fftrb0|z zBBdxblrjAvV|fZ=g)d{}2aG0@*5x@M@Yi-r*^h;_ty#FM(sf2AT?I!*W9>l?_Rsk*D>ZXlyv_tl-% zz`WyLiC^exaDCyG`E@%L*~}eS>vg=X6x%?zM(-9rC;3~Ml<`4e(xu-)aN$+B`FP*8LRZ) zc2TG;-x^k)rqq;QF}(ax4tX-)u>TAh=GS337)q&(+{2i#h%qtBa1r#+M^J^~^0hxv z^@mu^4qcc%ul1l9EGlo=mQmLQY&wI2a)osuQ<(e&y2CLB|)Co2xZ!|eA zwralK#vA!6+Emi{pqx5$zEGD_Z*w^9MvKjvd)Enxs3Dic`gz3u#XB@NJjX5=odTbq zHD(+mbnLNy!8_wmc$O0(nPdaUx`@N7+osyuj5+5#zOW?A( zWG;(Kp;a0;-JKo0J13j-=caI(Tn6pT;3g8sd)}J?o>o)nL>BEObCc4W41 zhn&x=y^owhCrC;PH<7NBJhDV-u;x`9&BYYoh&Bt37$P^UfNhjZYAB8YUX$p5>)+ zyCU}m7v0Ymx5PW3cqrPV2WfAx3l2x4{ih6w@ECB%YX)WUpNG-U~&rPFwt3$VAmkQ=_vUh zK|Cp{L~WmFo)kJroz0`3Wu$>(ZYQ+^Dnm;8RPptdwWO1`ICxtfg_ zqq#pW`T-3zJDSCy3_-T*e!^S+kMNcu3csK1WlT1GcW|%e%Z4aigM5lgGeyGOZ>Buo z(kz&VC_qI5?8S6m=s(Zp+Xc^<9YW;dsiDMnbx=m^WJ#rH31uYL{aI0HieC}+g~@KI z6wLhHiFuH1R2;mkSg5OS8mb+>DE1VuI5sS_634|rRcMOqokpjHz9B=c2w%7c3mm9~ z0f9rUf}b+5FZ-1I0eSt2cRipVY6p2Nwy@Z=;t&-hVD*gGCfc)7OvJ3PG0P*H-Z7%i z^S;gVq=cr9IBTr5$7YV}$M$j{zP~h*e+;C9H`27Lw^>{GCZpA27UwUYEg0)~qs`2h z)Cg89Pvb)Tf;-|Llx~~TGymq^Gp1ZT8Q4e$i3t^(UUaLful1v;;9?L*J0^N!q3cpw zPa#)CH^pxWPvH?rLOq)9D(yHn!}z*JtJBh86+Hh@L_1>Qc$3v)TFOr`n|X3XEWL=K Q)SmlHT3Y9UB|WPD0%KpKS^xk5 delta 2236 zcmXYyc~n%_9ml_Koj1F($R;3*AmbbdpgM&!{|PRCNt(p=dS{#}48 z=X{*>eS9?+TJbuNa)GlppQbDwB6bp&68nhYq6R~OjCL+1p0Z4Traz*z$G*jwTEuPC zs)vA;@w6Zo{KQzaj(cac0PwbOt{$qnWZ`bSDFWL2{G$9iAfS|goBs=-|BTftXRj+O&a6^oC$PPTwsU6;ka^ zD#bBj*`{_nCr((OTmo2a!d7!3iTa6fw67BoqJ@r&`+($OK|Q~eQX6|uxIC6f>fR+> zzV8LRa!oW^w*sXWG4Q(#z^7JB$P54$28pSDz4ZQPano1B{^?RJI7;#TYqL{Bq9%s#%)Y z`7YJAxKiAVD1qgHdX_sy^QHe;^Xf<0fU<)|Nb^<$-tQN zp`^5X08>JwU;cs|vl^w^A}ZO6GR6YcC2d)lOCo}_GmJzP@Hu1jbZK8J8CY?Man)?8 z#ZD#h%w(J!E45XYk@_b~Z9B+d$wuj9BTwJok@}Nkfn|AeP~dNX;I|m3Z(^L8BFB%> zEXgp-$=@6SRKLA!F}dj_A2a$df5{V!0g{}up@j@~%9WPqK&q#_sYd|P?Xtax+R*!^ z+`Nh+RjTA88I`LeZre0;VM9J6sk5cXPB+?Mg$cwqK@}8p8 zWYYUEWeT>@|L-Z53)C$WI+e6YI^R83saD9LBt==b?*!nrMX4{nO#MIUg3`2PoWx{N z+Uzt|6Mv<&pZc64+R8ZhxN_#UjcV#-EQnIBoFIpatjgEd8>l-vwVL7-s{KRl#L7n` zx}DnKWIKtsPiw(-GTf_8epXKtGK(?ceQk;+jkNPXd*Gg$Lv2&2y-`OhP8761K53)W z4(htBdjQ{OjD8u6fj+vf<|h={knWPxMOxr=mo9cut=)Bf?GXT9p&QXop@LDkl*?(a-!7wPjR?KIW1qX)Z?}t8SY`HTp_F=j|VXut9y&FnL~b zO24|Z7toFCs|P9NF~=F_%x7HoCF9D2jQJ~Ha+tC3puXW^E(P$B-X1_1p8t-1N9}Ct zf^No${fslb^y*j5RLd-HgTEKe_$8Hw;O?n(^EDf6H$te-GYvJ!`Smin*G_vm^&uA zWowM7_nS#8hg9PqAJB$z#MqoJ(U0}Up{I0U_M66$I3F6hr6%vsj#31^rXXyjgZxcl z=bS)JqNyh0Aq|pJQ)68a4WMnNPi|RgUfeYe^VHvq45r6jFEp^;+|W&_UtVcGGAWH5 z9Wi%&O%8dUGoJ~hQU!(GVGGM`#u@GALD2o~n_>Qb{BNWQXC>Xa%UvT%74Mp5jGrhX z1DjoI18kh*d61uDG|=g9MK0E34W^)+e5^zjHed#^ns(Oi4)$?;JEfbmIo1Y;JH~@T z9Ie6r4xiv>+Q~0}TlZqewJ2mjbZnUx?#PNb?Qlj!yKY&^WYNtm5 Fem - МКЭ (метод конечных элементов) + МКЭ (метод конечных элементов) Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -304,22 +304,22 @@ Hz - Hz + Гц Materials - Materials + Материалы Use built-in materials - Use built-in materials + Использовать встроенные материалы Use materials from .FreeCAD/Materials directory - Use materials from .FreeCAD/Materials directory + Использовать материалы из каталога .FreeCAD/Materials @@ -329,7 +329,7 @@ User directory - User directory + Каталог пользователя @@ -398,7 +398,7 @@ Input error - Ошибка ввода + Ошибка ввода @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Удалить + Удалить @@ -535,19 +535,19 @@ Selection error - Ошибка выбора + Ошибка выбора Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Добавить + Добавить Remove - + Удалить Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sk.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_sk.qm index aff982e676cea7faf961bbbee3aad8036d29056b..1c4bf01179a903d6dc10392a1f07cbfb43fd4b8d 100644 GIT binary patch delta 4130 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 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sk.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sk.ts index 2ff73c965..68b0aa266 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_sk.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sk.ts @@ -38,17 +38,17 @@ Fem - Mkp + Mkp Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Chyba zadania + Chyba zadania @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Odstrániť + Odstrániť @@ -535,19 +535,19 @@ Selection error - Chyba pri výbere + Chyba pri výbere Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Pridať + Pridať Remove - + Odstrániť Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sl.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_sl.qm index 59188258c58c264c07a58fd6aa1a7919de613bdd..e92ed2ed67aaba4e7e11d70d7ea5f32f22d9c4f9 100644 GIT binary patch delta 4218 zcma);3sh709ml^(Zr&jg!2-(Tf`U9ESGN5CK6Hy(Cw-5)vcyGWT+SA(Oy8V(r1{`&hbKrCH&;S4X z|DNAV=LuQMC0SeW!eapUJrMWF>G5SD?gU`opULn6MpYK0dNrfwAB?)h0lvYgKh9`a$7mcg!1p2F zPnXo>fZMhon41Ldy?mg0C%FFYz@!Mq!g@w`(KYr^yo<3Uim|+mae43n&oK(6jMZt3 zmLPCv{s>fBq0Br?PKz zcUIPYiuyp=BRlsK4$yYVXO^!8B3tAe{8Pr11B|Js<>$7=0OcO} zS8tKy^Uo->qbZYVmlY;G1r}GOFuA=CiBlD3{Q@B4g2KGZMNRXh!u%|4EV!n~X{8j; z>rxc0IY=eAsc>d31CpZ@n@mfn^RFuQ^&O#9Cn*jc-2r63qjSAhp5uH)6`f$*tZ=T>sCTI8Oc2xCGT zW2%~a?THywQX6;VkyUiQ*Uf$O^G~Tc-r~;Zl7}h>ckNLcDdSx3`c^v-P{cTM7Wdty zQGmWssrtp|)NCP)WiF-WU@%?0L}|5GmeR4bdT9MuyBbn z`~${_B*w@%Rkn+SWZ{P@DUp;fSEpKYNA;i_bz*xy zP{pYq7{3!3(V;FeeM6rAQvG~^NKG_ReM}t$1RqtOuIiw!PEmj26`ImMjZQrWux{4y zc$n<8YZBk0aWg42dG}M32DWPK8gguUfTnTBb2OfD8fSkh&3|l)re!(F>8RD3U30$# z;@{D9^`D_yEhe5Nb`n1#Ue_FGod;yC(Hwl?6^bx}F=xBx@aI+36Z;vL@6o*d962m_ zG`*)c)A&BERWHq^-npd>l)j}VenuO-lS)E6t)=P6(rItpr1wQ`ug<>u1|Z+9>oGq8gmn(^8e>$suBZJb zW#WqNSZ6o&(iYvZqdn9sk-ENv34p?)yXb!WMVil%y1%aNBS!??XXPZl6I=A$g=$KD zrat+1H1}y9efqIcq?FV284r^{g+8R8yn!x`x9F!`qyVh3df~_iq-a%o`*|u+#vaBg zC5*)<7)v)XRvlqnUZ{8b4hVAn=A)$)LAky)l1h^2(Qj{_NMrR4V^Shx@)`ZR?Ns~1 z@rH(@L3|w`7Gl_ISI<_XybQ1lxp#? zY4b@c&7ua=-uv<>l6OsqddaciLet?WDrHO|7E)LUrCEL6(73{>ZMi^Xs1|J#3E8!`5OdLZ*gYr7p{w^A8-cd93oS(=J&6Jqxtrp#3~j{ISIr*+ju9^3Dd)BCTBK zO_!t5BJwr9kQ;edtzhRT^)&N|Pn=n=}=kf7jMMKi&@+CKt zawbtGc-Vc}k+2@s)JXz;b|BiHlfVTISFN{woT5#%xI}BTH-4Ydx?x7mm_5V{3#rdjQz+h|@5cam<3r0+~SZM3V7yuH1bUWwE=0)@-dU+=g4U@KM85^eQ| zVrE*y*EiW*QiDzOy%6J_31;46lPq<7uGPv@O!wMxp69csc#Ks+KFQg$Y>VbUoH$~J delta 2146 zcmXYyd015E6~^D0d+*G>b7xTm0X4E?fDu#_fglo*MO;{9U$mMU#ip9pL`l*(L`@We zQJ+yuToS61R01_&h*8^Y2#D4agFqV>s$_ZEJkXfOq( zhQ^DA-QKP-fP4=avl>v!fRxwC6+ryI0rMOnD+ZWu2WCzHGL8WYZNP#xWG$Z^1{@m% zE4qM19|Bk@X!xz5pJCRi zP*NUdUj?O*2WGTDS$~j09fGnkf$W9yCaag}g!0KM!0R^%SnJ0MrC{pslYzWJ#OAT0 zMZs9SW*@JQp-f`+66;Wrndkya?xU$X49NBt%roPU%PRpX6JL1eQ;rIJ;|c+6tp>ld z+W~{!;NQsiXPq>Ju2~B_cEjLoXrnB{WCwYi>?5BvOuH7!N@<4V_^p%%hO|4kff?@# zCbSCk|bV-}Ql12MV4xO0Dz#rNig zN^@%)Dbb*mv#EvqIHe6q6+lFuw8c>hB!oyu`#J#QUg_kydR{+}TxYXc+SoAZ{BR3@Dx8i8@bhq5>WPp=~1cS0%ViCGZ(3vQIymvm3 z_NLsio!XW-LwZ|Ed{5Sdg*Pa8cZSw7!b%1_aaNY~@Pd9xi$tlJ3>es-M zEWzBj6}811cqB^s`4bH6(Gg{1870f!Az0|zpuCh`KogBoc8Akc6Hf@nOjqjP;Q`rw zg87q_rdmqk6)%{Wtu$BujP5U0ns@TR(gn(i8Y8{rr3@s^0v5k!3JTZ;1ndxeG*>Wc zzA1jVmkIvDlyvC`;PQK0Ec|zk@>{_PsiQnN$~&gyXPUUN#Z(#j07#l++SDsi^LA5h zFWb=PM^i%)Gd1;^j%2dru}!9TE^MH5*(Ogy9}xVKVEBF0#et*LezR$?F&{1jhMULv z(iD?d3p%%%C#;O+#LF_LOgX>_XEWzJegypfV}3V%6+N-X+-)8QjGJceUv`Xr|Acwy z;atcys}^$>D{(^&#LN8tvKraNZm~V3rp9o8$8B|;%7Efi)L+*h2fTNw)yvPb|HoZX z4=)@6LLR8iwTpn+O=?T)X=e0>VB#n0nXi{o)9Zo-_tgu>8BozJ^|Su1?2ZeXxjY%L ztkT9--l6GwwBV##pnRtyY$#@A9`+`KFjs;bZRuB&wlX-R$#yW z*dQY>-J-APxXgibPG5J8C7;$SICHz;;{OWfyf0V~G|FbdqUHM5a|M9!r+V#VRyes! z-??!nyI_>z72-Nl*Ij>Upq5#s)<=9f<1;vzQMo+`&$9Go z_VD&bnk~n^KH@e9$$EQDRS*Zz3j2FsMRHy=+6Rs7@A>)mpE@6Uz}K<0hoxU~)Ny2d zDn~IKCqH9AUZ)&q0w~qw@NdOp%KL(m#~s(e|GV##j+-MN(G&lyWK<)bA@!2M@RU1e utiLz=hH!<{l+^W0ngiuykx Fem - Mke + Mke Create FEM displacement constraint - + Ustvari MKE omejitev premika Create FEM constraint for a displacement acting on a face - + Ustvari MKE omejitev za premik, ki deluje na ploskev @@ -398,7 +398,7 @@ Input error - Napaka vnosa + Napaka vnosa @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Navedite silo, ki je večja od 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Navedite tlak, ki je večji od 0 @@ -527,7 +527,7 @@ Delete - Izbriši + Izbriši @@ -535,19 +535,19 @@ Selection error - Napaka izbire + Napaka izbire Nothing selected! - + Nič ni izbrano! Selected object is not a part! - + Izbrani objekt ni del! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Predpisani premik Select multiple face(s), click Add or Remove - + Izberite več ploskev, kliknite Dodaj ali Odstrani Add - Dodaj + Dodaj Remove - + Odstrani Displacement x - + Premik X @@ -1386,7 +1386,7 @@ Free - + Prost @@ -1396,37 +1396,37 @@ Fixed - + Pritrjen Displacement y - + Premik Y Displacement z - + Premik Z Rotations are only valid for Beam and Shell elements. - + Vrtenje je veljavno samo za nosilce in lupine. Rotation x - + Vrtenje X Rotation y - + Vrtenje Y Rotation z - + Vrtenje Z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_sr.qm index 03c02b8adc4623cddc56f1bde94b4190a952e956..de06fdf88c0cc695134b93b4b44b669a437e70fc 100644 GIT binary patch delta 4278 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 diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts index f9fbc8401..3339a1792 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts @@ -38,17 +38,17 @@ Fem - Fem + Fem Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Грешка приликом уноса + Грешка приликом уноса @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Обриши + Обриши @@ -535,19 +535,19 @@ Selection error - Грешка приликом избора + Грешка приликом избора Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Додај + Додај Remove - + Obriši Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.qm index 688d9762b95fb356cc88c006ed3dda68f0d676aa..2ba3e579611d19d0c6d5198f50dda04b2e49363a 100644 GIT binary patch delta 4234 zcmb7`3s_WT8pq$6Idi{7V1R-g5DaiY5HvAB0YOtC%7-kMKILy$@fM8D@HoGjO zn>D&?xfUzZdMyoeEo&|FzOA-qY^GV>TAwGo_}H%1l{oc#} zea}2~ME2Q7vK1jS4-s+S65T$WNI8#a@;cB;lod{-&LS$36Q!Dn#>Wv&S&#MSjB_H0 z?x`cX*G)8SEm2T9W9^4eR)&f;q8YEl@W+fQ52L!9QJcu9Yh=`G`uIOa!z+xYDn@e< z$v5GU+8*MTZNfpLiF+rXs3wfK-sMDNTN#TMGm6D}b}{o0jHM$OXD?w~@F-(dC1dqT zM(a+-nx(|O|1#0sU8EfUD$(=^QcfBQ7Lsxn4xauXDcx&`iti_7a|XDTl+P{1{xwp* zA&^KRT8gReX0X`Z5kD0@3qPMttx)6)7j zWJ&fVZEA}nD)|><`6b$210S5N|Q{Vh$D#1?Xs}99>e`3W#QepKjW}0wys_z znxvFjI&n~854aDsgD1ctvXs-YsNDy$?D0zpf3o~*SBb_QW1RGqtV#PUQQ2t5s`HH2 zIkE>onL~8PMp@5s=s4^^g8b=x(MXiAM!qIxCG2mM zKff!LDE4vrO9@!#ACd3>q87&VH*)MWYC#MpHUga{Tp^K(iIC0{zcX2~8xA;*UoRGt{X^#?B z?BO12n@^Ovn_Dpo`@!Md>U&-z%6XYv|JpX92szi?4hO9lx#!3E;jo?CVu7PkpEAZy zWQ_ZQG5$JZipcF*IT?6AdjR_Uf?dtaytcR-O)#s!^Q+7_H zQ%^%?u4;IC1a>ZK5)Yu=%z2u;(GY3S4vk9#$1-gi&+3h6PttgMQ_=siUu)W`4igQ@ z*Q}lX8BzQy&F0?sQL7&CB++~Y_yJg|+0rqC=F5XoDQrAma1dkY`Y;x&P6|WQrX`LOZ7Xdw8*wXfv;) z_G6!AobatSTb&0HUeG@C1yYv3Tzjeo-EnuV_N#BUz)-Nxb>CM+^0#&SEh|ym*?ru| z7&TJ2zw;YRx(T{N-96A!o9@uT{m@FX?!?vvBE?$W8S%*-M0v%!k6TW_k(0U$6&Sr~ zr}f;2HAsDnKKTXoed>SpX@`bD#eV(RM=+qma`ksTfP>?+^mm^@0Ji0N>%Mo1bnEr5 z(slJy?ziIDN-(lqC0E{qp8?wAC@j#2bvs zKKDo^b+EZK?gr=2q_(<0KKMT`@6 z8J^gyK!&d~W?d2uYnv*F=GeeF;2v-;YBS8R_HPhTt;g_>msY`{5r*@#{6rHb87|*w z$IEDxG3}BGgKM90;+LHeWu@`=SFkpGYV6Ec;<+T_hu`9$dpnKi#)V_{SDV8A(gizi zQ#3W9BrT?qd%KCs#UxX@Ga2IQGPx73VuE>0?Jd!mfU`{7FC=0@?J%8@W1vjUFnzsW z(#kmV(xWI%Nxga99eH>sq?vafgJU5%=2xRo%ILFqgq2Gm{%tW4hFctaGrC%wM#bbLfvn`kCy&oY(1v`}QY+S0 z{MVA3JlK=IUx+K|ZXZ59So@GhE4gr$g5O|xRp39a*eO`O0`F}UY>wJi-pbdyJvM<~ z7>M1&`|7MNK1GT%T5`(oGU)sVqSO85F%L%;|C~Sm$4%jdgYh8#2Oczf1h2Qr^L;0J zHpe`ulEwL-w1k)4oSQ%fW2gv`OA$H{;X=eH);@vg%IFomH zd6(OVbT?W(K6XA-ImN%qGUV36TT-)F%(rgeX36pInXm0BOt>`0uP%ul8ChoaF8WDf z2XYiall?bl+))5;Tl$k>x;bLLMasmlGu8SNrdofUDG^>R`3X}?25Cx11*k>~Dr4`r zq%3f>2=-q#Fh7tY4J=4aBlJJd6?g>Ummd#2os5Q%p7ug?9(YnCd4jm4v`2}d#n83Q z3-@rIEGXhYzBSKymcj2LOKII+hDOatgbHocVGUzD-m<xEU3R{-PH;MT%m(TGK`2s~(z}93egv3sQ}a!-x3Gc5H#9kYjz*`z*Wx7_?@h4qHmAe3h|jUx Rc?2>@?Mc$>Nt^$X=Ko3{Y^DGJ delta 2141 zcmXYydr(y88OER8bIzW#cLfy01QZt#SiFRQ+yuOUf(V3gQ&8hwn2t70qO^$~B9R0X zYr2}DMl7R&sR&KV8k(BcBq;HcNGK>BmDp&aNv7K37?C)P)5m`NvGe=(J7>T5{odz! z-@W@U!|yH__W9}K0QnIx?nOW;1ybwD)j+%qsB?kEcY)asAcpTPdJo9F!p|lkYdJrS zfb&hkvXeme-vR6pG<+;5#R$sXg35@Xx?ND$PK$+^!Jiyp$rrTR1Z^FH_H{6}GGN(0 z$a`9W^gzhH=|J%V$OBAz);ht=HG)~gg4sI-a~y*C>jewe{+~Ju6U9bRr(m&1u;c|O z@w`=r3MDO&jE7RhfEndbw!8~0*#Kp00@(oN4;#6E6UwLS0iQAiR|K#seu(~K3h-PD zV)9whqChO&bb#M0P%6~{35T#^aiR{C+(v6vD6q6oFs~mUuPO(m4Y=Z0KsjE=ZG9SG zA2bA}ame6qIzg!plV`|W@)8NdtU(vBu-lLlUrlLXNPl>r za-I}S+HQEotRDt)1GyjzKNT#FGwis%4DcH@c>AcioMpK7stjlgjf+Yufyt_IyYVBy zTyOk+x*c%U7~h?>pXVPlc0`bA9~!$4`2f)ejXgf|88FW{@XIb>%4>olUkXM@#sU4w zgD9uiaJ!Ay_JjcWhmHUFoS7~1F7?D10@KM^wYU4?K9ER z`8$bpwnsWYQz9w_IiJ0iJJ_ zcUF}Fb6VtmQQRN@3%MclZ$NUB++54Vio4{NI1dxemD}7*@TnTXDOYu|nD)J3RE7M> z{)N=6R6g@2wJmYUSKs;;a1_de^O%r4BH!ElYru9>zF)f;u-+4#w?rPfF@chNqnLKz zqL*aByjK;i-H!n;D(luVvFVx0)>2BAlO|ZGzo@*PQAiU-D*M7{s>!PbXRJ~hjx#_` zonZbWrL~Td_&g<;uvTd+e}V3wuC&!N;If&@`?W^Ce?b{Yj%CYco2CZ80R)c|4F5zh zvc?pDr;is5HzoHT0rY@ev6z%J#)dK87YtlF#^a`xms=UI*Hj+)7)VMrZR?Y$`5UIX zKDOb64^2(Qys2r}bYwA0{!EMM_=T4!ox$WyxCDd*3x-vhz8pA8FYGm4Z!Un2;6tjf zKTQ!N2}X6Ofoozo@zT_^@PnLi5o&?+0T9rvevq-Ap4g?HQ+)wnS-rgSJ(|>4z4>G= zxlM<=okBYCXwvsXc<@Wyo^cdB);ZgMVg;sK zldd!KWfj)dXZksC9$GgKvg9+b3dZPy+3kY4TLcT#F&-2wDz;XiE#w7?t#v`H@Z3|@ z`mN6bPge+r{wNr+%Bo*%qL!Hfwx|6$;}@;4h4h5dM3J_Y*QW6%du>~y=u-D?+iyDg zJpH0=kC``ho)U~bYWr=M#L|8*7~gMe{DRt-<=Xzyae#pxwr`6(Kx~xl&f{7Rq>1*J z9~_(?@7q&{n&_oO-Tux!Zdg<7P3a1MXt96&hzDlvw%?4K#J^y#Bj7JbdC+plRJ_8{ zuXTiVH3NA8jx7=Q+1GYQZRJ!Bpm~lze;3Jl@wVf-k^Q~E;riA&P@f#<2 oN42X4Z?$dE-}9L(+*2R=k#{&O&*UARVT)+t{f65239(P5=M^ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts index 1971098e3..644c8c710 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts @@ -38,17 +38,17 @@ Fem - Fem + Fem Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Inmatningsfel + Inmatningsfel @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Radera + Radera @@ -535,19 +535,19 @@ Selection error - Markeringsfel + Markeringsfel Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Lägg till + Lägg till Remove - + Ta bort Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_tr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_tr.qm index 50806c3a4883aacd5d2a728951e6401ef5539f9f..ad927588800441c75bb52d377a3262004426f4d3 100644 GIT binary patch delta 4266 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 delta 2128 zcmXYydsI|a6vn@~uemdK9zGBd6yz;1f-s_}!(j4IP!V-R$sjcn zEyBoIC{&1PjLVelg@S0L#;Xjpw8yH%#I&+3YuoX!-?`_Wd(J-l`}V%=S2Y)UHI;7a zFhKYVaJvqO*+619F&~Ia1GI5K+8!Xv1jMcZX6*y!t3b+1;w>Px78rSvv0ync_X7Zr zGjdUkLI|T|Wz^DH_txp&WK@+UY+#6EG+tpebubQVU>v>!Tw^UzV1lrOU4J;S~v1lrBF2p@6XubmC#}5PUU%~egPs-3COnA!9x#u@#Z zr*!HYfTM*5#Oz?koElB>4@-g3&uUy)yaGD?WvrwIK9C%<*s4u6$awCL>$yFr9HKEBu0s5sf2HjTKVEn&~6F(L{+L=ft z_K$FK3u&8MDSY+9x1{}kVc-D@NZKyk*#0yy?5=RLd=+5sWla7|xP5sPV2lu@7rzG< z9%al366FJKbl{8PLl0756UxM*Y?5rz5M!2lQG70WF%VxYRtA%)e6KTFPl?t0=>W$h z#>^dJV+Bd#Uc+d2iA{yef%NlY(>6LVuSz^v&e8fcVxKLB0+1v>-_1ZE$7uP9F|t#N z9qghDo|bIq>i~63KO2ngX7q`;&n@@)HKXrz$-cIc%B@5y47*FN-z}}{;z<&BsiKR@ z&?`oAE}@(1#z}RvDdn-UwExVLH2<9Bn%V<|#4v_eN}YXs$qSv*rFsWc1Uj`NJ;)UP zpEE{rTCV~tZBVD35mG}PPSrZhzX4+-wTF@)2A18?c4$We9-FnjdHcw0A8D`L>kErl z$a-xmy^og1p$wQBDTlRFwG1DW6C!DUw=#K^Oaa-P@|xqF3?(1`G;RH8jThSzv z*uofgjWJ@IqJHKiEz`~z#(GeXpJz7spA7m@$4tSk z^<=iArq!W0fpKq|%Gdi*$Na+d?ss97Ini{9qxzoRZo1ue&jWkRo6b_|7b)gC_XG;G z#C+r&1?1soZt*3l0)h+Jz%qw1GSWN%`oDV@n=fDckjxlYNdMe}t}F5m&Xr>9@~+wt Z8d5bY?69jT{7cDYnN(zT?R(5$_a9 Fem - Sonlu elemanlar yöntemi + Sonlu elemanlar yöntemi Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Girdi hatası + Girdi hatası @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Sil + Sil @@ -535,19 +535,19 @@ Selection error - Seçim hatası + Seçim hatası Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Ekle + Ekle Remove - + Kaldır Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm index f84db4b65c75d456797284bd8b146399f9407550..ad81ae2e25de4dd7212e0f07c1976aab1c8acb50 100755 GIT binary patch delta 4269 zcmb7`3sh8f9>>2kbLTzGh=3@fTu>BnL=;3(0_CNW4?^C8Hq2aLV3=WN1_f*Pnr`b# zRCcC1KEf!)vzb;(Wom7E41APXDY2R6SyS6>)7DOP(%jnp-TAYC8P?7@GoO3^_x^wH z-|s(1Ps=WSF54J<&oO}e9tar*D3<~AuMsW4+_`}IE+GFAV5$*Fy&IUf16W$cSaAec zP($~Zf!sDAcmiYH@y9Ac#dm>)Z;+t-8P)R{HLo!0yo~y97!4#$df%w-;}49(zF-V| z3-Vp0r0!{Ot-FB5kAZtX8>l)0uJ>Ueh1MnJ-((aE*0YPENXFv5jOF2s)|fv2z$l1} zRb`CTGr)aB#;z!ba^^u`Nh_3d!iYzqEF#5u8(|R+Me-R*J z#7#uhj->Ex#pFMw0m~|om``D~{T+*pFO%TWSXA=_t&hVpMGKH|1{L#X0o4bvV@(Gj zFT<`i(Lk|>v8)w`R@h1F=QtBw0BF+inK%v@-Y6US)_OozBpcO1@85M*Hom4-1hQgf z=5|t)pHA!o?zu+nAwDBZI5(a`m?}$~xeoM^Wq7gPr|E@l+^Rp2;>khW8tqA-!pf~( zQx43zz-^pF>m&5srUkD9*?;ABy#5jpQO0#_AOou&;&vwcC`E5`yUk?ixFw7eFEGZo zF`E0HCvE25d^`(Sbc*X*UrYOMh}_42yhz3IC3kKvS*U)6`|6QqAh3}8dV>=f7S5P^ zg1depgmU(%QuWYfpy(OKvUsItPcSLoqO@7b(5ZRKmCGol#g`dv$;tChTKO+^m{;REDYNOxywl9aa~Zz9q|_RKJuXP!ZLtkEw%z(Cz9Em+zqB+^7Cj8Z@P=H9B=J zMP{#t$Ai@0MoruiYPaE2G?`PVNP~B3oEkE0&Vw5Frst?VgEgMssnq{5+caxd90x|0 zYTE9;3Ye{$=X*b*T$K{f5T7G{OuV7l-Leo!zo^->?*Mri!I&AKIe2+Fwp@&5hmE4YPI5-+Tiol6BqY$AR$eef)|s zs#VwBeuE-Wt~=JzNwwtG9Xr}hseD1#vnQ4gv$?wS;$ttvOcr1jfc)x!7gEXKdxTe?mIhDyEj z9Hl5_6l3Z^#-hcHr95Nh`;1nLUi5De#_QJ|EhG;z^etm4CG*t!hgT*6EDvo}io+8!i_4fV6VMl^-_% zWgi42{=-Nq2@6QS)=otk67b|#bZ@c;v}Y@6Ur4|w-;<((@PJQ~M*+G^#*zEClbr3w zNHkJPo-$52+(AVvb{mr%@qlH4(G~kO4Tc`$hNeiG**_ZhUW%hruGV;7P6K7(R^#<< z3bp;ZY28UmP0@AJvm-LelVzq?-y_396HNyrD3#H6#)K%wM4jmz=+DRK3#JQK|4h{% zWhd*dk!hI51#@YgiJC&W%G8TPcBeOM&>J#IOBRU^9a40lafDCQYkkduh8cr} z^VWWe^hXDGQsYYtDftz4*vO9Aon5+uFjO1`Z+^kzZGuy=^e2LNQdEiBKGD3tBzaOQsb>jjpb)$1Zb0SO zrG2V+S7j~fGD#j8!T=w(@#}8&nF~>7zW$mJC~Hre72P@*6q#*p?(wc{m);zQ{acJ9C4z`uzCI{2SdDF;6Nb^2ppmaen#N!@&-y_Kwf_th__b!Z31g=^Vs8WO({20 z`#NbdNYip9HL8PRBISrpO&%Haj)hJZsg<4nCrfFnNVCL2Yiy>7eFqOEI=;V9rvERH z9^OL3%jI-5^D8Y5yG4D=PgbfzqCehICvTd(h=o}|K)`HV_tI07!r9hu#pUs z5-J^sl3P_|uyiQKkX5lT(~6az*y*>9uIG{~lAF@ez*Bgn!_!3p7$|fzn^Amyqr+=& za0q-Aoue_HSTk>R*sXQ^T$_z2N2Jn=`sLd5U0IgttFi?7UNUQaM=S{vJL4>En*RbQ C@OG8} delta 2134 zcmXw)dr(x@9ml`-wR`uih=LeF5K(be5J5m(Py`Wt1#x+Uq-H9b(LBM_nk85tfLK~E zLrh5-m5f2G)J>^1Ha02(rXdL+qk-6HjMGlF)f&fWX{KL#=wF|+=iWW%cfQ~6@7&ve zle+q)I$zH?Kz#~Km;ux^T0<7FjRs-oxfKQ@e z$tGac9|3F=l>RQLaJ|v_(KSbD=oQp!1wCe)7?}SeXq_f#nQ;{WJDZljpU4;bSk!Gb<$v1fU@ zNN7m`c^ze*I%0BM{o3o(CrSB4~?06-vU~<1WB0BPx@p z&#T1h%~WGUH}Vy#x8w~Jrp0@J!Ys5_%m6a|1vfRL5%NF~doGdV?T`+W+M+|0;J(%xO&o?ZmXXWap zee|}VLH%<7H^6wKI=qwxX}#)$gRcXQZR*1+wwgU!Fy$rn`X zrl0iXhX2+!{fLFld8C!))3VHJ!CcQ5+MB5x7$RM(3uCAPYXui1YmFzkLFP5VY`4~0 zO-pm=F!Dt1|=#{R{{x5S)`OIL~E>z1znF zCL0nyKLU8B^doVfA|=WiOkaRb1NeS+cR41XRxO7CAZ+-S*y2O%TI34RPkaE9Rg zYGc52QNW^U#-y2tDgBT!%kc=9a?04A`aCnC8M}=W*yrbrSBs7@q}j$>qxV8qkZv}n z14XO!Y1qU6d-d?k?3Qt9dh&d(?{i+?rn8{M;rh#s@3Xt+>J`O3?EgtG>rEN=7$#kB zt6l}f@7GVB{sSwI6 zH-#irv(SH;!f};Xd!Z>|q=MbDRWR;DlgpUQ>{OW!|I?GjeyuYN?O=-IXPUly(ne{& zHg`H3fPiy?Q_O;a_spHmPk8Z2=I$0RvruF1?&_o^>&*iv`Tdad%r}1V0kACE{Phk> zzA@8$JBK&lf)f_?tLLcXF3Y^%uq`8cEm7SQnYjW>v}aEw+iQXyFWy=-G@U2eZ{0qJDUEo^`jZYmU-{U2 zz{HdKlnKVYZvFWMh0^v2Cj8FY^a;J+_{93f=|i+)#QKf99*C2ycYmnj-Ct&l`m3Gy z$9Y@g{bpvR-D7*}0Viygw&oO#e{8pX^^^;)`Pg6hBW zF0?RgTkP9sKV)A=+pBg21KCIIzr7t!3!1pfaW;rn1&3V`gYYiFxu+b%;P-vt_gqF;61)TUFhxDI?wc9i!?cK diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts index 9d2f43818..ca712aae3 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts @@ -38,17 +38,17 @@ Fem - МСЕ (Метод скінченних елементів) + МСЕ (Метод скінченних елементів) Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - Помилка вводу + Помилка вводу @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - Видалити + Видалити @@ -535,19 +535,19 @@ Selection error - Помилка виділення + Помилка виділення Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - Додати + Додати Remove - + Видалити Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.qm index c5ab213d967664fb95e065b5773ed262ad09a019..2379a5e80287e4ea866a2eb934812e41de7da578 100644 GIT binary patch delta 4278 zcma);3se;K9>;&XJG1YH2#AuvfT(~gg7_lw$wLG|1biasE<5Pjvdi6F5bbn_eAJbz zm1nhMdQGlM<*Q86>ov3Tky>eGYMI83OzYk>^H|5~cs%zz`zO>agL8I2GqW?l=lAy; zK6zWQLMBSv)g%#(Qty%_!y%(s-3Tsax0wJ z^NCx&6#-PkbT(1>W#Z1RAQ}|Tn2+o7xisMtJ1F!pPCUn0@*U%hy^LkGj5FV6EMLM{ zF_pMacN0yyP5iKZM7bHnk4DhB)x=MMBvEJ! z#mwuD=oQrerIAD>{V1&%Wt};I3e2y;@EcSx7u6`fMrEo-q7hM4p8GIS#R=Nn&`hNG zhPF2JCYtynW3ioHpXEerRCF$^6s?J-%Tg~QOPZqlp(k;Fw4z5d?jJT@5kGgHL^RT; zur|R_-kacIum(i$@?sS!7vfRE?uwDa78Cvy**9+x4K8CGWmMGao+m0g%2@U-WBCZh zUoTH5>NZKyatb=&zgC=olq1r$DaTE#CyE-Vd`!8Q$dIgjE?Y7YC5%z7OIZc`>y$6- zO(p6zUb!m~=a~bQNB+?jqMD^V*>x;>cU^h5<{(krCdT+Y#ysqgKFv7by7K(; zIHJ;C%J1Gm;N#y{=^|0dRK3b#Kw|OVsVtIwkg!>0H53x1ol#lW`;qYpmGuSOnEAMB zR3l29dt6mCe+OE#ROQPkC$id9i!3vs`~#{@rw>EClT~|;t|7{JPIYJ^Ni8A3 zD1WW$`1cV+V?O3g)T%0Lx$DUKkQUz|V8rtq3&wMaEt{ zWBjX(efKa9NaNmIl|_{EGI#jNdC*XV#C`U+ix9_l?!p*Es9w!oe`*1dxq!Q|%uQsn zGiL7RergLx&uV$~-!BmrUSurR^4c9?aD16}R3cDo7rw3xEiKY8mc7J3o--Mu-N7%< zIYKnGg@2|`Z)jjS<3K5rU$YI4in19?=kv{c15wYR{MJVFEY!!C@fE+_IUC~>%5PtR z0A_XJUsis{)q;&QBXE#A37IkZLDFQvD35__6`4{4X2Q=B!*ux)by=%4*g}~ zz%y@ZKRB}({CHCu&HMc-ZN%~_)kD!&e^rv?u5~)_}Tcwq+VLr3;U(}yQAWQXMO~dLPxX8eL zZb#|k49PEJ?o)Of(vF3r_X@+{rC3lArwl_MgX6vm!|+xlFsr~|JNz+`ewD#}0WC^f z%{WwGEPR%6lA3WwRXe{mNWlkYx(thtPDTcHLt`{rGWv#LMcp8xm?s$%n;82?8%{K# z_xb6@sEA1P{t08;$==xUM~xNddm)h(Mo&MeJf+mQa1VaZRT`J;kZDLbV|t45>4Pd% zcokztsbpMVI}HnG3pgDw8y=hi+KlVpgNW>A<43zzBcM#<#VG;2H1-;=++K#4(K=Jw zH)gb?-Zbj_CWz8vdiFZbjjx!RvUybUJ=5pEz|n+-rZ0!|!0sF`A^aS4r4VOU$iGER^i|=AVwB)U#VH zi%+686NgwfcFRO2?^*VIfWSikYuOirRtg&!lfGx{zsGWc@Xts07)#sL0}!v$kCFfy{J%l15Kugz-)6|;D>^Uz)EvJMS8$y>S=U1eKjsyrC2Sx{ed=fcvR2K zYDbP(o#}D={9c>W?a#XVj`uB5K?62jx4;IYE-Nn6E86^`kds{?+-*vz?08;-Kpt!~ z#2octw=E(1o81%%fdfKM<2~WD358M~6_JZXvXKwp0={d&N^(*aEx@@ApDOZ@7uV$9 z=io@b+mCNA&iyE!jodg&(IQk*eZE@n?*$Ma4B#n?DR5bcYq=B~ zrdIS0w59eay}M8fSq*Vih%(6OI+5-iBrF$9E?s4?7!HcN(rbYc9Wt?ZN5kTP}{*8 z^`xv|ur;WQEhw03B;iJ&0@Zg^$9#7QgnGF&ovy3z3Awq0WA!8i}AeJ@jRE~6~#_Io{X`Qht`LVcoB(RjszXa z3QR4Cc{rj7(^2Vl+C_(OcVqtCc;JhqFsWFq_SAJYk}xU`idbGBP8`W=>AZutui+1`4n*Rd_wR{Eu delta 2146 zcmXYydsI}{6~@20kC{7f6$F6_@{)j~q9BhEN0f(vCmR9s-kENSOn4pLmH#huA2CaiD{blvxh%s{mwme*V+4g``i0& z{8abpUv#y;o*{tpBQPWgQ0DAprCjF%IeP*7 z1i_L`K<;S(%LH{^K{;GdIWDN)7Bsvh=+OpWH0Fs7)2KmS6|@W19x^W&nlvq4aJA#`_6oa{uY`i~+&yWr8`M3(mePn1Am7^k7b<*eJLnSh!u#y$EX3 zDIjeM)YL$-3~Dh0rtO1Tz6Z!EfVw)F+z55wuYvR-P(OMB7^X+aizAqTgt3QRz-$NN z3aDs-6SJ1?1ZLgCJh=u)3dVvgrw4HV4ULtNl<~0Oti|}_v!#GsjL&@CEXQ&TcqpTF zlWxSh&44ag7tp}><8pKnOJ4+%SLz(~$AFBF$n)fKvYQOk#a@q~QUN+wQWZ-BUB>qh zf!O(iPOEN}(epMivz-fa&SSyCEZwUEzXW^_>bza7x#HCItyKUmUYb!-0R((0t&>gy z#`V&h8CD>Cy0j;D2hZOlwM3JyIH~QeVSwW~sbko5mga%fyX-6wk}nv#Uoh&7)a!Zr zM|6+ah^YZ5X=6L( zOLv@f_a6DuJ%1pjTd_Je0LAr6$Y)u=@S93;7r zDH|&1Gr&Zpb`1B2`YF4z{{%R{RT`?9Sm7zvJ7GWm@W8#%F zJJNw^?tqfQcq`qG*@%;+5H)RqNNYaOfYy?L33yxkd z7@et4y3@rAuGObp-4A&DtHff&OM^Tq7@!+u_8@oaT`LDfVCf@?{9F!gWzQb zAAg$S7oCDJD-D5*;&{LfLu%A+z;?~xwtolsUo?D>`2sz$*wAk9VV^e{dKMm}Nv9cZ zJe>=<^E8tohf1_+qwpFqv0RI}z;3aoYH8znzWu0HrZJ&OUE0gLjsQOY)+(R9#Qyh5 z)%MQ(hGxpwnrb*!C#7i3Eg!P|eiBS_Yo~54Zn0Q?>Z`a1;!-!!$=KjF-LZZkBNJjjb{(Uo4`MtIXrxV_S}CHOI9NX9*?qB+qO7fcQn46W2YW z0+M-hKQk{XF+YF)8VAll%w^Xp`MB2wCx!}Uzaf}w5X@gb$j5>OYs^&_i+JvFb4@T6 zp8UwXb#**T94{F0j^HyPX3r<}tYxOtGSZ(jK7F$#tRs>p3bZWj3+GL?S<1)IrDKXL zziH+FX|iRDkvFw36^x%?*?v~0v^xb8i!6ITX6;J?EPrj;$-wEBuZ!zAsz0>c`MH|2 z|1E3WZ5tJT#X9v~J-rm@vA%wv8)nH`pP^E+Uh5Y>^1vButv3<^_z6B>8*$ Fem - 有限元 + 有限元 Create FEM displacement constraint - + Create FEM displacement constraint Create FEM constraint for a displacement acting on a face - + Create FEM constraint for a displacement acting on a face @@ -398,7 +398,7 @@ Input error - 输入错误 + 输入错误 @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + Please specify a force greater than 0 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + Please specify a pressure greater than 0 @@ -527,7 +527,7 @@ Delete - 删除 + 删除 @@ -541,13 +541,13 @@ Nothing selected! - + Nothing selected! Selected object is not a part! - + Selected object is not a part! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + Prescribed Displacement Select multiple face(s), click Add or Remove - + Select multiple face(s), click Add or Remove Add - 添加 + 添加 Remove - + 删除 Displacement x - + Displacement x @@ -1386,7 +1386,7 @@ Free - + Free @@ -1396,37 +1396,37 @@ Fixed - + Fixed Displacement y - + Displacement y Displacement z - + Displacement z Rotations are only valid for Beam and Shell elements. - + Rotations are only valid for Beam and Shell elements. Rotation x - + Rotation x Rotation y - + Rotation y Rotation z - + Rotation z diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.qm index 1f5abf234e48ecb9a7153da744f82164ec7b88e5..d457bbcf1e4119a6cabfe0c6ffdfc0c91a5a4978 100644 GIT binary patch delta 3929 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 R+ug*jHZQ59Zb_nC^gr@eP}=|i delta 2127 zcmXYydsJ0r8pfZq@8^yPa#L<{5jZFcDjbm85im8UX@OcQrj?0fT3SkFa|kjALZhG- zX^f=eQiLdQF=>}+DTG>y5wa!}S6a3#tu$$QS*1PA$3N${&$svf-uHXn=Y99pHq(xs zrW!x551`xzZ2JLq5isd8xeSQ+1@sxf^f+L$1BjUd6zt*uTfjXlfz*e9*$sg82f>1T zVD3lYkD$pTC>06HYXz0Xg6flkUhQ#lq5USP4+t8o1uMo^UFPOdT|MViqCKhrZ6!avF@DkM2!wl37H9MFb zhB}`Cr;dlZb_bA_3UxyoxdQ6W$GH9y)K4A-94>^d3Zz0YNZgkRWX?tM{Zuq(5cjTp zo&N)|NUj1B%CTgY+Y8K`hvu?qAU#EJ#!h^&v;>f<@wHzekE!E(?|8uSt|{>77D_y5 z3Too>vGt~?m8$^PTP9cIL15YyvWsjZ`^j~tq_a^#@=;S}Y6aheDeuO0AbO=>V!G*R zv-jUXhMN~;&L+X!6Q+ND{{Y|5_IN)p7slr1m&6=_9H8E&3;NwRF-qmjMH%fhUdtfgcJ67Yl~|A`N)|x)HuqEJWl= zXR0HCtTEEhpEA>F(Xu(1l10YKPAg9mlqWbgM0Q!{vF2{s)$kNcQ!Kmo^0}m&a#mFn zOEFKrZ(}Q^u94SgECE6r<#OkPGRAFq_8$EkrHyWtk6&@q-97U0 zs{!nS7Ztm!9LVcb!oHpbjGCgP%?@QJ996PHzT*8hW#dZ>98#{7nNKp|L8ZKm&W<~! z)Fg1-{)AG0&xb(bk4jS|6Z6bh_D-v1qLY*s7ZV(#2nHEmaS@Uy7`{*WZ{1AR>;a`~ z3v26XR|fy}E!#|1&gL*7d9QM9+cSXq8|8ZC8q!~I@?_=ad4HCqRMlR-2)JJpoUuqX zTKyQ%qdxL56AN9UZdk;UrPm4Oc(c?O@{1_Nuv!yCQ~4(dM&4EH4=_Ob=Ym-a)#fUe z#6B#T@OQPP)El}Dg92p(D@tS`-lE+{-g9ng?>yQ%|36}PZ#f@**f$Kf6axA(}qQ#O(pIa z;n>Xghm817*)5h;hG!D@w=Ff+7)&T`o3XBbKj3UL%9b8y|2xMT4Rd}1f`2qxsyII5 z0*%)8L(F`YV8TJ;@Wo-iu+f~Ud+417=Iy_D3)wc+<};;q@q`}p@GXwp#BG*tR~=8B zJ;F_b{?Ayt8*g#&1X+$XbnjeN zChMBBlsw8N81uHEdx2m^tzdS<29u&S_H>_AQ+Zr z^?uRFT23#tjSJw6pL*FAc`}+K_cdGbnejY{+qO1=E{%A__G~Bbr_|c2%{-|sN^pY5 z_R0~N3HAua_u3jhW9{>YY+ts&&cKK&f5p$%88~Hib#$9K- zwmB+GBRGIwb-edoJeBizoRiq!Q&u=`c2mi`%g&0El-}Lz+%?9-M1OU5_A(*Ia_8YN zmMS1-wYV7freIiu^DOv%AN7gz{7)a#jB`r(&3&@tf>CDb*lJzuTbmXdTiY92*D)Bj QP1*f%bZp0-`{wF@0)@LNbN~PV diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts index 5a42a1bf5..86faf9f14 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts @@ -38,17 +38,17 @@ Fem - 有限元素法 + 有限元素法 Create FEM displacement constraint - + 建立一個FEM位移拘束 Create FEM constraint for a displacement acting on a face - + 對面建立一個FEM位移拘束 @@ -398,7 +398,7 @@ Input error - 輸入錯誤 + 輸入錯誤 @@ -412,7 +412,7 @@ Please specify a force greater than 0 - + 請指定一個大於0的力 @@ -434,7 +434,7 @@ Please specify a pressure greater than 0 - + 請指定一個大於0的壓力 @@ -527,7 +527,7 @@ Delete - 刪除 + 刪除 @@ -535,19 +535,19 @@ Selection error - 選取錯誤 + 選取錯誤 Nothing selected! - + 尚未選取! Selected object is not a part! - + 所選之物件並非零件! @@ -1356,27 +1356,27 @@ Prescribed Displacement - + 指定位移 Select multiple face(s), click Add or Remove - + 點擊新增或移除來選取多個面 Add - 新增 + 新增 Remove - + 移除 Displacement x - + x方向位移 @@ -1386,7 +1386,7 @@ Free - + 自由 @@ -1396,37 +1396,37 @@ Fixed - + 固定 Displacement y - + y方向位移 Displacement z - + z方向位移 Rotations are only valid for Beam and Shell elements. - + 僅有樑和板殼元素可以使用旋轉 Rotation x - + 依x軸旋轉 Rotation y - + 依y軸旋轉 Rotation z - + 依z軸旋轉 diff --git a/src/Mod/Image/Gui/Resources/translations/Image_sl.qm b/src/Mod/Image/Gui/Resources/translations/Image_sl.qm index ae460380b4739a81ee802503444c4d3fa8bc9c5d..754a06ff171236edf601beb8476637a90ecb9a7d 100644 GIT binary patch delta 14 Vcmew-`%iX58at!!=5+Sy>;Nx%1z`XH delta 14 Vcmew-`%iX58ard|=5+Sy>;N!21%Utn diff --git a/src/Mod/Image/Gui/Resources/translations/Image_sl.ts b/src/Mod/Image/Gui/Resources/translations/Image_sl.ts index 1c4479e0e..51a1b9895 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_sl.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_sl.ts @@ -107,7 +107,7 @@ &1:1 scale - merilo &1:1 + Merilo &1:1 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.qm index ccba965db4faa7d2a90d8fc168c8b6b472fa72fd..c811c0116ba97d2ddb3e078e16db94e580827099 100644 GIT binary patch delta 2855 zcmZWpc~n&Q75?VUyxAA`DxwS;TtGHOK@e<+AfTWWHNmRk2@jaS0GWkdN5P1KQshBY zM64!7G;yIE74@JoU`pJ#9;5N74HBzVn8Z^p8{*rfQU&zp$o8}6v%CE44y8UIZ3q)h&&IU z7!xpkzQeBSLd3M6fU%by*8eWq7eIhBqCAR#e9mFld?M@$L(kD0NGPS-W9pP&;g>*iT|V`Lq&;Ud4P4KC~@5$vNloiyeYus z8=`eC*MO=m!crz=Ou1NeVJ;oJCx|*PB>>xg6+JX>1vU&6b;XS!n;^6><7{&VF!LY9 z0aK1K@lOeL^L-{^?Mh&^CzBr60Zj8}ic6hIyM;tm?_zd%W8 zvzLSt9TqypUbd2hl8f0@G}9uD z^}wHQvZK=DfeHib8od?R`X6@U1*(7Lmk#@pne~?6pz~OE#(@PyU?Cf+8%hLJvxbSJ zF;xuv;h6_WMD-B1K5RpCH;{LhZR|Dx)du!V!cTxXfW0zuAtjt4Jd*g@!sBlP!QV-fr;@1U zR%zw}!~t5-R(LyB^r|2U*wkI&!}+k9a!_cuV83 zbt~kthQ~m`MS1LrR1)<8dB(xjw6q=a0(Bq_J5*j=8%mtalvm*@;B!X4qhtawYMXpV z`#Bn#w|vh{I^WnLZ`sfeAxb*kmUBqqah3!nge$!MMy08aDyCJF0E-(H{snYi6|Y$M zoLU&ssYqH(SnAD+WRDP_?x4abtOS1Nr!c)sH7e&Ttj>8P=zEIn_LFqU6e#iwsn%_I ziVX$ix9pFK`n{jf=7lSE*An;EPQ{+sPTB~MzbIOyO~9}@itd2nMEZ6m(^3vFoyrMN zkn-!5zwf5RLrawr-)8{hM>wosqjKRc;xuZOGE);tP2#Xsb?UhlaPd<8*xE+g z%~QQNM=fmHt#(QGqLj|+**B)rZQ`VkI!_v}IId0!2!NoJyE;`mtIIvANqcbEe3`n| zn-;LJUI>$i*eafCJT)t*yK|bbS*W)4va zn>95%iG`I4O~aANbYHk>8Y{bL9BQrf?^No9QCi)$)3kOL?f9=w0HqhSljB*s`!{Ik zp6Q_0gS7LnPbX;&)TUK-(3pf0ZH^1o!vtw_-Ja5dGupgg_LDAhv<1}!IQ}c`XSb=4 z_4(Sybe;;Esy%cqhi=lj+T(Frz_3qy@=hS#m|ohph6{jpjgEbr64d(YR563;2L6R? z9NAKx?!-O7Q>6>v)=v65p^I;Ab0s2v)Ge=Rro>IUM*9-jbU&w%UWPp}06WGCpJmT% zx}m5KW@KnOI@`(!uAIB@O@vmsxKuqf8ksPI!@t2J4LS60LYi>veUGLeqK1h2+=OdU z&cf}O@A}`}xN-D6OmL6Z3qr*ZSu%y@QJ}B;2p8jPklA*~USL?j3%ybpyJ?A-88%H%I+20IQ>m)i&?Ts=MAZPbY`MGep*=^5uad;nu=2>IJ;n%%`Vw7DHx+FnrMtWe#sh zNwow{^YIZ*E-HHU_1lG`Y<@mIL1RK@@yUh^-mJHz@_HkeYcN`k`XoNvU`NqsCfh$) z`jGh~y^%Mk>Mfb}bFSjoSvD}dv4-0lIYQ# z#q;h-dM+c$?ww&s?ETJVW$~Pe%Shz)oQe0E;cd?1GD3vzjA0_Zkd--PP^2*{(_{(D z?fDmpY1P&Wp3$RXIrPreKA03@E1T%vg8IlI+WUy%5-nCPUEj+O-IcJH@Bc>m1F*f2N>`*h@FCq$Ba&l;F0 ZnJ2=i)!w&$2#q7m)4^4f_ogMv{{fTSLtFp= delta 1661 zcmX9;dsIz%7~S`r&OPVcbI-XR!>GtJBnqKK8I1_(v0{wTn#DwVigHWOTW(54Bc}!- z!sLo%8+n-rxSdPq&!7DrV~!4(WhZ z0bqX@7<&`&_yd@807x(bK4XCx2Vh|?5P6}(d#c8Dyk9IZH30u(+Ct$MGybQ7?j8I#dktRN;8MdZ`9Rfjk1@-#(tvfYOjOWQV2Uea&b1+# z0+T)J65$-Cd`b~8>^4*Lu>?r$VCu@+fj;5P#f}cZeGSt%<2?|+j=5#F17u&OrIKjG zR#`A{In(mi9?1EPdF@w;5RC9=`4<<-yJxJ+&*blq!K|y)Ohh;~=hIGh{>~;T6VAT%xM&~{tX$*Vw!zr@u9s5!yVkuVYL)MPT zO;x*CCsR_5)y;q%)Pa*0TO zLl^7>Hdk{F&BShPlLgnOa?U~<-4EcVA74oJWN~v1{YYLg7w&Kmko>r{*IoeG54h|T z4Oj|eC71W)dtl9NZgUs|I0SQrq8XUr!R>Y=`Ehf&Qs*RK`XsLOuZ@HW7L0f2%Bs78 zs8+6`I~>?Fp1Zc}9T4ipwb(AA2U%6-CM*t}OwkmK+OV`*ps&9+;xrFL2o{XW*G5Wy zz`#81hH@tWJ=!CV3WfR3ZA0uNvTgxy+Yn4gWj+B#6-}>G*Pz7`vGG=>kOK zz(h*uVKKh3j!}zruoPY0`l$_sN?ZQhk>Z80;kd-9XbAXO?=Jh+1ZaesGi%U^`Gh zr)@Hgy^Vg}4T`Jzl75w&8&r2;sLjTa`h3SCiW4jt-CMugnPw^GglZH#O_`9#$*H7B zmAz**P`85RZ@2l-Aos}2(@SX7eC3>!8lv7R|HPak3ftx4eWZMCU%9MmA`P~)T(Pa2 zT)M4jTZ!uEL5gA5C7Pf#Wz^+bAoZT&d+jMn_ErM!PNfBHt3+<2b5?Ov z_8-XFt4iWO$EeQVd8sul`RrlLC&LfL)z-8e qk_;992Rg^_aTWEy|NC%iY=_!ro>AFbSL#uDbYcD6%8HWty8i&&z4!S5 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts index 900ec5af3..6aafb3398 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts @@ -839,27 +839,27 @@ Gee eers die opdrag om die voue te herstel MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Voer uit Defines the deviation of tessellation to the actual surface - + Definieer die afwyking van mosaïekwerk van die werklike oppervlakte <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mosaïekwerk</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definieer die maksimum afwyking van die mosaïekverwerkte maas van die oppervlak. Hoe kleiner die waarde is, hoe stadiger die verwerkingsspoed en hoe beter die voorkoms.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Maks=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.qm index 00557670942f60010e5e24cb9b5a962cece1ee55..f376e5017262c0dcdc36ef779225177c7bcb21c8 100644 GIT binary patch delta 3778 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 delta 2674 zcmYjSd3;Q17CrA(y{dY((upl05|YR&NJ|LX5=;0YA#JQfB8w!lkcC7@g|sb#MA5c% zEFoeUI$dZo1T9*utu51yvCN=p+i#j_%gl&5m8YlYkE-*%@7?cy_nv$1eK*dFC%zI( zoqHAn>N3D{IS_CO=p6$L*#_i<0}%m0T1Vj1Vj%el)K!Ck&_6)Edm*u`Y|IX8A4t8| z0Zu^*Iyd`({S<7`{sX>Ku+?@2TaQ=JrR)QqQn0Q62Rxx*yBY=EKD>8ttvq}9!S87o z!0J(jE+aD;%_RkAUPDC4OQ1uJf+3TL?}3nY80NnKm>#QOP9BE6wE>-XW5iTDF%{7b z*MR0LG1iA!X7$6wEl>z5%>|q@g#o^g z0BtiNZcrYO*hYw3vXhuE6h#IDT{DD@T`Ga#UxkgMP61v{LWM_>74Y_PEP(DUg^JNK zpdTe{-bzEiTH#0tFEG3jjx^Fy!4=`+a60l;3lA=_#wBUO%?Q#q_FuhvHtO6pvO;QL*HM4 z?B3${MQ(ucv3S`Y49r-o;B1w6`5#`u;w9qqk#?5$txEfIJvc?D4Xi|W`6W@?I8or`2?5>}}$yxGElE~_rR zI>3@VR6Q{VQKM~C#mLqY1!S$K>8V}BuNB(%+hMP2nf0^mHU&ynZZ(3 z&>Uu3B~?9LNPMVZwkTB}Y6MbFOErzjRJ~a`8}pK44wEjsj^VTQrgW#amTeL*z4p&0 zzK|L{NL{B~1-qwd-1?kltt=Y97+&NwS(DhELq+GMNh+uVKH9BGIj9AaLJ zZ+9}_jz<&>EY)3zc|`jcx{D2!fWM3GuiM9gqgeN<%PCH5yDZ3To}|OF|G787X905O z({&sNhM9868j3&LDu?Ft#lpVwn0I8P^=mnP0s}CPkQ4ns0akXB(`;m*Wu}}tmYL}x z=d{gZGmVvJH5}swQ{*{wnPG`pF3G1|0 z*UF7OtgTt9*?RHl3P8N2_kj#7>!a`2$cvqS)JOc3&hGq9!QeoBhG{589H`H%>BEcb z^o4VH!O98x>O%|JM9%tit4=V11^Rb$m`K)PgZ3U7b9rSj8rYRRXAm7sdmDOJ+yhn| zH4L{N-#{uo4RIP87L70@x{!&29){u`0<~FbD1K;T7bO^$g&k(iY7AS-$c(3pf^&Nt zwk^LwD)$*qyvyMvzi)VPvYyS6Wq5y{i7d!BwomQM0Njj2u6Jkm9yAWSP{dNMHBRf% zgIZ28_MLf-wRGKNTomX@u^%@sPiID+#OEF9;Hhzi{~Fd13QkuU%Y)SX!d4k8Bl+HU zmTjJ{lQq)#XfsduY&599gtsY z9)9*7X%fs)KlJ3(%zj{=zKR>4WteBTXLw?eIoInI3sq*$d%KrPDl_M=aX6Z5-hG<^ z%;{pTNlgIEXUqq#&ZZh4qGTP%Y&Hoyn1U>WZqKJA~DsT&S){0*?wG&Nh1<@L1Ilx$!!Wm0YnogZ#* zp^s{A&|?G=kcnwXuw}b?_5I}cXJo;hzXYW67l&;A$8#r*n1!UKe|ID!oo_O@pTSjv z{jzJUpMC9U@BUhcU)tH~Z8=UKp+CK((rPeIIQ(VV#;wk4*YqPsM&3yz9cSQ48 zEE7&_GI!7t#Z@XJokmQzpWgCH;MwNeI@s@5HWPXc#Ka~Gg{~}w@q`z;B7iuEu1P;5 URCc>H?GC2@ILEF%aC@NeU*a|DRsaA1 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts index 20cbabd32..e8852df1f 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts @@ -285,11 +285,11 @@ Merge - Merge + Sloučit Merges selected meshes into one - Merges selected meshes into one + Sloučí vybrané sítě do jedné @@ -839,27 +839,27 @@ Prosím spusťte nejdřív příkaz pro opravu záhybů MeshGui::DlgSettingsImportExport Mesh Formats - + Formáty sítě Export - + Export Defines the deviation of tessellation to the actual surface - + Definuje odhylku plátování sítě aktuální plochy <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Plátování</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definuje maximální odhylku plátů sítě na ploše. Nejmenší hodnota je nejpomalejší pro rendering ale má nejhezčí vzhled.</span></p></body></html> Maximum mesh deviation - + Maximální odchylka sítě mm - + mm @@ -1333,67 +1333,67 @@ Max = <%4,%5,%6> All Mesh Files - All Mesh Files + Všechny soubory sítí Binary STL - Binary STL + Binární STL ASCII STL - ASCII STL + ASCII STL Binary Mesh - Binary Mesh + Binární síť Alias Mesh - Alias Mesh + Alias sítě Object File Format - Object File Format + Formát souboru objektu Inventor V2.1 ascii - Inventor V2.1 ascii + Inventor V2.1 ASCII Stanford Polygon - Stanford Polygon + Mnohoúhelník Stanford All Files - All Files + Všechny soubory X3D Extensible 3D - X3D Extensible 3D + X3D rozšířitelné 3D VRML V2.0 - VRML V2.0 + VRML V2.0 Compressed VRML 2.0 - Compressed VRML 2.0 + Komprimované VRML 2.0 Nastran - Nastran + Nastran Python module def - Python module def + Definice Python modulu [Points: %1, Edges: %2, Faces: %3] - [Points: %1, Edges: %2, Faces: %3] + [Body: %1, Hrany: %2, Plochy: %3] Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.qm index 7226466cd17ed09d15fb8a466de5049363546ec2..b6c0c00106d6d47cb22ff19654cc47e04aeda113 100644 GIT binary patch delta 2947 zcmZ`(2~<;O7XI>*m*iz_>w+5?>3{+nPyvA=E(I3^m!e1Mag;~`WK05NVO63aE{Iln zAc~9>w2Dq$kfTzk;!x^r|98K8 z|Nn6-^WAl3$KZ)AfM_Q$mIWkJfrN*^_^UvoKQQ|Mu=8p<|m<`YQ%LIG& z@{a}Dc*nnSvWUl+?ZpH($IDo(g6Ld`Bdg3sU3qf!riP>gL0Q zZGw^olY!7Hg3Y6^0lQc5zhq*3ccu!u6UZF&cfsAODL`GL;DK!q@X<=a!=&Ma$M|!M zzcX|}DH{P4EMqo}{gSYnITBt4y!#V# z_Q!p|787&6@h&ikWjY=_0HVKOI;Z^rls;wtSmFaHyP2M5qEXCwaPwc8o`3lPHEqn3 z`OR>`FHp;wr6>lpRrk08lYTn0HnPyyYw0(X$=c zH%xdwi|SA%2rn*p0p#=uFTbcKLPvyGpPwT6o(Uf+iP+Xok?0r^6@MzSo(lwG0!3RE zQ32upqOumPh$^=8cZFJKS&HaNP9-p}OLTSNZtB$w53c1!54Ii$e6Nch_L95r0+zi* zeq{$)#i1<#AIo~1k_m6IV-oiOziwg!x{3e#5D#wV*kI{(vU{=7#}|`;e_`jUhfsYw z))??LAV0}wcil%ScK?mtbfTS<3ud=|vjSKb%$8>`KwuYJ$&~<;!`Rv&5~#SIJs4a- zh1l7Hk4gzod9bvFZEWc!;@)giuMyZYk?l%(1~}r`o{>vvLlys6G|@RL`6e(uP@EP< zLoGcj&M0aH26N(Hot6OkA9%3vhIqAnKH!}zE7l@j|j|;D&0o)kIO(`V%ZZB@h zODbW+_niJi%B7TWX+beS!y3-a7XiaUIqOp5C~M>#qw;B>E4iG`^K{9qB{5yOZiD`U=W2bfo~ao}k3 z^|I-`wDHg!*_?k^fN@Ja7+x(~(mpK^pAn zl9xpYfN7cXvU@zu=mq)KsL#kgMP9#?H1RL@;P%hu2e#b+s`KS-FCBo!U;ebcgJ$=h z{M98Yp=!8dv`Gt$(kf8MiGCRX1sE;B0VAkyi7V~L{+(Bdr%eVA4-+Fb^GXiK2dI2bC%jTPq~XZMHH%) zHT9&zx@=|RnMrhC7?e#Fy`*NRO8jS{8j!0}@BNa}_o&AHz7^PZLp3Rx1>(O}C3M}U z61S-qeicb$P_0^BahuvyJz14In)ooYRe65TN$$^8`9B?_xmd3%ta2svQT^s75h!Z}{4BDXXTeW=tAYelwVG<$K z>ef4e_A~XYy`3~)H`K}P9b<^;hw4=|Ep)SFtD9VhVC@z4kLffoUiXZ^esyyVH(@#> z5j6|q9SmQY5IcM^46xDH026(UgjP6UK{}tJAKrXvfxm#)%v14~5){02QSZR>?u1ZY zJ5L(tix?zPkR1i|(?IV|p@A7XF#=+&;V2VA0c~Ez4jC)N6DWz1!Pj zOzm6OWn~$3R-Gl)pwU?k+UQ_gmd+AWkv&wP;ZN8HJLj6SGOhNwJlDTKNJqMuBr+h) zEv{z}U!SP|KR-4SH<7w(BY}<75ZAko<|d7>e+qPDx0B7&QrD#MSEmh$m%6SJG5y|q zUAv!a)~^?JqF*ars@j=5#Eu*i994bvmB^aqt%K+`6iG6K$cXELDz&`K1vClBRd%M>t+du|IqH6|bWm?TT zyKNwD>>F_+;$t3&V$9|NU&ZUb&Fyoi&I|X!TyoDMs#f>W2&N+9=sxJP45U$dLMM3C KY5r$rk?g<3`bCHU delta 1661 zcmXApc~BE~6vw~Wu-V-tyJ<%q4cW9Tn8EI`yc6eKh&!GyBW#d*Aoo_x&E-VV>491^pe< z0INd4fd!mefzL(*Gxh=_TmO1^p99SRA)KxqH`mszyR~O)Ufw??|T9ojLxtgvA#1`gS z4aqQx7AAKv*Phz}TT+>4{xt}JU5t`@+&~|CDqVI_e`QALs%fDY&M1RA4paZ1C?hU7 z0vUG7gwsmkqY=u2YxzLIO=Vpy)gk#Qn*!bd5x10A-s~nphn20bj#1lQE4xJ!mf9@e zRqC1iv2u^nXiiyf)jIckn!tMtW4Bs$+_CEJwIT+vY;!S?Qpsu$W&@jjS)0hk z#7@?BPAO%LW*u8d-P-XMCX1{ye+T&X2J3lb9<`^9ov9l@>h)}d~j^7gQ^cb3o(*3!~dr zt2F+AO}uJjr4djJRQ+g>sI^yB$A|L(o2WX`Z!Ph@sy=Q!V7BJ0>z4qrp7IV>Z(eS|l>Vd)Mxw`48z{i2yANu#?G$*d($Q~+j zA9t^edX#^b`*ZYgAoBv(eY+fR?c{x@`T%xz78dvNff3JW!yNg*+HfFU!ABq602d@h z@yS{bU~&q%$f3n4F=-V4eW4pi=?Rq_@NZl|`dauE&%KEOzfaS+a` zYJh=LgizdfS0ZfU}Gd?NS>mE1Us~i0@td@ATD2Eq_WIK_o&fPX<`_xXDwgf0%Ga30iWB2#u_MH) zqF(A!hNQYlQXS(Z-L{Jq{+8tMOD&MrF8MWfQfY#{*gUOffVyi+&ASEevul#~M5+G+kkI=# diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts index f6b0bed67..7f06fb303 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts @@ -839,27 +839,27 @@ Bitte starten Sie vorher den Befehl zum Reparieren von Falten MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Exportieren Defines the deviation of tessellation to the actual surface - + Definiert die Abweichung des Mosaiks auf der aktuellen Oberfläche <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellierung</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Setzt die maximale Abweichung der tessellierten Fläche zur CAD-Fläche. Je niedriger der Wert desto langamer die Darstellungsgeschwindigkeit und schöner die Darstellung.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Import / Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_el.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_el.qm index 7c8dd26f8c1f4bd22a0390ea384bb6cadedd41f4..21e8eb6ca4860d55f105ab432989e621cf88eaff 100644 GIT binary patch delta 2869 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 MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Εξαγωγή Defines the deviation of tessellation to the actual surface - + Defines the deviation of tessellation to the actual surface <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + χιλ. @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Εισαγωγή - Εξαγωγή diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.qm index 833f311f78da27d9cf3810eb08c0d13b8a4b4c73..bc5e9429a0835d34d0a4489218dd38fdd8a5569e 100644 GIT binary patch delta 2838 zcmZ`(3s_V4760WXH_6S@`4&(jiZ2vj2!a*ViA4*dAF__EDjB(vXhJXvPnC!$C|DJ) zI6+XZ;gy?>hzWfR1kUx!2ouR~fQW-w6toH0P~w$ahYQCfBbY6BgexQ}i-d=g z;6<6m_*FAG`~DlhKSV(@bh!EKhd@raWb&?TU~s5p-uTZ6WV$3JItR#BNK&>QA(+^erMs@~01o^} zdLf}9em zsbw|qYy)jc{*~!Z5qz_|XJF$!itYa7I2N3~@ ztY!S40ChXN_Tm>vLB&P3=wu5q=gXGdS^?zi+3l$e5ah$|<_du6cD5>r2r8&xYbWPY zA@8xZf7?Rxp;s2}XX_e!fc0Oo^*t7#(x1JU{FsQi#a{JIq=a(ep=_#qLDEfN&I-AC z1`W0HoIEwJ2^jc>eD!GskZbVD^(WXw4Mv***RhZY(Fe}3q zIc`#ftyJV+BZu`vgk$Uo_s+eF&J%~I*87TEl|4YwXIUmPZtqRW5BxrJ-J<*P(yO7AsRXOVEMLQIx+L%j;YObs5 z8fjo6MyoEBHB%v_s_tAWs4!8j=pqt^&sS^I6NDT^e|Jr!I`;iaV8Up1ikz&tqm9ZH@2j|6r6hdTYf4}guQbz^_m1nj8PO-o{d zMR#?v7rUr*g>K0w;WP$YbZg4Gs7-qZ>9YI@50jwF4tzp%-_hlKeH`#PrCV1n229nx zdy{~?9ipqZ@&rt)J9RCKcFd|fm!Jcz@wyA05%ln#)wR~O1A3F5ol6O-{q^d_1Ar|V zBojy~_4=l}Kyasi!M-+Nm|UOK(mIlmPSgLavXNev6Z(2_3G$BUpRS^L89K@W91aq? zbD|oqa{+T0`KJvA%NdE#6xSrUljrM~frpbmD~vF~F8J}o8Z=ABNQ9`>y0SQp5VN%B z#jzkcM2K6hObkFI=97yV7No&ICxge`Kmo*HnWQ(;BWA&4&%F(|kxjpBr1jcZNxD3? z-zHwG_T@x>Pb^{XoWWBNOh2M2w1HfC3T20b&Y2X(+Itq$i2y_!hY*!DWVx73)LA_q zF0vEvMVOf$JG%#%$y2QXIiA}W8CLg2743~kr_VvaMSrmzqu|5OmShMw)BY?(B&`&x z%>kNaywk~Btwxu{o>rE0K$FE=R;9WkLZ?ib6(C$OZ&ZD&5DuD$yFr)?QhM)=>FK=DVN6Tm4Mqnqbf%7w z7=$T~f&CZS((Mjcbhh|kBBkw17wY2&g@1pWMeX-AmY96Gtpk$87K`KILIz2zQrv1e zeY0LB<-26OAc8o4L4q;Gm0`3Rdbyw{6CTK6uR!icBa}_86oI-h4;t#`VEfj?V+blec1aV`@Ir501G^bXeWgFz>)nmabklP*c~>b%h~5Q x_7y)Ft%9wu0>)z8+wgRue{4hm7Lxf(rDO8{B}40VpXBAFf!%Xl^HyZ!| delta 1661 zcmX9;X;f8J7~St)?z`{4_wIcuXaf2~5fKq6jWHRML=(`^P;;dQA;=^sGRk96QD(S6 ziGX8*GtGrKIn zqzteP2BviZKA!=z_X6qWK)^I0u?Se055$jd@^@Fbz7v!Pyx)cYFn#p$wisIxUg`;28_xQGzezyDv7k5+9NFUsL@c|GM zt#B$$0Y6{uWJP$ z|ETC+yA8-yCbXADH=yY4`pcNYgSu<>~?PKGWSy zG}b#9G2=DU{f7-uyqkFv)Qm9Lw6gr;v-D#kJ7XvLTM@~+YC7q_OE#qUATY&`jrze3 z*lfzCoM3^sRmqNGa^);1|H^qwJLzyNFN^+x6@S+1AVsh(yeAN50GI znUYv}h;=k%mYQ_U|B5>B%7_WuO!^BB0oJxA1H&f3#4?WSr~op1IBoq_Aa5}@E@lbg zAU7d!8&KB6*>w`TqyQskOyHbUH)&tb%{;V_?779w(TyVZGr1_c9zfH{C0u$86gF{r zhuiQeQUkey`xK>hzFc7>1K3+|6+$jBBc7|VC;96ybNigq0IvhwzTY+x4jM7Fi)%PO zOvG)urr{`{NXcDV@f3&}$#q*UqV=FGa_@#lI8!uLCzX+zrvbB%l&g>OKd;vzk=@QP7 z3QPpY3&dCJFSt}vqS8VH*L2!1bQTs3kuFPXA$%#75$%NtdoQ4>K!}w|$Cwx)F_ieJ zj|)j-Qz@axg!Sz$^g5IXX&J;*UMdu()47F#!oJ2mG=McieGSpka`LPigJM*$eTOGi*ta|mFmPMPoPq-&PtAEyxve{qnUT68kjms6Q(4|`K%_wg0yYS(d4@+0Pn9g`M=5( zw+EU6kMGFKKFzK&(mMH`5pyCmdy8(7Hzk_Zp(Ma+v*yn>n#SZ&n%5mfZL5QJe2gP7 zHbOi5rZde+wRY|mit83%?J74n$R4T*7F(;e#rBn;&xmWnv^7pNOKZ*KB$bz8%R13P z+(3$Ui2k$Ms9Txh;_?6*qYsoY&b<)WY30R&jwe)(> z%XC6I+t3N MeshGui::DlgSettingsImportExport Mesh Formats - + Formatos de malla Export - + Exportar Defines the deviation of tessellation to the actual surface - + Define la desviación del teselado de la superfice actual <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Teselado</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defin e la desviación máxima del teselado de la malla de la superficie. El menor valor es el renderizado más lento en velocidad y el mejor en apariencia.</span></p></body></html> Maximum mesh deviation - + Máxima desviación de malla mm - + mm @@ -1389,7 +1389,7 @@ Max=<%4,%5,%6> Import-Export - + Importar/Exportar diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.qm index 1024dc942150eda094abc83744523269df139f69..ab732a5d60300b6114f47ad917fb76dd9893f102 100644 GIT binary patch delta 2858 zcmZ`(2~_%Q4X!A^PhS5z5CzwyWjt} zH8VS}GV5L$aTJiP2Lf*bit)gEoj}M%ASn=dcPFr7H842@D2@Qq%7Mb_#_`dTxDa(Z z+4>=TsvU^w^2w4rm>l^d@Mfz|Mpu&j1&D4(VsHttD9k5Uw2Gff{F!Ar;sp|$CW;Rv zp^2^x9Bd_LzfCx^gMvB^;>P2NK)yl}wk{v&^E=7gL3gRh4tGiBppel4z85kxtIaeIVJZTn}Ic>B%P_Rkt`9LnLu|^ zI+Oe$6^NM4%z8*sYv(W-D~f^AAjX_}3m9{nDJ}006kK6e4mm~b_h$A+)&OsuV2(ek z16KXaoM^ZM^y*|z-n$2k8_KlD{RAv8VJ?;W1KJkmaub!YbfZtMn!{ZF=U`y-c;?%w zO>krI1gYYilfc+o>8S05_con$jJksi8lZF}oDy%{&lkKNM<)6sx&BK84wX(7l zY9OLRR(>>8Mja0m??^-4Wq*-;{u?x?BgG_8(#;*LV4Oq6Dt@tV(a9?68vl(Dm6C?L_wKMCe(2uI|H^-6%v zlOO5rBzaffW*B}oT8i!c6j=+2 z%*rrDftwVOHHxKI$f5AG_$lk}Uj4J;=7Al+s3^r(wFFk}Va4Bv=>hSeqVsAUvC*ZR zJRzPA*i)aZ@1smHeG4r9LYdN%O{Bi0w0^df4((HAktT-N_=B=^>)V9MYszZ;i7*_k z+_rKk;6G2ft^GU=ZKHC}b<(eWqHL~ghnOgjb{DMXg3mn$YBq48r>QheZ!WTi2)O(V zH>Qa68!m9upHd6`k8sA>6ich+vVvoQ`b5qm76bj>YmTxAj2eRz!9wf7@Bx3{_7TM7HTecYauJ9HvK9&yd`Cg4>m*A>-|K>tp~ zG_L`e2dbgqD1g7}tu9L3H&iwGA68)K2%n6csG7cmFnzB|Wz!}Q*MK>a6~R!P*__@+b*$?%(S2uSFucNnH_hjPz=C{d&SAFv}-buT$?_eVwrKQ@1{K z0eYGGhqjZ%-KFYZ&QlB33e7-sD5aEX-n|wm}>sY=MAKKmi+`ReYma0CdOrLs##u=h(^d5qFx<~VfFRz|4 z(Xh`o)pAGT82QeoiUb!Uem6Hn+?&XYGm`i|0vxmim}wc{gb6lSMZM9lY4)^0iN}nM zL^#5m)+Vz(KE?ZU!)UXwI{>kmg4?w0Y4c1ISZ?FrY#Ol8>dX5hv{~Q}brqg9G>z_f?UGVT13YKFA zr4zc-$bHRpdt|=g5kf5*kWXG7o>-`03pL@O*7e?Ya%rdg@N~!RJLTDUy%X%NzdKL- z3wiocp678V5ma`{#nNr7>1o?ECE@$T aKptt-mJMP51B}*ZI^2g()9~sIs{a7!dp86C delta 1661 zcmXX`e^^a-9DeV)oqNu?_nvcYW+<*iNUf0cV^%RuJfWVenIDs3{ZOIkH{EiVs~?ii z&6NDe8flxPC9-OX3Dsl9V|d7h2NlmA9?C=6$L`KQ@ALhhbH3mAeZTMfEx*pRG%y7p zIAs7fJArYXfXijT?`L3kIgn}x1iAomEx^JYV68)SfVaYP()@V9X8`|U;syjxdk&0k zwxV|);akAF6?2`p0P7m8n7Tl2Q0SSY0r@sTZi(ElaGe?X6vvzCXS?0FaF7;_@W-9L zPl4zngu^fijE)}I_D`K zTwVd}yrk&bPz+=?E4mHCfh~jNYs@&KUk?-f!~l3KVHUrn)wUmJR%}fN66=^4!#%+B zJY&kS1!7k+=JDqU%b3b(MZlOQroML{uqlUWs(1jr-_4xu>H?-uU|RiN04al*-%WZz zY-Fy~5RC*!E2ceWuKeQ&I*$V5 zJCsppoPclkE0gP$z@TBuf-Ctzfs?XnJ?W7Am6sOu0a0g^?R{lLs8xCSWi8pZSJ^ER zvGiT?ZKa;so+?Lw+e8mvgsbMArx7*%>rz$V6}&{fvkFV zWXxh^25jF>NU8#^0d%VeIs(g=EiNc8+ccu@7XUoc;tfhuFA_ zkAa+9toc|AmLl1M&Aq!E*bv6%MKZv|Le?UffGMZhQfHE%(9RxmO9ei8#2)I&0({-A znB2-%oE)I&xUtm(Q9$k__Tq}?K;-A_6}wOxzmP?C@}h7LiYEWPDl)wh82nJR<^%`C zEV1I+9#ynvJ}@#=wWZP(P>8A@oh1?(pgLjC18kD2ZtzCJN2-?isbpOzXVf@!!^xH2i`MqxAbo)aXDOP z)j`1Bi@RGw9_5SNUlZ*Cvp?5;eIG?Efe)M!KyB%_q9uk8iF!&6`;rf7jHIN7@oSG| z!X2r(e45sWGWLu&mCmG%5AzoMLEcT}_nRjG`Url1Ya1PwBY)&3&6~_}tjgCIYbQ8g z>I1UJ3a;mguXeC7t%wqpvPkeuqxqbrLTEqfvaJ(VFQH{bQ3!YT1uSJktV}wFjTPb- z5kIv>NEneq39S_pTbt;1C>ByT5zn1LLS7nuXP7M;V3e1LhPo&bTOoFLERhP$m3=a4yJ>iFtU0NGxhkxGkMuBt0e zQVzU>)t3sJiR=M&e=3nqj+OUvdZWcn6ZC5d;B-{8N=1^lg=)fWNtrddNsK|r^w4Ui_jkkcw;)zslH0RqGM6H`NpMZ^d0qEm24jOUg+3hCO0M-4rUe zL98wuAeU}Ps%u2mDMZrkIY;k#Y5Z@EKt`$*bnzZZdnE;5_oid5lcEc0oE;@4jk19e zjE9u$_>!!>Af>!IO6R;(N-Ls;CcKn>xI+YtA4=6RUjw>RQtj0ws!O?a+8_bT%~DgR z58X`nrLz?s^j^}jGiZZCMyHuS7)aVdXdtxL=^F0?u4%f@_Ow!7+H{NGc^F@)TUl~) tI9(3uy6Sg MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Vie Defines the deviation of tessellation to the actual surface - + Mosaiikin poikkeama määritellään todelliseen pintaan <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Tessellation</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Määrittää suurin poikkeama mosaiikki silmän pintaan. Pienempi arvo on hitaampi tehdä nopeutta ja mukavampaa ulkoasua.</span> </p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Suurin=<%4,%5,%6> Import-Export - + Tuo/Vie diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.qm index fde2404a85e1afd801bcaef0df7d245d31b0b500..6e6920ea7247ae63a55d30ce35c633a67a645972 100644 GIT binary patch delta 2947 zcmZ`(30PFu75?YVyqS5kQnx4yJ~4`bEUqjnuHXhJ1zXY7GQvYfX9hAe?8vA@QBb2i zaX}Oji)gC`(L||A6|IO%EwNu>zSJcy2^!Pdd^IMmq-SP?*qF?GGv~c?&;8GT{(H_n zd68-QjM>y{#0fyQ8SqO16cd2Be*?p>19L)v>HC0nFMt`tft8^^Vkxk^zF|VRWa4o3 zB8pWYB+d#<$amW{%P?c?*MRSAw;kVu?DxR^9tbJ{2fXNP;)z0&g6XO!51INPa0viOK`=u1ZqY9su&g zCB<__0ijaK+JQHKsxa|4Or+12TFJE-atB3A9$ZfbYX2*FWZMCh3zEkP{m32@PcuUu zbJCf)PZDVNr%ci_LalCLlGhXgYYs7{gnK|lEK^+S2^2nJN_;O+`2ozqu@%73g-p{o zyMgtkOmqDMpjQQR{?Q{K@+i|fktAH($^5n08_+c|?Ttj^op0T?>>o_~KZgLjFEC%l zHNpYk%Th(hdD`eB9kqw_-nUH}s=h`<21pZb9|rsrrN(o9Kt-N3w@C{8Vuf^5`$k}I zjI=qE>d?=XUY_%u@7g-DcSY8+v%+Kx$TPCvPWe{fFYr>$DI`Z<}Q}K zLU9{fSWejfvxBKGaJ4y2&!7+dmQ3n>@Kmfcwd6ieCl=?oAU#%|$?fiW}LssIvb^-i`f zIG+m1X6wFOP4=YQu06-rpXdaNF0u`sMqn4mwk3Z}LTqQ-`_H5IXW|pt2uF0%Entej zJZ%g$H8)kBUUUZNT`OPuzJhw~JGU)bBVVSD0|r*hR~-xjBmwe21n8*P3G(-OCBQzF zf6&to$dlzQ*3rPbBNY8x-XhVyP=wbLp7f|9@;(*Wv%liExrD>DDUt^hmz9})6=`o% zGb@`Fc@A=f4^phWK^vC;T|C5kJIaF;w~y?lTF)u&RFYVGycKu-d0>0C;_*kjDg3E& z#^fj(uoAbet5C)pzXDd=RmPu52SlmT^4?0IG(%aSi2x>+DvPV8kS3FrTks(;`kJ!3 zWEjAoRaUoNp+oah9{7a(TP7+`uWyAoOCIhh+{Fc4riQBA%LQE|YFY(1wt^aP-Bd2L zfc!f|KZXCB7wR#&MX!Io*ta_*Thl%OD=0b9yRnsF1xjvE}5rX zej#zK&EwV=P~75^T;0K1n!HSIe-&w;e}p>_|9~bUcr|xg-U##?!gYrACDC(K%;}9J zYP@O~IO_aL)uc{J+;^;M#zPBD$R)Q8YgWzMOPa=QRAp#ql6d(lYXjYAzl&9^$frd6 zd#mbCP{WLCS6wbYOBY3f>P0>kw04PFagRh8$g4GKe=$$d!%_E^I_6K6bP-Ncr^sn( z$9{F1Cutx)RF{THfXO-P($7We(HeDG#7Xi;scSZqCd2N#?dDVJeH%U@t-{r3Ut|G3 zrRsmRoTuLXT>bqODq;I2%|KHS;5|t*{pJ`NuC1C`SEe{tY(^}|g=WFMe&!GF^vDUC+H_g3=c3oi; z9ivpcl{pR!R%k10NQL65+WHSh0=X^PhVo824!KVLH=-JFSEt{30a#U~^ZoM~VAE&1 zkx48N^QkVT?H-j_t(*H%IJH5oZdv&~I;P5}x}1T;hY@wTL!Ob`_jP&S9tH-K=?W^G zfQ7o>-y$OKrt2C^0ug&dcl<^U-K0}=e@xH;=9{|a+Yxl}nRMstuK^y>dUi4;*f&bA zj_V1Ol#opz+gGnYa~}wKs*m2;O8wQOPii?oh?sil7gwI3o25qI;2MH5{WnXfU;2G$ zq{B8eR&s$;7=^M?5|hQSK8OS_E)aZ0{bEnwLdY;~Ynk4TcXr%}%A!O1wgP!c*8Qc-~jOyb+5UtH6 z{47H6%9Bm8CPH-PaAt7kbs`C5jjmk7UGG2MwJJw2E=jjX zj1379wF_6h`s%m9%P~46WSmdrG$GAs5p29YUEs}zT%$S5%%=+3Mi&a7k>*;kcOeU@ zyjifN^Y#pv-(G9xncU6u^UdMvf%z`sJ4kwGg9}RMH6o|qxK|bWe`UHBVst}j-P;1)dNej~|4#Kk%??Uv delta 1661 zcmX9;dsIzn9NqVv&OP_s$GOI1QOIkOx^xjrDisk!G_h#RBO+4hq1P?l9!R$|xkphd z(hDFyWgsfYgIbOz304Yc7*x zasbvnVRD_%lUygJW>PUQatTxSwh}OIWE!fT0)2~_bDf=l?@^|C>fb=xJLb0>M?kD& z+AKsP`Lzu*I+(VXPQbQw=0>5pcfD@*U^s;BeOcJMwo&Fzcaep$+Y9=>0>0>jF0F ztP8LuflaAnflo5oqP9Yym}MJcNr!emdwJeFvcZqN`fd*qy1=%+IR>ouV7oL#EUQhr z%Q`aVS(24?GiIjPwa(v39jLTnLZDq|{$aq$!>+5x4*0Z!I^RKQU~yD zG?#m%2}_XX%;i7$8c4Kq1*;ffj3>8U$N?tK;>vX-Kc$#Epf>=1N!)?wn+Q+YFzpwv z>SPZP*T~iOL{Y&r+@B-6~b4O|Em{U~X;af>1+QZ$8W@>Ln9fqwhstB>=PoWE=s zmnn}{1p`BN%d>0T0GUqygH9xo9`fTu6#&;QKhbABAP<)}#ZLgTb^O4lFUhP&QU&K| zT)&!+jH3W58u(NrT|IdipLLC{iM_#Beu$9Xp09~?1O{68hUpnV?|S~W#Q(l~x0hPFpHf@Q%jPKB_rq%IJmiQ$@&0a={)|qyuT&{6J;$lmY(9 zD$^elkhDvc?{$jSr>gdBBdw#J*l^=<)&8xw$OCs(qcss2Zc@E!qG?QdsCs{esO2}Q zhs3x6j(+NyHz(4Zl&EK4rMQ|7s#kh?Lh@1!b0~0A7wU>ZpAF-z>T*5J()#04qQci` zdZiho*+7c&G=bBbs9TFQi_Jka$X%MHnUyr4N=;sR9Z|PxN|YnPZj z#12La~ z*l^#AUZxoFTvZFuYlfEdrwd9twW{DgfFX-8l(4r}d-@45wp%-6S2N|MP8;^Y!$hTa vS=mW@dNdYmYd;2hllJXO>c4$^6i_xmy1pgQ(qH+^-@=6nb1fkUI+XtdMWy|1 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts index 307fe633f..a038b5ab9 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts @@ -838,27 +838,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + Formats de maillage Export - + Exporter Defines the deviation of tessellation to the actual surface - + Définit la déviation de tessellation à la surface réelle <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Tessellation</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Définit la déviation maximum de la structure en tessellation par rapport à la surface. Plus la valeur est petite, plus la vitesse de rendu est lente et le rendu lissé.</span> </p></body></html> Maximum mesh deviation - + Déviation maximale du maillage mm - + mm @@ -1392,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.qm index 5f02ba1715f7275cff600fdf2d2d4a403b0bd815..4f78d51de17d1aa32650f605253dce48171d93e4 100644 GIT binary patch delta 2902 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 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts index 124fe44d6..2cea5187b 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts @@ -839,27 +839,27 @@ Molimo pokrenite naredbu za popravak nabora MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Izvoz Defines the deviation of tessellation to the actual surface - + Određuje odstupanje od mozaika i stvarne površine <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.qm index 2974d4d3d29134377c15787a20da488223c34bf3..106c1680ae6d3806710050b1fa360cb4cf05aaf4 100644 GIT binary patch delta 3381 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 O#eFAuPwUZ5>VE^5g;?+a diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts index e14833093..5517d6d1c 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts @@ -839,27 +839,27 @@ Kérjük először futtassa a hajlítás javítása parancsot MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Export Defines the deviation of tessellation to the actual surface - + Meghatározza a mozaik eltérését az aktuális felületre vonatkozólag <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Meghatározza a mozaik háló testre vonatkozó maximum eltérését. Minél kisebb az érték, annál lasúbb a renderelés sebessége és szebb a végeredmény.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1124,11 +1124,11 @@ Kérjük először futtassa a hajlítás javítása parancsot Use a brush tool to select the area - Use a brush tool to select the area + Ecset eszköz segítségével válassza ki a területet Clears completely the selected area - Clears completely the selected area + Teljesen törli a kijelölt területet @@ -1146,7 +1146,7 @@ Kérjük először futtassa a hajlítás javítása parancsot Mesh_TrimByPlane Select plane - Select plane + Sík kijelölése Please select a plane at which you trim the mesh. @@ -1157,17 +1157,16 @@ Kérjük először futtassa a hajlítás javítása parancsot Mesh_Union OpenSCAD - OpenSCAD + OpenSCAD Unknwon error occured while running OpenSCAD. - Unknwon error occured while running OpenSCAD. + Ismeretlen hiba történt az OpenSCAD futása közben. OpenSCAD cannot be found on your system. Please visit http://www.openscad.org/index.html to install it. - OpenSCAD cannot be found on your system. -Please visit http://www.openscad.org/index.html to install it. + OpenSCAD nem található a rendszeren. Kérjük, látogasson el ide: http://www.openscad.org/index.html a telepítéshez. @@ -1365,7 +1364,7 @@ Max=<%4,%5,%6> All Files - All Files + Minden Fájl X3D Extensible 3D @@ -1393,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.qm index 5c59e536ebcffacc2b82d02c8b2fc750af17bc94..f3d20a722e96374df92005d0943ee3052bb8dd01 100644 GIT binary patch delta 2857 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 o_c72Tb??Gx{-d5p&|tSpAvp`{N2*j_^ MeshGui::DlgSettingsImportExport Mesh Formats - + Formati mesh Export - + Esporta Defines the deviation of tessellation to the actual surface - + Definisce la deviazione della tassellazione della superficie attuale <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tassellazione</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definisce la massima deviazione della mesh tassellata della superficie. Più piccolo è il valore più lenta sarà la velocità di render e migliore sarà l'estetica.</span></p></body></html> Maximum mesh deviation - + Deviazione massima della maglia mm - + mm @@ -1391,7 +1391,7 @@ Max=<%4,%5,%6> Import-Export - + Importa/Esporta diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.qm index 0021d712bb4f99c632a45719021c0bc2fcfc0760..05973bf800382879cd3bb59322c1f5a73b19737b 100644 GIT binary patch delta 2704 zcmZuxd0bT26+ZK3-pssN-o%}v!hj3HAY8=_BcM@G39|fvP{eJ3hm6buGlOix2t-*l z27N9GS`BIuv?`P$XbNi4K;2@DHi@P#Kc#6z{MBfTv6b{NBU4-Y2lGAdz31HTeCIp& z*$32zwN%ycDXjpatpM(&0FoepkU#+6tB6*Bg$Du57Jx;*02$o?ag_i%XbcJzg!sx= z00eIZ5@`nTzu-XAZ(-4lrvPKS9q6|P@fQHUS_s#a0IV@M&|JeG6}VBEr})bV#gqA7 zfnRv)ZTS6J3?7*bf8LKtQ@(}UFXjWJ-4OU!Z zg9N2f0RTSp1m*760c_9s{u~B|3j;nuy~`xRner=0ga~8r90O2C3Uz<-2FQOR%snLpQ1l6_u5AI> zpb(zU#5&|lg%_h1dI;%?Du0OHoA( z7N7|eRkr$x@S;!nZlRyedP?;9+U?lWaM9K1kFZy@4$SZtJ=}C03mz@%>BHlr_tEqv zJZF7QD-Klv6uhLz>JtIh71JI|J_dNdp7y?i{Ecb{TBg(f(r<8m6g}s7917S)FIJ5} z0glo-@2>%vR66Uz_mBeXjdWQ<2S8>oz3J`>0Kz@xWHJGk_v;ncefmwRGuC)&h+DkX~=>XPu&=*!cMIrR`wbAi-p_%U$O|gX~-UbM` zCQh4!`G5@6IFamisn0Jtdrorc9?cZpA^r8qFl z#Vy0Ehz;Tn^E4FsiDY!gG8FB$B(M(iQ4Nyd2UsLKQ?fD_^GN1OR*ge0`Y|q&v@A5U zI7X6Z!v#&Rr1&}p=%(;TX*XN0T5{+3egN-C$=zxctJGI=&qobV7$NETYA?F+h;-4s zPyja%2bMQVV|0&kIBTRa?dfRhAEm~IVjS8pr3H%F*z87I8meU@}Pe2E%vm+mW@ z1mMys-Pd&qoA$1>{wA*Hy^^+V?gBns9B4})!Dud`p^6?bew|2-X=Y~ZKm%soU}hHJ zy6q$r{|ZYOahge8in(MuCQTCzP=1p!@I?T_su^oy?&^GrcK-gFtn5Do8^L{pOsNEn zj&tbU#qwV+VF`sh6z+OIeCyg33%{9;!DK-nIxp8LHH--;0)-*U{Y4spbCZpWnIfud@ll&jobQA%?4I{1F3qLSk>8= zWg{-!#}aL9^jCpstqE+#w)@y7n+KcYj(h~S*xU)vQSPg3-p|L-7aUu#qd(z9_Q-7{ zvUU>NsOPYX18np49GtN(_S0AvU|9%z`p#^8_}*vF)m_1TsfwP57i>JBl1C21cff=g zi#T4TYJUJQ;Ww(V-CY2~MXJP(a~{Zazbd)96<-#Ms?k0K%T+(EM!yVOuES;r@$TuG zrt{3<07~rBG-qjxfLG76^2cMsg`N=1-;MX;lag3oKUeNXJ|i9EQ}T%Xi?opM$WxdD z{$PPj(1H<l*RlH9{v zT1YoBu7*Uf=&0q7$+o0wTRll2MI@0>(c?+PG8LX(KnjR1ab!gki6G@9imV}(_7f3A zfE=HaGvp!uHdMKp*5MRc+ub>1wOVzHZ4jr)g6-KXn{NTMSygo-^Aw)@t?HoLc8dYtfr> zUay-uV=8`HGC9sORjoCq+D{vGDX;gnnVFo{tTm=^YOR^$|C#6}Q1cC`!)=QVnI^L} zG`Ig(AjDCbmb7o@Zek?O*vlK_5IIRQlKN2Lv_U;F{-*=d{vi|N-`j7N{omydl!_t_ zl&MV_V$Ig-)vwFNCk*VY0tT^CkUDZ4x%?GbbvbVnJ9s8Z(%00L2I=*qrC=2i@*Q|XB1^HIL|8HJlm8J ev|%oBAqUZ*_F}>R|CX+F1Wk4*&~&G81oLk-LQ4<; delta 1661 zcmXX`eN;|&9RED`KKHrzJ}>v#CX?bxC=w+l=~x@nRH!Tth1UDKQYpRZk%lQR>6T4} zg_C3_(!w};S*Vp7jbj+KV;xg+cIN#YWnZ5C^*Q(D_x*l8pWo;E-BZOp+r<=_*=+`t zdjYF_VEQ${xd&Ku6o|SGcufaFJ_nW;0BeKmJm)Ir%=AqG96RtHBUpI3J_W}2o6sSS z@Gam_1t0q@KyarCqu$CF6$U2KT)sz;<|7X)92Nx5!|4_}{Ban5IZQ=Yx#RvTYPQ;0 z;aHRbeAuj5VD~q`{hy z?NAJ)?gtVY6oUa{fptpxCSz-K5g7lW06O)U34B4-(w{IP+j4=3xlBU91Csul$uF<~ z)|_UxPq|F^kg0Jk1;!0C=U*NKV$zwW>V7~U%3K;40A@Ba?VmmeBHu9A^9_Ld8Piiw zG{Sik#*Aiq{;{Dx0`tVT9^o(qvize5X94X9Thy}~$h2dd){_oR5ZmeZ3J4rvyIxfip<4FZiw3eSj~&zzu{bmN9&2FI zFUrHLgE7`zdCmVj;49_-xLr9=c#`B;DhEfDfaM{MyIKOoF6Xqzb^z;FapMyL341x~ zrTc-5E1X?7u?x#JVYJLS3b*OK3pelNa!P|O=dB+Nq;+tycE1B+1ee_L2-r}_Z9mnD z)refo74`)Kp_Sau7zUV_$d!osz|^N)g+0j+PvWW^vw&G1T-D>PgxMyH?BJ@;jZkzJ zb9E!JRIrch2zg2}JGdUp71VH#tmB+kM$M*Zs@haBxsAXFj;gpbJSC^kguz->yv7$8 z)2rH2;{c#j^@F`c);?FAnIKTy*Q(Br+CX?p)tcf$*7@<4t!v1vdGZ0yU<}FPqmn6r zs%3npky_gi@p(6>&DuTu!FLgw^qjAWG5}^ReAB{QKsUtSHN2t3@hJbhj?a96nAFRf1dqfRm~9^rG4VD3bH+DNIbr*ACoY7rFc8LVS*WSpOIod_n=rveb9C1o^5&$bWjGD6u+aS5O4AsAO!M|CQA>WRwMuZHWz?u$ zbbB_$-hR15rrQl~t1R(A&D|v$JTh_v-43 zN64ivNp+K`S|>^R^2_vnl{Do_BM@IJE$Mhb((XzAx8~Bd=1cL#^qgvxHd-lRgyOE0 zVe^8l9g;F%*U~*lO4+6F3fW30?h}EyZBkuAB(XmtHQd-pE6!HB5Fi2m2c)K6ciK!} zOP8v<>ARrk=2L^LX1&ID6s^cE!T`c8dVS+xfXxB@7v=4gf2BU~orj^&hn1ZhOUt21 nU-v%H7xXWq>HbHpjirkXl3%CV*AI&|&h_5jd7ss53Y6l1DUj{^ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts index 049de2bad..3ffe7a330 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts @@ -839,27 +839,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + メッシュ形式 Export - + エクスポート Defines the deviation of tessellation to the actual surface - + 実際のサーフェスに対してテッセレーションの偏差を定義 <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">テッセレーション</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">表面にテッセレーションされたメッシュの最大偏差を定義します。値が小さいほど外観がよくなりますが、レンダリング速度が遅くなります。</span></p></body></html> Maximum mesh deviation - + 最大メッシュ偏差 mm - + mm @@ -1392,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + インポート/エクスポート diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.qm index 7e25db1772fdb2d0935a2e9b5c32f23b674a733d..49e46b35e54487d419f86e6b37ed1b37c31c0926 100644 GIT binary patch delta 2959 zcmaJ?2~ExEHL!#${w4GIbW5g;g1qxPXYj z11pFat;e9P3z=gi=7=#EiyJZ2oK%e(k0DK@dTer{ra6+{nL(trE$__S`R}{ScfWh@ z&*Kx!xlX3iFS-SgQ~|F<0NG}8OuQw;gi>8cI zE+yM=M9sAU@#lPUeJEze{s4>$@X5Gell%pUt02=2K;d?ueET!uuqcSxuwS@LVn?)a zUlfsQZ^3(K$T{#K&hMk3HVbY&c>~Ce7DZO(1B2p3uZMn1AQMEH$pwH@Ey~<-kfdEy zGH)Uc3~Ir+E| z*z|-s-P8pPSjC*ZcMnMThH0PjBT!Pqd{z#9pby;y!cgR2N`S;r` zokMk~KN4S@_XKd1i!VRf3v7-PUwL$#=({ZLRuiyNKZ)cB0hMl&*iMB3uPv37E}#M? zy(1}WiI7mD9-&Jd;o96T`82l%NcmE7W&Td;RfkU&Sta+j9tA?wlI|Wd4=!NYOJujj zpH;nE3REiC;ie3db!_mQI>MF6hISDC;vS#eSjR@nuK{&?*w>Dx6M+qEigpmN<0fki z{VSlH&aS@j9WqhtU^gFY12)`Xw|=!0So@SM&t`zoRf9f$U-XQ z2z%h~8%h4;lO;>prj{O{;77K(#|YG(XD=-O0k98aJBKc$gyq70NwjNv#w{Reg)}RM zhFZQznqAxq3|u7r-TN{iZ-7r09FVS3&IN`YmTou{0f>U7e+t(C+pDDS>*N4yl%5#q zAo;Ph%{GZhULqUX_7+g&CyQ^Qcw&Pr>1!(T2>WQqKWwJYAI-sgj*8N2zP2&vt%&Ez= zU}-+t_|Wm%jENNiS?{Y{`DuT^eM_<;1Ba&HxJGP=blw^k_kZ@W%hjZ~g_>I6pQE5C0$ zOS9Xo{N)mrP}QXxVTu5TzNwmVEryoMph~?=GhTULwK6Uaf|4!*43_Tx zN1E9e?ox@r)y)4Qp8g+9)~u?&OKlRmHF+Zl53@{@Kl%|Z_)B$KJwCq$$(7&7LJFYSunpN%ImAW29!A z-Sr%w#7OVC3$sp$ga;|D!aRMLP`6SuG8R$vOhyQjkPaSpdU%-V(Zc~FtgyJJ&YB|f z7_(ku_x9OrzoRf)Kb~ItyF3x5k#81xS-g>S6d{{_>0qX4`J^|)Ngo{yq|K#sUk=h) z$@95~!yBPL7M{F3kvtf)y_VK~_I4p}zS z^Zw)}b4`khnjDfejn6V#c)QM#&Fjqie52WE)*1L*qc@t)n&o}rc$R@T=*+x5Tj#KP z^>(K%OP|R{=+epCZq}Pjyv_R}S8sCiI-@VF-DJ({)!TTBfqvR^cs|6S(_0K)Yl|_n z_q{$Rhu7QmmP}r!xA8)JR**<1=yUvBDdrrj&5@k%`4)+3mvjH;y!^lU_^&hS?PC9V z&{HEE)MZbvJzaAm%|-*}QS)-oMIxooP@;{!swQUw=TaI z>heRfu(oojO6se%&oc7`%W;@Pkos@N^Z9;(gFe{)b9$TX?PDMAzC6h<Tm1*dB*va34ur<^BiwN Z2gW0rO6@)Mg;4w4#{0N(yQ`)t{smI)MKS;Y delta 1661 zcmX9;X;2hr6zrX0c6RodjVFS-3Ic*Cs0ad4q9}qy5rc|n;t8x=0&)`;MdT6$7NP<| zG?pTX2T~}(uz(059uy&3MlDoIO(Lje;z<%P&+Po^ny+Tw>({UQYwu>>USJAF+NA*| zg@BDCFtrQt*bI0d1L9i%pQ%7(2CyOr2$R-$xk+YE_lpMH+VMZ`TnQhSmw=V25nVqc zd=I$h!`FT{5Ps2!@q_wCiH3>o()SQ#o9hQ94xT}eaIS@ZHh+Pij#ANWrMUNQ0ifL= zaV$sxM!8Bn?fw9GcgYs7L?FaXvL)*zVWlK}nG@jTt&e3qEO!M;I+xJvlupUxu8qKc zQ%PUUAwaiI(jQ<(SgpUw*yubCGXBp3fLXT8nm1G}cMP*}Zz{0!023DQ5O6unr019e zp}tJ!%$H4GV=5k*j;Qkxa@yTl-u9^8cT?42VGTpUA zBZf0#;vuH{g*A|4$vpR~#THnVvHX+E^y6CA>1)z=|2cNHqLV&|Vgv4<1}2YYwU_LG z-KK0p0}H6L*n;kSATN(?+Cg)un%S$%-T}e&?Dcm?h|pHH>rEZWHo*3)h*-)zeGjW) za(>qjvJSeWS0-Kl2WbO;8!@8Hq%ZdjV5u_cA2Im+v3Q;e9<#yQGv1N*YLIcHXoJRRI(^(Y{_ozvR=3MdwFQCFS-SsS>_ zv#nT%IG)RW@Hr4=$L$MY06PO$ETjW7PI2Y-G=9th?zm$TFy}OP{AmW^fDz+zxT^Xg zB5uLe3~8z0Iqu5Fmq3sY*FAP6HH_7(xEX;#&SXtlpfn`a0E`HfZa>ch+dYgJ)-4TH z_yOZiNq1K}01^x7clIJl+bBIhQ3h~Y>4gzH2`@=oqi2zH+5Fhn^+3ct{b5d{i!|^- zQDi{AmrvADYv)9M*9~eD=Ehfiu#o*JzB)()jCsa4EldSIYUS^0{w1eb@%PUh1!ija z2c@J@ZVcZ$Wg@WW2fqJS1zF5n<}=@m(h^|A!lSa~+UJz88M5Vu5c>ZgS;X00a6*E! zELrIed|WR}FZZOzd9q^sLfW~@Dl=_?@jbH2j%&26T-nJxbiQktK3wXd3zZ1=SIHrJ zy9I|I4YZS5!KH*870(N^lj%IOS6DenbD3KUTh~$MLrbdKUJI3Dky4Ms_c{oT93EtE2fSp^r}ja(Bx5CRn>)=6zoq` zHAO=t^ITDSlc?Ipi|VpADt|+q+-?9;M~X|XJfzVwMgLoFwANrTw20m_O~v>LCeVTT zLQJrJLm71w69-NMW_4n6$%jH3@!NYuAf;KX3EM`59L2gD@f4S0@nV1otiLNZ-FK&( z>6m!AsuK|N)!ck)u-{Lu@EZZdZXyhztMZjvZFmGsOI9x`>mdKj)oVUzxMP)ib7{R9 rHGZnD`C#aX9`)N`+P|r@mKM88&+b`JJ4$ZpQL9+lwzzggrIY+W7kTm} diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts index fe4264ba8..389972f4c 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts @@ -839,27 +839,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Exporteren Defines the deviation of tessellation to the actual surface - + Defines the deviation of tessellation to the actual surface <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.qm index 45caa89bfabc266202b05d1beefcfcca3dadbd84..7556f8e1ae31b7003ba48a93529fc4b68a548283 100644 GIT binary patch delta 2897 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 delta 1661 zcmX9;dsIw$9RJL{-MRP9%)PU_o`n)ZvXf^eZBACJoD|Y&vFlZ)qM|a?lt#5gWzdx+ z)UusayQJ-S?$)f$vqT#fIf`SQRUZ3bWzSLe%iMoH=f1w*&*$^~e19!XOl1wTqp$l$ zz+opaVl^AVCYv&jaF4)C5jZd5;TC2D~5RJtkEn$m<0#Y>^$k z%!F?NuM?Q%kqxX`Vn@@LN}bA?Ng1o$BiIb3M`f5EU5+2l($9`%xO|9;Mj6rm`cojr zP35^G73jNCHQoI&pl(w|1*QQjI#p3yDgomXRZiGMVEhKf#P|=(R8&_(=+<4MdepKM z$iJuRO4$o!l&YSDI}$!uZZab+er3#@XW_tv<;;RtRBa2GrJFN>q`#T?@Q1*pYfMg_ z6A=4`$sKi`W2<-sd|1t#>*@lgsF_RC{sq>KV1CVU26T-~ zYc0`OW3uDAKbh9Q+<;s)^E|W`Q5bfY~pfj#ev>7sJ}tkPgX@Z3=r$HYBsnuMZNTQ*6tt<7AtSeIgODv^?b= z>&)a{Q+il~B{j&QWzHU&z#cosyE}B{R|7*M9iH?$04~iOcV!oln#bu5Zv{5Sazo-5 z5O#B}v-eV0aPC)$-RcrMu5;l$g*(93XwI*CKG|dDg7y7?%}2R7_uGKxC70CL32X}B za*s7&5mKVK{QHZ6#DiQxECY;IbGyVG!1DpO--F~QiCnp-8St&=%Aal`?6G4?7guqr z7g%|btLcrSg1foKr7wVJC$4o+1T~COByN19aWX|y5Y@4n^}t7^>Xj#WN=~~SS7xhM zX+wcQ)705j20+EDzxR;I+HUoUp#s1SP@n9xmT--_A$by6cby;9@CBLGrX1j$EeSJt zV-f|B-^r(0sP)83KI;axiRWfyCc+enUx%5EKwd+w!#?tdPlR2#PTnO7rMaVl!4X2~r7JY7I-#`J&Q&ye_yg9xVuC_C`Y#oeBZ;5* zMl=mhql8`**IlyF>EJDzGl*yYTCpIVz6(1dmREgC3;0|-yq|10UKcCpKEiN}2^Q(_<#mDW%E*-q~WEtPT0O7#KBB8>J@6*_~RW6KTt2w0S-%VCqS2-X99( zH9(v1dz!pV(;nPOT8H=AF~dPywyljk@YbH~F#$u`wf{8GHYNpX-(DeV*={;WAniZ^z@$rG;E4Vsk7wW7YMWD-$t61HBPuisft6~!TEm>yiV`&2^ zs+9s~GysNP>GQ%MKp!S8+gL)Y)+%kyI78!^D(z;D1I{z0;)A3-@qtuvasn;3B-Ir5 zlFg2?`X*5wX_NK)&eQu4dDMk^AbqhM()f_1HOX^sO`)+~mRA+hea>5Xy^8}ZU?e%! z?G^24KRNBcqcmreoL=; MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Eksporter Defines the deviation of tessellation to the actual surface - + Definerer avvik for tessellasjon på selve overflaten <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellasjon</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definerer maksimum avik fra tessellert nett til overflate. Desto mindre verdi desto tregere fart på presentasjongjengivelse men penere utseende.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1392,7 +1392,7 @@ Maks=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.qm index 55a1aab6fc37fe762e9d76a1e68237dc03c4f04f..703cfa4bf74f4bbe7c87c289ca3e7313a3165312 100644 GIT binary patch delta 2952 zcmZux2~sCyNqK#on0#YHH7%dH22h-~Zn4e*bs> z>ci}xF0$(ejB5d;>w!@R0e&Ko{uBu91YS=BroIO(y8@(!0*lrFnKeLJbkoEH=9N%Y z4#h?wa)up9xazY@Vvrj9Jup)A+4vl?lrO#>=^;yj^3QyBxkmhe8OAQ{5YLg>SS{XT z!qc7O@!<*DJUA17*-1$qEUtCE29&fi5$jyQfXB?M!M6d~4aSgC1{8~oVZ|P@PnfEi zQ9#rrX2tMJKwYZ%8#Z~wS_^Z28o9@2GPgQ&frhor9mi&1wTZc#@gmtHVk`Ty`*k}z z>s|&B9m-}sq^z4Zv$^k70!vC+bH+^|wu!B(84S3}+3L|J$sT6+#?}ENME1y|Z9sJZ zd#v#m&~Fsme&-G_LC$u(@*_}np8c$97@+=|z0gcB+z)*A9g)58uTj8nx3c$VG{cRT z`b+q4+JVG!N!0I%@2z2yIMsOy_*Rl}eIM|0i^TLvFz{}S#C1dh_?ac^F02K%XeGyr zs1HqvTfD%3jRBw zyw5E>{S6GLJH=HWXakl$4CGGdeosW~;w}WvrSI>=d(v_4DOuNmSkpldMbD zW{)P4MLw`Cn@G##6B;QW`)@w^D{AtE>->Bd<&l^0xg!b7qRs$5Zy|}9ck^X#a>Nw# zOD@rdvV8FaZkT)Zc>enSoxpe{f1{qr+SJ8=IaUX(zt7*jyp7a2U!FQCg$C?XpWPlJ zpKZENd86dBj}`!HRC4QqCBX8j@(MK#@Pr%ks)ko7{XzK#TqF)5-(Eci7#b$u-f@-= z?PK|#tK?rhTHd<417f-?!R?Atgq$Hki9aa9|4h(SS&G;?65uj_MO+2>>v+Z7C)C1= z?<}q}^84 z)3ek3%q;(J$Uc^SMm3a?ufjp0C-+9t4I@ z*VOMI7Ai|MjUSB%oLe2Sis_Sd>bJtVqYv}Hf-BVD9vE9xlW=;PY=uMv=y zr?pLHfq-eW2QQVr27HW@OPo#_Q6K#9rc|e=($4#OF4JZ9nGy2m#Fq3Qs z-Nb+M^E>(#5cUhdDO);7Uw`z=YHJT7q`7`?)wj^iV)AS93_-CaS(;G9#Uu5((;*$BP+z2E?Cq76I6xZjx z6sAKa1UTp?zzjWIP7COngb4B!(VLZ`JzquMUCf+|lp|AolC2f@&4-QAT>&y#PEEdCKX$#XJ-mf0m`pTdxfHFf$yC;vB<7 zrnq^XA(0W+<@t;EjT&{P;BW|Lv)*a4S;ePDf02Kq=7mzhlwaUXjE#((Fd{iAqDUO~ zt3}HHI>mSM2GVBU9qkR6EaaK2fIUqK+;5{V?e(&OOeg)OmTUhjD+UiDt_8Dm<1v;BS4IZR!o}kZ2LcNySHVcwzplq!C9;~>w3DT>zMKp zsHo>asgVK~Dc|N1i`;WP$vl4_?7n@5=k|qSI?2FAg0P^N{vKg@TJY%9Bb*YiV4U={ z!P=L1;Pjqz^BzrK7kzb7o~si;b$ato@uKuhk`s=;oa*VGW1eEOTl7vxU#8K|Ws(v? vOW!WmV(E)jKO5T|nA$%*dI)HgdTBuzk>nZP|D{Re+Zg6!t9fYc0_A@IBq&b) delta 1661 zcmXX`dsK{h7=GrPzWL^x%QwiPViKZ^3egQAa_P9ou~}IwThc_O>r6GeNrf(->`Jcd zknEAsMzRWFL)tbROG=K-uG-C>b=-Eh?91$5&-wl4oA-U5=Y8Ja_jj1=^Gv}&=dFNM zA>ddAjB5sb(}B51fkX#j-Z)_MJz#k*piegYdrLgWFNy)YAL1j%reL1OOJJmEL9aE0 z?*Xq81n8*FCL0STt`ILuv`lUim`#c#=mWzySk4-=td(&pDRv(SCgZZ#20&J^3E zS|%?-?3KEjjDA+lOTMNFtok3HSas!901nYs-F;TT@HUoh+zlAhS=I3zAft>OrVj!# zr?CzT_X0c1S?4BV7ZYp2Bzx9P{($Zk?9__oWX}wCzUC8RAHaq?{|qR4*yx+jf$cZg z?9=u54DoZ>ypAe*v%24HFaw^_;$9e zx(|rVVa|tB%R?zvCsAeau44q8T2ChT6%}%UuDykbSEYNTj>$>~J~24wjv>jwMW#)yGUC>smRx`qgAsskoojnxckq zq0tmT&cr2|sP*JHF6}P0(N}N>K14`2iz^S+0z*WuZgwirFQ04G{!587aE~jF0238l zM+te9_Ye1E>~J8iLn94KDnId%?$b7lkuqOXgpt?XqJ(5m z3;iSenl_ovN_4GUqxk9Q}|GwFHjW1M~b9luoEA%lKAnD z__(1-lu#2N-%v-dg9~p+CZ74D_#H<2ZrODHSot@!fM@vQrDS_}C4XXRCq_b7!C#bB z0)ssHKCdCw^6i(nN%E977&cm@mb=2PHQUcRW7(x0yxDgLu4d*Td*?Jmb9hWDs#Og6rXF#++Rh? ztDQ2>=RA42Q+c?Mv^vhQplOKm=+1}a&1L1~-Z(&eUHMl%ZDTB}eBVgavhq~+dRKak zuBzrfm`r=}NEL9K;+k2g3iI-U=p%Qq&FWL_(iKyjV8O_1s!})FrKt5{oZQ!x*`jt) zrvQaUwg2pTV0^s#)1rB_$hXyBY&}4$)~L=&t|96b>OD*qV82jZa+s7y*Qv|SO$5R^ z)#jo;a;aXB-6N__c7kT#HTr$DFy?wKkh)G-aPuiidnzos?@eR9AVd_=Iol*8*jvE_ z##%^pd`;F~5R%@VqB+kOjKx%F%q8JuI}u13Aei-E5+SuvbvJ>Yx_-iiKmiCoFVsEu zp_l23aJ8%n5LRp0nbaV^L8Dw`4a9v#7)YqqXlj1}T>5L~>}#OBe5VQe;9*pmW?f0O r4LuHejrn7s?KN-0X#RuR!fCMW;^Iv2N~L0fZ>461CZICpV36WJ2e MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Export Defines the deviation of tessellation to the actual surface - + Definiuje odchylenie teselacji rzeczywistej powierzchni <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> <span style="font-weight:600;"> Tesselacja</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style="font-weight:400;"> Określa maksymalne odchylenie mozaikowych oczek siatki na powierzchni. Im jest mniejsza wartość tym mniejsza szybkość renderowania i ladniejszy wygląd.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1390,7 +1390,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Eksport diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.qm index 56317ad0db96c775fb429dcf829d19ac9b24fbb9..f3388a8838590954609ce952de6f026f3976fa40 100644 GIT binary patch delta 2958 zcmb7Fdr(tn7XRfYH_6T8rao&?^n&XHLBJOZDz05YK?E(@LT9UF;R2~iz&v+4<2?|kR` zo!|MLFHhQ-x~oiO|8d6v#U@}>2%wq{#DxPv7s)z+*}H(X8-Y1Nz=}S=!cw51u4Q_- zY(|iFF)()tLgQ_~)JU%_(qm5855NdtuMO`e`x6ksBQ|g~usp_V*PfFO$c8d&%B3zc zwUebsvfxya>k66f??(W2 zBJ()D6)ud}Ay?h&Bo6P&Co~Y>4FlwpwHGL$O`dq;ATU~xoBj|0Y}zQ#J0S<&7%8vp z-T>^lBR`c*b?`y*a|zFgj%o6)XN?3XT7L2A5u(p2f1oE|W$_BdK?17WudtmQ15CfB zSigV@2iYH39<-xA?J&Hf)R8vpiP+Xk9m3p<#Yd;#HxLo>2KaJkrk3xt2=S+6arWkb|gf$cZgX@?dPfs5G~ z!vLy}V@&~n1+=@^WoPdp6$F=xkb;Z1fQ?DwD&2O?g^J37zs2*a29C=Flanydyg<`wsOuP`6TExF6YcCx@2~6 z1AY4Sq3J==-<+*)q$g4;9^V*|L8%2wdb*<8<*K}33yhB>)` zNHu6ig9CO(Xnx&82M;uB=G?K;gcNygSea%~6LC8CD@~R@h7>1gY%O%7HJsC|ETDs$ zmT8)gkzm5BH0P??Ng&fT&kLxaHP5xGTSUT;XIhuT)Q#(iD~1U%HHDru>v zSex!c98{{crBh_2pW)il?<5krs4a^)PP|*Rjhl#*kte*i;<0vD#Wmvaxwiee6A#deX#r31Q*DN`V6)P6oSKDrHoHK32z z7T(is51|2EQ71*IBVE$>`my?tfW~-z)T|C_?Ld7})f~DXD)h#cJ83@4_3M|PAm~^0 zo0%g7p-W%aNGz=6^v$1+2b`DmEmb|l=1yMu7lInFkvD8RO=FkNkNRU9P!Yk8PiBGG z@qFCbTU25@KmSTN{U40umsZ`PHf=u6=ME!0jL7GWcuI7a^7;QhNV>@43v1j7gZbZI zCm>~C@hxT%FkIq~T+XGNRNy~LY#MB_k9Ot8*hb-7(gbAtAkdzQ=cev&DO6~8w9Z)tdq57wnLY18zgV?X78@NX zP=r7b+&Q!8IyDg}qX(EkJ~t@$N@j0PcdQZF^tItWo#c);B3K%lGFZB2@nhspNoW09 zYItvn#3%Xd7K(PeXf_)irYx%zn^dpK6-^nLj)<_(Q0Yn1>Yu;rlYCthLqn(fN6r${ zO;*t^I5I`SV$3sHoE9NX%rSYg2wCZ#1;>lbVwzwP?U{lj%j35@ZRy5TF<4kgyX_XE z*(};T3pqx!Qxr_zw03h=Zm-`aTGQy!o-K<0X@b$3=83kNQhV2p+1aAeX0)b?g3%^Q zQ!|IUgn4w}Y^NzAVwO20QFJ&=)(m@$B|FRJh{|*S%H%YC*8kaWclX@{zebaZWPz08 zBm9wzD+6k-+CAw?`cC~hZ?E$8f-CC63!aRr4yVy9^wLGwC|<9s{)i%tW*a?v za1bny3SWXydI@;_d_f+T{`(C0#tod;+ka1sUl#TH>HQJyL27|fS~9}VrE|AVh|aQE zj1K$jr%_OsEH8^>ESCRgtAN8Vwzd|>h;yTZ5kvX1U!{=x>sEv4X7|;V7n`B?YHX~R L&bGlB_%?Gh>;F9;8$*J?NGzH@)bd z8syzrr146VM@BI*8kK3nGV)%=8VYN$7_-)t`I>wF+3UQ%Z}0u>?^k}Cc~#GBbuwfF z4kf@yFTkS>nA`!(H~^%-1!j5x$!mdm`9LD7g98+P-r*_0Cqeih*Q8?Rgg1cuAUg)M z6Mg^!CCoBz0FsW|F=MQJUZH2!zLxJ16o$y%3eTx=Z8&+6ejZSXUn;0*Y$EQzp9ZX0 zsPNjF2K0NUm}+uW z4bd>U*fH}F)Bcw`P_&wP8D4{ExbJ59XP3ykr>yTj@>d?t`l+wc2d!-6gJZy`A#D6l z24Le`Hm!~YJ{rMpZ7&A4zGWL$kq*g&ZJzTUh_7H<-|r_vN7%M^wPf2Jwo6OIvVM^7 zv3jO>n%vELn%6INXp7iR6L@LIRRs>61;>G5yhB%y12A+Y$F-CK>#I1;q0PXi(cGYf zD8dHLZT1f8TFe=)5xdpicFg#|c?q|HEibu=$LEnfm$*<}KVt99#T$MH)CaiatIvRf zT+Vu;5nmw9$Q3+X45WH-g>eip`aV}GS^!@ix64TKO-H$dUKv2p2=3tXT*6p8rk&s_ z&-4&+N3Oajo(kUOt}b~4#07Hg1LgyTmt`$Cc45qTil!hdiW&;}s+^ zkAGNB9u@z}KN>v*u-5ZkxAp*jXN8$lf@xc#>{#X`%#D9Z8|Eg=t&gLmmI#R_a^Q=M zcp+002uunQEW4&sW2;b#>wr(8u-7^Y&{qq4n_6gC7U6IQJ-1wuS1NAs?0COt0@#rfT&%k_@9bP<)&yb@!KK|ookxKbt^&OTzwLgJ^| zE}90WQ$kb4HBAk4I_wrR))7yelUSHZ-$iZ{4_19gtK=;n+C{c6{~#Wo`vk)<#vqe956grM=MEkUY9z?m9$wB)%pGkI<>SK~TQi`}0Kx5q|t+3I3{$OeCUp3?XCiGX>cRGqL4&|Q~mZ_ufput_=>DFKV`NevGI z=}7aIE>&Km_kDHT6l!3*pi_rC0&8;#BMF^#y81r=&mvvO&L+xBoi3`^!<2B{H|1ws t=+KDJRrdyZRkQBzSek$T7x6UMHu+p`a7};J_Q^G&3sOI;ajdYa{sX!Y_FVt~ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.ts index 4919fd1db..2b1f49830 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.ts @@ -838,27 +838,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + Formatos de malha Export - + Exportação Defines the deviation of tessellation to the actual surface - + Define o desvio de mosaico em relação a superfície real <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Mosaico</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Define o desvio máximo da malha mosaico em relação a superfície. O menor o valor, menor será a velocidade e melhor a aparência.</span> </p></body></html> Maximum mesh deviation - + Desvio máximo da malha mm - + mm @@ -1392,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + Importação e exportação diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-PT.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-PT.qm index 7887f5d7db4392375f90d07030160c48b0139adc..b6efa6f486ae911a1f7b06a00ab4d692db368fa0 100644 GIT binary patch delta 2931 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 MeshGui::DlgSettingsImportExport Mesh Formats - + Formatos de malha Export - + Exportar Defines the deviation of tessellation to the actual surface - + Define o desvio do mosaico em relação à superfície real <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Define o desvio máximo da malha em relação à superfície. Valores mais pequenos significam tempo de processamento maior e aparência melhor.</span></p></body></html> Maximum mesh deviation - + Desvio máximo da malha mm - + mm @@ -1348,7 +1348,7 @@ Max=<%4,%5,%6> Alias Mesh - Alias Mesh + Nome alternativo da Malha Object File Format @@ -1392,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + Importar/Exportar diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.qm index bbb522cfb2c9338a504dc3ef1e7c880b1f66eceb..9bc89da852c078752d25bb169ba864be5f8065d0 100644 GIT binary patch delta 2950 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 MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Export Defines the deviation of tessellation to the actual surface - + Definește deviația tessellatiei pe suprafața actuală <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defineste deviatia maxima a retelei tinta fata de suprafata. Cu cat aceasta valoare este mai mica cu atat scade viteza de redare si creste calitatea imaginii</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.qm index 7ff9a44f05bcbd285b4511f4dce41ac27244ac46..af90183f6f37b4517c2197c7649e9daa9bb69238 100644 GIT binary patch delta 2863 zcmZuy2~X z644-9jzLowN{v(l6d_98;(B6|M$Hk^3T~%K)tnr$ml;J9JMX-A-@E@^zWd$#|I>P$ z`Q<88J|wUiV7CHZEr56i5Ptxec!A`dQdfM4-q7q?Q2%hZ|>v38E&--vj1- zhslXnAiTsSR|X(16p^85kUSEX07)ZRQ@z(e@GQD&c+;jTnnu8 zWZD{T18#myXHO3>y_V^U`Y*8R8gsGK15iz7E;SL1l3tfwTg_a0I3D=u0dqgG2@Z^R z6N>M2lH(BJ)H>q3)+U@LKTkjw2vcqx1iTLl4JUko@>pU1F(EK$jj;UEW?*NQuq~VF zP#qSYNqRzbgbL3+*-d~lgclwiA^MgIdzA#NER|&s5>U}Y*4i=wnBm2)Po@Hb-(t&} z{aH$MlD{qVcdQ@8ewkZIJ*{LfEcl3eRqv9^3)r3whX79#+uKLxW54IPvt+maO-}L2 zdSGh?H`2<4&jlNJM*g(hZwCg~Wk0>*khFbEi zD66;?7&2P)!DnJ1?p%j(3Q(9&uO$#S@l^BfF`{-}Q=!J#UJ229GlX`HxBKgTK_4&Swm#i{89Y<1PxHpBkujGmZs575*Hmy8|<=6 z)}=|34fiRoQj*-71#AwMm=CW2*36YGQ-lK%W=ZMJ7~*8Qq!O2b!26P2YkdHZc*(A= zv(&UU$-Zw$za?4Hvat*NJW-e&G_f z#${x;c#?GQ{y)*qvr0eNN!;gFOZO$;rX4Y{UD_gQ0*3iX`$F9bq_>P|*-WI$Wj>J7 zg#A@EvyT$LkuHn-!3_8)T{8Gf*}^@8!h}nDccoZLYJ5dFN=xE0PpTLPNpJBx6VL^@`1YRiK|s7Cuw# z44@5I^pKC0L^>+Ul#`T2RNY=>?5qxI?Q-Q?6>)Sv+)-*vYH5EqDAzAPM$i{2w=qWm z%|d0(Zeqbz-WYH7tSYE#t=Ro)oF!^~0TkAFlPT%{`b`5?_jifUOE1@!4ueR`dM zl-*P{8ubLsPj%!<9-X9-s^cjt;DcyY+l_EK_})=eg<+f2ex)jxL(7W_4Oe=U75IOZ|RLGbL_UH}-FW<;T^Jm(aWnyJ`S-4{NHC z`b9CKo+izbqXND>p_MO>pEWEMdirOv(bGtm7Iqk5fteqr8{VXu?jj1S@yvLw7QanvFcIpvd+2|09YkU^nx>3bj)=`6^kryW_e)-QjXQcqqQ^6uAX zIV~)FVDfN>KfR|u_p;Ht)(KJ%tJB66E!U~daYif4q3d_&ixS6jS_-4*N9bkdDaWMA z(B~SQaWs}p=Ysu3Y<-5tq_<^h>=viqmSfG->h%7aRPwf&v__-e>Riax8guj-gDb4f zXvur7x9ZIq^lHo2>pe3xT62ce+HBB0U)N@5>$O&`S*O=%t$O}OriVboH`<4I%{66P ztoGRa{-;1ln=gy?V58WXY%m){_jERio-zE6s^Q~e=q;Kqmv%NA%7#M2hSMF*PG%$6 zNH&b`o950B3Y11qf3^Hym;It-qVq+$TAe*dYt%fin$AWz!3DntPQ^}Q!zo=9C7a2{ zNcv9;QUC2KV8B!Nn&(6${AQ3}j^k@1JrMVegy)@eHfNxYfjqIV<#DGxFUEW}ji=Q) z)^^wiVk#2)8$H`%HEHd(fk@u3MPiB4hygFgWE!wlylUIj9`_(-Fgv)vG1Q7#)QT`_ lTYS@r4J*Y#qgZze^PDaOunGT{KBX(*Bo~WKQ~3?D{{g+?Hva$s delta 1685 zcmX9;c~BE)9DUia*=#o1RKZcOB8nG=f(mkJvEqdX3XP6htz)GEkxLNdlyC?Fq5=yZ zs3_J!&{m`jiddi&Y$+gvC_~jMI^tBoI#ye?qd zE*UV(1E$ph_MO0j8Njl$K%6IXL#^- z5wK&P%rQ3>81uKx%kC+_mCF2=!~q6D=AT(k7$Hkr;{-U3NYRYvBj7vew{FeIqy;k*zRI#-xLE0+n9#3CxE$*X&x8=<`pw73;qFO$1yk4tO0Qr z(^W+@qI4#V?_s)LOa=B2Fwa+4!5>r24H4T@ zAl;W+GdYdYklewT=xf&Ldz4O~&xGMu%?9>Y0Fy(_28YdnNsm~zy#Po&%&O020ejD~ z6GAou>F(?#pJTwm_pDt9vD>x7gz*ztN97$_-@wkVSWEU?W|wQnkh~n$VD}p!^sy1G z{XkYPyYEsHHX%mO?ti!ihzw+Nf*4?C6kEWj0ds=c6FQO~RmYY(#si;*u%*w^39C&Q z^MEa@87AT~wsP12WIMC1TVIjP_iWerbu`dc(y+7F2h62tD(@+RlIj7A35p$;IUv~C zgrW6{U|}^d!AX&N-T{!AE56l6!+ex}^+A->Xl2-? z6gVL+OPQed0Op4&(@uEN-~?p>ZUM8OD^KmCdRnhko@!|)JtNBUyR@E~Cxt3JjlqBM zx;9EkrYG<43-ML2;av(TQL&qN*92P6GVtq$NS9R||MeHNjmD1;(0KwzzZlrKI14OJ(>r}PnHxk)W)lfWJtDtwha+d~YgpzviptVyfCxO;%zpQ9q(N%v1w5>oi3rq&%`*Q+8zz z6`Rvk<`0w2=AxpTsM^_z+T+*hcZE3p=X$`nTU^!pm?V!9eS6&LSgXb0e0t8@BgRZL zgAvR!F?Q-}>L@S9{dBQ>WF;tf%@tR%)zDyAt zdOhf7+AKDgbpYBVExV8g MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Экспорт Defines the deviation of tessellation to the actual surface - + Определяет отклонение тесселяции к самой поверхности <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + мм @@ -1364,7 +1364,7 @@ Max=<%4,%5,%6> All Files - All Files + Все файлы X3D Extensible 3D @@ -1392,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + Импорт/экспорт diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.qm index f4a62f75484121e635961bee26d643e86dc8afff..4a78fb09388fe0fc242a32649ee0ab54c5fe72bc 100644 GIT binary patch delta 2975 zcmaJ?3s_V4760WXH_6S@wWtV+5w#*Hs3-yoRx1ch6bEi)vq}mViROWM0b-4a6?v%0 z1*d>oX+K2UY8kUKJ8%x%n6FxA>#D1^Q@e_@pPgUTeJi+=1S6f@$d{aZ&;LAr=XcKe zbM@Cu(}zs8-_&+MvI7`*1dzo6$!`ObE|B~ZSnw85IuuBn1gyOaWK;kJ8Le?KqB)b4 z%SnF~Qx;i)XuDUs_9H3kJ`mjCl~Mg99|JREkrK8MC<^q-(jN=&ih`IDf8iX7TD@>r z6rN%Y!mmz}^N7FUPfZjw{}Qe}dI_)}5JglM0)9@>yop~C$RVQagd)IJEXv+;kmMJl z(#4U$)DF>>(U$-rM0kaX53X{F&MzeO#Ob127qWo*4WeG#ZlIz}bSHfT$xnn1<^@+u z5R-N{9hi2A$$UUjcUqXN&FcZzXN)oZ1~4OxDXj7jB8eU7JHBA3AHPr?rv`X}hRb%Liniq_>i0Lsu@j(@*B3`&jlY*=@G6 zssrV~wwKva#!Qm8*)gfR30Dz2@jT&w?G3NoG@Ol)e+vBaDm(i~2F;H@o2(s5^#!tq ziGKkU{p_04w~-B@i7k7t3n)ovD?eWjtgBm;{&WyxRJmiB(2(8RX(8)yz5vZu4|6A{(y#lWRN?OEZjWU4DM^BNErAkCdY zLoJ^y&0F6IJl85+^}Y;nIK8q^Cta;v1O!$}Hy#QHM4a@UFby@~mh^p{9AHzW$DX&7 zY?gLerxVF1WPx4Fh_ohIObf*mC(7b)QjtT-WGf0Oj=WixHI}dxhx*HM*U&J_j>(E# zq=@`RR&t3P3d)3c*&tU%n(X?KCaSeo_IW*#wez&>i%=b~{k-hX<-Nf4tMa6|3AA9B zy>gF8zQph~EoYs4NoO8VIbLpluY{JiOkS*t1!A-0rH%6_{8f1^{tQGk$@i6o03!wY zzMiwxv?KC^S4dwKBk!o{fsi7NaXII3VP|Ndc3j}X|47i3E4ipT8o-Ue;AR$+zUBtE zw2w*{F`Uc!ImJ@NaJgaez@AvnB&-L9ZR4yzBaGa4oMU7W4fHC`*>i#}83VU=9bv6k zb5+G;x2%tAKJ+GSUNm>0k+`>~atD{(qKydM&UHxJfT3@4{n7peGEl*EYy+6viV$$X z?kL5J{gl|RSCRCknKtC#UKzPVv9yUeP5z0(qE4oX8>z6i(v8;ekz&JIO0=g$(b7%> z6V$Ol8I21sd{M%F5W^kbZ@7{|@40+&r%=zo&d_>lNZ^sq$o>0|*LM{l3ys9Nyp3|g+6s+4myj^^!a z1f=YNrq##;nsb_?mkMadPHR3$*8q8AH7Bme(#5w>)7^5O&c|ulxs;&(m{z&yd0@jq zlIbL4wc5^`K-e8^VnYuw++Um7)jfuY=+?ek-%dBq9Br#-3F5R5SJJ!;TWp|apAsq^ zFSUKfU75{Dd)vNAbTGoEmnU7+`@}IJ_*ZO_$;)5{4vcgx@BsgiliY zea~Bxrwc(za#t|oF`ry>$;nL81|0>+qbD6q6s(Z+COGJ;Lk?-3^zKVRItzI|^{{&) z42Hs!mphU>a-PT1GRWTMqR>_fp{Ki&M>rj23?#RC(z`3-$>M1WC)paw%MH-*J-9Z~ zTTt*{_Evf~d!W0c*pN@}UQl|{&vK)CQm>f;x?v1XrzZ!ui=MP@2lu(o^TrGJvf@OJ zwiW5IBB3QCSe3!sY`oE^w;L>G;bz7@bpdZ!nP-oUnlfcpaJ-Oa3=leBLn$)8`H|U!H_#^7vDpC##j{ zLFryvJ8Zs~s#N!+BwDN{z1`-EG~t;@652PD&xR3zDY=AeqbuXu;$k RBuVXco9yMP?e=!7;y>b{NW=gD delta 1661 zcmX9;dr(w$7(IKJyLazC?rMq(>MDvNtb&O0QfcrBhJb<*={Oh)EH7mRwInad4RCD}Qy8CV#%4)h0NpyymkeEx z0QM(Io@_q|WVK3$Lu`O-g?N*hXiSP~6;9ddPRWKJ`RRd{dOh^3?F#0Of{p1PYRmAjs_%D#+$NZG11yln} ze>2fYI$*&x3Df`23}9b8^E9v-k(fS3%02F;A7xUvugKqGmDEGoM<1M*hTJ;^%&3;? zFFFFd;-qO8q=06&w6wn%C>)e_Y$F}&kEK_GUXu-TrPp595TRb_^_MMVTY_|0O~f)9 z#5+PaC@c&f>2*lYz%8DZJpav;5qRUJ10IYsQ` z_;4V1GHbW`Aa#vp9s7vgwi_1Q@e%7HzYP@hvWpr+DGdRvzs8!_t606`uYkhLCS7?9 z>=oJk(_L7Ph|7bLTr?Vq>~$Zr$XtZP`*0*a=5jw~j-9r&P07JG&RVj3(M z7b=TW1_BccWw{N`fP|Nw)CnZgMs{YZ9AH<=&W=eYtdn&a=96_VxQSgG$gE$)!>rbr zxRHxWq5yJdxpX77c6-L<+@LnGtz7l{2sznt4N+QP{0P^vEE^cLkQ>y#rNr&#?lsnu z#B%O_C3$3O<$iOT3gj`|@U3cK{-E5?cR6j#Een=Bm#@)31rjdH*R;n_Qp4qmr*q(j z)K+<>${X;Gkmpq`AulxYa{LUq)XI{=MPvP2h%2M}J^sRuDONCo z@fFf$yd-P0g!DJ3fC()^X2ttLCxx%?5`j!7p(%a~AY2n#ZtS3SF$=9B0Y@Bk(1gGDF!8nKv&wTe sbZE@gH2ojwB+aX6n*X>UJq`AZSdzQ6*;+BMsJS&{seiNY;Z2JF0JC%SVgLXD diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.ts index b38a3fddf..60ce12da0 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.ts @@ -839,27 +839,27 @@ Najprv spustite príkaz na opravu záhybov MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Export Defines the deviation of tessellation to the actual surface - + Defines the deviation of tessellation to the actual surface <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sl.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sl.qm index e5b0acb1d4268a6bcc28c2418d71122a3f6fae55..914a5c93714db87cc4daa9268b933a404e0ffd0d 100644 GIT binary patch delta 2839 zcmah}Yfx0@8Gg>$J-d7Ma<++=D0n%LdIeWdL@tV#fC3{bg40l|bpr=k+zak5xPZDS zDhP_g(Nu+Ey^Nx%7od8QI77%`wa4Rr#AFw)weuo2|$3SKkP`Iyoax60? zT(^ks*CArI6PVZ#z?B~(Ir=*wG%|qECc+rIfa5Y)BG z4;fQx!6h6&OU?ru@#j4h)KP`o&)x!DBbc#UJV4(VX8Ndq0IJ(ec2Y6m?8jtR9wc-z z<#WaZk!GfH=yjlWt-O#;2(7x$bk3sVk)Ja6t}X_)cQIYA9YEzB=0V0lV1r3+Wrur{ zJJ`7oGk|f?Y}ONsy7ei$c>OA1m5#M$+y$b_+48C&!2LB_G2#NXAI2Vv-UftBWKTbB z1j-xPGfnq^*Q(j`U0p!TAJ~gih^n%w?8oIp0R1ucS__r2Vsik?gV}5U8V1OZ*>7gI zz>Clm3ibW-b zFs@Nqb;_iqL?6oc6ejOlkMb`?zL_T|ug=|0vsx2CPd{Z>^-(|^tbEW-=0htuu7m8> zwsHCc8-R`HxWU#eU{e+slD32DdW{>^N%fZ=58#?4Zmi~W;N4~1q@$TcU_O^(>_-G_ z<}9N=1GJxU%P!qVHfp=Miev47x0I{?Vi8bsl-roc0wb<+TlsQe>_=Qf7!kB`Ah&;P z2{n?>?f-fm;eh~_DY>Ro-9XV{uDRO+)Map&7Jmm6By!h+=TpKc`Jpn>J0t5hFiBM9 zP9RZhcvar2HsE!KD*t^oY3=&}7Uip!>ShDMv8pwPOaT6)`hA!{&8Dl~7c~GkRCThC zo3KpP?u-J~>(s&RzarAksbiZco`}Q7?XzYAFsMpw3-JVphxQ zVlN$x&sML#P7Z}P<-^<%Z)KDE&e1(UM4bAIokZ5QdFsE77J-@=^@E#@q{c{1^0Xvc zFk1lYZJKn;H?*94HR)}6BX}ZaL^fnS;**bn=DV^8O z z>-K7XV=37!_$R;r&|ccxPX0gxaqqmrA56bT8!`F~zE#x%^pp7Rm;pq(SIf560Bo~% zBzRI-hjwZ=CGNXNoBWlXHl!keFt1 zC+#lO{m?-z)NIfXwVEg;tDpJ#1X`}O`qV3=@lA*IOJZUmYc(N3HBa<4VcST12w>5D zeZyENjo)eS0j_$I+ve}V4j3L`#j11h!(+F>SF4%ZE}utWNL@dqN97Kq&tA5z>WADBb1@7$v-Sn+jP! zU1+vS^l^-OM-nPxCsNX$(F2g$kyS{5l%O@AK3@&@+h90Yy(yz zeU;Fcg?xN5Dc2wZD}^fXrw$k_@t@?tBpXu(%IoKau!_Q#gY)7T`P+<8eWv7cNmi@b zZE@ITQ|2yNooSF4Ee(>zw4*$8U(3xw_mP}$MdAn?8t5tIPFN)08LP@j)!n&-EmHoo0KsB$}O){4je6Bgzp4eZ48R0*BL`(!~o2v#d47BEf|9o!k(|*0EU3mm;f^^zpbgz{uj|8B$5CC delta 1661 zcmXX`Yg7~k7`;2o?Ck99&T5JZ$U{v5Q4o29Qa(`dC~9avveJ;1<)J)W1$iv63J8eG zXeJn$L78W58StjGiOGpd99WIi)O69Au5{D<-HBG~&mFwxzN z-mZkN0PiR)a>)Xsu9?xmOARtRCZSd8CdgJwgEH5-8{fv+i}bTq8NNG4MZ?G7{=hsy zS0i)VmjsOVmCbej1yJ0Vg$E@A5#_S*+>?Z_WTvGafcpl?zywZAH^|x-)1%XESx?7$ zpukJkn|K&Vjh6L=SrOJtx0or$S*w|4zl8xay_q%rR4sQdvpzc=h(E-{ggpj4O^hke z8i-6{avU!co@c7O4+0Z>nEDrG!1k$3Q)Le@GM~BB+Y9)9!L+>b7m(P-TsPSP>N8Ad z4bh0RG2^xhrt|m7K+c=Y)6g1(V`8nGdvb|>oF@19nEWm1koySj^g+Hn?7=Bu@(j8D z8)v}iBTuTA1LA;uUuPkZ*DP;}BOMx7`PHQZB;QGXZJ?Y8>Es>#wPahGyiY^Kk{3wb zayuq>q%|rM?IZR#GvCi$pZcCsU4cA#WO%74K4nk1?Ew6v*b~3*BCIfD;y$*r zZiu4e$5s#NsbCq~y8b!I>|i@>R#HQwq+#7x>AWbKN?s9}-Uz(5MGsgCD;mm3Zdg<_l8jyQL}oiKVPtPf#%pg#c5nasp2U#!5>#E4MA05HjbbDxrEdHOW?G?4V+My;YTUlmo9` z)zzYlH1`pz!5u_8ah`O9vojXv2#dci2B!21;R=$R^+?cJleV^uPZxO*AY2?Y0Jdj^KbmP96EnsJ>DK01Fo6|Iv=Vt;N8#L8L zL*!D5sJKN`r|c26C6}rE52E9@jX;WnxVZH(Nh=YT-SMNbCX3NU^lW-5Znw995sV-v zP41^14HuJNo}xJ?iYW(&3wes4-6sOc?P7II1YMS+V(rcCv@WgUg)k9VyH{*_;7^w+ zLA+GiPM4-%%g&(&1u MeshGui::DlgSettingsImportExport Mesh Formats - + Oblike mrež Export - + Export Defines the deviation of tessellation to the actual surface - + Določa odstopanje teselacije od dejanske površine <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Teselacija</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Določa največje odstopanje teselirane mreže od površine. Manjša kot je vrednost, manjša je hitrost izrisa in lepši izgled.</span></p></body></html> Maximum mesh deviation - + Največje odstopanje mreže mm - + mm @@ -1393,7 +1393,7 @@ Najv. = <%4,%5,%6> Import-Export - + Uvozi-Izvozi diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sr.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sr.qm index 9683e378ace7de06ddbbabb19dca3a7b5fe46799..eabd5aa658ceae8494bac7646ca9fbddf7bdd11c 100644 GIT binary patch delta 3052 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 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sr.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sr.ts index ac84908b2..4e1b73763 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sr.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sr.ts @@ -839,27 +839,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Извези Defines the deviation of tessellation to the actual surface - + Defines the deviation of tessellation to the actual surface <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + мм @@ -1341,7 +1341,7 @@ Max=<%4,%5,%6> ASCII STL - ASCII STL + ASCII STL Binary Mesh @@ -1373,7 +1373,7 @@ Max=<%4,%5,%6> VRML V2.0 - VRML V2.0 + VRML V2.0 Compressed VRML 2.0 @@ -1389,11 +1389,11 @@ Max=<%4,%5,%6> [Points: %1, Edges: %2, Faces: %3] - [Points: %1, Edges: %2, Faces: %3] + [Тачке: %1, Рубови: %2, Површи: %3] Import-Export - + Увези-Извези diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.qm index 9acba16634309da0eb306cb48684c8f8f0438127..1d0081d4aae5bcbfff64bdb6861cc46cb9d2f481 100644 GIT binary patch delta 2925 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 ps~!q;_;cOc5IX MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Exportera Defines the deviation of tessellation to the actual surface - + Definierar tesseleringens avvikelse till det egentliga ytan <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mosaik</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definierar den maximala avvikelsen mellan mosaiknätet och ytan. Ju mindre värde, desto långsammare beräkningshastighet men bättre utseende.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1392,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + Importera/Exportera diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.qm index 03c86b9b8b44fb716c8767d9d6c6d1e563256641..0e08aadfae74b67ad0ddec4da455f95ab7313049 100644 GIT binary patch delta 2877 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 MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Export Defines the deviation of tessellation to the actual surface - + Defines the deviation of tessellation to the actual surface <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.qm index bd7fc556b805381ba7a8fa40ea58ad6e5ca7f508..f59e2adf95cbd6392326650b69424bba0b67349c 100644 GIT binary patch delta 3011 zcma)7dsGzX760w*%)WQlsQ6Y^d>{{jpaKE{QV}Jr$^nhEiE#r1Y~2O2yS$YJ5k)i< z8GIpXpgs^Ak)lFv5e+1zzGG}m(jGN6wvCoFO&UYaiKKT~L7Vmuch1b6x!-s1{oUVp z@7;@?O!-Gl_2?Hn0Cor9`4EsV01PhxzSl{{1F?sI&F#PvU!d3kBvk^1@3bzMFNyS3 zuL0s0B4C*n2>XjmmQBQxps#@$w_GyRPVxsJ^d#bZHUjHyF1fi+d|NVw*>ps_LSj$5 z*eCIe%c;e$FOc!1HTXj#IkiXOcK=U+{K*pk>U>~Kvn1N+YD%@`Zy9>ovnFx>S!;-7v6GqU zFl=I0^d$m8-c0f%@>+MFS-ZIyDEk>>PP_+%v@>Ou6DVyJv&HjWl1rK9pq;?<516yx z9snu^n69S#z^GQH=fMMD0mJl0egl*@Gw+v80r)EBMjOE>z2lM!aB ztEFApl!uO&URvG{nrxqS)Fmo4Jqt{Z7smG!|cNW+CELnahGXd zWjLofx)rFY;U=4t0nwA2YS;_Z|BLgwO884hxa5{L&R_8{>0jc)Tat*t3T~;+jR@Gm znY=y%G~V1B7e7Y|cK35zPId#E?s41ht^rEa-1ZCx@Tuc!m1V%3{an2d5wy|79q})u zMBd|${G%L*baTn_Y_6$e04Vws*E(PV_87Q}YriHU2Dlp&S5iPp94m>$bNoC4ivC1SyU}sr(On3@se$9_5&n3*{^(fO4eO=My~+4_hs#) z?0_s<)@_|jBp;Sf?0$tv`(8f3iTp`7$s<0aBu6I8U&|*y$`bk7X@sSC(>QtB8&u2+ zqrAXDir@ly=}j^y{6>76o8qXl%I~x^0&^AeyLCj?z9{*p-g=;xmp{C9fT}TBv1DNk zFmsekHW(ENrZ0dE-zgH#WdOg3Rb-wl1-5u8iZr2AjUOt?>Z6GhgQ6B65QpB1gIi_+ z?um+ny_YGUKE<(5NMHS$qH}vM#5mb}M?tsJ=Mojvt`SPV-xD;As0`Xk1z6sv3@#%5 z?l9%b$CSdveah6Ik}qwGGR-FfXsB0O#A0CFU8VJ9!l-7HIg<*gpns>#?d_r=b4^*e zp0FNRr`%pd`__ueBhA00zCEQpT2I{PT~Z!PxKAB1yHD9EYXio9svHOzM<7?Kn9eF9 zb(CrrlvMeLR8a#IcwUs8?Thmk}g%qga znyRUT3MSM~b*bh8CDNsOTu2F(yQ}5*h=j=3us2-!P43SXHT~b&6O{5wEYq^pFsUD#g?ZwO2J&K084_ zms~$yQ}0g=SbSZKQA9YzQ`*_u4U}D@HfB*b5ZJ6;U9$vu!Jsvk9H9QJ)NWmWmY|nv zcQL04LY}s+fmkRpXq(ytXSd#7 z4)~Kyq)FVN)1CVa@Q=|g-q#C^&(?E({-=cb!Onej9nVk_RIVNCAGdlJvxr4HgHfoyY~+@-#&5pf-oJdV*qmX2nK( zvyk_r{Z{(U9E9%lVna54yFeKS^-n!#l0PSmp=c68>`EM~)KfsG6F(wuytqHrLz2^W zJ~dP#o=6 zcgzh42=jfr87Q_7Qd zV|KP+v>G#01ijHJh_M+{g7pRp7@K1X4P9hTPZaESQ)aqtsU;WTz6 z8^Q*&3)lcQmhL1myJoy2nw`fkq-!1<#x7?Uv#Z#bp=al^5%dgTL)mDu2_&0{L4732 zK-wF{#*l86!Z{mcbca35(SLI@#0xP$#ECJ*o?|rYozysp8=Aa$z7%-YjUX*#oiL)< z=;81(SDMf7$QK4G8EPEIaOXU&|NrTs;W%RqPmX`^gopEd{`gSmJMgahn+AM%k!DG&58?*n>&e>k@*u=F`Ewf|FNufmDFq( L*=q=&Dw!C_1+x zm1QI`x$?dx7S<|ndAG;=JYJH=c)aadZC|_RpU-oC&pF@U=kxh~zTezyOlu>vu8-R) zz-~R@+6fFh4+ItileYos?||T8KvD@Xvk*wIvj&Y;_(oUhu@ zZyDjgfZtw(cw_@h4%pCSkQ)_xCiRhglb~q7+^z7O5OW3lPSDQ-=HvIRRCG}`ZoT~+ zi2X`oSeFKTSf`la_6Xn)Di#K%1B<697Ovh&xJ!{U%?lV6Ag3_?ALl$&oSjOq!)g={ z&MyGgpHnWyZxEc$x|CiU7RbnaI~vZS6f~L0%@XypoBFxDWUq zVsZ){f%vIRzUwK%BBsu}4EW?CbM#FWup*FYs(k?1TbYwjo&e(*rX}DNkoJ_hkfR5r zVy2^kXrwsVFr$&_cCj1R+qAcU@i2SlZ8Z@xvFBeOAlv?8JGDeC zbEABd)iZ0YayRQ~Ug>RjK71o};H?c4x7$4_st1N_x9jY&BV;+Q-2$x4^t&&WB2ZURc4ac*ac-Le@rG`->s!gV?i=El~~Bzs!9DZ0KSub4BsT>~`kTvF>} zpzsx!zqc84k><=5-I)(84dvFvFn~unXAyG%uS%}MgXE{|;%W>g!2dK?^E4L-=xf8Y zeO&F~9wI)Fv-TK)q7bfi!Al?}kn89_i!OANwcKa3qeoFRg)U`G<}sj8y>jtE9*CP{ z!-NiHtU3(PyD78lJOPDHx!Xe`kx|Nng9U)Qpgd&13{Xx`HYblH>mKs`o4*7S{pCtd zZ%#VRM<-DLg(yDVOjrA)^I4bZngk!d>V1TUoB6tEJ>Y2MnMKyEB(#!oaoU; z2`QK%dj3XyHL~bkMu|!{h&~x~Ubs@6)lItkZx+A#g34&?#b^(Iz_LkVBjF+%N8^AlqZL;?C(0Fa*Q9 z#71QU@X=kd$G0E(y+Oq^76YukYA8gCa726)M@9G1_K|2YNJ+F(Wtd+3sxK@>do5knFB;2Ra;(7%9oaCYY&Z} z!Je$OmiCa%oTR)=RNbdZy3MDk{Bz0m^f6#nl{B^WK1p_x!mo~|w#rg$DZLlSQtBW( zn8AcfY0j_7+ILd=yFJurgOpK5h1_09yKWHyvtF{seM_5VlXT!xDvirV>E{RunEzO6 zy6s1s>9};V_AG6hJ34MWT~Mmjsl)7n)Fi?PT9tq6bjSV#3_-d{n_B>fL|x>250j&H zUzZ&#D}^!i>UwoHW-02z1*1_AX`*@8(dW50vnuW8$ue&suNZJ0eDvZ A+yDRo diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts index 93ea4f7b3..22c43f45a 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts @@ -838,27 +838,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + Експорт Defines the deviation of tessellation to the actual surface - + Визначає відхилення тесселяції до активної поверхні <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + мм @@ -1391,7 +1391,7 @@ Max=<%4,%5,%6> Import-Export - + Імпорт-експорт diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.qm index d92c3531ed7cf0706ff2b428262f174c7347a065..63444bdf491d35d7d53ee54b9294b674ad7d45c1 100644 GIT binary patch delta 2640 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 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.ts index 04afa57eb..ec9707f2e 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.ts @@ -839,27 +839,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + Mesh Formats Export - + 导出 Defines the deviation of tessellation to the actual surface - + 定义实际表面镶嵌的偏差 <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext"content="1"/></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> 镶嵌</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style="font-weight:400;"> 定义的表面镶嵌网的最大偏差.值越小速度越慢,外观也越柔和</span></p></body></html> Maximum mesh deviation - + Maximum mesh deviation mm - + mm @@ -1393,7 +1393,7 @@ Max=<%4,%5,%6> Import-Export - + Import-Export diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.qm index 2dd23671b6bc58f4db310c05f007f234efa52cc2..41dd6c60269bc7c7b45869bf9368fdf78bd5543f 100644 GIT binary patch delta 2851 zcmZWpdsGv57QQpdWHOm#Vyjpm6$h$3CDIlZ1EQ!XT161lrM`$^LIQa}9uPnX%2};w zeT}*ntyb5gK(|`Vv9j&~SJBn_S{HS@`iGBW(Tde|=~n6PihGkFVm&#@&D^>7yWe+z z_x`S~An(?a8wb4K1R&i6@NOvpJpn-bEx@SD00~ln>H7ez$pERN0F2=PSv3H{qQ(j1 ziHW1wB^VnCv1xXIXj#A(Y=G3UKLHGB57@}VXkP$CK8BgmD*+5A0@i91zaoN3^Iq{H zn({{R5uur>+XjbEVDf-4_;xRX=G4K>t|xcp>UgY?hp#(}it_lU(fDgM>OIm!BTN_We`xP=&;bv{LCoBr5$uYHyALh>4P} z$v^>Nozj{n4IXlZLTs04JcVH@|UuBVg-)&LZDQNzsH03|LeWcFvsOHD;yLjL)20c-t*8ZEyLP+37G9?HV`iJ)ev zgHT^2Ws3Xqp?8+ zG_`+p8458_`+xi`+T8(bNu}zVx{-J?)!1zUD4$N9%lQdF7e}=Xorlkz;v?z%o@v=P z0W@tg!x$WD*$kPnvIS4?j4b~f8fWcZz#0^?0yYgGs7SW5K?4A-vOh#~DE4#NH@qC1 z$;yuQccM*~wc6vb$qssG>mq=>SbBUN;*o`P()TD*Mbk^&h$A~m=e&npjEe@*h9Vqh z>Iz-zK}Yy%dc{>t5H^TkQNbQZ7Jci`UVxGD^zB+~R>d~@P81K|j-nraw+p9ns5~_} z1z>1Mz*e*J4AWz*dtaW>VgztT%B^3oz@^~cVlhVEZoY6<@TJ0avzm(mx348KxM8G=wvHL!~fh7p`#B&$GJNay9>nWVw ziR_CDD8XH%9B$U&U1wEJzdi<+Yn5{5MV#@HGs?X9cn}rxkRk4y%JtD(arPi!4He3r zqj3R^+r<=llBeW}Dn?a->g=kNsjYallT^RioQlEYRJy8NxS!`#YnC5F>T^`v$RkMM zh^lrEcEMDysyq4tu0^}5adS5wM;Ir&hE#*6aOxeW@%<<+{4Xs4_PyK(*%aOf25#25 zyC|`qOaE>>cI&@f!REVoOr_VjlHtgQ*ul9+KE(x3Wyi-b5lr z4P2vHz>BMqJ94!IZ_p9kpE5as?8V&iTUxyMj&Y~zF5&wyHIUsIyy7g@8~sagK>aKa=jE->O?cRwytT|V z4JqsJo|}J^5SM6MB%zQbR?Q6;A1vVB8w;`cNdWXg76{ z1ylZD?~6pr|H$^q?ZF%9@!?EG1Ow(;{dhd$81Wwu7Q}R;-vTcD@{o((VtnqcggzT) zzRGa=5&AL`Fw2MJV`}tA+WN#h#QT#}9u0c3dTKiSRegE{u=j~9#;RuI;p1gOtXDN1 z=(j=1uj1|aZ1pqtp*Wxrp95TUe*dd{Yd-|k_e~dx$?q^c7W9E=#Kwfd;;p%%gv*zpQ=RV>O15^qhbQIrU#Jfl-PHa1o)n!d8{BQbv7q^W|zWEC8|(L`*yKm!Z3h1f=gSI0E^iSWM&4=j`yDR3L8liq zd=_RqEIPAUu=`&W>&z~JHw9oFW?M;*-!52l@voy$5JGc#oi*1VZ8hn8-s=hr1)W`I z)eF4NE{JR92NS$_XUPE13`?QS?o4s}ehCS#^niu6p8AFNw(Us!=y%Ju*cZ=ApR@R} z+_&s9{3i63^}3vwQm|PsW$5%ym(I-hsKJ{Q_}Qp(y33^1PBrIc3QqCK5-R!)4${og z8UN|6DGRXkr~5chc_Us~aoCuc2if7TaUD3jr|tgE_LA+z8S@5?+=pXKT&nJ^t@QEb zr`hZlozu~q8U9A56o=ZrUVKD)%-UlV?BtZip Y9ZLPXiaVblQZcnAW?`*&dwC-Df4v+q?EnA( delta 1672 zcmX9;X;c$u6up^YGBcTEQtJ*977H39phX2afYPT zii*V*sYk_#SUi9h_m$#qk4tMkR#8unR-~<9pXS#+^CjPV_uhBk_o$4yp3f9_GcE@l zHUNE=00Wx=?-pR(E+9@1j2{ThegjM|1k3}fLx!vT22D-}Olo|@IZ+rt>^0!{*p9}- zgzo|4OH4Ga03yD%V_cw8uQD((Y05o0G|v}jWYfTa7n885F$5Ywkm%0KEl1Kf+@a$r(Vfqg4`2bR97a^r>jQwxH$&M zh*v#Zycw8pR<(xpCahF$FrHQ)ftmUujBf2=%xzRH?Ishmav3m3VN${#0sW(xf|lpyMF)Z2!49pR4nVJq9Cv9WFgKFZ?p*^Uo#C8Q%s}#J z&MkB^kbaCaULkhTj2+|7az4TxI``y89Gp(}v~d&k-AUdlF41@!5E{5e7oGwO)^V#2 zHDNYlc5+1zqk*WA+}Z>Na2d;O6bpdQo^V@DBtQBFx5pe;Dm;|$iw0lZ}q z1(3VOFR@bVeyjNW>(s^^#g~7Gkn3)~%3=UMy~;O^Sq5m&^S>J2QPSM`2M2cm9{&8p zGV*BAVE(rOuHi3;n5eRt_Rp;bv$2U%wYil&S0Kx&5Q zeU|u&yg00s5*3>-`sLC20xvPVgLHL0D9(+bGGeW0F$Dox_rz3%baZJE(`OPt{<)a> z;Wfw%6|>GY0_;pNcPa7A=pnAnqyLTSDekG-Nvjkg?%hhZ&v-5FoAwxe;rd3bSKFwN zi`ePki~KItF!k#J#zWH|B1Jh_3FUkHEYwXPb5b?w)q&LHh-P^%70cFWDvwbPj5(T% zB`1k&q^2X6NXOh#w($mQR)I9>L>XXMDaETva>^6Q;z-&O4oHRmDtfg-q{1f(#qGFM z6z~(Bdr1`=NNb<|cC_4=cCEWh-dvSVc4PuQlcZNow2gCg()&w9EoG$ECB>T_qXpV= zcZSlQtkh1tOmR&v)z0_#hY}#TIi~E_t~ZrZoM6X@FST2JXqO@_N~REGO>WS6>AoU6 zopd2%nrK>I=w_9Sr$77YVwacGs%_G(Sz1RFoORzZHAJCCS5`sFqq23CwVzYMZMy1` zPIBq0tiC~14WniKmeW-JU%B6z2EdXgPrC4kq-D!fZw;rho|ltL=sR_%obBQOD^y$L z9FI1#_LjWlp93`KSUInh3OT=%f4olw=Hd=Nk{ zQ=NRO@(TU#spo>JK}MNgn%tE}(3dcbyt=8^H~ay(z0i-{a*p!vtv7%0FmjhZuIyNE zdK?P%)gJ?$see14=HF#oA`Lb`nUZF-{U`4Cw%r+1G}89{*LkeUU75bx-PUjQ2=0Ga C3+tr- diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts index eff1f445f..a77498a8f 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts @@ -838,27 +838,27 @@ Please run the command to repair folds first MeshGui::DlgSettingsImportExport Mesh Formats - + 網格格式 Export - + 匯出 Defines the deviation of tessellation to the actual surface - + 定義實際之面鑲嵌偏差 <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> Maximum mesh deviation - + 網格最大偏差 mm - + mm @@ -1384,7 +1384,7 @@ Max=<%4,%5,%6> Python module def - Python module def + Python模組設定 [Points: %1, Edges: %2, Faces: %3] @@ -1392,7 +1392,7 @@ Max=<%4,%5,%6> Import-Export - + 匯入-匯出 diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ru.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ru.qm index 16e7d4365a3707c4400bd5c656864f494e823195..e7a654ab23d1f28c6c99e7157c91af3d9d3bdf63 100644 GIT binary patch delta 287 zcmaDR_C#!gOuZ`utIZ4s28L1wgBx`W3~Ub=x(^=)(z(n5&sH%oaQHCq<@(RSz`U3x zciSlj2Bs4%OFO4BFfcN*9BI!2^6Ob;B)Wk77dHMz*)f2!ak3I!HHuR$E05&Knq1V4gK^O7+AGAw@qmU zDmcj1vQ`CXz(20O<)J|F#XNI!moPAJ3GwV^ECz~~@$waO0WH*?cvqZ{iNBlSG0+yT zOrVN@%}k80jFwg`x-8Z#rYtr7dHMz*)r6!ak3I!HHuJ$E05&Knuk=4gK^O7+7^Vw@qmU zDmcv5vQ`D?00yqU<)J|Fr95+UmoPAJiSX=ZECw1}!OK_71+-9i;$3k*7XEIA$3R Netgen - Netgen + Netgen @@ -104,7 +104,7 @@ Elements per curvature radius: - Elements per curvature radius: + Элементов на радиус кривизны: diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.qm index bd3aabc8ab2d4a1ae18f4bff7805e2ec6fea4447..3fe6dd9f1490068f3a97559fcf5b45fdd896f0b5 100644 GIT binary patch delta 647 zcmWkqTS!xJ82@d@bJ^K;W^LL|-j0MuOq?{OCMioZOINJR-dZ%-Q3tvMI}@QE7FG{} zbW^+dQeqVPP|D~*DjC>iM1`;@l0t|@7ea)f*5#qkhwuM=eBbx~{l4FC**DyB(UDvO z_$I(|k75b1HUjOpDC;QrR|6Ce!MoxCkVS`Ui28pJzq+4xzZoo%yTFD{!_L_=z{alz zU&}ebRA;#K;3yznFrM1+7_coEAF}5G@x5_jJp+tq-*Ld{XBrD>p0rLfEBZD-{=)py z?Lc{|;KVDHh<~!eu~ER-!4^-A1Djje>IIqhZnNDJ^#EsK6D34k9%5fiyd#1UHdirC z2c_A+m1d%O%Uxy~09NHPZ$8i=BV0~&0A+35>dhyB;N;z}$C1RQ3?KSVL{c3eTBU5y z@XNiQNy!~Pw?v1S-9lk%m;kp52hz1bVOj|8$`g?+gxYixbVPW5xRd(Zg^$TkfMeX` z8YBlw*G%c5`#^z5bhSswu^REp%d>>yC$HqS3Av>32n8}ySSv(}l)RwAgE8g6VM!X9bhH$zJ1rIT~bq_9&ueZ7dBT9lrG zoDw}Y=OI#R_u90oXMn+H%U1j#+(%KeEl)q;fML&Qv!yguWo%<>;YR>*L=i&*3L;R^ zg#q+Xz257FM$>+TX&Qw#I>*?XTB#RsYhD1JfcT7E1k@&R;(rIE$hQ4J;DNNxOLN;bFU_VJ0c(@=D^(3F zb~z5bO9K8~jPIjo#CGPtf0gF9Si^(`n15N%$ZCKk+3{L3t{Z1lBcA}J#ESJds)unKg@rD@PNPo diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.ts index 2d25fb742..27c152b5e 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.ts @@ -29,100 +29,105 @@ OpenSCAD import - + Use ViewProvider in Tree View Use ViewProvider in Tree View - + If this is checked, Multmatrix Object will be Parametric If this is checked, Multmatrix Object will be Parametric - + Use Multmatrix Feature Use Multmatrix Feature - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit - + Maximum number of faces for polygons (fn) Maximum number of faces for polygons (fn) - + OpenSCAD export OpenSCAD export - + maximum fragment size maximum fragment size - + minimum angle for a fragment minimum angle for a fragment - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment minimum size of a fragment - + size (fs) size (fs) - + mm mm - + convexity convexity - + Mesh fallback Mesh fallback - + Deflection Deflection - + deflection deflection - + Triangulation settings Triangulation settings - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Please select 3 objects first - + Unsupported Function Unsupported Function - + Press OK Press OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.qm index d00f0ce097dd6ea9466a41bc602899f156c8ea52..7819423607f62f8a0ae9c53bdfefb872e7f58f22 100644 GIT binary patch delta 660 zcmXX?T}YE*6n^&e{p{QJZMDs|*0xV1DOY)6(v*^Nl$I72?QRn%+uT4m+7BbczR9v)QSraj{@Sb^2Cm(fT5s##GC_!Ib~rr0;;;!PQcovYBW+^)?ZaEr8WcWjjCTM z6W}tayIzNh_$R~rM**diskkvt^^;6>!3NkKFp-Jv0LwFJI}tl?Gp{Dz5kWswa!t`f zZ<*hfTB3Q(UR2csOptx~<^wHqmMsZpz%jxuUw;Ph;A$7gA!FSv7x+pUdf|HmbIN2ynW_aB;~yBA@eCWEC@-I0vN(^4qho#~Nc@kk=s7fiKW%#EhmP5B7txBUf}1)R$O delta 528 zcmWlWTS${(9LAq--`;(PZQqvL+}3O+k`U`aSmdIjjIy#UqXmJB1d|Do5 zu>J*Xd7d=Ta)UYv^Y2A~XB6S7MgRqD4GjSHcJyVpupX9dUAF+|U8(7I3aDz3)-|63 z)Torcx0`(*O~+O~0vuk`eQ^%Z>rG?-6_6V@?*qJ9d6kp(r0s`16<-MWd*q*S7Z8k@ z_rE*APm_oYw}-eQzCoIG>Fv`=!J- ze!(C6&AJUVIBcxAQcuIYab#8|N!d7hXDtcO7$+`!IM;1F0Ta@WJACaVt?GC5E_ez^ hO^!nCcOY=EhjEQ?5;p8apVW&Oaz4`@k@Kh>{(rySga!Zr diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.ts index 36b0b716b..f27f3490c 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.ts @@ -29,100 +29,105 @@ Import z OpenSCADu - + Use ViewProvider in Tree View Použít ViewProvider ve stromovém zobrazení - + If this is checked, Multmatrix Object will be Parametric Pokud je toto políčko zaškrtnuto, Multmatrix objekt bude Parametrický - + Use Multmatrix Feature Použít prvek Multmatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Maximální počet stěn mnohoúhelníku, hranolu nebo jehlanu. Pokud je větší než tato hodnota, objekt je považován za kulatý. Při hodnotě 0:bez omezení - + Maximum number of faces for polygons (fn) Maximální počet stěn mnohoúhelníku (fn) - + OpenSCAD export OpenSCAD export - + maximum fragment size Maximální velikost fragmentu - + minimum angle for a fragment Minimální úhel pro fragment - + angular (fa) Úhlové (fa) - + ° ° - + minimum size of a fragment minimální velikost fragmentu - + size (fs) Velikost (fs) - + mm mm - + convexity konvexita - + Mesh fallback Nouzová síť - + Deflection Průhyb - + deflection průhyb - + Triangulation settings Nastavení triangulace - + If this is checked, Features will claim their children in the tree view Je-li zaškrtnuto, budou funkce ve stromovém zobrazení + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Nejdříve prosím vyberte 3 objekty - + Unsupported Function Nepodporovaná funkce - + Press OK Stiskněte OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.qm index ff2112cac4d1987797982d23229abd87385785b9..38e713234621a97917526b21b434d6c678de88a0 100644 GIT binary patch delta 664 zcmXX@ZAepL6n?hr{n)+R-O9~$OT9}HWl@Al86~k*v$D`=B;l;dHg`!k*k(fhnAivO zqo~x%K~&TqGx{14QOKYy(Gp=HD8wix5`+Z($Ud-+(U12&=brPt=XuU~d)yD|E}9cx z0e(ARm;>}vfE)$fcL;}(_j?^sIEk8U6@Yo{b@T#8C!$yPP+igJ{r7=~Nj|M62e~^Fze@tnJ?X3RtmI`+~gyNK4w0WdxY2x)#9tnAvKgdP2@J*;pm8I>~&G z*razDonahc0K-tJG+#CgjpZtdR14zK?Q)EQ%5lpFbYi` zx@ZHXv$}Ne6EgBqbh!Pr;TG}AyVKNfLLAy%1FV`5GoJngz&;fhJ^h3p$-GD_wM|RD z;sZblFFkvy5b=cJT307EsR8*l zXj4+7v9OUQwK$BCwQm4TvoTZpjryKffi)#`6NTtIYOtp&wSU+I>d}BGRD=GI)Eyk1@`k7yjw}8^YiFCHhJ%r4 ehcB*1!W1j@J%wZOFKLTJUvE+(cI zb`ixaa}o-9qZgVSVuT_>Uy@dWQY6GkR(2t~NJ#s*=Qe!?X>U1)t*|qyCLK>jsP1YLgkZNfU{gU zSltQOqQbrLdcdp}Z|->kI39@;><*xZ#L52?ko-00fX%wJ*Fo=bqf$yow*&4~X)T%y zcz4Q?cNfXnV!R;%h)I_J_&%`ZJS&@Y(cKtpO6~%b5_Zi^#>ES4Hu;GR7|VEu2q?|| zcy&O&qD+7IOaRSFMsot5+e&ueCBW;{iUrbh^{L^N1mZAe)Nq!J^1SNerDaO+Q_ai~ zfIh+o*9wM?HV|RZEIh{4G|B@)e52JOA{>%JrwDsmuHCf{os2Xk9EI36GogHS&*4Kd0 YV9tA1N%z}j>NRF*VwqxnOpenSCAD importieren - + Use ViewProvider in Tree View Verwenden von ViewProvider in der Strukturansicht - + If this is checked, Multmatrix Object will be Parametric Wenn diese Option aktiviert ist, werden sich Multmatrix Objekte parametrisch verhalten - + Use Multmatrix Feature Multmatrix-Feature verwenden - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Die maximale Anzahl der Kanten von einem Polygon, Prisma oder Prismenstumpf. Wenn fn größer als dieser Wert ist als rund betrachtet. Setzen Sie dies auf 0 für keine Begrenzung - + Maximum number of faces for polygons (fn) Maximale Anzahl der Flächen für Polygone (fn) - + OpenSCAD export OpenSCAD Export - + maximum fragment size maximale Fragmentgröße - + minimum angle for a fragment minimaler Winkel für ein Fragment - + angular (fa) winkelig (Fa) - + ° ° - + minimum size of a fragment Mindestgröße eines Fragments - + size (fs) Größe (fs) - + mm mm - + convexity Konvexität - + Mesh fallback Polygonnetz Rückfalllösung - + Deflection Durchbiegung - + deflection Durchbiegung - + Triangulation settings Triangulationseinstellungen - + If this is checked, Features will claim their children in the tree view Wenn diese Option aktiviert ist, werden Features sich ihre Kinder in der Strukturbaum unterordnen + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Bitte wählen Sie zuerst 3 Objekte - + Unsupported Function Nicht unterstützte Funktion - + Press OK Drücken Sie OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_el.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_el.qm index 4da73fefdab2e6f709773e90c9d7de4bacb3da6f..d54e52b1a3496bc850e8333e015e24d11e6a8a7b 100644 GIT binary patch delta 660 zcmXX?Ye-XJ7=Cs+J7;I^Y_(~draK~&Vp5PvS!&@*%`7Zk1+{3h%?fXKMkxL%VGd5VjzAejC**WJT`lz>(y1-(qr>F<@ys z^Se?*FnQHkMIFEltDeoy1G-sNjyD1oR@K7gDS&HYSHDdn22-4MekUMdfORgAH|}9S z_`VX8H*9X24$%`K2HxpM`-NO~f!M9KBdfbHl<@ zkW&19ooN>_HDq)FYX*=t=w>WGf#pMflI=ZB!iW?nKf%P%fldVBhlDUhxZyz$BIu=f zG3P~qs{L?L)laeXKQGeXN4+BK|FR)^`{3bdGgM^Nok7187TunnNU!LZyn$f9E9?(Q Z6pLY>N3;i|P@vDlCT_}Cq~h$j`7cSPp|}75 delta 528 zcmWkrTSydP6#iyr|DAtkoY}P<-QAYGNEyY7QdVkh7qqlHmF-(Ai5Cirs4W&M8nJwc zAPP-QhzfgAu$0w@E{M^^h>VS`puhxKNkR6-2RG`W)5GC||D6APm$Ojwy!y6j%>(i_ zAg_`tMKuM~JqC0;Y=29D!bhl@DF^Ts`@-$?ejn$1_R?HJ$ZLKARb9|X(ql7SgA2N2bfosaDtrs^OcGAF~C-@ zhU=OEZAk5&x=y%S9jL7W3VPLaw2KTBtGQ^GMT4(2Ge=Q+&uNYRLxAtF_Uv_t1}pU5 z!~r_NXMM1!h6sGdrU$D?K)|^8TcW5V#-)+%6m`~UyH`L7WsG;Agp^T-=Lk7Εισαγωγή OpenSCAD - + Use ViewProvider in Tree View Use ViewProvider in Tree View - + If this is checked, Multmatrix Object will be Parametric Εάν είναι επιλεγμένο, το αντικείμενο Multmatrix θα είναι παραμετρικό - + Use Multmatrix Feature Use Multmatrix Feature - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit - + Maximum number of faces for polygons (fn) Μέγιστος αριθμός των όψεων για τα πολύγωνα (fn) - + OpenSCAD export Εξαγωγή OpenSCAD - + maximum fragment size maximum fragment size - + minimum angle for a fragment minimum angle for a fragment - + angular (fa) Γωνιακή (fa) - + ° ° - + minimum size of a fragment ελάχιστο μέγεθος ενός τμήματος - + size (fs) μέγεθος (fs) - + mm χιλ. - + convexity κυρτότητα - + Mesh fallback Mesh fallback - + Deflection Deflection - + deflection deflection - + Triangulation settings Ρυθμίσεις τριγωνισμού - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Παρακαλώ επιλέξτε πρώτα 3 αντικείμενα - + Unsupported Function Μη υποστηριζόμενη λειτουργία - + Press OK Πατήστε OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.qm index 3d25b4ca9f19d4e60cf4ae6cc946169e34a51042..1ae6caa5124b14cab66c857361bc914db8cd088d 100644 GIT binary patch delta 684 zcmYjOTS!xJ9R9X>E;~ohyi9YNdPFj8(H_i}QV~rv?LtOA6dBXDwMA~S3qnCFtA}19 zZ)Lt%B!WFiA_iR$Axkk0%Lpn$3Zs`0MWRJL^c6kyaDLzacRSzr|NcFd@2jp^@5m+;h@`X|WA5m*>W4#CA8#SCeXGr!80qG@%t@kbh87~bx zcU=a|9ftNthXISjc-A=qq@FT97On!S+c@?I0aNLotJZIQ8ZOg=`TQ6)TWGD=yu73dl{8<8?RUuxV1mR}yJcQo|C_dS80y z{{kp!(&8M2sKavV$QAz3CGQ{K1f=!K_1hA}6}h1*!VA^O(}(twAR&K>e+Dw!&GuG0 zkRLXWw~YcxM-+RthweU9uFqZ~I+VfPEPKBjPqP~lRld3gAOLJz_#=HZ- z+EMkv6P<(Ml%Cdoe2V3iyM=tF%ne#uUl9d3wb&06EmyTO!#imCigx~HCikkfXP{Hc zs3p6OH?^*}gw{<0hFZ&f!77kf9-wX0+(bGIm7PP$IU_~J3ql-j)SwwH2qQoY5Ou~N zdEv@SScv{B9>`Trw^9{=bU?f=XXAp_3!NQ*xvxP z2uQg|ZwfHdf%2OatKj&v5lCk!OauXZMn#~V^0PR7br1DUN-1@Bfz&2x>-`IW+bfmq z=mhwCsrPX$U`FNEEl&aKp8SM$1LBrE{yzdraQ6|wx1eluQQbD$ltg3$ka6>$Up zM~j`W#emDlmjm&%FGLWUQ_2U`Tcak*><^gPoMY9O(uVt?XKM2pjZm^#Req3Ayq$?y`L19^@o!=K-!qm-?EQR zkZ+9SmeS;AGk<6;k=o2NzZJT1m3elwnA8f)^8;!0ugiQ6I*qn$`Kn3LeadQH_X3bA XtZDxOu=?ByAjgUe`8taq=h4i6>w$l? diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.ts index 63733947d..f1d928a7e 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.ts @@ -29,100 +29,105 @@ Importación OpenSCAD - + Use ViewProvider in Tree View Usar Proveedor de Vista en vista de árbol - + If this is checked, Multmatrix Object will be Parametric Si se selecciona, el objeto Multmatriz será paramétrico - + Use Multmatrix Feature Usar la función Multmatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit El máximo número de caras de un polígono, prisma o tronco. Si fn es mayor que este valor el objeto es considerado circular. Establezca 0 para ningún límite - + Maximum number of faces for polygons (fn) Número máximo de caras para polígonos (fn) - + OpenSCAD export Exportación OpenSCAD - + maximum fragment size tamaño máximo de fragmento - + minimum angle for a fragment ángulo mínimo de un fragmento - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment tamaño mínimo de un fragmento - + size (fs) tamaño (fs) - + mm mm - + convexity convexidad - + Mesh fallback Respaldo de malla - + Deflection Deflexión - + deflection deflexión - + Triangulation settings Configuración de triangulación - + If this is checked, Features will claim their children in the tree view Si se selecciona, las Funciones serán demandadas a sus hijos en la vista de árbol + + + Print debug information in the Console + Imprimir información de depuración en la Consola + OpenSCAD @@ -137,12 +142,12 @@ Por favor, seleccione tres objetos primero - + Unsupported Function Función no admitida - + Press OK Pulse Aceptar diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.qm index 31b8154d57d47367a2fe40ce618a5a61484a80cb..12f16e2c1f495363b93c4ebc220745460e77c733 100644 GIT binary patch delta 660 zcmXX@T}V@57=Cun&d%AHJ6mm|x8fRZzF}5Y z0DeE9PXQ(KfCQjrgscT|OJpuCY2&I|xd6Ib?Nkm5P6Zqh>5&IN~d0h&%OSwY0MCGOSGJ0dvE6>Ot4 z&@8uJts|OM%`LV8;HEVBw;yScxTYYQfvT^X<@+xHAcG$sDgnTsT;HK+4c z9tXD0=$=l=lz3f#x2Ki9Vom?3+C>CGsbRQ=2whU@CrgrFkS;zxKpWObm+qBPom-j) zDJA|kl(*BSX15_$I|Ha14GXsKK&3ZAGWSy@{dPuRvYdiev>}cNqDVr99|3eAg%J50 zSP(IacEd-}2>H?fxJ>Ub<;rmVLlbm&As|p^Xz0|n#Us(A><@ILLUJS;jK#Zs$w(|p YzMKpPWLGSjh;;?{0fw_@^1R*p7vBq`<^TWy delta 507 zcmWlVT}V@L7{;G-&i*_9{f|3mwP}8IIu0?7MO|o?pwdVd>s@Bi#+lZTnvW#y@$2-2pU7p8T(XQgHMXkYOkXU9^ulCzO@YE+8|Z{0g}N ztJijV{tN|oGTsygWIs!L`T)o>+0Mxfy1UL=dkO)TV3)Hf*eYXhdzJt(!jje?ur-hU z@oE(F)BfheM|xn^o)jKnhu^;TfZO{mmX4s-=c^>uTz6-6y&K_m(Q&dL0nBP z&;wd6cg1d#Q7*5E?;%oy2TC?bFYsVRh(K!iOv7=&b(VjMd;wDP9lkJ;o8KMrj#0qY zCVZ7G)M`*XoV!VWV`A_~F_2a$76V-b&@46rUD0kyYc;iIvliH%t-VNOlhbGC<8U=q zQ0E--meXfb`o6v#O6t|G{8k8IM!!08h|sR-?cJ$V&44})sz#hJ((4J)Jz!kSeGN!O X#-g=OzR%B7PpdH@PqSE<=VxvLc*1?o diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.ts index 1aa219b16..f133b1d13 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.ts @@ -29,100 +29,105 @@ OpenSCAD tuonti - + Use ViewProvider in Tree View Käytä ViewProvider:ia puunäkymässä - + If this is checked, Multmatrix Object will be Parametric Tämän ollessa valittuna, Multmatrix Objekti on Parametrinen - + Use Multmatrix Feature Käytä Multmax ominaisuutta - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Suurin tahkojen määrä monikulmiossa, prismassa tai katkaistussa kartiossa. Jos tahkojen määrä (fn) on suurempi kuin arvo oletetaan objekti ympyrän malliseksi. Aseta 0:aan jotta arvo on rajoittamaton - + Maximum number of faces for polygons (fn) Monikulmiossa olevien tahkojen suurin sallittu määrä (fn) - + OpenSCAD export OpenSCAD vienti - + maximum fragment size suurin palan koko - + minimum angle for a fragment pienin palassa oleva kulman sallittu arvo - + angular (fa) kulmikas (KO) - + ° ° - + minimum size of a fragment palan pienin koko - + size (fs) koko (fs) - + mm mm - + convexity kaarevuus - + Mesh fallback Ongelmatilanteessa luo verkkopinta - + Deflection Taipuma - + deflection taipuma - + Triangulation settings Kolmiomittausasetukset - + If this is checked, Features will claim their children in the tree view Tämän ollessa valittuna ominaisuudet liittävät jälkeläisensä puunäkymään + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Valitse 3 objektia ensin - + Unsupported Function Toiminto jota ei tueta - + Press OK Paina OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.qm index 6d77f5d5f7d967e3ba4e46dd8feba7317739b353..bddf12e09cc5b9afc57698bd3b53f0780071ef0c 100644 GIT binary patch delta 695 zcmXX@ZAcSw9Deq4yW8D%TRLCn>rF|>Nqz98j0($YnHCwX57o-qUR=2yY%`&trR9ep zdfU_zBEujS625l8QBVPXnf? zqG3}Xpq*1(dbEdlHivEwViA7xY1w1_T`GbYZ`-VScZ_)2nI$Jy7V38S22ONb1$a<6tblhYVCANd00 z_Gqo$lz>#J9q)ZWi}dhTn~M@F;Rjxyp?QORd}}?BH^L|Fu?TIrpHJIkL|hb1X^OOP zPH-0Q1WKBPhfgIU?$clCZlPb1(%-f;l7LaHyLZ5a_ARNUCp7S zUWyZ-qy)1ezm=St77g<9NkGwHNS6Mjxu1O$^GQ01EGRZdd3`~mTp4E~ID(Dv(B;En zbij=uBy}pN2Zz|PK4=Orb?#cB1Y!<4eeC(QrEjwaV{}BsV1Ru>4cn_$&orV vbXV*O`T}9e-)SmD(K_ z0hg(CKW!x57xnC>QNSBjhuBrXP}Jf72xwJ%jsStr+Ga1^lkSh&Y+^NFe%F2_d_d@g z<7mDasJP7d;S`|8S^2$Qpt6On8V(TeHj8IA0Bnq%GRZh3*{jSHAO={$>Z3s2>`%x5 z90BLc57QLD=PU?6VC9?(cb`+)qQ3q;=>=@vo=+hO*{0hIWaNLVe`+mKg9mzHf&v%~ z+?%~Zd2PNww+>j+&SP5^3G>|Em7pT^e7vEK4Bqg$%*ZoIxgdhbNv?i!$cMoh+fsK6ny80$%;6(epM$ASld;3Z@5*>Ym^x^H#tqX{f` ze`qHu*U61{R*importation OpenSCAD - + Use ViewProvider in Tree View Utiliser les ViewProviders dans l'arborescence - + If this is checked, Multmatrix Object will be Parametric Si cette case est cochée, les objets Multimatrix seront paramétriques - + Use Multmatrix Feature Utiliser la fonction Multimatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Le nombre maximal de faces d'un polygone, prisme ou tronc. Si fn est supérieur à cette valeur, l'objet est considéré circulaire. Une valeur de 0 signifie aucune limite - + Maximum number of faces for polygons (fn) Nombre maximum de faces pour les polygones (fn) - + OpenSCAD export Exportation OpenSCAD - + maximum fragment size taille maximale de fragment - + minimum angle for a fragment angle minimal d'un fragment - + angular (fa) angulaire (fa) - + ° ° - + minimum size of a fragment taille minimale d'un fragment - + size (fs) taille (fs) - + mm mm - + convexity convexité - + Mesh fallback Maillage de secours - + Deflection Déflexion - + deflection déflexion - + Triangulation settings Paramètres de triangulation - + If this is checked, Features will claim their children in the tree view Si cette case est cochée, les objets revendiqueront leurs enfants dans l'arborescence + + + Print debug information in the Console + Afficher les informations de débogage dans la Console + OpenSCAD @@ -137,12 +142,12 @@ Veuillez d'abord sélectionner 3 objets - + Unsupported Function Fonction non supportée - + Press OK Appuyez sur OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.qm index 1afd641915271fcf9e6ac3bbc435eb654dccdbc6..336d571040b44ee5d98e033219d5c0ccf80017ec 100644 GIT binary patch delta 666 zcmXX@T}V@57=HG1es;Ey93?|Dtt{-vi@-&bow*ZkgZ&`%!oG3zX#ft}R6(s^Pt@F%q<&f3a^D)tmTF$H$tv!C`lV~La}RzfY3#M+Kt)LZU|J$z%6O^2gP!7}@kUh(5p;_USJn{W2{G|Y1Mnl_(YsBg&?}}!O3A4| z;xmv_LY>LFmz0_hnj+ORfNG;D=lDT$mlVLEr9WYTYFox_Se>m_w=zj|pc7Fj2qO*& ze#q!S0=<+k*8+%8Hv}Jb70Sc^>k@qj2`i!HUo}Q|A7q~9gQer_j4I){d8rwqMl>r(~EK|eJt+IklOA|;O0&^Y*1yy-0f?r~A9?FXhs#Gg8y zHp8x$qvL=%u7uz7UUghae#^jykx`P9G^$vwjP3hOg0D((gb!$4 zsyBO%hl1*sp#>xjtBDmQ>S;B(E=`c_>Z@&=NZ6x(v_An>z#Zx!d7#}r)Hwh+=WC(H zRzN?aU4Gj|Rki;0QJ`|JmQQpOK+#HxZkvO*bgRTDeFeQGxD}Y5(;q&Y$%6&sO2=j< z5jAett>J?M=HhF!XgF#f{Uwv+hk5MYDiS_0Ph73!-VQSdCgeWr@x@76e&2Iw_AnqV g@#JfN0yWM18E=xCu&@>>wBaDKKF3ax^{a~iAA?VTWB>pF diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.ts index 6ace6cb93..77116d0fd 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.ts @@ -29,100 +29,105 @@ OpenSCAD uvoz - + Use ViewProvider in Tree View koristi view provider u prikazu stabla - + If this is checked, Multmatrix Object will be Parametric Ako je označeno, Multimatrix objekt će biti parametarski - + Use Multmatrix Feature Koristi Multimatrix opcije - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Maksimalni broj ploha na poligonu, prizmi i slično. Ako je fn veći od ove vrijednosti, smatra se da je objekt obli. O označava da nema limita - + Maximum number of faces for polygons (fn) Maksimalni broj ploha za poligone (fn) - + OpenSCAD export OpenSCAD izvoz - + maximum fragment size Maksimalna veličina fragmenta - + minimum angle for a fragment Minimalni kut fragmenta - + angular (fa) kutni (fa) - + ° ° - + minimum size of a fragment minimalna veličina fragmenta - + size (fs) veličina (fn) - + mm mm - + convexity konveksnost - + Mesh fallback Mesh rezervni plan - + Deflection Defleksija - + deflection defleksija - + Triangulation settings Opcije stvaranja Mesh-a - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Molim odaberite tri oblika - + Unsupported Function Nepodržana funkcija - + Press OK Pritisnite OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.qm index 3d666a3c2ba476720374f5f9fa82ae1d6c207d90..4929b86fa0da1e66ca4b3ee5a00b9b1ca37a413d 100644 GIT binary patch delta 666 zcmXX?ZAepL6n=K^?(X&8dAI7i{784jvSMM7NtqedY*w0BH0Xz`CcB#hy@TBiq5W7` z5&ap}v`mP^{9`|)kf10;=u4!`G6Dk`#3F){qR90Db&P(z?{nVgobx{CJYO0HJ?E9= zXMnE<@(sW`1IPdxhY4$8{=ESx1Zp$YL}swx)kFLwqL=qk{iw+r7zLKsnYP|M1t_d( z=k7B=-jM0Sy~BX*7?arY5U{71`&Na9}fFY2acdB&;U5rvq~&;Nh~)5gOL8MQDee4{4=oSu4Q~}FI1@HD82}y!)k3kE0g{ebL#M_0p$#>NMC(qSQ z4wSvjo9MX>n0=zFF+lEq6E8hGO&AhKJhi||r#S2FP11yQV$R!3g>#aUBTI{?C4XrP zuxehq`#=R8)A{|~&E!Z`{*7`s38dtjYZWBumE%8Hvb;h*acc){SR$XiQb2t^`7y{T z@q?}KAZ@DnZILxk08@)?*7+4EJsSqf9n=X2Oik&Z*0Qm+OoB_I8LfyS3>`732tY$S z;s{Z^#03$dY#02L4O6WD=T&-lP^}90Kh~hT6PiH(!$POBH5%4qYCvm`ht#khj6}Qq dv2aAESdDdPsym_^kxq?IZ(`Ps4e`&5{{llzq8b1I delta 507 zcmWlVT}V@L7{;G-&i*@R|KrYPo948fLrQ8<7xraegx2g!!)T!3qF_m0gwPD54;EHL zH&Ja_4q}74u?sPV(HA!8!w4-w2?}Bni**r#bfIAvJzc!K7w^OKyuT+Cn%i~58~+LD z+kuh^&J^J60Gc0g--7M$8enM$8uIl3^4J&b2dn^2-Py~#u9QTFfzqV1dE^q{=~Q+$ zUIC0n<>vFl)ICwpZF&v3is}n-9guVC*#8Y^^?Qy0zFKXIoAMn?`)OtYN6TMXo_Rolk)Mo~yMZrG=EGZR> z0h2NF_IIDY@_|u%L3)Ae0sCy`4PnRibu;veEO<}iaO`rz5}e_ zs`Fu>iJuj%4e44Y4O^%GXzcjBb@tH?qV-xA2g_K^W9uzgjcjyPv=Pzs%+<4E98g+a W)BfM|{npK1d$Ll^h-{njvGN~BFn|yM diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.ts index 0f646dec2..508d29904 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.ts @@ -29,100 +29,105 @@ OpenSCAD import - + Use ViewProvider in Tree View Használja a NézetSzolgáltatót a Fa Nézetben - + If this is checked, Multmatrix Object will be Parametric Ha ez ki van jelölve akkor a Többmátrix tárgy Parametrikus lesz - + Use Multmatrix Feature Használja a Többszörösmátrix tulajdonságot - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit A sokszög, hasáb vagy csonka maximális felületeinek száma. Ha az fn nagyobb mint ez az érték akkor ezt a tárgyat mint kört veszi figyelembe. Állítsa 0-ra a határtalansághoz - + Maximum number of faces for polygons (fn) A sokszög (fn) maximális felületeinek száma - + OpenSCAD export OpenSCAD export - + maximum fragment size a töredék maximum mérete - + minimum angle for a fragment minimum dőlésszög a töredékhez - + angular (fa) Dőlésszög (fa) - + ° ° - + minimum size of a fragment a töredék minimum mérete - + size (fs) méret (fs) - + mm mm - + convexity domborúság - + Mesh fallback Háló visszamaradás - + Deflection Kiöblösödés - + deflection kiöblösödés - + Triangulation settings Háromszögelési beállítások - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Kérem válasszon ki előszőr 3 tárgyat - + Unsupported Function Nem támogatott funkció - + Press OK OK-ra kattintson diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.qm index 8b8a296d142f2b43bd6821e1a1cc483d9415bfb7..b7d54636307fd01077862cde6eb19402cff21573 100644 GIT binary patch delta 674 zcmXX?Ye-XJ7=CuPbJ;oDndLNX&7Dyh!zjW=8CKFryO?xw5Rukww-fW6+66&>EUbP= zC6!txm_-plvA&vUZ!dDUrq`WwKn z1*~I$WfYL3K-E>k%P{>}3KSef*<>kzDQqce1#IPrpWjS%i@_4S3C!&^tiE*=upcl~ zY&Z^>e;Cd@sHMI!re)O-Fo$6tvh9F0!3@kIU@YBK56rJIuF0W#S{^e_COp6b&iFHt z3%FI&{#PL)e$NVfI{>Dg&A-w`^?J5=pb&5jvEiPT0C$m1I*8aUu`hbw58w;-`S2);8|?4iq_6vh5yCA|Dxn`NXEN2fL6&0F5|AQ9%qLiYhdO zp(9TD0GjEoQ%0pq@P7=U0VzZ%qtQf+&g``BUtfYE{UZ<$IJ(8#giHg{$2a8g&@7%sLEVo|TDA2_q5L`pZhY?Fc z3@NlsUkvPJ4W!&eED<65BtuZ5f)Z*a1M#7tHj3!q)4A}!|9j5w+!yhy<=0GW5m3tj zX8 zcII_0;9bY~sV+e7WS)T=G|#ZL6FyRdrTR7l>?>>ZlX2t(d)4<25YsFd&HyXw+3%mA%bx=H$wrm zM()bCQ{E0V-=L>}sKOty|tfPN8+ z*HEh+;^y>adhf5ul$QXWK{1=?CV*yb%u- zgudXjb1=G>4BYyb{?%moO~3FN&lo*G+pV{VAv+(O`J1h}0BD{hDWh hRBgmwMgMSvR?Tk%iiT7|37p1g7^Rc diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.ts index ae7ca1c40..c2edea945 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.ts @@ -29,100 +29,105 @@ Importazione OpenSCAD - + Use ViewProvider in Tree View Utilizza ViewProvider in visualizzazione struttura - + If this is checked, Multmatrix Object will be Parametric Se questa opzione è selezionata, l'Oggetto Multimatrice sarà parametrico - + Use Multmatrix Feature Usa feature Multimatrice - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Il numero massimo di facce di un poligono, prisma o di tronco di cono. Se fn è superiore a questo valore l'oggetto è considerato circolare. Impostare a 0 per nessun limite - + Maximum number of faces for polygons (fn) Numero massimo di facce per i poligoni (fn) - + OpenSCAD export Esportazione OpenSCAD - + maximum fragment size dimensione del frammento massimo - + minimum angle for a fragment angolo minimo per un frammento - + angular (fa) angolare (fa) - + ° ° - + minimum size of a fragment dimensione minima di un frammento - + size (fs) dimensione (fs) - + mm mm - + convexity convessità - + Mesh fallback Rete di riserva - + Deflection Deflessione - + deflection deflessione - + Triangulation settings Impostazioni di triangolazione - + If this is checked, Features will claim their children in the tree view Se questa opzione è selezionata, le Feature sostengono i loro figli nella nella vista ad albero + + + Print debug information in the Console + Stampa le informazioni di debug nella Console + OpenSCAD @@ -137,12 +142,12 @@ Seleziona prima 3 oggetti - + Unsupported Function Funzione non supportata - + Press OK Premere OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm index 3edccbcf4ea642ef96300e076dd7c9ab322301c1..b2841bafb883143b2561a17ad125c79ba3041fa9 100644 GIT binary patch delta 611 zcmWkqTS${(7=Cv65BsXa0|gP~ zp@SC|R2K%7F}x^E1e=z07#KoPh%yN(M&U)PEPA{6c)pMK{hm{*Y{GHbnD_>8n*h}U zph*Kl8&G?P@Gg`~#lW%|RLqtFxQ}{!C!jVXe65b=Hkroz0MO3K$_Gyax)RxznzO_u z%B~DI(cUR}eB(3XJRu)pE&=>S`RIQH6s0>30fs6?rJm*q;e}#0vKBD*D}F=_fHki4 zy!HWkTKmcXWtNHNld#p!yzF~N0`*L$U;q%eGQSJe zfc!h#rEt(*jD0@yk&HC48Nmox_OaPpDS)lvO5XM&fxI;5{z^jXYR;V{)P3OI`#({V z1eZyZ5&jLYPhKFx4u1F8dP>~FyQ*@84|(^t2nBNTQ+s!kz&t;nSOD}fmA#!BuxM0c zokNtjPO#T{so`_N)mLW-*9ZgKE2!Dc!nCU=K@Lqq&ecPUNwqOYl^R8L^NI$*G^~C+ zZX?29+UxDRs1a!I6*}o%EIMwkA_Mti?5Bc~42j1dRg(dWc=Cpc{v8k}KuvLfbk;qT zRCi1lT0Kcd|LUd-76J3R0M#}^KcQ?)^74qXVWpIm7Nw`slJrG7B27wZXuq_a54TX<3M+2cC-EC37&*lsTBcZnLIo_U(vr~qD DNS~hU delta 528 zcmWlVT}V@L7{;G-&i?28caA$-?xRJ7Nf^YWF4W4f2uGQHnzXuUQDmVML@kl(;*=TD zO%!u|2z^jN7$n&$$if8MD*M1Nf{HR?VL=SSix!RO>FWLSf8Y0c-rtk0$yA>TINtzc zG2q?}l#H@Y0u9#yvl6aiB`_t9+VLs?H?cC($^Q%3ceasp*Oii%KETteEWC9TuyH6?N;&;t17Jz@(1OR*)YOOKBq06j;QtC}RV%gtrNi1HAN!8kq>U%$0D%haSHcg3 zRoB*6J81k!$jwPW84#hXDfah@*@M#n|Ag4tQw_M<#s29uo_brn=y^wo*CJQe%Y&Ya zKjjvn{?wno{m4T;=s7b0gg)u{%NamCGv>XaUg;(y{v!zoX2yu;Y2@8*ylOpenSCADのインポート - + Use ViewProvider in Tree View ツリービューでViewProviderを使用 - + If this is checked, Multmatrix Object will be Parametric チェックされている場合、Multmatrixオブジェクトがパラメトリックになります - + Use Multmatrix Feature Multmatrixフィーチャーを使用 - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit ポリゴン、角柱、錐体の最大面数。fnがこの値より大きい場合、オブジェクトは円と見なされます。無限にする場合は0を設定してください。 - + Maximum number of faces for polygons (fn) ポリゴンの最大面数(fn) - + OpenSCAD export OpenSCADへエクスポート - + maximum fragment size 最大断片サイズ - + minimum angle for a fragment 断片の最小角度 - + angular (fa) 角度(fa) - + ° - + minimum size of a fragment 断片の最小サイズ - + size (fs) サイズ(fs) - + mm mm - + convexity 凸面 - + Mesh fallback メッシュフォールバック - + Deflection 偏差 - + deflection 偏差 - + Triangulation settings 三角形分割設定 - + If this is checked, Features will claim their children in the tree view チェックされている場合、ツリービューでフィーチャーが子を持ちます + + + Print debug information in the Console + コンソールにデバッグ情報を表示 + OpenSCAD @@ -137,12 +142,12 @@ まず最初にオブジェクトを3つ選択してください - + Unsupported Function サポートされていない関数です - + Press OK OKを押してください diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.qm index e84405e016fc3024a60e3acf645b861b7414becb..c9b9a6dfdc76f9a143b67db3231275720e7806fe 100644 GIT binary patch delta 660 zcmXX@Ye-XJ7=Cs+J7;I^Y`JNhwsuA|tVJPH%E&NRu9k+%2K{K^WSbl42D=~>bjmIu zQk0iU|0EQG{us&VN0_p(>_UaG2r9ygMSnsJ zVC#XBM|2heZ9Cw;MRown-`jxl_o!QP0(c9LqYn_aB5~~y<>j)HUME$F3 zM=vR0@v3uucK~HQ?{Ei6-TnO4=jUkN3_saa2bBHc^S)t;Hnj3Z-!K)4s9IT-y}&k@{{ktcpVR;V delta 507 zcmWkqTSydP7(Fwy|IX|`&g`b^=6YK#3Sy-QliJ8Iqb%19!-b$Wip=UMXbWR|m{NNP zDvGs>LMRx4g_0~iNF{=05fy?FT?k303lu&Sky22nhmZ4c{{P&5)=q4=7<9e>dNq(! z#+&5b2I_7QU3mUf0HGLS)0F_;p+4FUSRFWebu0N@N>0lV5SUTc-01*v&nY#vX8@yL zxpc1?u#44`s~-aXxO!h)0OWRc^gjYx<(54_fu^kukaw(*Hl11qgnPALsXU1ddk6sAmOZbpcuBp5j-LFMfdgw;PtMXPFQvad^qE41x;x1Lvd;)) z&r)cmv2AQQo5qdAx;f&Ik=&GGktXBmjyMfQj2Y)65Nz;8+t|E#&^Ok87w}ZeXk80n zUYA#%cM^kgU~>$}-zldOT`UlhbBV4@w_>*H=Dw0fpzxD9GG4|Px^=CsffF3GZk2Cj zvafbk?_xTAw~x ReV98v$V#OpenSCAD import - + Use ViewProvider in Tree View Use ViewProvider in Tree View - + If this is checked, Multmatrix Object will be Parametric If this is checked, Multmatrix Object will be Parametric - + Use Multmatrix Feature Use Multmatrix Feature - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit - + Maximum number of faces for polygons (fn) Maximum number of faces for polygons (fn) - + OpenSCAD export OpenSCAD export - + maximum fragment size maximum fragment size - + minimum angle for a fragment minimum angle for a fragment - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment minimum size of a fragment - + size (fs) size (fs) - + mm mm - + convexity convexity - + Mesh fallback Mesh fallback - + Deflection Deflectie - + deflection deflectie - + Triangulation settings Triangulation settings - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Selecteer eerst 3 objecten - + Unsupported Function Niet-ondersteunde functie - + Press OK Druk op OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.qm index 4a6e19365e5d0bfbfb5cd82f716d689c163a034d..5d5106c9c2e14d10412d38a2a9ccc49ee26188b5 100644 GIT binary patch delta 660 zcmXX?TS${(7=E_-ANJ4vGdFF^)L$Yg>_B;_MTKa&4yMc6T~^Ab8|oI@M5>F$vWp19 zJaq7;qM#NOm3R?_N@wxSyoHNA$lGs-i2h?ys=Sdsi_92Gl6H@&=iPRFQeu2?C zE`9KSrjq;8+!PlvmC6|d=Q(h_d|+e)kTEKIwx>vxE7$LiP|zWHqHaIyW%6w76JYBz z7In~pmEVjbak`r3REk_)I<{H4{HBxh5=x@V31r<=lAhieH#90KPcMOYOtus)b<~*} za%+H`O{OO=Gy>h`s~y#JRU^Dx;gdNTB2S?^90*1=udlJaSqlW4LgBWCXdo11 Zu0{Pmtuhphgj#)4Pp7zM;Dj`9{|obup|=14 delta 528 zcmWlVTS!xJ9LK-soc(uh?riDQV{@({6|pW47PW53EX}OQY;P?LoD>B?s|NM3uzDy_ zOYNc%2?e@>D28AZB4ih$LRth}M2JO2V=q0lE)RWs`0;)CUB181w>$E&{(?946;L+- zB^GOjH3T%>q`rpZ?^2-r1HyB40J7K`>H=JG9J$iWezR24aR=~>No($&21+ARedH{l z^+^{W?B-lvKDl}taQozkq8BjM$&>#TQ0lhq1u93CwI23UE?JpNECH$-l%I(*pvH2v zzlsADtwP%~0LVK<#f?ksUlWTatEiIb99{{CgW{-<#{LQMV)z}Pe;2tx8ko0O{0W-0 znRPyUI}2FfoH@e_RF60dBaaE2R9C#=y~{G`3?DFh zHBaUo4=vNSPc0{@UyH6UQjcq~%?X0EY0r1Hkg!ktl={s5f*wkeyt+l7>KX?eVI$Pk z0hry!<(FruvXO2K1K!_8HabWE-6%!}Qyd&My+uZ8-!}L8cL4LxoA)0r;9%NyHMxyR zn66vF1{(BOtFG75aN0WdOJUTub>iMe5{_A?hRV5DV?6;A()-)G1*ArI eHt+-R*#{VJ8#m#_CdAQ+L&(^2yT}Bzy!{U&aDKx8 diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.ts index 810161b1a..7f9cef80d 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.ts @@ -29,100 +29,105 @@ OpenSCAD import - + Use ViewProvider in Tree View Use ViewProvider in Tree View - + If this is checked, Multmatrix Object will be Parametric If this is checked, Multmatrix Object will be Parametric - + Use Multmatrix Feature Use Multmatrix Feature - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit - + Maximum number of faces for polygons (fn) Maximum number of faces for polygons (fn) - + OpenSCAD export OpenSCAD export - + maximum fragment size maximum fragment size - + minimum angle for a fragment minimum angle for a fragment - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment minimum size of a fragment - + size (fs) size (fs) - + mm mm - + convexity convexity - + Mesh fallback Mesh fallback - + Deflection Deflection - + deflection deflection - + Triangulation settings Triangulation settings - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Please select 3 objects first - + Unsupported Function Unsupported Function - + Press OK Press OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.qm index f79956693ec117381fd2512a297ba1bf17af5bdd..b44a6c36e643d6f0fc5638fe6d13fe7fee9560e4 100644 GIT binary patch delta 666 zcmXX^TSydP7(KJIvop@Dvum!mwcN3b6dUzmQbt+0mR&Y)B^9>O%8ojqGqe|kq9)dQ zs0XRkE`n6lgZdDf6onx|7ey?DjUpq2P=pARg4(EuKBJfUzB%9d|8u@G6ZZ|4U3Qs^ z0KXkbjRE#4K(+zp_o(iG_0M`B>nw_A3ITk;K5v}xmk3|qOZ)-G9=Z=Kt7Ntev;pbE z%+AsaK*}_8W%v-_sI#2j{2XvzvOMM50jb?GvQz=KaL;idr-I$;q`4_;>`Y`G;Qq}1 zjHCmeg!RO0m4uU=aI6Ec__@rxT|jObS1^)8yk4%MdlO*Oxo9p4d(Lo^-S0`Dgq!vB zk)d(!cfJHzGi+DcB7hsSjlca!MvmBKMHi5F(zbB>1t2`;H@@kDiR=kJ@P&lrAADee zs;ifuZkh+ggZ%6i8Ik4%=g>v+T_+qE-2kNZ3$@#lB*Y7WT@hO7s4!8ppKz=2$(#c+ z+ETo<5ly%4qx{8HtJB@(`uFC|-MYo~kDH?Jfo~d&ER-r%4V2VzRcAh+idFk|K52 zNWm2q!1BY=lV=JM{i!!v{glXq)c$-Q39OcjZmlB0YB~0crO1QwslgK3FiSpnGlP

    JQN)WR;pE`nOrMNbzm|BL^}^ZcGSzbcnJYuaA{ zWhGEH$~Ojhb^s06Si9l;TLV; z5UFvtj_v|xwg`1w2jFND6<5!*e@V<62(e0Hch6!#42vUG6rMdHUiQ4DK$j>+dVv{H z@h7SS&VcL1#77#)yNa3#ghyP{SDpcCxw7yz?**$B>stqG7|n_`O(9cK-tCzp!EL2D zMgw|6^%YLj?^bog-~y7$YHCG^wNt=~jhHmLQ!yAFBe*M9dIUKz1 z>CQGW3Ek5dO;X^PvE*_!1^bM)-!e%a8b|YWBs^#wzZl@&BI7xjke2WUTS)5P=RGiY j7?A3{Importuj z OpenSCAD - + Use ViewProvider in Tree View Użyj ViewProvider w widoku drzewa - + If this is checked, Multmatrix Object will be Parametric Jeżeli ta opcja jest zaznaczona, Obiekt matrycy wielokrotnej będzie parametryczny - + Use Multmatrix Feature Użyj funkcji Multmatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Maksymalna liczba obszarów wielokąta, graniastosłupa lub graniastosłupa ściętego. Jeśli fn jest większa niż podana wartość, obiekt uważany będzie za okrągły. Ustaw 0 dla braku ograniczenia - + Maximum number of faces for polygons (fn) Maksymalna liczba obszarów dla wielokątów (fn) - + OpenSCAD export Eksportuj do OpenSCAD - + maximum fragment size maksymalny rozmiar fragmentu - + minimum angle for a fragment minimalny kąt dla fragmentu - + angular (fa) kątowe (fa) - + ° ° - + minimum size of a fragment minimalny rozmiar fragmentu - + size (fs) rozmiar (fs) - + mm mm - + convexity wypukłość - + Mesh fallback Siatki wycofane - + Deflection Odkształcenie - + deflection odkształcenie - + Triangulation settings Ustawienia triangulacji - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Proszę wybrać najpierw 3 obiekty - + Unsupported Function Funkcja nieobsługiwana - + Press OK Naciśnij przycisk OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.qm index 1e341b7348e44761a1eb6961542b4720a759d1e7..c87c57ffbe91035308e6ac285560e8ee1dcef817 100644 GIT binary patch delta 678 zcmX9*T}TvR6g|7Mvop@XOcwyP{OEVfNrd zQT~+qU`6#{50O}eBw}P4QDPWDfkNa|o^QRNC;W8)3L7q{`0}()y&zd7`UN zdRsfkP2NeflN>~?k)4C>Y?vkQ8ePwgtK{-+i^ThK<<1}%+ATlZS3-ed`F;2!5ZfG) z-b@G9X170NGEY~R8Mm$zv6Dxtz-`cqP5H`DHL4NnwA7^vY;Iw*g?z3wNsa4>C}Su z1awL{>TvJnrY_N8t{n#~#g3_@1@`?Opv?wf!U;=WrxEEMOtu~q!#IE<)Pp~a05L$+ z84Xm!WL^(1=I{f41bOcx{*Mi4Vs*LpfjpgjFQbRKL8gg1cx7tA&Xc;QF<^vrpZ`cx kjUF(n&Bl6fC}0}Qbv0D$*FB~YH0%7G*Oauu4ryb;KQlC^cmMzZ delta 528 zcmWlVT}V@L7{;G-&i*?eb7!+no31rQ3Swc9g()T@P0OX_Xm>3OoD>8>tAx5ZG3%m> zK4ejQqSyKisGEV3 z-Hd6*0?>W~aIS>y_gbL*EgI(Q0L-Bylw$n}j$Gc(xeHQB?_Hp@N!oO809f`%3U4_B zXnARHoVU!Ve6l_VxYF`taUL)d^2GlPD0SQR0={9T(apZ)+@;JX*8r6f+q^)fYjld f34RAwG#{j0r-mF3y1X diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.ts index 475f7df57..65827e724 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.ts @@ -29,100 +29,105 @@ Importação OpenSCAD - + Use ViewProvider in Tree View Usar ViewProviders na árvore - + If this is checked, Multmatrix Object will be Parametric Se esta for marcada, os objetos Multimatrix serão paramétricos - + Use Multmatrix Feature Usar Multmatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit O número máximo de faces de um polígono, prisma ou tronco. Se fn é maior do que esse valor, o objeto será considerado circular. Ponha 0 para não impor limite - + Maximum number of faces for polygons (fn) Número máximo de faces para polígonos (fn) - + OpenSCAD export Exportação OpenSCAD - + maximum fragment size tamanho máximo de um fragmento - + minimum angle for a fragment ângulo mínimo para um fragmento - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment tamanho mínimo de um fragmento - + size (fs) tamanho (fs) - + mm mm - + convexity convexidade - + Mesh fallback Malha de socorro - + Deflection Deflexão - + deflection deflexão - + Triangulation settings Configurações de triangulação - + If this is checked, Features will claim their children in the tree view Se esta for marcada, objetos vão agrupar seus descendentes na árvore + + + Print debug information in the Console + Imprimir informações de depuração na Consola + OpenSCAD @@ -137,12 +142,12 @@ Por favor, selecione 3 objetos - + Unsupported Function Função não suportada - + Press OK Pressione OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-PT.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-PT.qm index 1af24325be54a79ee749b1f473a733ed3d0b5862..588b49c8d7ccca5f0ac5276145a6dc7a129467f5 100644 GIT binary patch delta 669 zcmX9)ZAepL7(M&AyLWf)ZsjyTO0R@cOe`=nM1KI{ zMj&mTX9BQx0@XK(Phk983@kZ~im6fnAF#vO0VoX!_SJB{T9@V-0v65d%I};7(jVwH zZ#fT`8+4b3_mh{@pISEt*o*a#g$sZsO+T`LfT48zVIaHGP-*8pYE2rZLMwrsZ-!r? zbU?KlkG%C#I3-AjE(7{nA@fErkXt1bjbxKIC^Yx40Zc1|a4v=O`-C_BlYsnCn8}X; zi%$xF3M`aKn7R#RfDkdgdjA=)rA#xj1ITMK&0T*ENafssJ*(ls~k|srnugV-`n>k>=D| z+{^=V6U3PEnd~71wvZ4?2NaIB{}~9lJKO+ delta 528 zcmWkrT}V@57=F$<`*yyavvba5)3(`K5=ybK3lo3J5z}SAO45RU76mF5LC_K_krSGT zH&V|kk|(JE2Pzg8wj4T zo%z%PY=|;`DhY@UtYG{O)sw7b$_MyXSnJ46fVHtJg+#n5%RY>JB?88>!4w@d%hrli zqOt66=fBedQF~VL0D-i9`Q9vv?U8qUrhVQ#IsQ8d6PhK*mx;)|B!4@%1UPg#J4Xj7 zliZc*qeaF1@N_BQ8t1XyIl^@wk0wY+BY)R)klq6SVg3X>&mEz5QXXh@Om{s2Y`c_D zeKVjwRR%xaB;2Z`_ErJ;^NJN4AOVJwiw&66m{L7CveGxIo((hrg;&*QuQpR-w|2Mv z5PiX#_MoVi2u|wdV_S$YthfD@$m$aP`r|MugnnZWW3@9mMQ0@{(qMIe?I^K diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-PT.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-PT.ts index 7ec24db12..0fdf90586 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-PT.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-PT.ts @@ -29,100 +29,105 @@ Importar OpenSCAD - + Use ViewProvider in Tree View Usar o ViewProvider na vista de árvore - + If this is checked, Multmatrix Object will be Parametric Se marcado, os objetos Multimatrix serão paramétricos - + Use Multmatrix Feature Usar Multmatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit O número máximo de faces de um polígono, prisma ou tronco. Se fn é superior a este valor, o objeto é considerado uma circular. Definir como 0 para sem limite - + Maximum number of faces for polygons (fn) Número máximo de faces de polígonos (fn) - + OpenSCAD export Exportar OpenSCAD - + maximum fragment size tamanho máximo do fragmento - + minimum angle for a fragment ângulo mínimo para um fragmento - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment tamanho mínimo de um fragmento - + size (fs) tamanho (fs) - + mm mm - + convexity convexidade - + Mesh fallback Malha de emergência - + Deflection Deflexão - + deflection deflexão - + Triangulation settings Definições de Triangulação - + If this is checked, Features will claim their children in the tree view Se esta opção for marcada, os objetos vão agrupar seus descendentes na árvore + + + Print debug information in the Console + Imprimir informações de depuração na Consola + OpenSCAD @@ -137,12 +142,12 @@ Por favor, selecione primeiro 3 objetos - + Unsupported Function Função não Suportada - + Press OK Pressione OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.qm index 2ac776a283f4d310f6a726c214a78100cdb7a83d..bc885174dea49bb60350235be5719cd5447a33f7 100644 GIT binary patch delta 660 zcmXX?T}V>_7(I7)clYkj-K{n^ovmGoq?#6?Qbt9z<{ts z-vekHfRb6l8Nf9NNDP$4YQTIN4NJ8E=FnpAqW*OxdYg%tVoCxdz*>gc`RFoW7-jbD zzY3_^nA=Z|1G*Z;xgAr0-miGd-2^m^it$wh*xIHOKzS3pOHcERRKqSMHv^VD`zvVx zY@d`T-vmkcCnvOZ1Bw7=dYA<&oLtp-Iq@EFq5e8RC3C3?61LsoUiH5R#3Gls4UwVq z+@DGf$t70$L%9TQ$2JxBrz!pF=qPB*2ovsm!-5OGXnEKsBtx5j5Z z46JL`Jf4(^=+xfpbWe&CjOy6PR%5ePaCg~kTP@v6F(Noo$h{RHIAm~rG%aK?pp6KwUBJmj2 Yaw;5@9r0K)9u4x{260pF0&lkb1)R>HAOHXW delta 528 zcmWlVT}V@57{~wToV`2m-s8>|JG#xe)`+57C8B*88lkK8VMZV4Mp{%%v6}`>lj`Dx zrqE4PY9E4FSr>W{#aIxE2x>)SC{~aVf^5}ANYq6O3wpYEc;NZ^J^%k?w72%UVSNSE zYM|gI#SGvK1F?sc8({mh5h$8Pwsy=9_?KBzUj@J}u$BOUSAJ%1`aTlCWZBRVJ@lR} zhc&|F?5{q2q6a$cSz!RdXZEFgQzUj!EqzD#d?7Xdts55ffEr&Skms*D-~0t|MAhsJ zJs^H?cls(FD&q&oHv{e|ZdT<9u#U%fr%1?A{`$xPs+aObD+d_!jz}9R51Nkg_6%T) ziAXF#PO0M7^c6rmFNXG10)^kjoY_MHydrP*STvZ?j67NCf25rX)&qeD+VhE3G}!OF z(^f}LD9+(P|q_9T6e7BJHO7s^Xha7pA?=UI#oOUJG kyac2Q*Iei)P_p3++1p8*Fc3u}nvg`=C!b~MP25}j5BhY0iU0rr diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.ts index 70bc36d00..9884bb3f1 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.ts @@ -29,100 +29,105 @@ Import OpenSCAD - + Use ViewProvider in Tree View Folosire ViewProvider pentru vederea arborescenta - + If this is checked, Multmatrix Object will be Parametric Daca e bifat, obiectul Multimax va fi parametric - + Use Multmatrix Feature Folositi caracteristica Multmatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Numarul de fete a poligonului, prismei sau trunchiului. Daca fn este mai mare decat aceasta valoare obiectul este considerat circular. 0 inseamna ca nu exista nici o limita - + Maximum number of faces for polygons (fn) Numarul maxim de fete pentru poligoane (fn) - + OpenSCAD export Export OpenSCAD - + maximum fragment size marimea maxima a fragmentului - + minimum angle for a fragment unghiul minim pentru un fragment - + angular (fa) unghiular (fa) - + ° ° - + minimum size of a fragment marimea minima a unui fragment - + size (fs) marime (fs) - + mm mm - + convexity convex - + Mesh fallback Retea de rezerva - + Deflection Deformarea - + deflection deformarea - + Triangulation settings Setari pentru triangulatie - + If this is checked, Features will claim their children in the tree view Dacă această casuţă este bifată, componentele îşi vor însuşii copii în vizualizarea arbore + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Selectati mai intai 3 obiecte - + Unsupported Function Functia nu este suportata - + Press OK Apasati Ok diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.qm index 0d2e30d499c2689ab707e3cbee193eae72361ca7..5f875d7ec8e719948ccc2f55452d44891eddc37c 100644 GIT binary patch delta 660 zcmWkqTS!z<6kRiO?%eC0nLC=J`N-y4B#HL$+4#g9b1E%*I7E<@;g|z86V8ZG9}{L| z1!<{e5){>s5m87VnTgTEiXN5`D3}mNeUt&OUqXy*k{(6`hXAH$W}{ zY;}NjjL6(`70}Wl{$v9451?Q=2f$OT&uAq-gr;-rSa-o-t-k@x+huUwJOac{7|P0z z0#WUT(|2nC`!?gDRS$va6UHIw6kusH4*y5Ml(TjxkXULejOKep+isc;r2|Qmrk|l$ zz&Ry$zw}Y~v!v|k0*v`m{FNRcIaf*>PGnuL)Xx0{9cEsi-_npAG7 zOW6o4$gZ;+TrtYbn2e= z7<5W~ZBN+DO&wYG;F3|mkZB)xerMlNKcFw-Pguo(Vr-Wps1{CPbxMJcg} zSuP`wDB)c|*2SoTahWLQTP1TB*=(LdvL#|Q?;_z+*coP?v`tO^Kv=K$?P=bt`vVQZ gru}tce=xvU4>$UBcQ6nN?(@lAZ?vTYo$}wrf8>{&$^ZZW delta 528 zcmWlWUr1A77{;IT=iB*q&UUss+uE`@C5miT&?(I*wX{~6LDBA76sVL0K`Vs3II`*@ zr7YA;y)eid#l#vxnhYbYj10jD3dH^_+C>Qw(ZZnKEr^Og)+SvoWTEH7qD z`5M`Lvps(^PY2w!rBx3Q?6)o6o+8*8Wz%cg=Qott*LGOYBT8(Mj68<&?&KH1-k_vs z=>TmVcPFpVq7A%eVk40<9^H|pTF+y9;sjF7UmUIm+;#k;^_k`~_HZMS2W#vTi3flj zQNxj1O3GAk&Rn8>!|K4^62O~L=b{}1P@ra`9To{6Yo07c8R*qc1P=l^E!yalJQB7! zZ#5pEFIaL8=2wtGr@pmsH5m@+=YLBSb%TE4UMUft)|Импорт OpenSCAD - + Use ViewProvider in Tree View Использовать ViewProvider в представлении в виде дерева - + If this is checked, Multmatrix Object will be Parametric Если этот флажок установлен, Объект Multmatrix будет Параметрический - + Use Multmatrix Feature Использовать функцию Multmatrix - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Максимальное количество граней многоугольника, призмы или усеченной приамиды. Если fn больше чем это значение, то объект считается круглым. Установка в 0 приводит к снятию ограничений - + Maximum number of faces for polygons (fn) Максимальное количество граней для полигонов (fn) - + OpenSCAD export Экспорт в OpenSCAD - + maximum fragment size Размер максимального фрагмента - + minimum angle for a fragment минимальный угол фрагмента - + angular (fa) угловатость (fa) - + ° ° - + minimum size of a fragment Минимальный размер фрагмента - + size (fs) размер (fs) - + mm мм - + convexity Выпуклость - + Mesh fallback Отмена сетки - + Deflection Прогиб - + deflection прогиб - + Triangulation settings Параметры триангуляции - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Печать отладочной информации в консоли + OpenSCAD @@ -137,12 +142,12 @@ Сначала необходимо выбрать 3 объекта - + Unsupported Function Неподдерживаемая функция - + Press OK Нажмите кнопку OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.qm index b9734705f1644f0f5cc7dfcdcab31b44329e3be6..241dc8725c6c710d7fadd3f3f10d3d4552006b1f 100644 GIT binary patch delta 666 zcmXX?ZAepL6n^fuyL)%H-OV=FmS0ywGiSyyNkv7RWzVp7T6&EkmuRjqxRb zYXUU4>C6J!I-va;#Y0g1sRB&>s9&f7kj7T)0M&mWe0~dI7a5J`4v=SO>h2x|R(xVw zT898tHFIWq4=MQ=XOA0_;KMi@6W9$e=PK7=fZDW%lw@fH!gL-;N-Tl_}2kjflhw&XuKT zNOAN2ucYKUmzkwS)a!VC@;D7F-7DS06F-)km?cJat)J~=fl zJ_9)=*mUNdq|{*3h02}-OtUUs@}1^R2FSK0`UxYLwnU?*Fj*$EvvG8w6JZ1pL=+M{ z@S+PbbW^@u^C3jtUbv|npgj1$F45ahSPAxj)d<}^@bWYtN;>78;Xp7ddAwb*ZYdD- gg~Gk=Xdo1%T#EX=l06iRgnGPOLdI4k{an`k7e}t44FCWD delta 528 zcmWlVT}V@L7{;Hov;WT7*>=vRM|YN*Nf^YUh!r&{QTv$oNgsnQS`?{N1VSr>x;W-q zkr$E7ti&*>8@mu=1Vtf2pGbwU5(>nq^>GoqD9H6e^mOs^UcAryKJV{IH%&KOH0>{d zvKH{VSW~QCAa;{|63#zMfU+E-vk?F}YzlV+zU?@6xrOsa$=f;#_y?ucV=17dPHJdM z1L`@c_x^6`-Z@UKdIT7TOxO-(*(=@)hLptD3~cyLD~SS)N<+%qL!U|TSIJND z0qv~n&z|R@T6OEhQj!ML_?ja75jC+PNswLYuMSIO#KO%kh{mQc968B$LOei j3P|-vuKGJrp&w?vE!>2O^=Lyojv{M0_K0jyEm;2mAKZXt diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.ts index 42743df21..cccc3df38 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.ts @@ -29,100 +29,105 @@ OpenSCAD import - + Use ViewProvider in Tree View Use ViewProvider in Tree View - + If this is checked, Multmatrix Object will be Parametric If this is checked, Multmatrix Object will be Parametric - + Use Multmatrix Feature Use Multmatrix Feature - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit - + Maximum number of faces for polygons (fn) Maximum number of faces for polygons (fn) - + OpenSCAD export OpenSCAD export - + maximum fragment size maximum fragment size - + minimum angle for a fragment minimum angle for a fragment - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment minimum size of a fragment - + size (fs) size (fs) - + mm mm - + convexity convexity - + Mesh fallback Mesh fallback - + Deflection Deflection - + deflection deflection - + Triangulation settings Triangulation settings - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Please select 3 objects first - + Unsupported Function Unsupported Function - + Press OK Press OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sl.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sl.qm index cedc97fece63cbd71665559a36e7c4a2e3690204..ecb4ddb4820facda28a48db84512aa3b34bd88d2 100644 GIT binary patch delta 680 zcmW+yT}V@57=F%~=Vxc`Y_(}_D|bW^Vl^*J)X<1#t<GVw)L@n5-ha zk!;$JT@=(sdJ)y=A`%fSGifF$#RQSc=%yqxNU4k7y7<25{rkS>d7s<9x%#X2R&0+uo z;9ki)J{=+AWllVn23UAy&23AftOoy4*~0= z-0u<-kmum987cwpH9z@ofrNPZCCLsHU*MPTz68Wxp?q!tNfeC;!LLLlPYJ)Y)JPZE6NK z`c2Qq6&frw-|T84M~2PAB|Z}PL$172N&+l$=bC{m-zFy>?h)}N6iBg_GJE6{m7&Fz+Qbof_bW&HPo`MdV)F{$%3K5a`z|$!^7*(~n m5{{hcY*SRNRgazy#Z_ISSc$g_5yhu#F+Kf(_hhDptm7{l$fw!> delta 542 zcmWkrT}V@57=F&#zMZpkwzIV#-O{xr3S&}`MH(*3Ra*8#(e9d5%u0%amI#$C>_?)A z;@E0>QIIzZMKOY+68p76Q&FMG*aT(CYAcwSx%b$ud0o5+WIN$8pQQ>Fvf zpzY0vNfKzY@(>%x7bh^G54t zo?zD5R~93{T4Tk{1q5s~T4pV@`lNCE{%R^LH%@2$oLgqR1|8DMU4iXX>aB1cSvUwt tRj%>yZ=kfMnf6}fBpld=Bo5*b%zzv-pZh#g%KRcna#=Ylavkb$@E;VfhB*KL diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sl.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sl.ts index cd2093e1f..3e4ab4f06 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sl.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sl.ts @@ -11,7 +11,7 @@ General OpenSCAD Settings - OpenSCAD splošne nastavitve + Splošne nastavitve OpenSCAD @@ -29,100 +29,105 @@ Uvozi OpenSCAD - + Use ViewProvider in Tree View Uporabi ViewProvider v drevesnem pogledu - + If this is checked, Multmatrix Object will be Parametric Ko je ta možnost izbrana bo objekt iz množenih matrik bil parametričen - + Use Multmatrix Feature Uporabi značilnost množenja matrik - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Največje število ploskev mnogokotnika, prizme ali prisekanega telesa. V kolikor je fn večji od te vrednosti se objekt smatra kot zaokrožen. Izberi 0 za neomejeno - + Maximum number of faces for polygons (fn) Največje število ploskev mnogokotnika (fn) - + OpenSCAD export Izvozi OpenSCAD - + maximum fragment size največja velikost delčka - + minimum angle for a fragment najmanjši kot za delček - + angular (fa) kotni (fa) - + ° ° - + minimum size of a fragment najmanjša velikost delčka - + size (fs) velikost (fs) - + mm mm - + convexity konveksnost - + Mesh fallback Alternativno kot mreža - + Deflection Odklon - + deflection odklon - + Triangulation settings Nastavitve triangulacije - + If this is checked, Features will claim their children in the tree view Če je to označeno, si bodo značilnosti podredile svoje podrejene predmete v drevesnem pogledu + + + Print debug information in the Console + Natisni podatke o razhroščevanju iz konzole + OpenSCAD @@ -137,12 +142,12 @@ Izberi najprej 3 objekte - + Unsupported Function Nepodprta funkcija - + Press OK Pritisnite V redu diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sr.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sr.qm index a6439dfd89ed4196a5ad7482a4854db186357c20..686f2428f5182c9778b44e1de6e946e4aaadf91c 100644 GIT binary patch delta 666 zcmXX@ZAepL6n^$`ckk}DyUDH}%jT|`QfwJvBaMnu(kv_c*sn62Y;%|N4))O^g@q>3 zpT4GL_QS&dm>|{YM-*c8$%UjabXT`(< zz-|PLBV<#6X%kR)jeH#1-!33;6jd`70H(3s*+uvtgfG@p?X1e^8wGL>t154F1J)eX z=IS0muU4JAyB`qFs5{m@1k4lad(3HoPpiikJ)o)Bb_ggqs#$NLe8O~9GZR?}ED<$7 zB37X2v$pw}AIM+Ea0iosx|+!w>Z82El#ST{+jAx`uolo+m}nsp7bTgAf!9QEgvmID zX`or=SFwR;Uh2+k+yEo%p1yiVgY@e%ya?Dkbn{mp(bAvT)i3&xK>l~O=?f7FF1Bf& zymf(n6P%+>y4lPW4Pvl!meeU~SiZ|Y=q!jNk7wn-;tzL7e^a-Gfh^h-4%B@$}$v&mb`ij=~xvi${!E}}L7 delta 528 zcmW-dT}V@L7{;HobN)ML=WJ(7kGiSLWGKY?AZ)08sp~_n4Eh*d)TF>7g9ut>Byqx$ z=tc@H%PtJ+A`PNgU05MPmLYu@b3suVvB(P%qKj5}(Nh6fM+L;^ft0zBe`4d0KQSF>h2jJ=b%&@ z?F6)4(#1zRI5+KRuN(!uWsb+93(!N3;eQp7D;k=Cf;aLCAN#iZw>*_t2m}tvKNGpY z{HU_$)jk@x3vG8d;E0O+8<*H06XnAJ*09*$w;T|y;%E_#gEQhq-#ftdT4YKFfO$3I zPpLthwDbAfkAV5znb9qvc+xq0{V8GV)TNWuD`-;VGu^P^=~UyhG|FvM-yir!f)8qD zf(PiwHDB^Pg+f}>$P$uPYOz&W)-El+K0%P}+W59jB<$C|*k1vw&=qbYd9m#p>39Gr z%k*%43t*hmFTXrXy*YhgLp6|BuBT!>1Tge$tjFfyZNthkN`Kne8{7gE-ZzGxETCZ8 zbER!FlZbc*OV{$iAv4k+qTwg=*e{tRpUso^){yX)dHQM|_ZrM+U_!1FUjJ5-<~;Ns nE*k@+DsQUf2T)Yo%6QLl6P98r5oMjSQc3z9%_14p76<+U+5Ula diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sr.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sr.ts index a382b515e..a6c5b1b14 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sr.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sr.ts @@ -29,100 +29,105 @@ OpenSCAD увоз - + Use ViewProvider in Tree View Кориcти ViewProvider у приказу cтабла - + If this is checked, Multmatrix Object will be Parametric Ако је означено, Мултиматрикc Објекат ће бити параметарcки - + Use Multmatrix Feature Кориcти Multmatrix Cвојcтво - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Макcималан број површи многоугла, призме и cл. Ако је fn већи од ове вредноcти објекат cе cматра облим. Подеcи 0 да нема ограничења - + Maximum number of faces for polygons (fn) Макcималан број површи за многоуглове (fn) - + OpenSCAD export OpenSCAD извоз - + maximum fragment size макcимална величина фрагмената - + minimum angle for a fragment минимални угао фрагмента - + angular (fa) угаони (fa) - + ° ° - + minimum size of a fragment минимална величина фрагмента - + size (fs) величина (fs) - + mm мм - + convexity конвекcноcт - + Mesh fallback Mesh fallback - + Deflection Дефлекcија - + deflection дефлекcија - + Triangulation settings Подешавања триангулације - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Молимо, прво одаберите 3 објекта - + Unsupported Function Неподржана функција - + Press OK Притисните OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.qm index ba76e715b52f8753031c2be907156d777a3373ba..83e42eb9a7335fcf40f577cd82216d2e586d3f12 100644 GIT binary patch delta 649 zcmWkqYe-XJ7=E_1bJ^K;Hrr-f(>5z5Sr}wic9HUuRu*fuAZyiRQ&)Np?1E4~7Ft9E zW=%8KkBWj)B8m}oLyRmVDwI`V6oWAQ6BhNOh5hLD$M-!i@AKZC=i!!_>RwCYC%|t4 z^k3*r00tSTze#utntv;R{LiS&mIKIQySodJst_62M!Zd>58egx&a2kl>junqs?F7> z0j*bc;mKaA%cxJR9RrNN)KA$SKqsn4<`H1Z8x8@s+st|s@d?8elZ}=Fi)xuaQ8VDo z(;Rsh0v38%;b0O_H?jFQ`iW1mB_no1HQSO}4REX2n1dECPP1=PQ-JuGopufZ3ry@> zkq*!>+(o7WV9#-{K9V@&7&k3ifWj->?6ntwu!djxz8?wLmht}Yv`9M2`)3I)OZZQ1 zGo<7LKRrQ*==_2yeU|RtFYFvGBgGoQw=qX}K=9W^NzfkQwRZ<#3JPBn->CnG*4;@C z6gFr_yB^RXhedaNklbw&FTFiQ^Crcit(AavPR#iF5_DmynDg~f;keF{BTMafbb-QM zfa8qr(Q_9S4jV3aHj*QH!*EdzE$ERdt}dm8gHrr2LrNy4k1$oQx>_?Fb1p5gfe|Pb4hIT)|Ltyww$!Ta-vgAQo0+ Xie0g`kgGgMLy1B_FN+wEe3)YjbBkeP_Qp! z*Skg%_Y1i_4(MA&_O&j~C&a9QAaR>$>YWFO)1oDp#04JlruQQW{32D@2TW-ee~K)s zH(akie4&7RS4stdyq~V|E6-{6j5+5$|C@T$jEuz*gFR$M#!2LFGe7N31MV_2HB15O zzVszdQSTPHZm^6_BQm^rl6Y4}Rz_)LvwXd&js#ETx7c?eQ0or0(s|xh_h9=y3fQSa zH4T83Q0L#CAeN}URh2+iy&4I3(m=7A40pzRG^OpenSCAD import - + Use ViewProvider in Tree View Använd ViewProvider i trädvyn - + If this is checked, Multmatrix Object will be Parametric Om detta är markerat, så kommer Multmatrix objektet att vara parametriskt - + Use Multmatrix Feature Använd Multmatrix funktionen - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Det maximala antalet ytor på en polygon, prisma eller stympad kon. Om fn är högre än detta värde anses objektet vara ett cirkulär. Ange 0 för ingen gräns - + Maximum number of faces for polygons (fn) Maximalt antal ytor för polygoner (fn) - + OpenSCAD export OpenSCAD export - + maximum fragment size maximum fragment size - + minimum angle for a fragment minimum angle for a fragment - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment minimum size of a fragment - + size (fs) storlek (fs) - + mm mm - + convexity convexity - + Mesh fallback Mesh-fallback - + Deflection Deflection - + deflection deflection - + Triangulation settings Trianguleringsinställningar - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Vänligen välj 3 objekt först - + Unsupported Function Funktionen stöds ej - + Press OK Tryck OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.qm index acda52891ebfaa1364938415d984c9eeab42b6f8..70ecdfbd296f9f1ae3f67ed60067f76456575233 100644 GIT binary patch delta 666 zcmXX?ZAepL7(I8}-MzbWccz;;Kko{~Q0#||RQeFDw6yRer5_p1Hg%vIY%|GzEUZBP zRHpV}L_&cX5rq^;A%bZoWr7hIgdj$LVtqkbNpy^Uyzle8&vV}AJm<_8brqkpMLq-4 zRv_jo&n#fc0!nW%x?xz!0TQ}Uu#gAfCH7=@vc8Dm#offd5n?=dfHhS@{@s&6+$W)^ z_%vWj6M7!*2h?M_~=bk^4&Dvc^@!1mF!Xv9ZOO!yg0>qJ<9N|0>D0`%+>Zq2>7Bb*Y+`jPAZf}m9ky*OnB zb+d|DnKu=Aqd_L4i%LW&EuvCd1O_3=qKFtoQH#3h>Eh*i;d%f6=lwnBo2D8snbv1O zUJYnJ0rw=&X&}}|eF(?jMS%YU8m8+2OrSa11$b8C=(UaXmq_l`yMT8=@UKig3RNS$z@Y1*3Gxq7!LLeBk|4Nks zb9|0{uiAj}giv;80b9K&zkP-NEwNxENEM>JcPSuR#IZ^SR}G67y;FcIFACv)U{+ZC ziD--&b3S|f9?&P81=R#Xea_;|F~aVZ7r)`YiW)ijH46)#Lvpgnpt2hI-GNUeD9VLN zen35;cykxH$ggY}ttDw#NvtYSPb$gvDT1^p&v$GhVW%=>r=aS|rhp$+Xgj9kDL7dcsxg8u*)sDBdx diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.ts index 6276f300d..0864e3538 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.ts @@ -29,100 +29,105 @@ OpenSCAD import - + Use ViewProvider in Tree View Use ViewProvider in Tree View - + If this is checked, Multmatrix Object will be Parametric If this is checked, Multmatrix Object will be Parametric - + Use Multmatrix Feature Use Multmatrix Feature - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit - + Maximum number of faces for polygons (fn) Maximum number of faces for polygons (fn) - + OpenSCAD export OpenSCAD export - + maximum fragment size maximum fragment size - + minimum angle for a fragment minimum angle for a fragment - + angular (fa) angular (fa) - + ° ° - + minimum size of a fragment minimum size of a fragment - + size (fs) size (fs) - + mm mm - + convexity convexity - + Mesh fallback Mesh fallback - + Deflection Deflection - + deflection deflection - + Triangulation settings Triangulation settings - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Lütfen öncelikle 3 nesneyi seçin - + Unsupported Function Desteklenmeyen işlev - + Press OK OK(okey) tuşuna bas diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.qm index 16289f8ebe4fae391e1fa6316543b86019f2d866..360ad14986a678cf4263e37477fe700cc1282d6d 100644 GIT binary patch delta 662 zcmXX@TS${(7=Cv65BvZ5Z@Ou7n)`<-)H+<4lu;24wZqJL7~QyNy3GxAgY6%JUQFx& zT_mQigG5CK$SyiCjG_>sBcUNIfRp^_Kz30qyU#z>1@&S*QXqk3Eh7%HKxp)NblKr_%ec0|o0;n{OTh zOgB_Jb{+wAgQ^qvS^-0Yx^L4%z}T<8&kO=$uX=JB0ZrAe13+=JW{Z*PNol`kA-)Z=3HIsBc@pAcvw|5Y>th!$JOcO_x8X$!Nm$-+-p@oNedN50 zgyxIf>(B>4DCe@XBt)Fyjp<{gyOD30S`Xx(uP|aD?-LInk0oSLe4WvjbB7_jx4n* zqHpCsptM80`#`3~*1Xd_F8Yc)dDrYtA}~wU=gW!EDJ7OPWO=^SduuyQsFV876p~Y) zq{kqqgp9$`M3b8S7@`$V09BnKWBWnxehZV$3f+WRt11|o)0d_z)F~zj7u<*;j0hCS z@FReBB+yCmaxRD{RlDJ%YMA24|GZ4+5cSG%{>#Q`??Qm5_rcPtbjQLGMfL~U6P5iX4A?c&dS@qga;d4A78;7iqjX?+8f zJ%A%dZw_!C0&1Sn?1%iP2*^&NB3S}p3AO%SKsRvV?m^P73y!uiAmh5QbG#35b75cQ zHGr=Qw_cqf-81o0`3ztziZON*P!rQE8Wp{w?RYlnieNa@(c#up998 z$St#{flaN9Hw^;fF_!)KHvPY5g_Ain3)q?AQh-gci+N=1bFfdti)7HpQoa!&Q(znU z8X((k?-!ORz*AdFH39FuZSBz;g8irz&(l3mxf1$52n+gtCA3CH?hWO0$0}gItfb~B zfL6#|(HoTaD6gB^0l0qg;O;aL*Yi*yOdt*XLp`17YMlHmir>$gNzpVfO_>?Oie`qlecv{$LW1vR7=8J^=r>TWd7 m7rX<6Y9rzM32d(Iq`Km?2~*CL8|6|tAV)o7ghe~~w%mW7m4ev- diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.ts index 23ac8d91b..1a5ab434f 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.ts @@ -29,100 +29,105 @@ OpenSCAD імпорт - + Use ViewProvider in Tree View Використовувати ViewProvider у дереві перегляду - + If this is checked, Multmatrix Object will be Parametric Якщо буде позначено цей пункт, то об'єкт Мультиматриця буде параметричним - + Use Multmatrix Feature Використовувати функцію Мультиматриці - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit Максимальна кількість граней багатокутника, призми або зрізаний конус. Якщо fn більше, ніж це значення, то об'єкт вважається круговим. Значення 0 для без обмежень - + Maximum number of faces for polygons (fn) Максимальна кількість граней многокутника (fn) - + OpenSCAD export OpenSCAD експорт - + maximum fragment size максимальний розмір фрагменту - + minimum angle for a fragment мінімальний кут для фрагменту - + angular (fa) кутові (фа) - + ° ° - + minimum size of a fragment Мінімальний розмір фрагменту - + size (fs) Розмір (fs) - + mm мм - + convexity опуклість - + Mesh fallback Скасувати зміни сітки - + Deflection Відхилення - + deflection відхилення - + Triangulation settings Налаштування тріангуляції - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ Будь ласка, оберіть спочатку 3 об'єкти - + Unsupported Function Непідтримувані функції - + Press OK Натисніть OK diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.qm index 1a71d2eba9f7b250cfade62c8a9e61c3f515e6f7..949e17567665c58459a01434d24ea090dfa5b930 100644 GIT binary patch delta 660 zcmXX?T}V@57=E_1vvYRNJX<>dit<<_#i9_iG%|*x%(AdZ=%Q8HHXY~=?T0}T3tNFV zQR=cJD5x&hMHHipNKEL*hz!9B3UUyJUDybMQVi-by7<2L{oeQeo}c&Img{wwT*>c% z)Bq@1z&;76bwJZ?#*?u8-T)M>LVd0VKn8o|?3BIXhCB4FzYU(q6< ze8O`4O@PGxqI_fkFheZ4m1cihtQsw6Y!rjTo589WTS4OTg!p>+0||6-rXoWjnz&f0 zl18xh3$=j7u)ci%i9$Tq8N~&Zja&0KpHt{+Y17*@l5qJY-yDhT7Ri@qbf%<_U9*7P zEX_<(i0zK-%=S@8pS*8uBOQC>w(awbXJp^bC=Ge#R|of!U_}0$`~obiwz(7BK-mS` zSnop$Ii|Rq{M^`K<;p~gc#BGAS3OYJpiH$5CaJJgnQt59;1ks~&y^O>sqHKG1EqcH zqo+Cn=L)VSTDXyxg1ePo3Y^qxZ>%BVtQKDo=wwJc^-oy?bNK^W}z zpq&d$!e_iX2^-25OyMG|CT7gn25vXZqvg~CA>tq(9Ox)5Bk%8P~7 zgm-7V{$T&;VM_-+@eCrwD>@(K9rrvV({V=ERdaIwGFy$z43bJl89)DBv7Upc5zTh>9wOSO?VeRH*zl)4SNnsF S!pC{n6FI5&I&uxhlJ6fl;(lrX diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.ts index c32ea3e48..e0bdaf797 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.ts @@ -29,100 +29,105 @@ OpenSCAD导入 - + Use ViewProvider in Tree View Use ViewProvider in Tree View - + If this is checked, Multmatrix Object will be Parametric 选中此项则参数化多重矩阵对象 - + Use Multmatrix Feature 使用多重矩阵特征 - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit - + Maximum number of faces for polygons (fn) 多边形面片的最大数量(fn) - + OpenSCAD export OpenSCAD导出 - + maximum fragment size 最大片段尺寸 - + minimum angle for a fragment 片段最小角度 - + angular (fa) 角(fa) - + ° ° - + minimum size of a fragment 片段最小尺寸 - + size (fs) 尺寸(fs) - + mm mm - + convexity 凸度 - + Mesh fallback Mesh fallback - + Deflection 挠度 - + deflection 挠度 - + Triangulation settings 三角剖分设置 - + If this is checked, Features will claim their children in the tree view If this is checked, Features will claim their children in the tree view + + + Print debug information in the Console + Print debug information in the Console + OpenSCAD @@ -137,12 +142,12 @@ 请先选择三个对象 - + Unsupported Function 不支持的功能 - + Press OK 按确定 diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.qm index 01a73c6dae191ae68fc2572178239550de4d3af2..b38a9d16c89221e837dc838b207ff42fb425ba7f 100644 GIT binary patch delta 602 zcmWlVZAepL7>4id?0oFZoqc#FMU+P)!B$N$Dc1+lP|H#*+n;DPYqKqEC$^bXKUP*h zDhO-SREPu{F{vo0U}R$SNn{8{P!K{c`V+Q@Xt{!(e!Sf8%k$jtbwAIj<90=t9Loay zCO~fj3Z_XDK;2E!Dd_&J0?ZYto~;CM2le(&Ky)H}Z9CQLH3h!A04O{*J-?y92 delta 528 zcmWkqNoW&c7=1I7**lZOPNbqzgGA71E7YxZK@71*ZPj9KrYN+cC&5Gt^)MP25Q`{{ zTM-S`9xCob4=$97D{d4jii#8@E}&GUh>2D7dHTM8dFzGQebt8@_Y7XYFfo}LVM@F2kZ_#+Q#HgTp!5x5%<-I*0->!m~rgs zUh)-;-sQDyw9Xhx<`|&IC?<0*mj=@*vdZ9PbJOHTpnRTr{mv8;j#($#Ruk~qIvJlbAYwtQ4VnZM7`(Q)L4S&TtCbe?@ZIK5w`pZ95IZEE# aR@UVa3E$c^t*10D@G8Vn$!k}x1^)qb357%e diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.ts index 74a34970e..60dcda2f5 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.ts @@ -29,100 +29,105 @@ 匯入OpenSCAD - + Use ViewProvider in Tree View 於樹枝圖使用檢視提供者功能 - + If this is checked, Multmatrix Object will be Parametric 若勾選此項,將會參數化多矩陣物件 - + Use Multmatrix Feature 使用多矩陣功能 - + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit 如果fn大於多邊形、 棱形或錐形面之最大數目,物件將認為是一圓形。設定0表示沒有限制。 - + Maximum number of faces for polygons (fn) 多邊形(fn)之最大面數量 - + OpenSCAD export 匯出OpenSCAD - + maximum fragment size 片段之對大尺寸 - + minimum angle for a fragment 片段之最小角度 - + angular (fa) 角 (fa) - + ° ° - + minimum size of a fragment 片段之最小尺寸 - + size (fs) 尺寸(fs) - + mm mm - + convexity 凸度 - + Mesh fallback 網格退縮 - + Deflection 偏斜 - + deflection 偏斜 - + Triangulation settings 三角測量設定 - + If this is checked, Features will claim their children in the tree view 若勾選此項,於樹狀檢視中特徵將會納入其子項 + + + Print debug information in the Console + 於主控台顯示除錯訊息 + OpenSCAD @@ -137,12 +142,12 @@ 請先選擇3個物件 - + Unsupported Function 此功能未支援 - + Press OK 按確定 diff --git a/src/Mod/Part/Gui/Resources/translations/Part_cs.qm b/src/Mod/Part/Gui/Resources/translations/Part_cs.qm index 0498d9bd296fa426ee3fd24ec943fa9b6eaccb5b..3aa852a6d75c35b027034ac9119f9c89f24a51ea 100644 GIT binary patch delta 5489 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 S`E#lIbRuTw>}oFUQvL_v6=FO9 delta 5503 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 diff --git a/src/Mod/Part/Gui/Resources/translations/Part_cs.ts b/src/Mod/Part/Gui/Resources/translations/Part_cs.ts index 2f910f5b0..1bbff5246 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_cs.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_cs.ts @@ -636,12 +636,12 @@ Make face from sketch - Make face from sketch + Vytvořit plochu z náčrtu Make face from selected sketches - Make face from selected sketches + Vytvořit plochu z vybraných náčrtů @@ -1719,7 +1719,7 @@ Please select a valid shape in the drop-down box first. All Files - All Files + Všechny soubory @@ -1766,7 +1766,7 @@ Please select a valid shape in the drop-down box first. All Files - All Files + Všechny soubory @@ -3347,12 +3347,12 @@ Chcete pokračovat? All CAD Files - All CAD Files + Všechny CAD soubory All Files - All Files + Všechny soubory @@ -3690,7 +3690,7 @@ Chcete pokračovat? Show control points - Show control points + Zobrazit řídící body diff --git a/src/Mod/Part/Gui/Resources/translations/Part_hu.qm b/src/Mod/Part/Gui/Resources/translations/Part_hu.qm index 4243d15a2f0b335e215107645a73e7dc9c697dfc..87598abcd5be7bff9d7dc239188fc21e889623ed 100644 GIT binary patch delta 4172 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 All Files - All Files + Minden Fájl @@ -1767,7 +1767,7 @@ Please select a valid shape in the drop-down box first. All Files - All Files + Minden Fájl @@ -2995,7 +2995,7 @@ de szebb végeredményt ad.</p></body></html> Box selection - Box kiválasztás + Négyzet kiválasztás @@ -3354,7 +3354,7 @@ Do you want to continue? All Files - All Files + Minden Fájl diff --git a/src/Mod/Part/Gui/Resources/translations/Part_it.qm b/src/Mod/Part/Gui/Resources/translations/Part_it.qm index 2b6caef345f5bc51d3c3342bd92dcec15135d80e..d15bfcbb14440fc24320a34abe062df7a98e50e1 100644 GIT binary patch delta 23 fcmdn=i)GU Make compound - Crea un conposto + Crea un composto diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ja.qm b/src/Mod/Part/Gui/Resources/translations/Part_ja.qm index 02393aeceb96b31dfa9de131c20fe4e0e1819551..b21f4a36f78f6954cf5cf1098aac7c8c6862be18 100644 GIT binary patch delta 5402 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 delta 5396 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 WC~hxnqY&3C0+iqT7u>LEc=-P?Bx2P7 diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ja.ts b/src/Mod/Part/Gui/Resources/translations/Part_ja.ts index 57d95485e..7349b8d61 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ja.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ja.ts @@ -412,7 +412,7 @@ Make compound - 複合体 + 複合体を作成 diff --git a/src/Mod/Part/Gui/Resources/translations/Part_nl.qm b/src/Mod/Part/Gui/Resources/translations/Part_nl.qm index 39a909f043ee63cae7a08d54bd73c2da198aa903..d51caea5a5da4682eb27750dbe4b37588ce08c88 100644 GIT binary patch delta 4110 zcma)8XIPY17Jl!{eBYFBW~ed@Wd@{)hzN*C6cH6mqG&)&Kp_gExKfNIs4HTk#%Qd2 z?M88aVg%8|-Zg6>Mvby(m>>ItFVC~^zzgTxd-{3r9KEA@c}KOd zy~|YqlYnZ8a57=cqNLL-gSTK-^Ln7YGjQn&(7O%rb_(Hipy4gvk6Cn=f}!+mN9tTY zfezn-YF85Qx)!SM&V#8rR6i~O)Ai8+M+h-Bz*8lJq;lYoi4b~L0oTGH z^o}9lzuF9nQpTR}c}kO+4p-&^r`#Z1nF;1&hWfEUmtyzYibQo9Fg^plBYq|MO&+d_H5Z`oifr;%f#f3^V9Xe# z&RGszy~|5fRyL5YR#_BcD}F#_jm$#&gEnBEvykCD2N)_LBl{VcS&fWwZ>VBZkWpU= z)ZTF5>r8GC`iCySkm);tyB^4-VqnrvjJ!oy`3$2Gz0b}=Yt@sl_eF~49a=P_ELaOY3u6s{ zP{`U{Z41=pu&A_qVA^9We&0BtXgce=CJM||$p+k^{$*@tL-NzX3`f}TeRRGw>U);= zUNo?4G5bg7yI_I`80_I_1cY0g^E_f@v29o`AW<_}1I$&T|MfjEVU~ca!Qm3te zH%5qx^#AMtqPi;v`%>o0K8hg|sJiFh;pfG+3Qt!qsDl;eC?2l1YL_UE#P0@k+Qie; zvF5{yCmn-;;4(#H$;W`MstK95GcQ+%unoLgZPI2bdu*@)M>PDQ+T!(Bn6hY@J8;EQ z`OhaSf#dy^U!4%ZT(Q0mHRm3H9^AiP5595;bRN~4PM>H_#=s@}PO1n_vIO5K$VJa$v% ztt$k!2dVOl7Xr`v@rRoJ+E=PMlD!-eHs$x$$@aGl2 zMQdeCc(pddWxT5P(_&!%YE|vgqrj^t+@MQv>7{x)o2=K1O~`x_d8W?9O85kwwe({l zad0XSS|B8yEC(~?2t(@V=CvCR{NrmO?=Q;#dWgh_X4daP@O zl8?qyj~azp+bE-y5Mgd(AWc`Cu(X1ryFOW1KG~C|_>8c8GsRG~Sy=HP2FP3}tofAA zw>Mf)g49Bm<9x#cVt`eoB5%n(0JA^okd#j)@90(LwQi`{9~3U7+jlGlM*g2b7w zTY=lX#kHH;5-*t@Saq9U)|*O)iS=E{>Vrh_UJ*rBWflKCz5^JLF23|QNCR+ReCb^W zh$#-NKd5%84?|oz1yyCH;1a#H(4ExDlq3_b^Kf%O}bW{97Zi^ zdqJIh`Z+Lan**!z)FbWxdnL6{m+Wg#1pT{u`uKHZV7Yqsq8nhU96rwwqRmxr+d=Nm zyygcC{UZ;mUzeQ&ex9SzsA$65g^Rzrb zu~QpZRR$bgtPTAv8Sp)*jZCH@9>1*Zu#EUoy-%B

    }-pzRYE0;d06n|$FQakEZ4 zBCHEV_C!0fo(92K%F~>z+IsEMOVpy{t9Xf1f0y~%TZ0!<7PUI@a2D`9pI>$gNqkE; zv{gA3uvRy`qYC&nL^nLoOu5Z=;NSvX?p_~~f7paf9ibaBk0S8!*NrZt7xPXhp5z?i z@=7jGz?c)@tMw6Hl3F{ha}$9RWGF$xlY#o9FYXvEYa28nojS{c3s_~ z^FY_ly6cm718+Xi{lUm`R$oaS)s;qJsiYfwjB*~z4K4|#DU#=mo4~Pj2VNW~nU!?g zbH8K`xk4|=aw+62dA6oX?dMk!8*PyKbW5NtgQXNNTE$i^r9uCq!HcMo-Yc65{P>kL z!YdRE>!pG(RuR#!lg2+!qX%G&G$HjFu*X9x4p;)5Y%R?&>S=H^nN5E%af~#lBLfP! zw6+(O+IKI%>0+f_7F>gMrZDN-zy{*81w6(z!aQ0!do~7WeNnn+e>A$Sm!9{!LABh= zOI%HTD)oLs#8f&PN}uri=-L+=p7M_BqSC( zxn5sfx`X74`DNFTxD)z~1L&o6_Rv>cqeWs}_20Z>A?`b*-4*g~Vm~_~fT}6A=m~G6D zyiTvfBEH4l;`&H!+!a8ptF#&SOrw_m5Wp|HcWAA5HJ;v0oj%puSi5WqnEO;??Y;Aa z?TvK{XA=Hk{4;t6y#^C`d<%=>hCk125uDK2(rJ^BPCm+=w)dlIKiK5--RKoG4;!8K z&B_7J8l8T=6abw5%julA5(t~()S#LV1WBWa^S-qmZt;!i(jSEwj$Djw`kjk>ekj(1 zFZaoo(G2b2!EgJx@F?HiGTO#Y9^BcIE2HUW_2ugN`&0L7GTL%_{aY@>$vwSn5pQ3g z9oqq^7>{91BsGlCPE&qpmLADQBcEt&0-eZ3p)Ib)hsCs)x%|Ile)y=#uwN7N+5an| z%LTS6=jXA2mj8zjzYCL`ST~-yw1stClk*(pQLy7En7i~{NN8tPJEy*`HreWK#rJJq QiDeb%7 delta 4010 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 Part - Component + Onderdeel @@ -151,7 +151,7 @@ Part - Component + Onderdeel @@ -169,7 +169,7 @@ Part - Component + Onderdeel @@ -183,7 +183,7 @@ Part - Component + Onderdeel @@ -197,7 +197,7 @@ Part - Component + Onderdeel @@ -211,7 +211,7 @@ Part - Component + Onderdeel @@ -225,7 +225,7 @@ Part - Component + Onderdeel @@ -239,7 +239,7 @@ Part - Component + Onderdeel @@ -253,7 +253,7 @@ Part - Component + Onderdeel @@ -271,7 +271,7 @@ Part - Component + Onderdeel @@ -299,7 +299,7 @@ Part - Component + Onderdeel @@ -317,7 +317,7 @@ Part - Component + Onderdeel @@ -335,7 +335,7 @@ Part - Component + Onderdeel @@ -353,7 +353,7 @@ Part - Component + Onderdeel @@ -371,7 +371,7 @@ Part - Component + Onderdeel @@ -389,7 +389,7 @@ Part - Component + Onderdeel @@ -407,7 +407,7 @@ Part - Component + Onderdeel @@ -425,7 +425,7 @@ Part - Component + Onderdeel @@ -445,7 +445,7 @@ Part - Component + Onderdeel @@ -463,7 +463,7 @@ Part - Component + Onderdeel @@ -481,7 +481,7 @@ Part - Component + Onderdeel @@ -501,7 +501,7 @@ Part - Component + Onderdeel @@ -519,7 +519,7 @@ Part - Component + Onderdeel @@ -537,7 +537,7 @@ Part - Component + Onderdeel @@ -555,7 +555,7 @@ Part - Component + Onderdeel @@ -573,7 +573,7 @@ Part - Component + Onderdeel @@ -591,7 +591,7 @@ Part - Component + Onderdeel @@ -609,7 +609,7 @@ Part - Component + Onderdeel @@ -631,7 +631,7 @@ Part - Component + Onderdeel @@ -649,7 +649,7 @@ Part - Component + Onderdeel @@ -667,7 +667,7 @@ Part - Component + Onderdeel @@ -685,7 +685,7 @@ Part - Component + Onderdeel @@ -703,7 +703,7 @@ Part - Component + Onderdeel @@ -721,7 +721,7 @@ Part - Component + Onderdeel @@ -739,7 +739,7 @@ Part - Component + Onderdeel @@ -757,7 +757,7 @@ Part - Component + Onderdeel @@ -775,7 +775,7 @@ Part - Component + Onderdeel @@ -793,7 +793,7 @@ Part - Component + Onderdeel @@ -820,7 +820,7 @@ Part - Component + Onderdeel @@ -833,7 +833,7 @@ Part - Component + Onderdeel @@ -851,7 +851,7 @@ Part - Component + Onderdeel @@ -869,7 +869,7 @@ Part - Component + Onderdeel @@ -892,7 +892,7 @@ Part - Component + Onderdeel @@ -907,7 +907,7 @@ Part - Component + Onderdeel @@ -925,7 +925,7 @@ Part - Component + Onderdeel @@ -964,7 +964,7 @@ Part - Component + Onderdeel @@ -2408,17 +2408,17 @@ Please select a valid shape in the drop-down box first. Part colors - Part colors + Onderdeel kleuren Default Part colors - Default Part colors + Standaard Onderdeel kleuren Default shape color - Default shape color + Standaardkleur van de vorm @@ -2686,7 +2686,7 @@ Please select a valid shape in the drop-down box first. Select only one part object - Select only one part object + Selecteer slechts één deel object @@ -3700,7 +3700,7 @@ Do you want to continue? &Part - &Component + &Onderdeel @@ -3715,7 +3715,7 @@ Do you want to continue? Part tools - Component-gereedschap + Onderdeel-gereedschap diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.qm b/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.qm index d5a35e9ac8d3f2965758c97b12ced03477fd10e9..298ebd7d4bb2e6ac124573e5c609878ec9047ca4 100644 GIT binary patch delta 5762 zcmb7|d0dTY|HnV~Irn|G`<#ZlCLWwf?od>$SY3hOH5RsX$(T zGJ%`{XzBq;VSv(>*P8@G_^$MRL|ws%&w`Quh`TQG{<9vT%6qKSlkX*h%|EEGXM5FxTPr!`rD8GT6mWJ}*J~7ZU zpP^cEFz{s?oSRo-AZo&mmPvIY(d1hegWCcg{u2PlP{FY|@T$lF7Y#G-Bcms?+NPZ(fqI-O6l>Y1fidmbOik>k8Y(UEu=slGawTlq^ zFdw~Fv(EDVhJTg;h>b-51q}QHSM<;Qoe8i;aHzZB5ibmQzDp;A2)cC~xRqW;2^I{A;=;Wg1*devkcmIg#jQw=pD_W!I(|ovMR4C?%&~QX zozEb+bll7-2)30DoVf?Vvo=F=h(>VIUf`J*hO#D*umPhUlD`)q%Ep-4b|N~v2k_hv z<4W(RM`23z9H86`B$R$Iu`yPD_5{XP$Lc!#PMb$an|lc`oI?7UV&M2RWK?WO{)v41 zBuGjMZ22#|dEtTL_*qnjKk&j~1SB<7vU(>2?e9qCE6{?8<0aQ`Eg?BAl-#6uRFNr? z$6a^e_E4#LKnaUBN@{;-A}5|G^i9N&Dn6gh|s z+<#me-R=n_L$FO6AHWx{yGuz6y8!?CRrACfgwTJw}L<-A$iFppB^dPPd>)(<#Q zB5k?36=?EOI(Lra3zkUd?X@6PJ1afzLM6J9qNz536I_|3Y0^3c7_eT`q==q%Jf`WN zxSC>eP80YllTvq0Go&UB*Vz_pf+sNq*S2UTZe&)D@z=y{84q}D)l5>ofr!?Eqdsb8 zN$Hfli<;S40g!6!)2!W~1$y_>ti3UbA8f5j&7{Tk95vg$dIEiXHJO|CGIw5UGPjHc zOm8&D(?$T5eKg1SlP#}mvb^mKY5qG+R{Q;sDxTD2my`g~b-}K(V4t^wA)bPUb9+m3Jx7Bcx0kh|Acxy?nkXD zb}ypw{(!czj}@pkPU~L(EucneJD1h<8f}-f3?Qe9wnz3&V9GRYuQKLphsH9SYjx3v zWfTBkf6|UySqZq;Pdn}P8sKcK_LnmXq{?5l`#x}@*v;BQrN5gx#$MClXbaL_`o!Yw z@=5TWBKXxwd*#D3KHsP<_NO@=OSG^0(NF!mYG0R*Pb}1an9KWq54B$%{FtGav|pnZ zF@tt%zx5f$1n4AV-V-2dp==z<#LzyHjZ6Mwq70VHwPt+o`^wF$`Ox3h&&a)=W^uoY zl>6`V2j0w)BU2cl3`aR8ehKhCR*v1n=iUK=-;bB$t(SqeXXP22?*aSP$+J$LVrI3I zXBQ^|F||ngJ!S~WQi)k5m^e~ikg5gFNP>6D%L{jgQEvl&DZ9XsOY*87+;wq7aQI}w z&=-Q?Zv{tX$m_2rGcz~J8yC_aMVq{p3Q)M4VMcCE~4txkc;DUf#~HV0~~!req8N5u-GU+O`uK> z`av*wqx@z*J?!aC+IVqwt$0w-u8dM`Z$&O$z+kIVH|{&e{AZ>9N!G@tdrD(})?A>~7Blp~%dCFlQX02B@ z!LENQ*`@EFLpim21P%GOa&`@qF(Issl1rX)u1!6PiB-vaVPH}(Q}Ro{Z}TSkecJ?^ za^(hp`1u#5@E~0hT3;~XhH}qbk-Ga$`QR2u!PhIF*D>kp&(eXcBb4tE<`S9v9-GbG}Krt9(q?(e^tujrM>AIEbsg2sl*1o&T?6^Uw86S=&buUoc zu8T@8ov67kx)$F*ao3G?3FB57qKoav_fK+l6aKFou(v=LU#Sx1?xHTyKLwJl&Ntnh z3Oj(3k-ClB+}Rye6g+uXm)bsyThuSQ1Le5DW0Q6H$KFt1Lv^=0a-x_0btU6y=}BkZ z$J|VyZ>;W9m7|cVj?#Uqegn`23l_Z9m%mk)ee!X=V-$BDb2ELDyE`CN57v7uIK}$! zwO#Lt97vT;=-V$eQ7;?m{oR;c?%(Sp@;wT1paD)>;XOiU^lGge1a5YG9;uXVeJr}ai&#-i^ z3e?zP$UNc5{>@}K_+S`wrLUl0cf%ilF&SN^8qS`kA=>SRb0d<0@7)b|ZKpW#!$QOT zzHCJY78xG7J)kA;jTo?zb)96C^mK919-}U~Kiihh#`5(&fg{I^m8F?LSTkdlDZepy z3XD#Pk@UzJW8It$JWL%lHu}LIs9D$8%%2NC=VWZLl5Ldfv$2EG%5p6-_GsMzQn^B- z&Hvg_;O08xNH-t4D%Uvb7R#!_JY#&C9cXmhxNsULO1ffPa%KS=!}`Xh*<*oIr;RIa zGn>y|G_Ea@*}@(-ZmP2$n0(!s(m56IS!&F%Ge^wBj0bmdLbpu8PMwTLFK|Amw#K}7 zeE!=>oAK6j#wPHtv2b`j_DK(o4~H=Jjblu@--q$^kY+MvB=ESX7Ys=k9I?UV*6#s3 zch%&U%7uKIU)-5p^Hk8}b8o(cw6G)4TzljGfOWt2=2rjh^V0xBEV znxZ%GIQcZt-lSYpo2O|(yT901J~J(hsl;9SifM^w5{vJJDP2SRTREB156odrv@spX zrOrLwWIEBCy4d@y>38KiuxGyM_uUN8v3jPg0v6}dMW!>I-GRpj)43Hn6!M#2tSJ+*+n(igA>1rblH@%m*uHiLQee;g2W{ql^aGH@@p{g!%Krc7d ztX89=gUIj5sw7i((p7uq^3Jwmwd!noo93(2@cUC>HmseZ3+?8bbmldPsJW0(${Q@2T3 z3}-KOd-PZ~jX$ctcBB7Jj8k_ETtl-n1;f?~jx(q`6KJ07NwSoyUsiY5eaHUZSv}k- zh&{w%wXBy&u&PH)P874Qebk%@v#A|>)tsa*Ou!8F!d2$c^Lgr}OWweDlhu;aKHayK z`k~u>=EEEH@5r7!tVf%*RoMJQw=l~|8EhUunO$Xgd<1ThH$7`6-@8+B735wbIZM;Y&OU&`MOuooB&m6D=_{naz#n8pAel;hSP57I6 z>0^eVy}x<&I488P%Z~_x5SnCtbZ?ADd#mmeeAM(BTL%}_5 z&7bQ>aKiTH&ubsB3!85-G~x%(6basWE%?E~(sJNpNVP^LgoImUiYoqFPeVdQ)o}Sa$FC zV!v3|vUeks%4LY#boqmmz85tTD|v?$c@OxVz-8KdfaEIQ^k@Mad@~EeovaKg|UGRIK}4 zx&7(>vK~m}z3o&@>!Ebo;W@{8tdO}o{JmgUv0!XNYgW=K7UdCZ*5-;7=^NIZ+SCSz zXV$#^wCBP)>-Ck%Ed5W`>m^sn9o8F5=1`M-tsgyS^Un@x4$a=2|}+?aH=yw8Q1rjFBOUFd>$}=-HEmbB z{y+UH!^>l>huRgLI7I{|BF=t2q^9#fOl7x*7B%txUlwPt9M-388}uzRr5Iy4R~%<7 zH6xtY|7e_jWmwy0%`t!mkN+Qj^(E}A^va$)qP1G;!ZQ01YQG)g^p6($gpV@*|8Fw( zg!is)*9O(fa8JA%TzX-5Pc&q-yOY=1(gl7rA&Ta3xIOk&#d;z-|KP&?zO|*>j{gDo C{+!|f delta 5718 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 diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.ts b/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.ts index 6f964368b..1a92ef6e9 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.ts @@ -542,12 +542,12 @@ Fillet... - Filete/Listel ... + Boleado (fillet)... Fillet the selected edges of a shape - Criar filete/listel nas arestas selecionadas de uma forma + Criar Boleado (fillet) nas arestas selecionadas de uma forma @@ -1270,12 +1270,12 @@ Fillet Edges - Criar Filete/Listel nas Bordas + Criar Boleado (fillet) nas Bordas Fillet Parameter - Parâmetro de Filete/Listel + Parâmetro de Boleado (fillet) @@ -1295,7 +1295,7 @@ Fillet type: - Tipo de Filete/Listel: + Tipo de Boleado (fillet): @@ -1356,7 +1356,7 @@ Edges to fillet - Bordas para criar Filete/Listel + Arestas para criar Boleado (fillet) @@ -1388,7 +1388,7 @@ No edge entity is checked to fillet. Please check one or more edge entities first. - Não foi selecionada nenhuma borda para criar Filete/Listel. Por favor, marque primeiro uma ou mais entidades de borda. + Não foi selecionada nenhuma aresta para criar Boleado (fillet). Por favor, marque primeiro uma ou mais entidades aresta. @@ -2199,7 +2199,7 @@ Please select a valid shape in the drop-down box first. 3D View - Visualização a 3D + Vista 3D @@ -2511,7 +2511,7 @@ Please select a valid shape in the drop-down box first. 3D View - Visualização a 3D + Vista 3D @@ -3361,7 +3361,7 @@ Do you want to continue? Edit fillet edges - Editar Filete/Listel Bordas + Editar arestas do Boleado (fillet) diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ru.qm b/src/Mod/Part/Gui/Resources/translations/Part_ru.qm index 5a2acf5d695caea98a2eaee80539fc25e56ba6f6..559ecf206eea4ad88b5a536ae2b54c774ed0a1e7 100644 GIT binary patch delta 2890 zcmZuzdsLLw7XO`@?=jyz89;|Y?NfY=h{$sSABZ4`CP9hR5~WNaz1B6QmuWyV!$+qw=OttR8dTLL_2g*d7j zxcVu?(N5sR=5muJo3Y7!oz`Y|LOhg4i}esMtpw{SLcS}~p(1`jt6D#T8te(Cdjh}o z_rQ9k^IKZASAT?ikWUxCz=(PGffp-w>9Y}G@170sc%9J*+?i?wk6HB6z(sT%D z{KkbHjGM$nUj>tL_5wF9B9&r+#d9&^SHkbcAtSpTSoR%e9v%bS{GG29!?GF5J^BOR zW}=Q~f(Z`P-FAX$_uw(?>D0Garb^VODqYWxglt-4O=nHJ|yh`+)d1 z3%ooC_<0NqPQF2rx3h@-3xK&Yi{Bay)+K|z^c!U_#m*+pngHgukxkoA`?G^(mi}r8 zP_cr&IjjXtHnO*pNpN=n%UK%(Bs^fN)jBZK9Jb}=+kkqC73DqxdhcYVapQnPQ`o0J z?*RP&#cFG5|M_X`1b+_9Udn!pIR~7(r|}+7`p+ED_zx}yk~VAnFMR^mb-yNQc_F$X zZM9~?ojpKMmS$oPy18i6Ovr(wp06`<06>nL*7^Cuy4?w zZXXZCdb+U9--S;sJWUs1-K>3@@h%194QPl zzK@EaeKapqR2Iu?l>qB!Lc^*>z&A&PhQo(}CvS3-KGJ$zxVMJ1pVxIF>lwgP^)_bX znR+!lNQ|181oSTyV{1ylyw8Y}8tG(nx(grri0O~%md(4xw|0C@tl2BhUqP&T^h8|T zLTpgu#jJlUq?lh7b9d2=UVcYh+tG*E@{zb{J9*dqRNTD8i&*)wxOpe}P~9RHwmN}H z?c&x|wBM&@rMR_9ESLzXdm2{7i)Svf~{6pT?=&)Bv!%lrnrEYcM+238*afGKC)$Aiu zs@GniSD}=VPeIFUmu5akZQ}Z2X->~6#OwxX-Z+x~Hd&hgavZRyMq1=agqriZv^=30 z%*Q0HbpM>>kELxp2T_~(%7s6KNF@;zoZxtApBq^}=q}ZLdyg8xUa4sW*|~L3x-pl0 z&90s(Jv_DtNGy@syB-9y#Yyem8UbmV3(p^utxbKX<35#b8B{U`t?YmKbIS4nIWUg` zIQEnrf@(02TsdN`o*14gC-_m82KAQHPCfuKy1TG?mptRy|Cn4kYkw&5GfvJ~SPTQ= zedIM8o57?wzRu)OhRVD4kh!0V`2ka6P^tW+=nQZ=Sf>++^nTlPwo?nJ)v7u*Fd0Y= z(mlV13T_vR2Kn<>lEMB2|$mxm7oNQ>+v^~=L@I>DwmZ=#SFBr zRmKc>DqPXV#Su^@fJuQ@bI0`-j>>wytg{naJZ+F;ZF$;d)#g+UG;L2cr(K|lXTy8AM2 zvPSmWWbj&X4fwIpg-y{0yOvIS)fnuKOEfg5^VwG08=DN{yh8xTbi*tECcXu9H@sT3 z3^*znrhEH>Y0?d|KX@PLV=*jzkW8cEtRXY04cOPyu&8%FP;=0*!fXU|Q#+CA@(g+5 z445q%w#89=dlm3&R+Zi2qPs(R->|#SeWGR)ce)4ILky=+JAna4!;NRNAUf3WAg-C> zcaCSd+s3#XdschVOG22@=NUG(8AD|9es+^FA(b%FVVv@LIdF2lagm1d+V+*P)1O+A zkeX3#ym3+X9-^GO~>C^>Fy+nAQ(Z0v<=2J{U!oe9BD48%I*_yKgF~aT2@#GVQJmr5yI* zqGzPN%+&g^7O-45``mjB=zE)eYpZBjweVC=mG$IVo;G`sdGZ&TVCER}l*pg7v3et%*&v*_fGluT{LO#g1ZnUIMGvx5dww5!cbu>&&wLb zFD*5eyDd%E{EfUkFY8INhr8e=M9^or5KRY13E@I``PMVaF1p@K^O3?YBQ=o>A>lky?75<$-+2!{&s^gOony3zDMj-=t0-GbQw F>Az8-QAYp( delta 2929 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 J4PwK@{{l?OVC?_^ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ru.ts b/src/Mod/Part/Gui/Resources/translations/Part_ru.ts index 42be89b81..f85bd7ccf 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ru.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ru.ts @@ -1720,7 +1720,7 @@ Please select a valid shape in the drop-down box first. All Files - All Files + Все файлы @@ -1767,7 +1767,7 @@ Please select a valid shape in the drop-down box first. All Files - All Files + Все файлы @@ -2476,12 +2476,12 @@ Please select a valid shape in the drop-down box first. Annotations - Annotations + Аннотации Default text color - Default text color + Цвет текста по умолчанию @@ -3265,7 +3265,7 @@ Do you want to continue? Select one shape or more, please. - Select one shape or more, please. + Выберите одну или более фигур. All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) @@ -3347,12 +3347,12 @@ Do you want to continue? All CAD Files - All CAD Files + Все CAD файлы All Files - All Files + Все файлы @@ -3690,7 +3690,7 @@ Do you want to continue? Show control points - Show control points + Показать контрольные точки diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sl.qm b/src/Mod/Part/Gui/Resources/translations/Part_sl.qm index 92b413a72f3f13045d61dfb461ac77c83efd92b8..2363422d50fbeecb7dd414a8000ca1a6cc1608a8 100644 GIT binary patch delta 5373 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 Gzw>|guu%p8 delta 5391 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 Q|MT>U3ypF^=g!^!f2b-|oB#j- diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sl.ts b/src/Mod/Part/Gui/Resources/translations/Part_sl.ts index b516899d5..008f77587 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_sl.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_sl.ts @@ -565,7 +565,7 @@ Make a union of several shapes - Ustvari zvezo več oblik + Ustvari unijo iz več oblik @@ -731,7 +731,7 @@ Creation of parametrized geometric primitives - Ustvarjanje parametriziranih geometrijskih osnovnih oblik + Ustvarjanje parametriziranih osnovnih geometrijskih oblik @@ -1460,12 +1460,12 @@ Najprej izberite veljavno obliko iz spustnega seznama. Groups of Trimmed Surfaces (type 144) - Skupine prirezanih površin (vrste 144) + skupine prirezanih površin (vrste 144) Solids (type 186) and Shells (type 514) / B-REP mode - Telesa (vrste 186) in lupine (vrste 514)/način B-REP + telesa (vrste 186) in lupine (vrste 514)/način B-REP Enable B-REP mode @@ -1776,7 +1776,7 @@ Najprej izberite veljavno obliko iz spustnega seznama. Geometric Primitives - Geometrijske osnovne oblike + Osnovne geometrijske oblike Primitive diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.qm index ec83fb5d21933e8edda644aa48b0e3465f5086bd..97fcce87008d24774a1838a552da7abf6bb76789 100644 GIT binary patch delta 2286 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 Draft - Zkosení + Ponor diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.qm index 3f79702cc18d23f610ca98fdc4b803881d361f22..654e1a94d210ddff5e9f561de4b0e7da67b57b4f 100644 GIT binary patch delta 322 zcmWNLPbfnH9LK-E_h;`tp3S3qsHJG-@=$0k`BTD4J83H!VrDYSMoIpZ?4oh`(Yv^^ z99C*a<%Aq?+lAVRQrb?W6xro-_*_1pn?2!vPq@^HGF(GGI^hw@lAB8u)Mlu7kOJm2 zJT92pgkbocz-ox&LeO{>yR0za-x9lR35X1FLGaNX*NCQ8klJGxKyraCF=6yeKMmKw zMuV(aH^8#SIWa&F{41LD!EVW>BIl$*3UR4IW=rc%rJYDtoEaaU)q4#G(Re)(W@WX$3T2Q zKN0_cH79>5os?p)+G*^&Jg2unm)F%dIS0&ja72wdzg?f(XFyLVR+*3HpVhxX0_g0XG4WlSKii0TGk!0apoJ0p5yp003l&lT88_2~h$O zISv2-aa5CS0#^~>128RK0023B12dNd003n?lhpz@0m73F0~ZO=1Sn~#0044glPv>p z5jh0<7QO%gcoGE%EyMr-Yz33815W|Sll=o10q2ty1eXEYldS|l0aTOi1U~_flPv`| z0iu&-1s@5@2u8Dh003{~lZ^!z0iu(o1%CmzlO+a60S}XH2A3J?3gv}`000_q3hrHc z000uj3kGt;003Y=lN|@A3HA(L+amw~VS$s)2Nw}B433wS003<|43z`^0049fll2EL z0dJEf2rm(U4;`Gv001y04?A09003hulVu2J4)YK6eWd^ZG+1c>0C;1w+6ew%4ITi= W0Av7Z0CWIl0CJN7F&nc4X+#*OIbcWt diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts index 52981bdbd..f9303c521 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts @@ -1531,7 +1531,7 @@ Create the sketch on a face. Edit groove - Éditer la gorge + Éditer la rainure diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.qm index 78777f47899c7038265d0d95c77d28e9d10af2f4..4f5b4441c3ce8afa39b2bb02b0c9d34b02854b50 100644 GIT binary patch delta 2391 zcmZwIX;2kc76{hM8=|mOe&Kp(Q%oCIpp|hDj%p{b6@wp_ndo9 z_rNpZ`7>d^nel;t@9OFuP=kE$e}lF&}V=f>c-s3j|k4=i2~>8IU^ifv7jwgnVe{ z{s?%7!F4-5kozHmznf0c4kA9;hax+R_@9aaUmG?p77MFy140uLw^O8c=~(JV&rJuNu9eh0n7IA7NvOm5yUBHu)t`%DnOJ+F?N6iRP`e zu)`V*#B~C$y9I~SKLBa{LP)R^&C@NIr)p`V(L(l>a(eu(uvVe*NEdd&1))+`4+K4C zlM96HwU!vbX;?TKNoO?MUO3@$378QmoY}jV>=v&04FSdx;pUb)VD&2Dehp3hyH=sU zxQrrvC_H*{1F-#zN;&Z*u>P{jewHn;)>}0(*%6r6tTIbzxiU{)g!B)woWI#pdmwD6ovwP^Q(BDky${D3AZ^H)y^$^~XdsY4IbhF27; zmnBmH>f+UHUp=P!J)-WuL%*A5u;#DX*lP9le^EfVt^VqZCZJqY-=ADb#kx&x`FY1L zfT2nBE80yve~&x`lsbv2r)bBSyT$ApIy=K-am|MPw9#;})RT_DF-_d@4>~fRb~g1V zvF<@I;N>B{|CAQU_7zVDk~8m#7ruFmj;u|*_E8?Nq+aZu+6AcE#770)fM~FYk9U_+ zWLv}+V<`3IizH1D-B9?NWLrTg9`}~yUExo~Q!NE1pQN@t#LjVI;|it9<8;41U#g9z z3B9b+o|kXZ0?(y=PG_iCP12!NR0DYq(!1MQ>8NDs%x!9OyISd!Trc2t%S)+kEG^{l zRJv%Qh3uncjHQhPKV?H_vMCGXpg%tWUOOjGUQc}=@s2#pn^LOu$>F^xsH$JG?l;*9 zp|3pn%AeVZS6L5F*5a}2)xe;fvW`+7HD1mxx(_V(m)C{grc`#y8%$IS5oXzX;(fq9 zi_J00JGV;IZvFDFDbLB1Kd#zHDV;B0De$In5vH=LJXZY~E8bzHJ*?crYK^R}gVo!!hJ~zB z&DwmTy)a$<9_NFAGXeYe!qzy54e z1DjE*8w}q@?FHTN^V5{6zw0GW%3Sd*z1Jiwwb>+nKvNvxm&Q)M&W4WY11zIIn8)xy zbSk?ro=xds7iY3dP5Oe)0V={I{lU$2WHu)KNmUJ{xIup*iZ0G8U2vcU~rUZfv6ESVc6g_L`4|j zX&CEA6GoP>3ATo)b&eF#=j@aj?6g95iJRf|KdhvU*c!GrBmxW44K)+!sI#<&TSd|I zrah}ji^}QSam=D9^_0?hUuDd-Q2N-kDM90XfaGtLU^S)C>q{l9Ll4B{k}jmIWcASz zmG~;T_q?b}+Le`INpw^nDjQUn=remq*_hu(8Om@%z|Cmu*4^ZGkmOHp^#^_VwFrcDYU6Y}&}U0h`7@QUv1yY%BU` z!}I%%`Ykl!?|Y5zN4x30vD#?PUP&pAGA2x$P7C$1^UQ2~Kbu}_T$Ygzq@+6=Gb?F= zIU~kgEA4#hEo1R^TFBmNtni_tbG~7$?5&{4KQ(^wDP_bq-uT_QMry-)gBW7B~;eSi>iphNF$tUx}>@CN<;`b*0Lee*6_| oo?I}#awhaq z4*)MOxL45wg>?wLIhl6*9g@;4w6pz4dQ=QphShqP#qHshvP z|4ks^sfvf6&;t1mVyiznrB6Kd^;>jg?P6ccLSRmfcqO<8(6oy`Ea?SAolX3C`$~$a zNPOl(sV|R`bOH2(WpJzkqvTaFfr_U}@=yDa+HwmU2{tiXsysx$R~AUM2{fT+ zskHO?I$GedwA-nTiq#_ReVuAx!3*iVEhp%xG*a6&YIFOyr9TyV0`qPEk~&>!A%~x& zE?-(`M6?W73MBAbHpG)npDYJ_{up?rRSsHBeILD54)davsyF0_D~(juzp!J@vtxr^ z`tD1I*m2$L__3^Q{MMHP-^uB#DCILGIlt%@FwaF^6>*JH`LVplmuex}Tdri`zDUKnQ`cZm8H*o5 zP9s=ii|s{8e}VYx>`9KrbzRn~rFoeu|DZwn)(@bZi1jF6nb>2yX*YV;dan$S|9KlV!+?J$GY6tdb5R{WBcwzKj%R&QhtU94iq8WUNy zinVLgpBk_g0)7Q_L8iQ>zw-DX@OqzNR%T& zbq8zBGu(~XLhS{^;7}`N>VhJ9Q09s)il=uqwV9{l*G%6JpGY?71RHW+@v{xz2-omH zYy>+ilud7Cv*XzuXJyIR0V=|o%AO5$WOf$iLro2(c)xNg{T6+M>XlC$C~%MCO4pwU zfuKA#WG|cbK=~}Ohu)AsDg)INm|M7FdoXW3Rs9X4Tt+tvb{HKcT42U~Hu)Q)(>*Fe zKaeA5(yt(Z-swbkwlAgxyo)KUsPPpMN+D?nT_ISPpVNzLo0 zBPwxF3vYN*mmF0WO--evYEsu|y6H1}MqRtOlg5{-yY|%sMaAkK?F(R4h5G)lT|oA6 z_0oY*zCNItYvFGNw3p2*#b`TwRcb^>~7% g7>_q_o358*0V?WRCdAa0zT#;5|KSc-zlE9q1?atYbpQYW diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts index bbbfda6db..d89d432d4 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts @@ -37,12 +37,12 @@ Draft - Tervezés + Tervrajz Make a draft on a face - Készítsen vázlatot egy felületen + Készítsen tervrajzot egy felületen @@ -516,7 +516,7 @@ Please check one or more edge entities first. Draft angle - Szög vázlat + Szög tervrajza @@ -536,7 +536,7 @@ Please check one or more edge entities first. Draft parameters - Paraméter vázlat + Paraméterek tervrajza diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.qm index f187f2ee01021cc226a51a7977acffe1080d367a..621fd86c66b53d2c5a51fc1fbf0cb32338d91cd9 100644 GIT binary patch delta 2330 zcmXZdc~n%_9S895o43r&n+F4epn!-hbwCzjAS$aMf-H_8h{z~N5$d3V%Z#9jj!}t$ z;&uj2lcF)GFacYpW(?(g1r zYLIIm%gAJs{SP>?h{~Gr|Gy zB%sI&Xxbrc=Yj0k5Y7s~qyz{(yMTm!%;}FI+}R4)eNF6P+!khV05c?wX~RM)2 z1vJUefS`EzZlV_!WFhhaWlMaF8Kw|gSqEl(UkwER$jnPe&X!vM*N5Cqv{HR9<{Id| zXdd&P(6~NPC~<27d>u@~R?L^0>_BMx@B;-t%gj22`Xvpt9T`|_$flH~;lpJEfK-Je z8z``QKb)BtXu!X6BaS`=^6qlck)AY8BbN}P0p>e7^Z8Xk(migOLhVz%m@`gsHtk*@ z`~q`kHMgnRo(_1{bFHbgM^loxHlHpaE`U3}Z5w%>J8$TxmHe9fa$O5h+08v{qJhiO zxW4L@fZGc0yTQKzuK6mZ?QcL$kIH?DD^UGZHP++-q#Rcz*eDa42-R-YO(4gqI(=j$ zO~AyQ=un-u4>wHiVGX%2nR5=Qy89_`qJ90Z4`{+= zLwvExKmnfco!4Ga9WUcA-lqS@4>98hnA08n<>#~@4Dr`49Ryay@(-hIfY)Q*{@=~7 z0o@$IU}*%FRFa3u?}fa>G~?n`g1L$IPIpLHTDOBHS}4>6(iV(x3Y)*7EermfIqL_Z z2 zF#U~he90V}$Fz@aXAc3gG^>_Up6V-^Ee`?n9jP|)7Trm!q`FY5h2-f{L)!rgbc9)Q zT6%ATNU0nn{XgYqLHc}sJ*BivI$sqGlq=GelxaZ7znEct%&7a!{5a`{D<|pvdpgyj z_bvnRpQw|gDS&?y)7+>|{|&9!XNkJ_XKJ6TQ``6Nr)oc|Ztl85#o3|W=SCSzk0#^E z9qLcl?4?uSrS39+3mCpu|MM&QJvu=nR=!VLl%tuXriGQS)?{?72Q1q(bDPuY`b@G6 zKhSYMrCBnS_Gr;d&D#nM7`(`FOdM}-)ExegiBA7fruqg`yXcLbO!+6K62){eY0fxH zfv{v|PP*p$AWf&jsI3{k=F}?f9=8iX(L37i^;Cf#leN7!d8)7hX6_!QeNLhFN#aI2 zJkSpOc$D&RTNVQ;FN=NUpz#fKh#KSx2Q%r=g)k%AnMRHoAHz&5VP@wtO_!Mk1V{%AoXWv)-#=FKUG-hBb~Q_#+zzkW+}R~ zS`S)K^RRS5NBOe`V>PqTQ&;v*1x>_Xx8dVl`tFtKn*6C>@l)MR%QU)2dlYf@Dk{DA z6lE`^G&4-`>M_!n8h0U(iSbgqmJ{md)6m%(Hw#EX#s9+}l zo0++XnSa8?_{5biXr0S~csjJceaw;|mzH>%$fzkU`*+d;yz5-8y)@zU=X%+`js~oK zr61FJk!}T}KEYf;DSoEUj*X*0oy?R}X6AF|?0S81Q2{Vp)X%fg`$=kjX#-6>x>H}h zi2}KM=&d1CbR!G&w(C|}`6d0OQxZ}bn^_tO_AK>uxtKd^L--hE)*L3%OULYLz; zo~qExv9R3B@hC{!@mk|9`uZUk7Sx~;<>X4_kyf%6wH*f6yeK{fxsJQ8ejOhtNgO{B lc^&P^H{u*Cbt4>}wh4|dt3PLQ{KGoIVYjAqq}b}j{{cYgb;|$% delta 2332 zcmX}tc~n%_9S895o43r&n+L-t$be{I&_P*bQ#JvSRaQX(8O4Y}!3A7q3UM0^5S1E@ z9n{8SjM13mN~{yosKg@?gIj{9E;+HOsDuVhYuX4+L(%j{ucv=-K94)^-rv2y`@8p@ z9^^h5XbL$ZsUe$jg8j4@^46oIHz}vxGUvNPYuE-XrNR%0NCLsc&X5;6;6l zEr6yK!cHE@Rv?@gfT>v!x^@Hc)IMU`PY~|D1=xIY*uyJLOrsw&Fqvthjw3HlY+;7k znN#0o#{bAnxxq}I!puI#EO?JO`vG&63Sw~@;JpK4RSRt3av`2=1678d&_Nrdx)F{TA}_gC^1pL za1L|(XGfA~ab&G1@nd4h15*n4$h|b- zS7p95&qM+K%C~htqdH#4U%o@XPZ(mxtC(r;^H+YP1!0)){^AI*DvrM&W(7PS@wVrU zF92PUV5;5*EL%e!BVPyw$7sf-n+0<-?Vaw3u)OYVnrMYk<4;@Q)+;nVqAfFi#4M16 zmItAL|9Ihpe^G$BPlc1g$AHs8vGq0`RhQA?neqUj+;(1U^P)g* ztHt&p3gpr)!HXsm(#eb%%gig0Laq-2<35+dR^9^=k4mvdN~zK$CEPp&_~tXmxV?1E zOS_qV;V&Ivj?H7*#hEdAhH7=`uhd@Rt+pLLOx1o?z5T*9D$Wk|K^Mwc zY7!Yo9#DVy`T;rxzUm9+Uchu${lnMvzjv%gtlUall%<)friCqR)TBE$0@eF9CEHVd z>73S$JkW9P)GSM;J*pHm>l7N$SYbaUPOxp!9Q!$sPXBSHx|^x3c&URa|H4#4m`*vG zbA9D>ZzeFa3pFU0aBcpS;IPyCsbiU_jO(-8ZWty znPt$W)VkAxnn$DyI?R_fL{>3p`|B30Uqln})opq&hrW9&bj^PBUg?nTR`m?JNAD~q_0xeLt9k!ol^ei z0J_L)l|?bOT-qzEQm48=AJNB3ePtW{5T@+d+X5`9QFik$fEDYNeZ%cQ(GBIs{wQGl zLS_<}87G*tK68rfccu&4+i89r9a^6rW?8sXOB_vP^i-$AyJ!JkR%c5OO*r+rUbbzZ z0arplX8&cn6~guL=0%j^Vg1agXbR+DCgn3To-+&I)Rz_)0fp}RxmM~wZIr&ei6$QI z&@XMEK(4NOOCS~9s9AdJO$)93w*HGxC?ie}^xvL7OkW&7eQ%i`u-vA19oTS$I%ZbW z<#>muD)h8pGN@5Y?$WH>0|!iuoAUc oZhz?P>1a>V@iyDgLWN{q9ww?sK&t##sm0cXT=nE(I) diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts index 6c2c6371c..eec2ffb35 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts @@ -91,7 +91,7 @@ LinearPattern - LinearPattern + LineairPatroon @@ -830,12 +830,12 @@ Gelieve eerst één of meerdere randen te selecteren. Add linear pattern - Een lineair patroon toevoegen + Lineair patroon toevoegen Add polar pattern - Een polair patroon toevoegen + Polair patroon toevoegen @@ -1347,7 +1347,7 @@ Gelieve eerst één of meerdere randen te selecteren. Shape of selected Part is empty - Vorm van geselecteerde onderdeel is leeg + Vorm van geselecteerde Onderdeel is leeg @@ -1363,7 +1363,7 @@ Gelieve eerst één of meerdere randen te selecteren. Shape of selected part is empty - Vorm van geselecteerde deel is leeg + Vorm van geselecteerd onderdeel is leeg diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.qm index a7be2474a966f37acc2e891edc074aa4dfe710f5..86b63a62efa043110a6a4d46237c8c2c1cd9fef9 100644 GIT binary patch delta 580 zcmdTLDN)L@+vIaZ%u~5bAbZ6jlkP2kntS7qKmLTo%k;O-G zZdmr|j04svg^iLmLDc4!E$BFOotS=ryq~+aSw-t|z#gV$UbSy~f}>x%4Iq4%6YpQ6 zZ9iV;7j4>6M-oM3P~+3g{D>1V=rX0DbI;{pLj_^XVG%0INFgsk0X3-=*$it2J7Tbj zoXAvY!s}yO!qNsvQINjntZd_==^s=1O`BwA(aX)UC#Iq*s*>P2aW4o*m0K0@==W8b ilBi3SP=j8Vci3yf(S=o&WMzr`o^Af~FBlj3xa$vr`;8+2 delta 800 zcmc&xJugFH6n@U_cT}Z@Heqm=hJ_}CFe8;n#6mYoKW=YtX)FB_gWSa=VR>U=Fi9AM zKw z3jq3q$SZNW5OpO+>!RHe_RTr_j6)!MCHftO&U~BmC3FttZ(N@KOCYsp9XZa3u7&36 zr5&;93R6k!yG%M35qFHHt-L!<^epP0Uf+R#+wlhEM#Yn7K+%ID;*C;H%z0M=;~kG{ z`#|*601DmKop)RY@ zpK0#;1u2R_OxXQNwUL|mzXS1*s+#}+ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts index 55229aa83..7eb78540a 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts @@ -1369,17 +1369,17 @@ Merk en eller flere kanter først. No valid sketches selected - No valid sketches selected + Ingen gyldig skisser valgt None of selected sketches/2D objects is valid for padding. Please select a valid sketch or 2D object that is not used by any other feature. - None of selected sketches/2D objects is valid for padding. Please select a valid sketch or 2D object that is not used by any other feature. + Ingen valgte skisser/2D objekter er gyldig for utfylling. Velg en gyldig skisse eller 2D-objekt som ikke brukes av en annen funksjon. None of selected sketches/2D objects is valid for revolving. Please select a valid sketch or 2D object that is not used by any other feature. - None of selected sketches/2D objects is valid for revolving. Please select a valid sketch or 2D object that is not used by any other feature. + Ingen valgte skisser/2D objekter er gyldig for utfylling. Velg en gyldig skisse eller 2D-objekt som ikke brukes av en annen funksjon. diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.qm index b401aa395c17a34481e7f86fbb427589707deb6c..3910821c42ce3e948ae291cbd251a42dc989ddd4 100644 GIT binary patch delta 2575 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 diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.ts index 02c568e7d..799fa26c0 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.ts @@ -55,12 +55,12 @@ Fillet - Filete/Listel + Boleado (fillet) Make a fillet on an edge, face or body - Criar um filete/listel numa aresta, face ou corpo + Criar um Boleado (fillet) numa aresta, face ou corpo @@ -424,7 +424,7 @@ Please check one or more edge entities first. Edit fillet - Editar filete + Editar Boleado (fillet) @@ -559,7 +559,7 @@ Please check one or more edge entities first. Fillet parameters - Parâmetros de Filete/Listrel + Parâmetros de Boleado (fillet) @@ -1341,7 +1341,7 @@ Please check one or more edge entities first. Fillet works only on parts - O Filete/Listrel só funciona em partes + O boleado (fillet) funciona somente em peças @@ -1351,7 +1351,7 @@ Please check one or more edge entities first. No fillet possible on selected faces/edges - Filete impossível nas faces/arestas selecionadas + Boleado (fillet) impossível nas faces/arestas selecionadas @@ -1512,7 +1512,7 @@ Create the sketch on a face. Edit fillet - Editar filete + Editar Boleado (fillet) diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.qm index 8461e28319ceafabe47086f72d03c78919f157d0..3b853b67d8ebefa45240af5cc04fe9870e78f72f 100644 GIT binary patch delta 2338 zcmY+Fdt6jy8pnTU=A1J#XAYb}5EK=ZOF(iFa6&F3a#wLcQEsEt#w`aBTY(S~#zJZ% zFBF(rW`<&-Mi-!6)cnMXU}{M#<*Eg(e)xQpb=4Bvl{MRkefg)qzVCV8bDrn-+}^Y2 zF89?Pu5qSq5rAx9`4(ahu?G+$fhSKe2GM%rd1)nMx{7!O2x%c+C0-|v0-+v2vOnPb zB9KuIXxD+?sRovKfj_|m#&5y*?*hW_F~)m<|86^Ab1h+u*+&^Y(-^%<8GWpbe)|~% zYZ#yMWQ+)7TnxteNqbAW*|VvMapiHw^^FiR5`byF5Y{!r22O#{-32(v5WXk?7WFYE z?SeM?4&YIU8FlnQ&J_fHZ=`6ek!9mm(i4hWv>hZ+-{`QQKX6ynZER0 z&`-#|Np`23kz;58T)P;3KEfKY!3Ox|Pb`2K9b?ipY$~p&a>St8cPXXp4eVJzMvljE zWD7ZVh{Z_KX)^dLH|5xEz%+=ZHEAW!0k8p!aP zL)<@#Hd2J=xmypu1nfRh$t_<4#Z@YYaC=~#q;fYol4CbjWCdkHb4B&0>Js&kM%8^} zDhbGE460Lg+a@-`LfOVLH^%gLRlTF+IO2?&H;hwBW~luSk)e_?^}GNJ3A>{X-A#hm zrm3?`zSL|j>aL6Tfy_|#nQ!Ub$Ad9Eg)#1m`s`f_2xrw7`&xnZ7t}*R71XTL)V5!@ zJ_e*qys!0DQeH)DBmT^%wUOeCINsbqwbT3YC6$f9Q-ge|2bEw-5Wn?0mCSR5(WK&= ze+&fXWbp@oAqSaz`D6Y>ojvT%g zPWq7}Lx2bu65>C=7_4JVDG&qBKLFfsi$TxP+%M$Ca4$-!{-GE(&;rb`GR_Q~WYZ+? zGtSCpbTdq{l+ot)H@0w}C#G(olrJh1&DJ5hlXArkQG-C1yIAQ*y%2R&tZz9;j`|q0 z%;L*i1RA%m#Q&!}>!A2a?Iwy?5PJ%}0EMqr=UgYvztdEW z-_^6gf`^*uU~(|4lQG*{6aN-PJpCO_)^D`GTBETYI6%`dL$mGFIUv$Ov)@1&i>)L^ z5WmwLs@ew>jcQJrZ%`9H(){x>Jx?ps3I%_n68%dXrlG(rgWAN7TA;8`o4GB1CK)caFEsmiY<>qT&kjbFuTTLGdLAGdZ+rLdTL^X^$!z7vg=~E9({al*cngl$N&KR(tG58|mf=0%e7RKai#+1J^u1H{9rIQLz zk5FedNxNR4I>?dIVO0a=%}+X>Iz;|MbEOmeN%`!brIUXd0|Me1gEujz-Io5E)C-tn zrIC6P=F%_SSzAr5{JCD-Nc&kg^o{~Kh)HEk_R>3zQfK*&>s@@wUi3GNNy+-y4UQC0 zCu5*?f)sy92-{fkSpW3qJQ5PG-|}7xkl3nkaHI2#PW>fo9CeV7EUYY}Kf-6SypK|v zP%S(6hteP92RUH6H;}@~fojU22QM%9LIM_lOmro#l5>WsM1`|u%Qa7G{abS0g5^|l zMXprYPSLefCT}X}qJt0Q9lM)>{C)B+^6~6sDhA4FW@M%BGs=ivg!28z2WYlxl^Z#3fVEf|t7)b0qOCk#iUl24wY7p0g4HNP zIiANe*a&OW?x=vKcKaW>)g3#PSk5u#_s5ux=bI!$SclO;R4e|!KWsX((5K@yryn@_ Y*y?;wWhY}fHXt7rC_zL={&b_|e{5TAaR2}S delta 2438 zcmZvdX;f9$703Vg-Qi6a?h`1Jh{#Yt8Dvrf1XLy&9v})25K@9*n62`v!N}7Pnn)B) zg`h1p)*%itEDd5Jp(+)W7_GG0xN0dRO=*R?)D+P~)1(^@YxP6=>37b#=j?g!d;LDQ z?*X^l#quVATp;ZlF%K|W0b(RDPt6$kI%D!B#w;W8&p_~f;vFC)fH+R929o>$`|Ch< zEud+Ku!{$luY>Th04$gT;YuqI5yco+4dJt$fW`SEws3pG=s^#sK6rLBdUrAU-eU~- zgmFO)V?+bvl2pdHX?e*a+Z#t1vn0l1B-^Suj&yX+2O=i zQaqy>qluIb=jEKu$$LQhJT54}j^sSyB7-%Q#rL@U-VH!hGgl?kdGsF{6B9VIc0b_f z!I(0{HSDm&0k%)M_9c{~g%jLC=kq{l0N2snOzh=)ea6WXf9~3r7N9tr8*U=OtN+b? zQNA89IB{c>p8!_htK@^f2P*niGZt9`FJ-G{8*NE(xhm33kx);l-d5cNlCxCjPW*^! z>l9<)4b?fz)WJdvJ4h*K%oYZ(KeCR6Fv+fo3Y!HN53NuYCvT z)q+picCx&mcpNB;7BY^L#o4=r{3gnszCftlxSI@h6RO=Q1vZ<7*ZxK+^9*7%8ikh6 z1AsY)g~N|YLC#&_q#rTty3l=l8>Q^FaOJ%hffYT%U~nIx+9`~c_5=K<7GYw0HF?%1 zJhi9LSC@)vf4WdSDq7c4h#m4p&)T_EJSn1|@fa}o3}eIqV?0FjZ|J^uOx%$`0^NCW z=d+hd!5_q3b{&AwE55ykYM^kgxbM|7l&WO0;}*5K(j$IQ=s~HpREb>=~CR?IYy zFuJauW;df{wkuoAenm>Jp^(R1kn+ohX(n|@HBq+!Q-!qAmueyEiPU)TFyLatXgVtW ze5*+9c3pZNa??ZUbp0msSd@B8J;~z}($$z{fL8_M+(^biTgLQ8>FcX!sQ>MX)V_BH zsLkTl(LtoZ6^yw*RmbfmkDdOhHhoX$tFqLVLx%wCGWCx0SE)D))CUX{v89)Y5x_Ec z^}8?cr!H8aKA-<3wPTX{U$<%RctInUyaDLuXcnr;u@~Gl37z%8S{qHyjyMwbfJOP3qA8+HeV2c~;w3PnBmgs2#buKTC{hgUZnv|#r5c$ zljQ%TPIRYulpNK0csEk>Xm#_BBmzHvhtdBYWAIGI@FB+7`;1AK8Phx&Gv8udxk^`h zX%v_}qHEnud62j3j;Wd`Zf0F~`Y`Da>CkfqGk!6vY0DF=?INZk#I1H$m^W%lEL#SIZ;-_m8>r+|vb>){ z8h=@~zY;=;^p*Xcynxg+Ie@1Kx@XAY7j?jrZ;8&t19IL7rKq%0F8qrJ4e&6zI6RF~ z?kjIpSDV6kel0DfHmWCEB_r(eoX%5w>?1SWBFQpC@KCci$IwNH8vTcfP3(2eeT$yEQ@26iz zs}h-COd%dnl0(BN=kpjBf5Vutg)!rzV#>|}GSZY>GYN?7QVJW%@cCaUu6JgD%5aRw5mll?bgy2H@aAd8agXR(VjQ0$2fDRSy{>{ zc|Vln`22PWNvNRvMgNoX3&Sj~sPk)s!Yc_seCGaKeGMv~Tl9YwcZS;igCor|?H{W2 SI;4?7Ye-OKr=wF?;eP?*7J^v- diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts index a8daed031..c5cb7a40f 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts @@ -96,7 +96,7 @@ create a linear pattern feature - ustvari značilnost premočrtnega vzorca + Ustvari premočrtni vzorec @@ -114,7 +114,7 @@ create a mirrored feature - ustvari zrcaljeno značilnost + Ustvari zrcaljeno značilnost @@ -132,7 +132,7 @@ create a multitransform feature - ustvari značilnost večkratnega preoblikovanja + Ustvari večkratno preoblikovanje @@ -186,7 +186,7 @@ create a polar pattern feature - ustvari značilnost polarnega vzorca + Ustvari polarni vzorec @@ -222,7 +222,7 @@ create a scaled feature - ustvari povečavo značilnosti + Ustvari povečavo značilnosti @@ -258,7 +258,7 @@ Modules: - Modul + Modul: diff --git a/src/Mod/Path/Gui/Resources/translations/Path.ts b/src/Mod/Path/Gui/Resources/translations/Path.ts index 2504f4ab3..26706c092 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path.ts @@ -166,19 +166,9 @@ Machine Name - - - Name of the Machine that will use the CNC program - - Machine Units - - - Units that the machine works in, ie Metric or Inch - - OffsetExtra @@ -204,9 +194,6 @@ - - Pat_hHop - Path @@ -310,16 +297,6 @@ PathMachine - - - Machine Object - - - - - Create a Machine object - - PathProfile @@ -733,6 +710,64 @@ + + Path_Machine + + + Name of the Machine that will use the CNC program + + + + + Select the Post Processor file for this machine + + + + + Units that the machine works in, ie Metric or Inch + + + + + The tooltable used for this CNC program + + + + + The Maximum distance in X the machine can travel + + + + + The Minimum distance in X the machine can travel + + + + + Home position of machine, in X (mainly for visualization) + + + + + Home position of machine, in Y (mainly for visualization) + + + + + Home position of machine, in Z (mainly for visualization) + + + + + Machine Object + + + + + Create a Machine object + + + Path_Plane @@ -922,11 +957,6 @@ Post Processor - - - Select the Post Processor file for this machine - - Program Stop @@ -1057,11 +1087,6 @@ Tool Table - - - The tooltable used for this CNC program - - TooltableEditor @@ -1384,59 +1409,24 @@ X Home Position - - - Home position of machine, in X (mainly for visualization) - - X Maximum Limit - - - The Maximum distance in X the machine can travel - - X Minimum Limit - - - The Minimum distance in X the machine can travel - - Y Home Position - - - Home position of machine, in Y (mainly for visualization) - - Y Maximum Limit - - - The Maximum distance in X the machine can travel - - Y Minimum Limit - - - The Minimum distance in X the machine can travel - - Z Home Position - - - Home position of machine, in Z (mainly for visualization) - - extend at end diff --git a/src/Mod/Path/Gui/Resources/translations/Path_af.qm b/src/Mod/Path/Gui/Resources/translations/Path_af.qm index b858f6a489da9ab65791ee6b76f0e324d65eeef2..405aca2988ae836121701fd496d2c2f1faf664d2 100644 GIT binary patch delta 5632 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 delta 3310 zcmah~2~bp57QMav{=auwG=L&4n+r&TEN*}x4K#~@NKlADTKWTRfbMC!S=3C&;EY?0 z(N_|UF;>(ej7v&I9ZhgaG*!m9;6%hJjT$B5GBO$Wz2^4+Un!WahoF*vVvkou%!q(diKuRGT$)Nz!i=gY=KLN5L;c53;fKhf4z(QO< z7iGwA0Qee2#dn+l!xoB8AC3g@yeejr40!IYIJ(yxK+1>>s}Uy}#p_?51xO7OUlA1m zB;Oa`Ir9rZ=z6j1NySot;V&hU3HR_~lw?q06F~R{$>62PXi%dh*HZx!zm_IG#{eRw(wyoTfC(F< zY&>QnXRoxX9?LV;DP69t#*C%$IO!efw(!3IOgSgrx9}RkC-1HKz;`$%4x%zKA>c)KEs-wqP#OI zu@oJYZ>}Anu#JlKM?GY$r?ReKz*8D2=jTTOMmnekfDfzJQOlaX1(;S!t%=6K^R`kO zno4lpO>L*o0t~L8_E-J{kT#S$^)7yQ#qXdle~b=717%|dZNeH79uwBf687U-bwy_Q z;d_A0URk=W8(`p7S*52AAgEC`C%g_|T&!$C(Jpj5t(9us*!37Z^bk4^{RD2#?+>Qt6EA&hQJ~$+wE}4QU zni4=;5?*2_M9`Mx9As2QukLVS>OQ2KmG`lh=jn};c4G-2(VIJZF+hL1#jywjj-rpR zL4Uc`bmy;FVq+zJIm3)vXrb>Fjs%ESGEtqGE&#;i_EsA*%-(}=9|q}a{wNr7Ba_6ZJ1&`bK!uyYj!hNr-cAy zuVAjdbsMpZdE{{eK)IVojW?nTH%dmzCE<@yEW_l|(vtvT?Q(6#V*qWYe1K;vKv|Fc z&z))j(F^(F6~7>}J@VaF6k(8${7%UzfSFeniY0RZVB^28$HS7xw^&I~2=ZZX@QPqB%!_k)P)=aHFD~4hD#Q%wv+5qJ1Bxdir?9 z?PZCWsdUBTG%2b$Qz_DS0(b=~sa8y}U!zjF3fIFUlmpmy6ltE)->VydQY#Brj>EZf zMp-fGEI`sFrTu#h`0ZAuYk>jPU-X%BSL|`D$tOIf?NRQ!xdcVCNO>=!1;CK2lIkyF z%6(Lcu?}RMtx6n=_|{%k`j^|0;YwAeHwGlG<1xfnHA{n~(cMwiiw|PE#;D$Zwi$^g zsuoW~ab`8B*6*B(^X0iq)pH>nQ#wc0bJGV?6sCHXYsP-9RWn0TB&9#AnFz#^Eoy}Z zvCK!UZT}7($EzFOK(VEMp>EKJU}>B@Ml`Ei7z|{_e8gZRrdGGj9s%ItQg?*nI)A?U z{7ob}a+A9E`4QBF%b@XWzzLVTOB3~86H4i{W};hkvl@9c?aqDA+AZA_PO4|xqh3d`4gaP+S!l*o1!-S~ z;RB&JEC3bri8*vvn>SPBA@UU;lY8D^XKQPnHjxCm#*?Ip zA>?L+jyPh2_~?YsZ3RRBBqD!}bqd#mzG%*h)2o? zl$_Jl14BMvt8A;uTwt|UVXb`0$-s4_C$~yCb0RfOuzb>zC~mMXq_Taa=Qd1+J-55pE- zoWf@kId(8{rK!m2lyRgu%P8ooH7iod>54zrHaqBri0sK6v?@D@bcTD7*z9sQw#^E8 zTTHfR2Xc${;S*(K-?U~S5=m|_-&oTe*lOi@b14sw_4T~zf|WAWC|E0}t`)4vd~cUq zuGRQwf*O>qTWsaHV@IsugyzKYVZm<|5YFkq2914dw*=j{bli;!Ze@YF!gu$s4V%J_ z`wrZ*;@R51c{Pq7JuY*tuH0(ZRoJag8}?^-nbp?lMjehNoz-4ps> zZMxO|&TO`(tdi@*M6UCGpGqx;;oyRB6VZX2l#ZK@A}d*$>g5u~AQwt4>u|VVblP-S zkvVLc<25gOL+<||sOTHUuZx($2;8ZuWQfGiBb1v2{W-m6f`|Oh1pn_C+Y<6ujQkJB Cd$R}t diff --git a/src/Mod/Path/Gui/Resources/translations/Path_af.ts b/src/Mod/Path/Gui/Resources/translations/Path_af.ts index a9a549459..4c04c0897 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_af.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_af.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Opmerking - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compound - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopieer - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Holte - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profiel - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Projek - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Reeks + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Opmerking + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compound + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopieer + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Custom + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profiel + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Holte + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profiel + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projek + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_cs.qm b/src/Mod/Path/Gui/Resources/translations/Path_cs.qm index dc7bd832cd40b2b14b73bfe5e708655d7c8fa044..fdda2ebfb3b13836977b7185dfc9982342c0b787 100644 GIT binary patch delta 6193 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 delta 3945 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 aBr diff --git a/src/Mod/Path/Gui/Resources/translations/Path_cs.ts b/src/Mod/Path/Gui/Resources/translations/Path_cs.ts index 2301b3498..4ce7c135f 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_cs.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_cs.ts @@ -6,7 +6,7 @@ Make False, to prevent operation from generating code - Make False, to prevent operation from generating code + Natavte Nepravdu, aby operace negenerovala kód @@ -14,7 +14,7 @@ The height needed to clear clamps and obstructions - The height needed to clear clamps and obstructions + Výška potřebná k odstranění svorek a překážek @@ -22,12 +22,12 @@ Comment or note for CNC program - Comment or note for CNC program + Komentář nebo poznámka pro CNC program An optional comment for this profile - An optional comment for this profile + Volitelný komentář pro tento profil @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Komentář - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Směs - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopírovat - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,169 +300,42 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Kapsa - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject An optional comment for this profile - An optional comment for this profile + Volitelný komentář pro tento profil @@ -600,7 +345,7 @@ The height needed to clear clamps and obstructions - The height needed to clear clamps and obstructions + Výška potřebná k odstranění svorek a překážek @@ -650,28 +395,13 @@ Make False, to prevent operation from generating code - Make False, to prevent operation from generating code + Natavte Nepravdu, aby operace negenerovala kód An optional description for this project An optional description for this project - - - Project - Projekt - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Pole + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Komentář + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Směs + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopírovat + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Vlastní + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Vrtání + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Kapsa + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projekt + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_de.qm b/src/Mod/Path/Gui/Resources/translations/Path_de.qm index 150198e79f1d3e1ff808742db20221794a392133..e6339ee1bd14f7e0f88be1fd9410a7a94f1fcf0d 100644 GIT binary patch delta 9402 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 delta 5639 zcmb_f33O9s7QR_tl4hkFZRx^mp`|Tdgf1WjN@=>$HVwA4?2tCEZD^XrEKpD<6gY^W zmkWnjhU@VGIkBWo9K@^V*f>m%3aBx7t4rlKFUQ$v5j>nn9DL3zb|9_Y7 ze)r!0^{x}Ya!KT!xXT=U;KGI{4kpIEz3_!SUrq&(Jpv$~1hDWrK+Qsc6gj}`s8f1QiZ{lM(yP|w4le(NxRDHYO_ z;s7+IkWv3W+V~q(dLPLEsQ(gX?_3X1co4RoRRB~Df&B&sjo%HQe)0oA?c;E*?-_us zA4CAF0P0#r6(MKPk;|gl=R5!-FNzNBy#pX(hgdO150LE;=bVoKkS-JJpFlY^SNz=d zj{&Mx;;%(@02Q0W=Z<^}kp7I=d$naPK*j`#WWrBqV4GxU{Yro_-ICa~7*X^gN%B87 z0OZ>RY3!F|t=kVUKUXqk*^dBm{gS$_UVJ8!8TY&k;7FFV?zSK@J(3mwJO`lblROZ% z1R$|Xvi&k5CNGlg+N}i`w^Pz{f}msPy;AW^j5u_kG_nXIOI{^S`K|<@% zR%&R^1t@BhauX4Wh6t&338rWEIO#*Gc0}x&AWL7CZqIlLkxZBFTJ;UUG?jGUrx^JN zjr4tGA3)k+=~o)mH|41G%o;K3nJK*pmjK3kcS|onxCwK$Tzc&)2QcRVBQkWO1H&2F zW6xvG>X?X%R!qf3CZ@)Txg5ph#oq@o{RC6_H99=w2;+I77a;R3rW4Sx_9(M%Fejcu1?dU0u|r?P9L^G? z{vFw*-T16IBh!EQ0dk;9R_5r#l%&gA!&rb(X|hEbivcF@mUXUt79CK@IzL5+;+~iN z@v|HNcvX-SugJE&HVa@uz3lIwpuV}OvTsiAL}ZT1bFP(u7jj0+4NsK=C{pCJdvJr| zb@^O98XRtx&#y*^W_ab6NmvODo8*=v14g8kKXKTD(5;p~srnbdc&B_*;Tr&9f01uK zd>$aGUEbxsAKf9*3xL}D4k!1V~ki>;Z z7ajz-qdY`caRp$=rjQ|FB>?ujLslQt0Elx!);#bt(Se~yc%@ZR4hOScn;U28A#9@LQbwc^jn$rN1p~{E6^v8sIl}{R! z==n#2Oc|@}k&gr@I3>uk24&AKgnHo~<=J(Ukt31HE2UCo`(~9W`xri7S20@<;`r$* z)noWPI$t$}>p_yPRmF$*0WdGA>K`4CeTAr63O@!Ycc`2npu?>zRNhWKvcIWI^?Kd` zfIG_tX?REV`u7iDU7uF{l+^`L6{D7Be*rMFOFcQy4bc3Zdh$3bQ`KcVUcm_WtEWYv zL*gDmrZMUTT1?Hz2K5s0TbQaZ)GL13jQX#r*AyT*Yfq`4du=*EjKixw{doqGWuN-= z_t60C9Q7|XW~|o*8btz<#46V)vQS!9X_Q)&wzV2v&%4Op4VsQ9BwKa2rXxEUK(tYi zIj?HE6zE9fc$6biUeI(mrXsfrHHTC1d5%?c{Cf;E^MdAl|9<3#_YG}W2X?rb`Pwnd zR|14|YYQmp7PSe|dS1IY1Pu-QLHp?So!H^N(r(o30f;=Q-LmEgKx&Kj-&ZeTS#8xt zZow4gmg|y_W8}^P-DulIBzK#xx*b!JeNAWBQitzP=~jN!h^cGTt>4jyoiOQH-Bwcv zz@$@xPLvF?}Zu8&3o>0em@T>YdYZA-UOkryuU07s_8 zMnqx$v3BrJW8jvsH4e^ca$D>+@cT|2eRL8$4ix7H|OzQ*osk|60Kc z+<=lWqmy%(+;-*FU07$DRv6%68fhpyPkncN(!cXBRQrpJLdBH*#)7d#F=FgGF;CF01- ziLolm4=1`~1`A0X5>HmoOCo#6k1Gy3G?e$`_LdbvCQ1IC?))GyFU(2|3QCL+0IgF&Lx3yf zgS=SMR1nVaddR&6cZ3IPoJg}0E0CiUA?o01e0ZQh_G>OhSHE=o`%^=Z)7|FMAOK4sknNvuc#zq@#IZ*q$E#lW#}qq7+CjU72} z0V_F@5Uyi!?D;#86>H#RSt%33&w%?X?$YpuS!Fkw>+E(bF(mhjCQ~>^6wv{K-N@wY zMs!HiNnk_WzK%nNPs<+3Ycg6*Hi4(n$h@F~Wa+fT)|)nF@HwX4DsYbaqo6Iij&?aD zR%<}@XnfUUv^TYJZkj74jYN3l`@>e+R>-DV38GALAw6o2&{c0tGOD?j*Ggx%1#uFl zn;jz?TrjMU()2{2U!~Zw`=|!eTv_S8*}nTW{XW>H-?PBJaVwiFwkMxO-dEwAZ%#;Y z$wnqs8G;;HG{_Mf--!Nufc{W@gNZlzE9R+nP|^Y-m#T6Z9t@IQoe_C6EFIX7=){dB zoK_ddBkJTYGy<<~Oe~Ik78e^Dlq0gUI?t#6$LdIOyg^4I48wH%?ZIew33szna;PDO zlxUHZm{)q+;E1RumaI2K+_bZb?v&GO0A3GqlE&+Vs_{=!7oN+G9ju++VQy4br!kc{ zY81qk5-PgvZ$RS$c0lHh2E@-~f4-?r$~AgT^<|OVoe(Lqk-~(id4p;dcUh66jTj5P zN15%AdkYNAA&$UQzVDRJVhmXl-cCpQNC)?t*dmMNl z%xJDie Basis-Geometrie dieses Werkzeugweges + + Pat_hHop + Path - + Project Setup Projekt-Einstellungen - - Prepatory Commands - Vorbereitungs Befehle - - - - New Operation - Neue Operation - - - + Path Modification Pfad-Änderung + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Pfad + Path Closed @@ -236,24 +244,6 @@ Der Wert ist "Wahr", wenn der Werkzeugweg ein geschlossener Linienzug ist - - PathComment - - - Comment - Kommentieren - - - - Add a Comment to your CNC program - Hinzufügen eines Kommentars zu Ihrem CNC-Programm - - - - Create a Comment in your CNC program - Erstellen Sie einen Kommentar in Ihrem CNC-Programm - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area Die Rückzug-Höhe, entweder über der obersten Fläche eines Teils oder zwischen den Verbundoperationen in einer Spannfläche - - - Compound - Zusammengesetzt - - - - Creates a Path Compound object - Erzeugt ein Verbundobjekt aus Bewegungsbahnen - - - - Create Compound - Erzeuge Verbund - PathCopy @@ -294,21 +269,6 @@ The path to be copied Der zu kopierende Pfad - - - Copy - Kopieren - - - - Creates a linked copy of another path - Erstellt eine verknüpfte Kopie eines weiteren Pfads - - - - Create Copy - Kopie erstellen - PathDressup @@ -327,94 +287,6 @@ The modification to be added Die Änderung, welche hinzugefügt werden soll - - - Dress-up - Erweiterung - - - - Creates a Path Dess-up object from a selected path - Erzeugt eine Erweiterung für die ausgewählte Bewegungsbahn - - - - Please select one path object - - Bitte eine einzelne Bewegungsbahn auswählen - - - - - The selected object is not a path - - Das ausgewählte Objekt ist kein Pfad - - - - - Please select a Path object - Bitte wählen Sie ein Pfadobjekt - - - - Create Dress-up - Erzeuge Erweiterung - - - - PathDrilling - - - Drilling - Bohren - - - - Creates a Path Drilling object - Erzeuge ein Bohr Objekt - - - - Create Drilling - Bohrung erstellen - - - - PathFixture - - - Fixture - Fixierung - - - - Creates a Fixture Offset object - Erzeugt ein Objekt für Fixierungsoffsets - - - - Create a Fixture Offset - Erzeugt einen Fixierungsoffset - - - - PathFromShape - - - Gcode from a Shape - Gcode aus Form - - - - Creates GCode from a FreeCAD wire/curve - Erzeugt GCode aus FreeCAD Kantenzug/Kurve - - - - Create GCode from a wire/curve - Erzeugt GCode aus Kantenzug/Kurve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop Die Z-Höhe dieses Sprungs - - - Hop - Sprung - - - - Creates a Path Hop object - Erzeugt ein Bewegungsbahn Sprung Objekt - - - - Please select one path object - - Bitte eine einzelne Bewegungsbahn auswählen - - - - - The selected object is not a path - - Das ausgewählte Objekt ist kein Pfad - - - - - Create Hop - Erzeuge Sprung - - PathKurve + PathInspect - - Create a Profile operation using libarea - Erzeuge eine Profiloperation mittels libarea - - - - PathLoadTool - - - Tool Number to Load - Lade Werkzeugnummer + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Maschinen-Objekt - + Create a Machine object Erstelle ein Maschinen-Objekt - - PathPlane - - - Selection Plane - Auswahlebene - - - - Create a Selection Plane object - Erzeugt ein Auswahlebenenobjekt - - - - PathPocket - - - Pocket - Tasche - - - - Creates a Path Pocket object from a loop of edges or a face - Erzeugt eine Bewegungsbahn-Vertiefung aus einer Schleife von Kanten oder einer Fläche - - - - Please select an edges loop from one object, or a single face - - Bitte eine Schleife aus Kanten oder eine Fläche auswählen - - - - - Please select only edges or a single face - - Bitte nur Kanten oder eine einzelne Fläche auswählen - - - - - The selected edges don't form a loop - - Die ausgewählten Kanten ergeben keine geschlossene Schleife - - - - - Create Pocket - Erstellen einer Tasche - - - - PathPost - - - Post Process - Post-Prozess - - - - Post Process the selected Project - Post-Prozess des ausgewählten Projekts - - - - Post Process the Selected path(s) - Post-Prozess der ausgewählten Pfade - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Erzeugt ein Bewegungsbahn Profil-Objekt aus den gewählten Flächen - - - - Create Profile - Profil erstellen - The tool number in use Die eingesetzte Werkzeugnummer - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Erzeugt ein Bewegungsbahn Profil-Objekt aus den gewählten Flächen, entweder mittels libarea oder eines Offset-Algorithmuses - PathProject @@ -657,21 +402,6 @@ An optional description for this project Eine optionale Beschreibung des Projektes - - - Project - Projekt - - - - Creates a Path Project object - Erzeugt ein Bewegungsbahn Projekt-Objekt - - - - Create Project - Projekt erstellen - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Anordnung + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Kommentieren + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Zusammengesetzt + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopieren + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Kopie erstellen + + + + Path_Custom + + + Custom + Benutzerdefiniert + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Bitte wählen Sie ein Pfadobjekt + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Bohren + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Lade Werkzeugnummer + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Tasche + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projekt + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Projekt erstellen + + + + Path_SimpleCopy + + + Simple Copy + Einfache Kopie + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,57 +887,47 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset - Werkzeug Längenoffset + Tool Length Offset Create a Tool Length Offset object - Erzeugt ein Werkzeug Längenoffset-Objekt + Create a Tool Length Offset object + + + + Create a Selection Plane object + Create a Selection Plane object - PathToolTableEdit + Path_ToolTableEdit EditToolTable - Werkzeugtabelle bearbeiten + EditToolTable Edits a Tool Table in a selected Project - Ändert eine Werkzeugtabelle in einem gewählten Projekt - - - - PathWorkbench - - - Commands for setting up Project - Befehle zum einrichten des Projekts - - - - Prepatory Commands - Vorbereitungs Befehle - - - - Operations - Operationen - - - - Commands for grouping,copying, and organizing operations - Befehle zum Gruppieren, Kopieren und Organisieren von Operationen - - - - Path - Pfad + Edits a Tool Table in a selected Project @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath Die Basisform für die Bewegungsbahn diff --git a/src/Mod/Path/Gui/Resources/translations/Path_el.qm b/src/Mod/Path/Gui/Resources/translations/Path_el.qm index ade20db3909a0af50553674fae2498632a7f8fce..d578fc190a769fbc16921556994ba2cb2fcb88a9 100644 GIT binary patch delta 5499 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 delta 3285 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 base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Σχόλιο - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compound - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Αντιγραφή - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Εσοχή - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Προφίλ - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Έργο - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Array + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Σχόλιο + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compound + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Αντιγραφή + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Custom + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Προφίλ + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Εσοχή + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Προφίλ + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Έργο + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_es-ES.qm b/src/Mod/Path/Gui/Resources/translations/Path_es-ES.qm index 2206e9019d651379838f614a0466d3dfb8aad4d0..a538f0a0d5ef1bf97ee5b4c5d792e092e6610be1 100644 GIT binary patch delta 8287 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 delta 5024 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 GPWcbN(La geometría base de esta trayectoria de herramienta + + Pat_hHop + Path - + Project Setup Configuración del proyecto - - Prepatory Commands - Comandos de preparatorios - - - - New Operation - Nueva operación - - - + Path Modification Modificación de ruta + + + Partial Commands + Comandos Parciales + + + + New Operations + Nuevas Operaciones + + + + Path + Ruta + Path Closed @@ -236,24 +244,6 @@ Si la trayectoria es una polilínea cerrada esto es verdadero - - PathComment - - - Comment - Comentar - - - - Add a Comment to your CNC program - Añadir un comentario a tu programa CNC - - - - Create a Comment in your CNC program - Crear un Comentario en el programa CNC - - PathCompoundExtended @@ -271,43 +261,13 @@ The retract height, above top surface of part, between compounded operations inside clamping area La altura de retracción, por encima de la superficie superior de la parte, entre las operaciones compuestas dentro de área de sujeción - - - Compound - Compuesto - - - - Creates a Path Compound object - Crea un objeto de trazado compuesto - - - - Create Compound - Crear compuesto - PathCopy The path to be copied - El camino a ser copiado - - - - Copy - Copiar - - - - Creates a linked copy of another path - Crea una copia vinculada de otro camino - - - - Create Copy - Crear copia + La trayectoria a ser copiada @@ -315,7 +275,7 @@ The base path to modify - El camino base para modificar + La trayectoria base a modificar @@ -327,94 +287,6 @@ The modification to be added La modificación que se agregará - - - Dress-up - Revestimiento - - - - Creates a Path Dess-up object from a selected path - Crea un objeto trayectoria para vestidura desde una trayectoria seleccionada - - - - Please select one path object - - Por favor, seleccione un objeto de camino - - - - - The selected object is not a path - - El objeto seleccionado no es un camino - - - - - Please select a Path object - Por favor, seleccione un objeto de camino - - - - Create Dress-up - Crea una vestidura - - - - PathDrilling - - - Drilling - Perforado - - - - Creates a Path Drilling object - Crea un objeto de ruta de perforación - - - - Create Drilling - Crear la perforación - - - - PathFixture - - - Fixture - Fijación - - - - Creates a Fixture Offset object - Crea un objeto de fijación desfasado - - - - Create a Fixture Offset - Crea una fijación desfasada - - - - PathFromShape - - - Gcode from a Shape - Código G de una forma - - - - Creates GCode from a FreeCAD wire/curve - Crea código G de una alambre/curva de FreeCAD - - - - Create GCode from a wire/curve - Crea código G de una alambre/curva - PathHop @@ -428,162 +300,35 @@ The Z height of the hop La altura Z del salto - - - Hop - Salto - - - - Creates a Path Hop object - Crea un objeto de ruta salto - - - - Please select one path object - - Por favor, seleccione un objeto de camino - - - - - The selected object is not a path - - El objeto seleccionado no es un camino - - - - - Create Hop - Crea un salto - - PathKurve + PathInspect - - Create a Profile operation using libarea - Crear una operación de perfil usando libarea - - - - PathLoadTool - - - Tool Number to Load - Número de herramienta a carga + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Nota:</b>: Al pulsar Aceptar se realizará cualquier cambio que haga en el objeto, pero si el objeto es paramétrico, estos cambios serán anulados al recalcular. PathMachine - + Machine Object Objeto máquina - + Create a Machine object Crear un objeto de la máquina - - PathPlane - - - Selection Plane - Plano de selección - - - - Create a Selection Plane object - Crear un objeto plano de selección - - - - PathPocket - - - Pocket - Vaciado - - - - Creates a Path Pocket object from a loop of edges or a face - Crea un objeto ruta de vaciado desde un bucle de aristas o una cara - - - - Please select an edges loop from one object, or a single face - - Por favor seleccione un bucle de aristas de un objeto, o una sola cara - - - - - Please select only edges or a single face - - Por favor, seleccione sólo los bordes o una sola cara - - - - - The selected edges don't form a loop - - Los bordes seleccionados no forman un bucle - - - - - Create Pocket - Crear un vaciado - - - - PathPost - - - Post Process - Post proceso - - - - Post Process the selected Project - Post proceso el proyecto seleccionado - - - - Post Process the Selected path(s) - Post proceso de los/el camino(s) seleccionado(s) - - PathProfile - - - Profile - Perfíl - - - - Creates a Path Profile object from selected faces - Crea un objeto Perfil de la ruta de las caras seleccionadas - - - - Create Profile - Crear Perfil - The tool number in use El número de la herramienta en uso - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Crea un objeto ruta de Perfil de los bordes seleccionados, usando libarea algoritmo de desface - PathProject @@ -657,21 +402,6 @@ An optional description for this project Una descripción opcional para este proyecto - - - Project - Proyecto - - - - Creates a Path Project object - Crea un objeto proyecto de ruta - - - - Create Project - Crea un proyecto - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Matriz + + + + Creates an array from a selected path + Crear un arreglo desde una trayectoria seleccionada + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Comentar + + + + Add a Comment to your CNC program + Agregar Comentario a su programa de CNC + + + + Create a Comment in your CNC program + Crea un Comentario en su programa de CNC + + + + Path_CompoundExtended + + + Compound + Compuesto + + + + Creates a Path Compound object + Crea un objeto de trayectoria compuesta + + + + Create Compound + Crear Compuesto + + + + Path_Copy + + + Copy + Copiar + + + + Creates a linked copy of another path + Crea una copia enlazada de otra trayectoria + + + + Create Copy + Crear copia + + + + Path_Custom + + + Custom + Personalizado + + + + Creates a path object based on custom G-code + Crea un objeto de trayectoria basado en código G personalizado + + + + Path_Dressup + + + Dress-up + Disfrazar + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Por favor seleccione un objeto de trayectoria + + + + + The selected object is not a path + + El objeto seleccionado no es una trayectoria + + + + + Please select a Path object + Por favor seleccione un objeto de trayectoria + + + + Create Dress-up + Crear disfraz + + + + Path_Drilling + + + Drilling + Perforación + + + + Creates a Path Drilling object + Crea un objeto de Perforación de trayectoria + + + + Create Drilling + Crear Perforación + + + + Path_FacePocket + + + Face Pocket + Vaciado de Cara + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Perfil de Cara + + + + Creates a profile object around a selected face + Crea un objeto de perfil alrededor de una cara seleccionada + + + + Please select one face or wire + + Por favor seleccione una cara o alambre + + + + + Please select only one face or wire + + Por favor seleccione sólo una cara o alambre + + + + + Please select only a face or a wire + + Por favor seleccione sólo una cara o un alambre + + + + + Path_Fixture + + + Fixture + Accesorio + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Trayectoria desde una forma + + + + Creates a Path from a wire/curve + Crea una trayectoria desde un alambre o curva + + + + Please select exactly one Part-based object + + Por favor seleccione un objeto basado en pieza + + + + + Create path from shape + Crear una trayectoria desde una forma + + + + Path_Hop + + + Hop + Salto + + + + Creates a Path Hop object + Crea un objeto de salto de trayectoria + + + + Please select one path object + + Por favor seleccione un objeto de trayectoria + + + + + The selected object is not a path + + El objeto seleccionado no es una trayectoria + + + + + Create Hop + Crear Salto + + + + Path_Inspect + + + Inspect G-code + Inspeccionar código G + + + + Inspects the G-code contents of a path + Inspecciona los contenidos de un código G de una trayectoria + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Perfíl + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Crea un objeto de perfil de trayectoria desde las aristas seleccionadas, usando libarea para el algoritmo de separación + + + + Create a Profile operation using libarea + Crear una operación de perfil usando libarea + + + + Path_LoadTool + + + Tool Number to Load + Número de herramienta a carga + + + + Path_Plane + + + Selection Plane + Plano de Selección + + + + Create a Selection Plane object + Crear un objeto de plano de selección + + + + Path_Pocket + + + Pocket + Vaciado + + + + Creates a Path Pocket object from a loop of edges or a face + Crea un objeto de vaciado de trayectoria desde un lazo de arista o una cara + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Crear Vaciado + + + + Path_Post + + + Post Process + Post Procesar + + + + Post Process the selected Project + Post procesa el proyecto seleccionado + + + + Post Process the Selected path(s) + Post procesa la(s) trayectoria(s) seleccionada(s) + + + + Path_Profile + + + Profile + Perfíl + + + + Creates a Path Profile object from selected faces + Crea un objeto de perfil de trayectoria a partir de las caras seleccionadas + + + + Create Profile + Crear Perfil + + + + Path_Project + + + Project + Proyecto + + + + Creates a Path Project object + Crea un objeto de proyecto de trayectoria + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,57 +887,47 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset - Desface por la longitud de la herramienta + Tool Length Offset Create a Tool Length Offset object - Crea un objeto Desface por la longitud de la herramienta + Create a Tool Length Offset object + + + + Create a Selection Plane object + Crear un objeto de plano de selección - PathToolTableEdit + Path_ToolTableEdit EditToolTable - Editar tabla de herramientas + EditToolTable Edits a Tool Table in a selected Project - Edita una tabla de herramientas en un proyecto seleccionado - - - - PathWorkbench - - - Commands for setting up Project - Comandos para configurar el proyecto - - - - Prepatory Commands - Comandos de preparatorios - - - - Operations - Operaciones - - - - Commands for grouping,copying, and organizing operations - Comandos para agrupar, copiar y organizar las operaciones - - - - Path - Ruta + Edits a Tool Table in a selected Project @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath La forma base de esta ruta de herramienta diff --git a/src/Mod/Path/Gui/Resources/translations/Path_fi.qm b/src/Mod/Path/Gui/Resources/translations/Path_fi.qm index 3b7c64739488bb5d9f827616c3d5f14583ab5b5d..ffadba486dcffcb898e6f9c0da3d63fc6e366c0a 100644 GIT binary patch delta 5523 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 diff --git a/src/Mod/Path/Gui/Resources/translations/Path_fi.ts b/src/Mod/Path/Gui/Resources/translations/Path_fi.ts index 8c7acff41..450935c2e 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_fi.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_fi.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Kommentti - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Monitahokas - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopio - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Tasku - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profiili - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Projekti - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Taulukko + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Kommentti + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Monitahokas + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopio + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Mukautettu + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profiili + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Tasku + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profiili + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projekti + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_fr.qm b/src/Mod/Path/Gui/Resources/translations/Path_fr.qm index d3b41c2948b8f1d23b5c6bca50a5059206cab4c2..182b10aac2e713a30ed86fc155f527755e1d54a6 100644 GIT binary patch delta 9590 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 delta 5678 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 S(T9bnN!sA(_8nF8GX4!$cb%31 diff --git a/src/Mod/Path/Gui/Resources/translations/Path_fr.ts b/src/Mod/Path/Gui/Resources/translations/Path_fr.ts index 639db4562..c176a3aef 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_fr.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_fr.ts @@ -205,28 +205,36 @@ La géométrie de base du parcours de l'outil + + Pat_hHop + Path - + Project Setup Configuration du projet - - Prepatory Commands - Commandes préparatoires - - - - New Operation - Nouvelle opération - - - + Path Modification Modification du parcours + + + Partial Commands + Partial Commands + + + + New Operations + Nouvelles opérations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ Si le parcours de l'outil est une ligne polygonale fermée, ce paramètre est « true » - - PathComment - - - Comment - Commentaire - - - - Add a Comment to your CNC program - Ajouter un commentaire dans votre programme CNC - - - - Create a Comment in your CNC program - Créez un commentaire dans votre programme CNC - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area La hauteur de retrait, au-dessus de la surface supérieure de la pièce, entre opérations combinées à l'intérieur de la zone imposée - - - Compound - Composé - - - - Creates a Path Compound object - Crée un objet avec parcours d'outils combinés - - - - Create Compound - Créer un composant - PathCopy @@ -294,21 +269,6 @@ The path to be copied Le chemin d'accès à copier - - - Copy - Copie - - - - Creates a linked copy of another path - Crée une copie liée d'un autre parcours - - - - Create Copy - Dupliquer - PathDressup @@ -327,94 +287,6 @@ The modification to be added La modification à ajouter - - - Dress-up - Réplique - - - - Creates a Path Dess-up object from a selected path - Crée un objet réplique du parcours à partir d'un parcours d'outil donné - - - - Please select one path object - - Veuillez sélectionner un objet parcours - - - - - The selected object is not a path - - L'objet sélectionné n'est pas un parcours - - - - - Please select a Path object - Veuillez sélectionner un parcours d'outil - - - - Create Dress-up - Créer une réplique - - - - PathDrilling - - - Drilling - Forage - - - - Creates a Path Drilling object - Crée un objet parcours de forage - - - - Create Drilling - Créer un forage - - - - PathFixture - - - Fixture - Outillage - - - - Creates a Fixture Offset object - Crée un objet déport d'outillage - - - - Create a Fixture Offset - Crée un déport de l'outil - - - - PathFromShape - - - Gcode from a Shape - Gcode d'une forme - - - - Creates GCode from a FreeCAD wire/curve - Crée un GCode à partir d'une ligne ou d'une courbe FreeCAD - - - - Create GCode from a wire/curve - Crée un GCode à partir d'une ligne ou d'une courbe - PathHop @@ -428,162 +300,35 @@ The Z height of the hop La hauteur Z de ce saut - - - Hop - Saut - - - - Creates a Path Hop object - Crée un objet saut dans un parcours - - - - Please select one path object - - Veuillez sélectionner un objet parcours - - - - - The selected object is not a path - - L'objet sélectionné n'est pas un parcours - - - - - Create Hop - Crée un saut - - PathKurve + PathInspect - - Create a Profile operation using libarea - Créer une opération de profilage à l'aide de la bibliothèque des zones - - - - PathLoadTool - - - Tool Number to Load - Numéro d'outil à charger + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Objet machine - + Create a Machine object Crée un objet machine - - PathPlane - - - Selection Plane - Plan de sélection - - - - Create a Selection Plane object - Crée un objet plan de sélection - - - - PathPocket - - - Pocket - Cavité - - - - Creates a Path Pocket object from a loop of edges or a face - Crée un objet poche de parcours à partir d'une boucle d'arêtes ou d'une surface - - - - Please select an edges loop from one object, or a single face - - Veuillez sélectionner une boucle d'arête d'un objet ou une surface unique - - - - - Please select only edges or a single face - - Veuillez sélectionner uniquement des arêtes ou une surface unique - - - - - The selected edges don't form a loop - - Les arêtes sélectionnées ne forment pas une boucle - - - - - Create Pocket - Créer une poche - - - - PathPost - - - Post Process - Post-traitement - - - - Post Process the selected Project - Post-traitement du projet sélectionné - - - - Post Process the Selected path(s) - Post-traitement du ou des parcours sélectionné(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Crée un objet profil de parcours à partir des surfaces sélectionnées - - - - Create Profile - Créer un profil - The tool number in use Le numéro de l'outil en cours d'utilisation - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Crée un objet profil de parcours à partir des arêtes sélectionnées, avec la bibliothèque des zones pour algorithme de déport - PathProject @@ -657,21 +402,6 @@ An optional description for this project Une description facultative pour ce projet - - - Project - Projet - - - - Creates a Path Project object - Crée un objet projet de parcours d'outil - - - - Create Project - Crée un projet - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Réseau + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Commentaire + + + + Add a Comment to your CNC program + Ajouter un commentaire dans votre programme CNC + + + + Create a Comment in your CNC program + Créez un commentaire dans votre programme CNC + + + + Path_CompoundExtended + + + Compound + Composé + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Copie + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Dupliquer + + + + Path_Custom + + + Custom + Personnalisé + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Forage + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspecter le G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Numéro d'outil à charger + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Cavité + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projet + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,57 +887,47 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset - Déport de l'outil sur la longueur + Tool Length Offset Create a Tool Length Offset object - Crée un objet déport de l'outil sur la longueur + Create a Tool Length Offset object + + + + Create a Selection Plane object + Create a Selection Plane object - PathToolTableEdit + Path_ToolTableEdit EditToolTable - Tableau de choix d'outil + EditToolTable Edits a Tool Table in a selected Project - Crée une table des outils pour un projet donné - - - - PathWorkbench - - - Commands for setting up Project - Commandes pour paramétrer le projet - - - - Prepatory Commands - Commandes préparatoires - - - - Operations - Opérations - - - - Commands for grouping,copying, and organizing operations - Commandes pour grouper, copier et organiser des opérations - - - - Path - Parcours + Edits a Tool Table in a selected Project @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath La forme de base de ce parcours d'outil diff --git a/src/Mod/Path/Gui/Resources/translations/Path_hr.qm b/src/Mod/Path/Gui/Resources/translations/Path_hr.qm index 4e6bec1d0e12f867f753f38e9d479fd17248610f..2db5d95b4205fb3b3169b9c1719b73381e543155 100644 GIT binary patch delta 5561 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 base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Komentar - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Spoj - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopiraj - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Utor - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Projekt - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Polje + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Komentar + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Spoj + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopiraj + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Custom + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Utor + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projekt + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_hu.qm b/src/Mod/Path/Gui/Resources/translations/Path_hu.qm index f2f08808d940bce2bfa027fe0f7c7760dac5e0ad..86db7bc832927e14ff9a0c6490f725986983b25e 100644 GIT binary patch delta 9919 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 delta 6578 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 QzUrT0F0? Comment or note for CNC program - Comment or note for CNC program + Megjegyzés vagy jegyzet a CNC programhoz An optional comment for this profile - An optional comment for this profile + Választható megjegyzés ehhez a profilhoz @@ -35,7 +35,7 @@ Tool Number to Load - Tool Number to Load + Szerszám hozzáadása @@ -43,7 +43,7 @@ The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW - The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW + Szerszámmozgás iránya. Óramutató járásával megegyező CW vagy ellentétes CCW @@ -85,7 +85,7 @@ The end point of this path - The end point of this path + Szerszámpálya végpontja @@ -117,7 +117,7 @@ Fixture Offset Number - Fixture Offset Number + Koordináta rendszer kiválasztása @@ -125,7 +125,7 @@ The first height value in Z, to rapid to, before making a feed move in Z - The first height value in Z, to rapid to, before making a feed move in Z + Biztonsági távolság, az első magassági érték a Z tengelyen, mielőtt a Z beültetés mozgást megkezdené @@ -149,7 +149,7 @@ Feed rate for horizontal moves - Feed rate for horizontal moves + Vízszintes irányú előtolási sebesség @@ -170,7 +170,7 @@ Name of the Machine that will use the CNC program - Name of the Machine that will use the CNC program + Ezt az CNC programot használó gépnek a neve @@ -178,7 +178,7 @@ Units that the machine works in, ie Metric or Inch - Units that the machine works in, ie Metric or Inch + A gép ezt a mértékegység egységet használja, um. metrikus vagy hüvelyk @@ -194,7 +194,7 @@ The NC output file for this project - The NC output file for this project + Ennek a projekt témának a kimeneti NC fájlja @@ -205,27 +205,35 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification - Path Modification + Szerszámpálya módosítása + + + + Partial Commands + Kiegészítő parancsok + + + + New Operations + Új művelet + + + + Path + Szerszámpálya @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Megjegyzés - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Összetétel - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Másolás - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,161 +300,34 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Zseb - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use - The tool number in use - - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm + Aktív szerszám száma @@ -590,7 +335,7 @@ An optional comment for this profile - An optional comment for this profile + Választható megjegyzés ehhez a profilhoz @@ -630,7 +375,7 @@ The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW - The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW + Szerszámmozgás iránya. Óramutató járásával megegyező CW vagy ellentétes CCW @@ -657,28 +402,13 @@ An optional description for this project An optional description for this project - - - Project - Terv - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock Stock - Stock + Készlet @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Sorba rendezés + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Megjegyzés + + + + Add a Comment to your CNC program + Megjegyzés hozzáadása a CNC programhoz + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Összetétel + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Másolás + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Egyéni + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Fúrás + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Fúrási művelet létrehozása + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Munkatér tartozék + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + G-kód ellenőrzése + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Szerszám hozzáadása + + + + Path_Plane + + + Selection Plane + Sík kiválasztása + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Zseb + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Zseb létrehozása + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Profil létrehozása + + + + Path_Project + + + Project + Terv + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Projekt létrehozása + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -696,28 +883,46 @@ Add Optional or Mandatory Stop to the program - Add Optional or Mandatory Stop to the program + Feltételes, vagy programozott állj hozzáadása - PathToolLenOffset + Path_ToolChange + + + Tool Change + Szerszámcsere + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset - Tool Length Offset + Szerszám hossz eltolás Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable - EditToolTable + Szerszámlista szerkesztése @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -774,7 +951,7 @@ Add Optional or Mandatory Stop to the program - Add Optional or Mandatory Stop to the program + Feltételes, vagy programozott állj hozzáadása @@ -795,7 +972,7 @@ Radius at start and end - Radius at start and end + Sugár kezdete és vége @@ -803,7 +980,7 @@ Tesselation value for tool paths made from beziers, bsplines, and ellipses - Tesselation value for tool paths made from beziers, bsplines, and ellipses + Mozgáspályák közelítő értéke a Bézier-görbékből, B-görbékből és ellipszisekből @@ -811,13 +988,13 @@ Orientation plane of CNC path - Orientation plane of CNC path + Munkasík kiválasztása a CNC programhoz Shape Object - + The base Shape of this toolpath The base Shape of this toolpath @@ -835,7 +1012,7 @@ Side of edge that tool should cut - Side of edge that tool should cut + Szerszámsugár-korrekció, az él eszközzel vágni kívánt oldala @@ -843,7 +1020,7 @@ Direction of spindle rotation - Direction of spindle rotation + Főorsó forgásiránya @@ -893,7 +1070,7 @@ The active tool - The active tool + Aktív szerszám @@ -909,12 +1086,12 @@ Tooltable editor - Tooltable editor + Szerszámlista szerkesztő Tools list - Tools list + Szerszámlista @@ -929,7 +1106,7 @@ Slot - Slot + Horony @@ -939,7 +1116,7 @@ Add new - Add new + Új hozzáadása @@ -959,7 +1136,7 @@ Tool properties - Tool properties + Tulajdonságok @@ -979,62 +1156,62 @@ Drill - Drill + Fúró Center Drill - Center Drill + Központfúró Counter Sink - Counter Sink + Kúpsüllyesztő Counter Bore - Counter Bore + Csapos süllyesztő Reamer - Reamer + Dörzsár Tap - Tap + Menetfúró End Mill - End Mill + Simító maró Slot Cutter - Slot Cutter + Horonymaró Ball End Mill - Ball End Mill + Gömbmaró Chamfer Mill - Chamfer Mill + Élmaró Corner Round - Corner Round + Sarokrádiusz maró Engraver - Engraver + Gravírtű @@ -1044,42 +1221,42 @@ High Speed Steel - High Speed Steel + Gyorsacél High Carbon Tool Steel - High Carbon Tool Steel + Szerszámacél Cast Alloy - Cast Alloy + Szerszámacél Carbide - Carbide + Keményfém Ceramics - Ceramics + Kerámia Diamond - Diamond + Gyémánt bevonatú Sialon - Sialon + Sialon kerámia Properties - Properties + Tulajdonságok @@ -1094,7 +1271,7 @@ Length offset - Length offset + Hosszkorrekció @@ -1104,12 +1281,12 @@ Corner radius - Corner radius + Saroklekerekítés Cutting edge angle - Cutting edge angle + Bemerülési szög @@ -1119,32 +1296,32 @@ Cutting edge height - Cutting edge height + Maximális fogásmélység Open tooltable - Open tooltable + Szerszámlista megnyitása Tooltable XML (*.xml);;HeeksCAD tooltable (*.tooltable) - Tooltable XML (*.xml);;HeeksCAD tooltable (*.tooltable) + Szerszámlista XML (*.xml);; HeeksCAD tooltable (*.tooltable) Save tooltable - Save tooltable + Szerszámlista mentése Tooltable XML (*.xml) - Tooltable XML (*.xml) + Szerszámlista XML (*.xml) Object not found - Object not found + Az objektum nem található @@ -1207,7 +1384,7 @@ Feed rate for vertical moves in Z - Feed rate for vertical moves in Z + Függőleges Z tengely előtolás @@ -1228,7 +1405,7 @@ Home position of machine, in X (mainly for visualization) - Home position of machine, in X (mainly for visualization) + Gép kiinduló helyzet, "X" irány (főként virtualizációhoz) @@ -1252,7 +1429,7 @@ Home position of machine, in Y (mainly for visualization) - Home position of machine, in Y (mainly for visualization) + Gép kiinduló helyzet, "y" irány (főként virtualizációhoz) @@ -1276,7 +1453,7 @@ Home position of machine, in Z (mainly for visualization) - Home position of machine, in Z (mainly for visualization) + Gép kiinduló helyzet, "Z" irány (főként virtualizációhoz) diff --git a/src/Mod/Path/Gui/Resources/translations/Path_it.qm b/src/Mod/Path/Gui/Resources/translations/Path_it.qm index c85cab7416021a2482f27efcda159368c9e6f7e2..3178e73b4d8a8d3b1dbdae1ea584e9492e1f56e1 100644 GIT binary patch delta 5922 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 JcSEB$|G(c z)MapG8NjUN;Mxa(;(Bmv9CSV&+jwbaZ23`HH8A-h z`Pu#70m*CRzAJ4@0m})6BIhDKP_MYHwg(uWr5L@GGP=E9k?{SqK<4KGoUuib^7uPI zlUXro@p&MoK~cSK7p=P$H4nZEJaAgkzST*U*{*o_KWBl^Y{g??3xK#wiVc^jV!T_i zWvda$&Q%N@VL;I?pHf~&8HatQ98pM_CGJ!vo+t)NjwuVSQ2-gwC~ckTltGqK$fHWs zPf~U)AbMs^R4&tXQpMHkBCeX1SFZ@b{aZMhZIC!U&8b#APn=n~i1K!#Vg)y< zLImu;aT(En0;-m9Q;t%=Gk@i}R__8*mUG>phfP0mkN4~Z8XLH$(kSrzW^*s}G}8JS zw~;>p#IEPIwjU;4iQGqjqH~|MpF8p-IY_=;HU73W#Nmhl7Wb+0x6;}ar?UQQH))_m zRq8nojCxPi9%csanxdLxnGZ~CQ+4+|1Khn^)qRKpioT}$>*r|zz6xNzSG9gqJq4bl z`tVco*BGTb_RZ@+!U#U?YB79Bdy=<3Sq7+E`Gz67paDP2N)MX%@Qu@`L^EIDo%z?P zWIK6hp^Y+%;aBeKB8{Bq`*lAOmq+=RCT<2IiutwssAEQ6=GS?b0M+IEo~OuPgMvSJ zo+zG?&L1gv0C!H}FV>C$CPb?5IXKw|=>M)Ryy^l*^r)9ip_1?lb>CVNNAW22s(r+H zXJi1~^VMrkQX3`qsy8g1N`btg-m#WAr_d$LYEbWK@=%Gp)L(9+?`q@J-&Q410@3PY z_njfUUwt|B6kvEOfFUmu`eU(oZ zoHZx(&uyAc^W|Hg{^XYy63Zj{lcz@lcWl!CQsJO}6%6Va5=rO#26YPI+;)T3Na#s4 zn14WFH+ zL{oMc&Ru(lG~)Zn7`BimT*Fl3JrDH&+CpQlUvwR90d&1*oUfsWqH2v#Tz?%9zc9XF z*ak#yG!FFc2gb}b{(9vnYO8+JhykJ~eS<0CGs@g+G9|k%khlv?(>jTgaYH8CKs61t z8K$0(nu)r8)2dgG16lDfy<%So6jTPV^^ED2;~Y)AWu{%>yQm^XroFWeDiv?Ko=guU zf8hkWY%DMNz+k5O0i7ZfHugs(kDr2a`tU?7Q2)Z%93lmejMb+ z?vS%hHHp&VJxd?YR?qxL@RgZ$i6*JRs=UE+HA%VtTJPpUrM$$3=|O9EgDq%9-*?0( zo%$}aDukwohW4jKU#Nl$KC`}^20f3x)SkDoT$ zanb%_`nz$~5js1XpJxX#ym2&xhZBuSGdg(E@QWde-dJ F{{kQV%4Glm diff --git a/src/Mod/Path/Gui/Resources/translations/Path_it.ts b/src/Mod/Path/Gui/Resources/translations/Path_it.ts index c8773cbb7..2abf36e84 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_it.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_it.ts @@ -117,7 +117,7 @@ Fixture Offset Number - Numero del punto Zero pezzo + Numero del punto di fissaggio @@ -205,28 +205,36 @@ La geometria di base del percorso di questo utensile + + Pat_hHop + Path - + Project Setup Imposta Progetto - - Prepatory Commands - Comandi preparatori - - - - New Operation - Nuova Operazione - - - + Path Modification Modifica Percorso + + + Partial Commands + Comandi parziali + + + + New Operations + Nuove operazioni + + + + Path + Percorso + Path Closed @@ -236,24 +244,6 @@ Se il percorso dell'utensile è una polilinea chiusa il valore di questa proprietà è True - - PathComment - - - Comment - Commento - - - - Add a Comment to your CNC program - Aggiunge un commento al programma CNC - - - - Create a Comment in your CNC program - Crea un commento nel programma CNC - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area L'altezza di retrazione, sopra la superficie superiore della parte, tra le operazioni composte all'interno del blocco - - - Compound - Composto - - - - Creates a Path Compound object - Crea un oggetto percorso Composto - - - - Create Compound - Crea Composto - PathCopy @@ -294,21 +269,6 @@ The path to be copied Il percorso da copiare - - - Copy - Copia - - - - Creates a linked copy of another path - Crea una copia collegata di un altro tracciato - - - - Create Copy - Crea copia - PathDressup @@ -327,94 +287,6 @@ The modification to be added La modifica da aggiungere - - - Dress-up - Replica - - - - Creates a Path Dess-up object from a selected path - Crea un oggetto Replica modificabile del percorso selezionato - - - - Please select one path object - - Si prega di selezionare un oggetto Percorso - - - - - The selected object is not a path - - L'oggetto selezionato non è un percorso - - - - - Please select a Path object - Si prega di selezionare un oggetto Path - - - - Create Dress-up - Crea una Replica - - - - PathDrilling - - - Drilling - Foratura - - - - Creates a Path Drilling object - Crea un oggetto percorso di foratura - - - - Create Drilling - Crea foratura - - - - PathFixture - - - Fixture - Zero pezzo - - - - Creates a Fixture Offset object - Crea un oggetto Zero pezzo - - - - Create a Fixture Offset - Crea un punto Zero pezzo - - - - PathFromShape - - - Gcode from a Shape - Gcode da forma - - - - Creates GCode from a FreeCAD wire/curve - Crea il codice G da una linea o curva di FreeCAD - - - - Create GCode from a wire/curve - Crea GCode da una linea/curva - PathHop @@ -428,162 +300,35 @@ The Z height of the hop L'altezza Z del salto - - - Hop - Salto - - - - Creates a Path Hop object - Crea un oggetto percorso Salto - - - - Please select one path object - - Si prega di selezionare un oggetto Percorso - - - - - The selected object is not a path - - L'oggetto selezionato non è un percorso - - - - - Create Hop - Crea Salto - - PathKurve + PathInspect - - Create a Profile operation using libarea - Crea un'operazione di profilo utilizzando libarea - - - - PathLoadTool - - - Tool Number to Load - Carica utensile + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Nota</b>: premendo OK si commissiona qualsiasi modifica apportata all'oggetto, ma se l'oggetto è parametrico, tali modifiche verranno sovrascritte con il comando Ricalcola. PathMachine - + Machine Object Oggetto Macchina - + Create a Machine object Crea un oggetto Macchina - - PathPlane - - - Selection Plane - Piano - - - - Create a Selection Plane object - Crea un oggetto di selezione del piano - - - - PathPocket - - - Pocket - Cavità - - - - Creates a Path Pocket object from a loop of edges or a face - Crea un oggetto Path Pocket da un anello di bordi o una faccia - - - - Please select an edges loop from one object, or a single face - - Selezionare un anello di bordi da un oggetto, o una singola faccia - - - - - Please select only edges or a single face - - Si prega di selezionare solo i bordi oppure una singola faccia - - - - - The selected edges don't form a loop - - I bordi selezionati non formano un anello - - - - - Create Pocket - Tasca - - - - PathPost - - - Post Process - Post-elaborazione - - - - Post Process the selected Project - Post-elaborazione del progetto selezionato - - - - Post Process the Selected path(s) - Post Processa i percorsi selezionati - - PathProfile - - - Profile - Profilo - - - - Creates a Path Profile object from selected faces - Crea un oggetto Path Profilo dalle facce selezionate - - - - Create Profile - Profilo - The tool number in use Il numero dell'utensile in uso - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Crea un oggetto Percorso Profilo dai bordi selezionati, utilizzando libarea per l'algoritmo di offset - PathProject @@ -657,21 +402,6 @@ An optional description for this project Una descrizione facoltativa per questo progetto - - - Project - Progetto - - - - Creates a Path Project object - Crea un oggetto Progetto di percorso - - - - Create Project - Crea Progetto - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Matrice + + + + Creates an array from a selected path + Crea una schiera da un percorso selezionato + + + + Please select exactly one path object + + Si prega di selezionare correttamente un oggetto path + + + + + Path_Comment + + + Comment + Commento + + + + Add a Comment to your CNC program + Aggiunge un commento al programma CNC + + + + Create a Comment in your CNC program + Crea un commento nel programma CNC + + + + Path_CompoundExtended + + + Compound + Composto + + + + Creates a Path Compound object + Crea un oggetto Percorso Composto + + + + Create Compound + Crea Composto + + + + Path_Copy + + + Copy + Copia + + + + Creates a linked copy of another path + Crea una copia collegata di un altro percorso + + + + Create Copy + Crea copia + + + + Path_Custom + + + Custom + Personalizza + + + + Creates a path object based on custom G-code + Crea un oggetto percorso basato su un codice G personalizzato + + + + Path_Dressup + + + Dress-up + Replica + + + + Creates a Path Dess-up object from a selected path + Crea un oggetto Replica modificabile del percorso selezionato + + + + Please select one path object + + Si prega di selezionare un oggetto Percorso + + + + + The selected object is not a path + + L'oggetto selezionato non è un percorso + + + + + Please select a Path object + Si prega di selezionare un oggetto Percorso + + + + Create Dress-up + Crea una Replica + + + + Path_Drilling + + + Drilling + Foratura + + + + Creates a Path Drilling object + Crea un oggetto Percorso di foratura + + + + Create Drilling + Crea foratura + + + + Path_FacePocket + + + Face Pocket + Scava faccia + + + + Creates a pocket inside a loop of edges or a face + Crea una tasca all'interno di un anello di spigoli o di una faccia + + + + Please select an edges loop from one object, or a single face + + Selezionare un anello di bordi da un oggetto, o una singola faccia + + + + + Please select only edges or a single face + + Si prega di selezionare solo i bordi oppure una singola faccia + + + + + The selected edges don't form a loop + + I bordi selezionati non formano un anello + + + + + Path_FaceProfile + + + Face Profile + Profila faccia + + + + Creates a profile object around a selected face + Crea un oggetto profilo intorno alla faccia selezionata + + + + Please select one face or wire + + Selezionare una faccia o un contorno + + + + + Please select only one face or wire + + Selezionare una sola faccia o un contorno + + + + + Please select only a face or a wire + + Selezionare una sola faccia o un contorno + + + + + Path_Fixture + + + Fixture + Zero pezzo + + + + Creates a Fixture Offset object + Crea un oggetto Zero pezzo + + + + Create a Fixture Offset + Crea un punto di fissaggio + + + + Path_FromShape + + + Path from a Shape + Gcode da Forma + + + + Creates a Path from a wire/curve + Crea un percorso da un contorno o da una curva + + + + Please select exactly one Part-based object + + Si prega di selezionare correttamente un oggetto basato su Parte + + + + + Create path from shape + Crea percorso dalla forma + + + + Path_Hop + + + Hop + Salto + + + + Creates a Path Hop object + Crea un oggetto percorso Salto + + + + Please select one path object + + Si prega di selezionare un oggetto Percorso + + + + + The selected object is not a path + + L'oggetto selezionato non è un percorso + + + + + Create Hop + Crea Salto + + + + Path_Inspect + + + Inspect G-code + Ispeziona G-code + + + + Inspects the G-code contents of a path + Controlla il contenuto del codice G di un percorso + + + + Please select exactly one path object + + Si prega di selezionare correttamente un oggetto path + + + + + Path_Kurve + + + Profile + Profilo + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Crea un oggetto Percorso Profilo dai bordi selezionati, utilizzando libarea per l'algoritmo di offset + + + + Create a Profile operation using libarea + Crea un'operazione di profilo utilizzando libarea + + + + Path_LoadTool + + + Tool Number to Load + Carica utensile + + + + Path_Plane + + + Selection Plane + Piano + + + + Create a Selection Plane object + Crea un oggetto di selezione del piano + + + + Path_Pocket + + + Pocket + Cavità + + + + Creates a Path Pocket object from a loop of edges or a face + Crea un oggetto Path Pocket da un anello di bordi o una faccia + + + + Please select an edges loop from one object, or a single face + + Selezionare un anello di bordi da un oggetto, o una singola faccia + + + + + Please select only edges or a single face + + Si prega di selezionare solo i bordi oppure una singola faccia + + + + + The selected edges don't form a loop + + I bordi selezionati non formano un anello + + + + + Create Pocket + Tasca + + + + Path_Post + + + Post Process + Post-elaborazione + + + + Post Process the selected Project + Post-elaborazione del progetto selezionato + + + + Post Process the Selected path(s) + Post Processa i percorsi selezionati + + + + Path_Profile + + + Profile + Profilo + + + + Creates a Path Profile object from selected faces + Crea un oggetto Path Profilo dalle facce selezionate + + + + Create Profile + Profilo + + + + Path_Project + + + Project + Progetto + + + + Creates a Path Project object + Crea un oggetto Progetto di percorso + + + + Create Project + Crea Progetto + + + + Path_SimpleCopy + + + Simple Copy + Copia semplice + + + + Creates a non-parametric copy of another path + Crea una copia non parametrica di un altro percorso + + + + Please select exactly one path object + + Si prega di selezionare correttamente un oggetto path + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Cambio utensile + + + + Changes the current tool + Cambia l'utensile corrente + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Crea un oggetto Compensazione Lunghezza utensile + + + Create a Selection Plane object + Crea un oggetto di selezione del piano + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Consente di modificare la tabella degli utensili di un progetto selezionato - - PathWorkbench - - - Commands for setting up Project - Comandi per impostare un progetto - - - - Prepatory Commands - Comandi preparatori - - - - Operations - Operazioni - - - - Commands for grouping,copying, and organizing operations - Comandi per raggruppare, copiare e organizzare le operazioni - - - - Path - Percorso - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath La forma di base del percorso utensile diff --git a/src/Mod/Path/Gui/Resources/translations/Path_ja.qm b/src/Mod/Path/Gui/Resources/translations/Path_ja.qm index d3b76d3af1b7d73218340a37ba148d382a09e2e7..a2316458da619a89df8fa509d4410ad8b93772c5 100644 GIT binary patch delta 5574 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 Lc=NTqkRksA5D=H%pj_g~)s-|xHM{hJ;M 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 mFSh5!AWQvydvhThe base geometry of this toolpath + + Pat_hHop + Path - + Project Setup プロジェクトのセットアップ - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification パス変更 + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - コメント - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - 複合体 - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - コピー - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - コピーを作成 - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - ドレスアップ - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - ドレスアップを作成 - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - ポケット - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - プロファイル - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - プロジェクト - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + 配列 + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + コメント + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + 複合体 + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + コピー + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + 色の編集 + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + プロファイル + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + ポケット + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + プロファイル + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + プロジェクト + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_nl.qm b/src/Mod/Path/Gui/Resources/translations/Path_nl.qm index 8253a813d9cc231fed185b9387a5e6db571bd8c4..6d08a33a014403c6f0a5e1ac1ae45859c89f364e 100644 GIT binary patch delta 5603 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 delta 3232 zcmah~3sjV48h+;T&-`8L zA7V;Aq!_ix_iT=#AVFBLzXO=M6ML@nK*r}dQpf?>7jgEJe**bExYzd_FcuP^9Vlp* z}<{ZjxHJ5+?OZUwn8P$n2JWAt6%J zeXe&3a(WYME?WKM?(nY)DBPFwP+hSx=0H+?JWYegTNz<-=UNZ2X2J z#Oys;+Ok`Ku~Rmu^C(afB%9m%J|Hy9Y7aQ5GF`IO|Gohj0%hw07Xx8`lkNSUDyFzD z>p7qYCdy<7FEAjv!6TQJ65~NDyTevD;^2$ImMRk)U(&P;M`gur<5CB zK7oYs4} z*OjM%kc-@b+RuQjPVUrlI`^bZ;VwK&4k9}h6Nc=f9vXaTF)LCI&{|ifu>SQJX`n@s z-PlJhsZi7gnt+l+nebqIx3cir98zPia=}6RfG<;)St(%X31#^VD$$HTC><#e zsbq(hj`TvH_y^_I-exLYsPY-jx75pR%9m5$0s@+pyL)c}gFBR+?ln}Q1Ipvu$Y0R| z<(XU5;+$K`3%Pb+q)FLd@)+Ga$;Y3`^8lI@KK)(;5ZK1A$)}PiTKT7TlQ>fT%y;xs z&uuCnR;BT~uFx2bF5&mCFQC#s$^T_H^_)@`ae|RQUeQP;ew9Cei0&06^Iy(36M>=p zrN^%mF63_qT&3}g^Pzq-p@%jWaw=I2&G^U;mAv945R<1eS5|4R6kRwrjpO{VR)$epfUnTTDzuc1XvMCtUcXPOT@b`c`K+ z_&%xkZQYWgB(|(r-I7={AbH7$u@SmXo)Vc~N*FP|T_3sGgvINq2~P zI#b`Z_G2L8f&RhW?`Xcu4THO=MX@~w^EqN(lW7>+@C|9=ykSN?wIl|H!mc^=pcNb1 zPE}Itwi`O$=mRE?JZ*T*wuFp_K79Nm!)tvUy?AYgqd`ZhBJqZkC3c$oorZ^FDL_=6 z1E?)!S0g{|w(xrbBu4i2a3hNiQ|Wbu!eUcVqu{c+9nJ=}(YPQe0>yAaKqG8$!%6m1 zmShZ32Nt`8Mw{E|TFT0eL)m3xKkJEgahhVAyOzbpCHk$pxHW;|UWT*2UTAPjWHfEH ztiT-4G@*=f@lmWj)X1{qlSSMf@91t1{Z7J0PZ+`RqOZ&eQw^e(;cQ$gUe9B<5(l$g z6KYih`^+6?V>=RqnRL<^W;F${9CD`18DLcby7fjVI zXT8a0TI_HMu~p5k7Qvf|&YO4^oy@MaHTrxOKH{_KmtM)Prg%=&lVzj-EHS!3H_~CH z^DK?BOaxJ?@>42J4G#^>uKEQRG3fys%#xPG zDaB5B(klJdl{Ayz(xv}aDW2vyS&`|c6jo--4PjmB^LhVvBWumr$f-mR3p2}fVw(z_ zHv1f>vyR&I7ON?)^Pi_>W%;d*S!n@k@10_2)f0kGqb($|k?cX%4o*B_o2Q)iTMbjU z`K^%LNq%e4v~_-~FW2H1?yGs@*xbCrfmN&Diq4z)EpX6T4LwQT#x`QVa4E*Yf4*VfEf*%Z)*i;t)T|=T{zH^Un{j>8Hg1JHzfnvo1aMAK!?V Awg3PC diff --git a/src/Mod/Path/Gui/Resources/translations/Path_nl.ts b/src/Mod/Path/Gui/Resources/translations/Path_nl.ts index ea060a82e..2162ca218 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_nl.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_nl.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Commentaar - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compound - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopie - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Te laden bewerkingsummer + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Uitsparing - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profiel - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Project - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Reeks + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Commentaar + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compound + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopie + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Eigen + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Boren + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profiel + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Te laden bewerkingsummer + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Uitsparing + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profiel + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Project + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_no.qm b/src/Mod/Path/Gui/Resources/translations/Path_no.qm index 73b270a3127f3aa34e2d5d368935249f130186f8..0df6aa920526bfe37023b51483bbc6f5622068bc 100644 GIT binary patch delta 5542 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 T9Pe;?_+c)0u;oSj!an~62jBme delta 3321 zcmah}2~?9;7XGsQ`Ljn5EZ{-}fvS-mTNMxl!fHUJxE77%7h-`wh6G$rCt5n=KCQl~ zwbhPe>o`_hN5%c%(rVAKcC>UVYR4|t(rRn9P8YYLGdF)yPS=@}lk?sC{`c=y0H!PiDpx|ec^(jP z4qQ*!!4wp~>Nd6RI=#sP&>aqjGwKxr!Oc0C6Samj!u$-gfv)?5K1 z$H=B!^8y2(kiC6083?^3SLfu@z8mti>tTRWEzf_3a8!x>h5KiKf?@KDvPvNLru^DF zp91mgYgOyr<~9j56voPZ9UUdLTs;z@iToiOY{sW;YZ$ z^KSrALll*pj{}e7Djr$z2H;?dx&uzC%!i66{(TKFu2C!vZ2<;UDPFlr6;pW?`wtj_ z)X|Fej~EfV;#0~eQO3RG%J5vuEGA4D|5*W$eMp(zO$3smv^AsyBR49AOsa%!x3a#4 z+B0sBa;2_;DrODf=mzC0mcIgH&nx#o`3W#)s`B-7lzH?a{xm1EwNX!RajMmSrkOKIhX72Rk^xc=ai~HzV3J`BrrS^G=ddLEpwLz72fPDQ$RsLIV0wp(8g|03j z{F16J)C|P7sAgN5frm3xi&~!t9_&;tI!A;ePpkg;UK)Ud0UUl*wQc8QYSCw^f1IUw z6Z)w>`FIat7WuTh1@IwpAa8rNh!kJJPidzO{6&6RK3&+ag0CJ+B^o=BcV^wEmtf(Y zxi-pZHvdeAmrA#SU!(h$dU=L_arAC#;Vphs$8{pupWp0ROoY?;lWQqn`D1+N4Qg@G zZ2qHS2Wepw|4r3kAWf%E=`8U9+Sk;%cN-~lUcI=KN}>u^KedU(k(Hue*Fim>kr2R{ z)#{fn(=!_QFZCen_=&w&7@EL5MI;i3``Q(rjbe>Hp6mnOskWvkSmOub6@ zp88hE6+pK;fW|OFA1zeJY7~}RB$jB6a>glO=s}IC_%>iF(ew%}0BSzg{GrnT$nI&D zJoPDMwokKLBoW5;(Ojz@0!({ft6e%9(3}cja*H;5*d1zxQtQYJ1HvY0f46{MS^tgz z#{NgUa>->t-l1LT^Bd`hwQFozVtzJ&F@Mpv^Minl+X2i8*S7DcQcq0NUR|C|l`7QU zwkk=*MLJnhC(t`a$8Dh!N44m5tI1EW=z0n5B+~J^{=K^Z&Y-JW^)StqcXhR+&j2|W zb?!Hb@S`v4e2el){gc<~c4eHTo;)8w>ptDC&zF*DT6NzfZU*wl>6JlvMv*v6 z=j&hCIgaK_w@-ihf`v+2ufP0x1eIv8{`+zVz1KMg^#Bsdj0*;JB4PC=gVsn`6KXKE zzd?aV8syrFgGcVTH_61;%dWYH4&NAOgM-V;|*;y9|S^thK_jh$ImyM|C|yX zywPyI`xt4$XElb-r3qKQ!OQ?3`WtLQi@Dq-xa}UN*vNWCP3b)d6>vj<3wC%Q zl0A>klQ&zvVVG}s#*O>NVnWHMHi2?j|kPOKbkE zLZgRG>U)y0rr!k_+mRB@sii2LDI-jhl_$F9$rQx0gw4qg zXKAT*nx1ubyT6?R^~Tm7L)X@X2=zO-)``TjhY? z%h99gS3|KcGlNB8*AB@nUjN|OS9$%tv9ohhe%0V zopU{2w;*xPM4nVme=!A^QAoZB2L!e2D0q*w@SAQbRrk|vo?GJ`0knqW%Z*|GgX3u}Iqi$uC74R&etC?oGrs7Q24R1 zMzhkKk({*5mgks**3O(cd~hp!H~Ko;o6)TP;V6sFTfu3hCdmrM2U=4m+8vdmSWm5q zWT#@*v0LT!!9C{-tU+s#HHXtm=Vn{q3RhrRPaM3!&s#$lr<#sth+d)XLUh9zZGJWhkaGrmwhp{7mF&> zMa^>7ORbi~Q{fiSo2n zpfzD!QPA2r?zy0qGd|4c7jy&t>}Vum`{g)`R@{WOk`%o(OPutr78Xeuu z7TvY>M(2F;&EgMpuBk_m6Giu9Glj;QI;q^*(%by?RGNr}MThe base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Kommentar - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compound - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopier - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Lomme - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Prosjekt - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Matrise + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Kommentar + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compound + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopier + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Egendefinert + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Lomme + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Prosjekt + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_pl.qm b/src/Mod/Path/Gui/Resources/translations/Path_pl.qm index c703e0dc3ecd65f20866f8b95805898d56389d2f..af46b4a04fe857052184e16ff971a3885dd80246 100644 GIT binary patch delta 6855 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 An optional comment for this profile - An optional comment for this profile + Opcjonalny komentarz dla tego profilu @@ -35,7 +35,7 @@ Tool Number to Load - Tool Number to Load + Numer narzędzi do wczytania @@ -109,7 +109,7 @@ Final Depth of Tool- lowest value in Z - Final Depth of Tool- lowest value in Z + Końcowa głębokość dla narzędzia - najniższa wartość w kierunku Z @@ -117,7 +117,7 @@ Fixture Offset Number - Fixture Offset Number + Zmiana numeru osprzętu @@ -205,28 +205,36 @@ Podstawowa geometria tej ścieżki narzędzia + + Pat_hHop + Path - + Project Setup Instalacja Projektu - - Prepatory Commands - Polecenia Przygotowawcze - - - - New Operation - Nowa Operacja - - - + Path Modification Modyfikacja ścieżki + + + Partial Commands + Partial Commands + + + + New Operations + Nowe operacje + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Komentarz - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -264,50 +254,20 @@ The safe height for this operation - The safe height for this operation + Bezpieczna wartość dla tej operacji The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Złożenie - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy The path to be copied - The path to be copied - - - - Copy - Kopiuj - - - - Creates a linked copy of another path - Tworzy połączoną kopię pod inną ścieżką - - - - Create Copy - Create Copy + Ścieżka do skopiowania @@ -325,12 +285,229 @@ The modification to be added - The modification to be added + Modyfikacja jest dodawana + + + PathHop + + + The object to be reached by this hop + The object to be reached by this hop + + + + The Z height of the hop + The Z height of the hop + + + + PathInspect + + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + + + + PathMachine + + + Machine Object + Obiekt Maszynowy + + + + Create a Machine object + Utwórz obiekt maszynowy + + + + PathProfile + + + The tool number in use + Numer narzędzia w użyciu + + + + PathProject + + + An optional comment for this profile + Opcjonalny komentarz dla tego profilu + + + + The base geometry of this object + Podstawowa geometria tego obiektu + + + + The height needed to clear clamps and obstructions + The height needed to clear clamps and obstructions + + + + Incremental Step Down of Tool + Incremental Step Down of Tool + + + + Starting Depth of Tool- first cut depth in Z + Starting Depth of Tool- first cut depth in Z + + + + make True, if manually specifying a Start Start Depth + make True, if manually specifying a Start Start Depth + + + + Final Depth of Tool- lowest value in Z + Końcowa głębokość dla narzędzia - najniższa wartość w kierunku Z + + + + The height desired to retract tool when path is finished + The height desired to retract tool when path is finished + + + + The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW + The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW + + + + Amount of material to leave + Ilość materiału do opuszczenia + + + + Maximum material removed on final pass. + Maksymalny materiał usunięty przy finalnym przebiegu. + + + + Start pocketing at center or boundary + Start pocketing at center or boundary + + + + Make False, to prevent operation from generating code + Wykonaj jako zaprzeczenie, aby zapobiec operacji przy generowaniu kodu + + + + An optional description for this project + Opcjonalny opis dla tego projektu + + + + PathStock + + + Stock + Na stanie + + + + Creates a 3D object to represent raw stock to mill the part out of + Tworzy obiekt 3D dla reprezentowania surowca na stanie dla wytwórni w części z + + + + Path_Array + + + Array + Tablica + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Proszę wybrać dokładnie jeden obiekt ścieżki + + + + Path_Comment + + + Comment + Komentarz + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Złożenie + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopiuj + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Niestandardowe + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup Dress-up - Ulepszenia + Dress-up @@ -359,11 +536,11 @@ Create Dress-up - Utworzenie ulepszenia + Create Dress-up - PathDrilling + Path_Drilling Drilling @@ -381,7 +558,75 @@ - PathFixture + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture Fixture @@ -399,35 +644,32 @@ - PathFromShape + Path_FromShape - - Gcode from a Shape - Gcode from a Shape + + Path from a Shape + Path from a Shape - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve + + Creates a Path from a wire/curve + Creates a Path from a wire/curve - - Create GCode from a wire/curve - Create GCode from a wire/curve + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape - PathHop - - - The object to be reached by this hop - The object to be reached by this hop - - - - The Z height of the hop - The Z height of the hop - + Path_Hop Hop @@ -459,7 +701,36 @@ - PathKurve + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Proszę wybrać dokładnie jeden obiekt ścieżki + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Create a Profile operation using libarea @@ -467,41 +738,28 @@ - PathLoadTool + Path_LoadTool Tool Number to Load - Tool Number to Load + Numer narzędzi do wczytania - PathMachine - - - Machine Object - Obiekt Maszynowy - - - - Create a Machine object - Utwórz obiekt maszynowy - - - - PathPlane + Path_Plane Selection Plane - Wybór Płaszczyzny + Selection Plane - + Create a Selection Plane object Create a Selection Plane object - PathPocket + Path_Pocket Pocket @@ -540,11 +798,11 @@ - PathPost + Path_Post Post Process - Po-procesowy + Post Process @@ -558,7 +816,7 @@ - PathProfile + Path_Profile Profile @@ -572,122 +830,48 @@ Create Profile - Utwórz profil - - - - The tool number in use - Numer narzędzia w użyciu - - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm + Create Profile - PathProject + Path_Project - - An optional comment for this profile - An optional comment for this profile - - - - The base geometry of this object - Podstawowa geometria tego obiektu - - - - The height needed to clear clamps and obstructions - The height needed to clear clamps and obstructions - - - - Incremental Step Down of Tool - Incremental Step Down of Tool - - - - Starting Depth of Tool- first cut depth in Z - Starting Depth of Tool- first cut depth in Z - - - - make True, if manually specifying a Start Start Depth - make True, if manually specifying a Start Start Depth - - - - Final Depth of Tool- lowest value in Z - Final Depth of Tool- lowest value in Z - - - - The height desired to retract tool when path is finished - The height desired to retract tool when path is finished - - - - The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW - The direction that the toolpath should go around the part ClockWise CW or CounterClockWise CCW - - - - Amount of material to leave - Ilość materiału do opuszczenia - - - - Maximum material removed on final pass. - Maksymalny materiał usunięty przy finalnym przebiegu. - - - - Start pocketing at center or boundary - Start pocketing at center or boundary - - - - Make False, to prevent operation from generating code - Wykonaj jako zaprzeczenie, aby zapobiec operacji przy generowaniu kodu - - - - An optional description for this project - Opcjonalny opis dla tego projektu - - - + Project Projekt - + Creates a Path Project object - Tworzy obiekt ścieżki projektu + Creates a Path Project object - + Create Project - Utwórz Projekt + Create Project - PathStock + Path_SimpleCopy - - Stock - Na stanie + + Simple Copy + Simple Copy - - Creates a 3D object to represent raw stock to mill the part out of - Tworzy obiekt 3D dla reprezentowania surowca na stanie dla wytwórni w części z + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Proszę wybrać dokładnie jeden obiekt ścieżki - PathStop + Path_Stop Stop @@ -700,20 +884,38 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset - Długość Przesuwu Narzędzia + Tool Length Offset Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +927,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Polecenia Przygotowawcze - - - - Operations - Operacje - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Ścieżka - - PeckDepth @@ -817,7 +991,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_pt-BR.qm b/src/Mod/Path/Gui/Resources/translations/Path_pt-BR.qm index 05e943766491890298e40adc62fc95a9014f92b6..8544142b986a27ff70974a662bd6f4dfb974f76e 100644 GIT binary patch delta 7689 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 delta 4269 zcmbVP2~-qk60SLV?t@#9t3hr#G#nxbiVT+=1A>5PkO3MPgz3r5fTEjB6xVn}jrmti zFo}t>#*N2rLXwq46E`vYA{!Ijr!g^yu99dDjR`rFB<@ys!#s$OxBK?Z!|MM3zpB2f z`l|l+#qHwZVUcsr(MI2aZ=Tq3Iwaurx@V4mG9N(p2!K2Tpza2Mu?`?Y4^ZgA<){wbhNFlgs~(7ZMXVDg2S z&;S7KD-c`xHu`u33Z0L{0#uem%}cvc(Hjnar2tr9fHzAhfRe*-{{6237G8ppp~nH@ zuZaNG0hGTXDo|cSAU8xc*E;~hZi?PJF$2Jx7Axi%01_S$C*JS^kQRvzJ5Xl5B7XAD zS%9KE@g-3OK>k0)*Ux+g5aSd(Z#QoOh>eg)(uUE&lMtN)B0q^F{L3c* zQX&Oenkk9j{3b?rK{9XEO@M&Ql8XH&0cx`(i&nn{!0wT>^qVnTv}EnK*8$wDl8qiK z07BMF4*iH3lY2{!_Uiy<*(Jv=5`g)gPN}#WBX++b_0Gb`!gop|KF^ib>{0T%U2kFL7{P>?Qt<2*(l z`m6M9)eu1R3F)U=v^Q^>^x6h7+PN(K4t@Z*$GJoL%( z2mmh&a*kDY@cG36%RFT7ypQ&lJT1HOua^L(y(&)}$pI%MQu2~r`B*ck@n4*fSa&yKVfT|$5IjaOC>Xh#o?7-C3%Xg~32T0Y)_s)G0z*8>o9mI~A z(kI{VcnCApFCTae?NyoN=Wb$&jVI(63mTCN@5_fPqfswgG4tF4CxCibku_q$$P*P0 z6=F(c&nmX{A~~{;D|QcJ&09xhyRTy3Rcxd18pWYaMaThK@wZ;AIYQ=T%2CBYofT88 zR(y0E^~zfnm&?O3fGWk6C10W3r})YJ8n$1MAoXWaI&q<;TPcbC3CU8Xl-8XFn31p4 z7u-Tp(n>dv901E-mFv%G0mPol4ck7$QrxS2kwp?l{9SpyHU^;SdzETqD}d^{Ad^?C zGUIMzd;Ue$IL8aX=X2EqtFg=ITY`*yRkdZqRRD=bwZ+Ljq|I0DEKwoyK|w~Os*cIS z0Mge9GWR3Zv7?yky2GlkHfLg{?5bP2Qe?5OT9j}O`@U069l#U^#;Mhh;`?-3?ZzAf zD1ApA=s5&Hb*U@2r{Y|BPu)ECEI{6X+I9*7H(yda*BFrf4GYyTBoAOsz7}Nh8TAWa zY{b6ar5=vo4^X&FBTe`iYwx4UOm<+zrJBrHD49c=yd#IP<{_E|UI<9sBgm*Lnq@jH zO<100h4?ir)l$vcpL+pjzpdGjj^r$l*F5=r8P1ojPR-SiVlkzlx%!1Krl?Hwv#}BT zb&*yPgd|zsrB%eEGzV!_I+X2awfbXkA$!+qS585)6`j+rOb7=M{a%oX>$Lk72&5iR zhN1kEwy!=4$+=5A7=iCK7qlOIfq}+Lv^Rcv6FK43=sZ^9gsbY+&3v#MKzUr3&XZ0g z$hM`rP9-{;`n_)ZotFTtJ-R*G<5*Lp?!bmK08u%*UvK|_{hg%uK7b`k^3jKXfRW#K zT|eFO9g_QTeQ`UMWQJH@a-ahDkLbJKt;f0Xv3~cFA)JJvTlLSGRsv+C39|8&{<$Fv zXZ9lfNzaqmh9BxrS2kkb|5<-$Iy#7X#|&VfPo9oG(&whw=qaBHCBQ-_nMnugv?a_6 z+Gu5LCWo1|kfMM_Q7pOW@11A^2CQHL8~!<97^NAN?8q7HH~jM`wJ}zcgSBR$A)7{90WKV9luP5jS5mBTBQwrX8T*_=c|CG&IyF?NMw2-*Z z@+9dM8nPoLRK$`%y&pNB5~FmTBAaL?FaWaoP`JQoFyOxo*zp$!9bhFhQv=DO5O>kT zV^BgOp#c-nj=@`?1rxyOjMIQfvdj=nDm5NtXIT&#Nu9;%Pjf?hvYbWKZN~HMuCyr( zHpXs`>#<5O2{!vSzj?CR|kFPu3^%qRL0D5ohR#7$%T)qJA~GufQm>k=F|{DJ9?F zs|#DTJTr?}Q)30owvnyjCkRtjH@aV2l%L9hNR+J$hd$?r=2$OC0E|0whojUFcsI)0U$ zQBT29N|z;%j@>0?&e5k!Wtl>+m)h7SbDL0s%M)@~*rg-Zg}x-M#EpDy^d*}YL@39u z6q>xeV9Qj#X~!F|jg^p}Q#oB;XkgXoC316Nyn38MUw%Zen9L}jMXtrVi}J@jYpvKz zEVS~KX32J}B{xxzmxpra`kJGNn0#9v#=nfjNaW-XOL|8`y00=qxGl;Ztd)FF6|LvE zGj4K`EK3lf*HfhDp($irosyJSM^f%QT_3FWBB9=1%w?j&RNuzrG@6B?S;m>5$sil=g_^=F z7N#^GJlUE?lY?bS(!V&)cM?lYc**-YImg@$WgES#Y!Hhp+~l$%Pyr@4=vh3`jPDj) zT{XJSondg@1XuC@MMzTD+)5q$AfTIA8{KSUJFIvQ#Wvtg%}E-+6=>GhY_cphufheI z9sB&SyGBtJYg=B=SQ=V{D+F1=VmELA8u7{QikgFJ!F$P!@VFt)fw_Wfm=&Un@^=PL zfP$59a1J}HG?K2BX>d&9&;yKA geometria base deste caminho de ferramenta + + Pat_hHop + Path - + Project Setup Configurações do Projeto - - Prepatory Commands - Comandos preparatórios - - - - New Operation - Nova operação - - - + Path Modification Modificação do caminho + + + Partial Commands + Comandos parciais + + + + New Operations + Novas Operações + + + + Path + Trajetória + Path Closed @@ -236,24 +244,6 @@ Se o caminho de ferramenta é uma polilinha fechada isto é Verdadeiro - - PathComment - - - Comment - Comentário - - - - Add a Comment to your CNC program - Adicionar um comentário ao seu programa CNC - - - - Create a Comment in your CNC program - Criar um comentário no seu programa CNC - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area A altura de retrair, acima da superfície superior da peça, entre operações combinadas dentro da área de aperto - - - Compound - Composto - - - - Creates a Path Compound object - Cria um objeto de caminho composto - - - - Create Compound - Criar composto - PathCopy @@ -294,21 +269,6 @@ The path to be copied O caminho a ser copiado - - - Copy - Copiar - - - - Creates a linked copy of another path - Cria uma cópia vinculada de outro caminho - - - - Create Copy - Criar cópia - PathDressup @@ -327,94 +287,6 @@ The modification to be added A modificação a ser adicionado - - - Dress-up - Roupagem - - - - Creates a Path Dess-up object from a selected path - Cria um objeto de 'caminho Dess-up' a partir de um caminho selecionado - - - - Please select one path object - - Por favor, selecione um objeto de caminho - - - - - The selected object is not a path - - O objeto selecionado não é um caminho - - - - - Please select a Path object - Por favor, selecione um objeto de caminho - - - - Create Dress-up - Criar Dress-up - - - - PathDrilling - - - Drilling - Perfuração - - - - Creates a Path Drilling object - Criar um caminho de perfuração - - - - Create Drilling - Criar perfuração - - - - PathFixture - - - Fixture - Acessório - - - - Creates a Fixture Offset object - Criar um objeto offset de acessório - - - - Create a Fixture Offset - Criar um offset de acessório - - - - PathFromShape - - - Gcode from a Shape - Gcode a partir de uma forma - - - - Creates GCode from a FreeCAD wire/curve - Cria Gcode a partir de um arame/curva do FreeCAD - - - - Create GCode from a wire/curve - Criar GCode a partir de um arame/curva - PathHop @@ -428,162 +300,35 @@ The Z height of the hop A altura de Z para o salto - - - Hop - Salto - - - - Creates a Path Hop object - Cria um objeto de caminho de salto - - - - Please select one path object - - Por favor, selecione um objeto de caminho - - - - - The selected object is not a path - - O objeto selecionado não é um caminho - - - - - Create Hop - Criar salto - - PathKurve + PathInspect - - Create a Profile operation using libarea - Criar uma operação de perfil usando librarea - - - - PathLoadTool - - - Tool Number to Load - Número da ferramenta a carregar + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Nota</b>: Apertar Ok salvará qualquer alteração feita acima no objeto, mas se o objeto for paramétrico, essas alterações serão descartadas quando o objeto for recalculado. PathMachine - + Machine Object Objeto de máquina - + Create a Machine object Criar um objeto de máquina - - PathPlane - - - Selection Plane - Plano de seleção - - - - Create a Selection Plane object - Criar um plano de seleção - - - - PathPocket - - - Pocket - Perfuração - - - - Creates a Path Pocket object from a loop of edges or a face - Cria um objeto de caminho de bolso (pocket) a partir de um loop de arestas ou uma face - - - - Please select an edges loop from one object, or a single face - - Por favor selecione um loop de arestas de um objeto, ou uma face única - - - - - Please select only edges or a single face - - Por favor, selecione apenas arestas ou uma face simples - - - - - The selected edges don't form a loop - - As arestas selecionadas não formam um loop - - - - - Create Pocket - Criar bolso (pocket) - - - - PathPost - - - Post Process - Pós-processamento - - - - Post Process the selected Project - Pós-processar o projeto selecionado - - - - Post Process the Selected path(s) - Pós-processar o(s) caminho(s) selecionado(s) - - PathProfile - - - Profile - Perfil - - - - Creates a Path Profile object from selected faces - Criar um caminho de perfil a partir de faces selecionadas - - - - Create Profile - Criar perfil - The tool number in use O número de ferramenta em uso - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Cria um objeto de caminho de perfil a partir de arestas selecionadas, usando o libarea para o algoritmo de offset - PathProject @@ -657,21 +402,6 @@ An optional description for this project Uma descrição opcional para este projeto - - - Project - Projeto - - - - Creates a Path Project object - Cria um objeto de projeto de caminho - - - - Create Project - Criar Projeto - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Matriz + + + + Creates an array from a selected path + Cria uma matriz a partir de uma trajetória selecionada + + + + Please select exactly one path object + + Apenas uma trajetória deve ser selecionada + + + + + Path_Comment + + + Comment + Comentário + + + + Add a Comment to your CNC program + Adicionar um comentário ao seu programa CNC + + + + Create a Comment in your CNC program + Criar um comentário no seu programa CNC + + + + Path_CompoundExtended + + + Compound + Composto + + + + Creates a Path Compound object + Cria um objeto de trajetória composta + + + + Create Compound + Criar composto + + + + Path_Copy + + + Copy + Copiar + + + + Creates a linked copy of another path + Cria uma cópia vinculada de outra trajetória + + + + Create Copy + Criar cópia + + + + Path_Custom + + + Custom + Personalizado + + + + Creates a path object based on custom G-code + Cria uma trajetória baseada em código G-Code personalizado + + + + Path_Dressup + + + Dress-up + Vestimento + + + + Creates a Path Dess-up object from a selected path + Cria uma trajetória de vestimento a partir de uma trajetória selecionada + + + + Please select one path object + + Por favor selecione uma trajetória + + + + + The selected object is not a path + + O objeto selecionado não é uma trajetória + + + + + Please select a Path object + Por favor selecione uma trajetória + + + + Create Dress-up + Criar vestimento + + + + Path_Drilling + + + Drilling + Perfuração + + + + Creates a Path Drilling object + Criar uma trajetória de perfuração + + + + Create Drilling + Criar perfuração + + + + Path_FacePocket + + + Face Pocket + Bolso de face + + + + Creates a pocket inside a loop of edges or a face + Cria um bolso dentro de uma sequência de arestas ou uma face + + + + Please select an edges loop from one object, or a single face + + Por favor selecione uma sequência de arestas em um objeto, ou uma face única + + + + + Please select only edges or a single face + + Por favor selecione apenas arestas ou uma única face + + + + + The selected edges don't form a loop + + As arestas selecionadas não formam uma sequência + + + + + Path_FaceProfile + + + Face Profile + Perfil de face + + + + Creates a profile object around a selected face + Cria uma trajetória de perfil em torno de uma face selecionada + + + + Please select one face or wire + + Por favor selecionar uma face ou arame + + + + + Please select only one face or wire + + Por favor selecione apenas uma face ou arame + + + + + Please select only a face or a wire + + Por favor selecione apenas uma face ou arame + + + + + Path_Fixture + + + Fixture + Fixação + + + + Creates a Fixture Offset object + Criar um ponto de fixação + + + + Create a Fixture Offset + Criar um ponto de fixação + + + + Path_FromShape + + + Path from a Shape + Forma para trajetória + + + + Creates a Path from a wire/curve + Cria uma trajetória a partir de uma curva ou arame + + + + Please select exactly one Part-based object + + Por favor selecione exatamente um objeto de tipo Peça + + + + + Create path from shape + Criar uma trajetória a partir de uma forma + + + + Path_Hop + + + Hop + Salto + + + + Creates a Path Hop object + Cria uma trajetória de salto + + + + Please select one path object + + Por favor selecione uma trajetória + + + + + The selected object is not a path + + O objeto selecionado não é uma trajetória + + + + + Create Hop + Criar salto + + + + Path_Inspect + + + Inspect G-code + Inspecionar G-Code + + + + Inspects the G-code contents of a path + Inspeciona o código G-Code de uma trajetória + + + + Please select exactly one path object + + Apenas uma trajetória deve ser selecionada + + + + + Path_Kurve + + + Profile + Perfil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Cria uma trajetória de perfil a partir de arestas selecionadas, usando o libarea como algoritmo de offset + + + + Create a Profile operation using libarea + Criar uma operação de perfil usando libarea + + + + Path_LoadTool + + + Tool Number to Load + Número da ferramenta a carregar + + + + Path_Plane + + + Selection Plane + Plano de seleção + + + + Create a Selection Plane object + Criar um plano de seleção + + + + Path_Pocket + + + Pocket + Perfuração + + + + Creates a Path Pocket object from a loop of edges or a face + Cria uma trajetória de bolso a partir de uma sequência de arestas ou uma face + + + + Please select an edges loop from one object, or a single face + + Por favor selecione uma sequência de arestas em um objeto, ou uma face única + + + + + Please select only edges or a single face + + Por favor selecione apenas arestas ou uma única face + + + + + The selected edges don't form a loop + + As arestas selecionadas não formam uma sequência + + + + + Create Pocket + Criar bolso + + + + Path_Post + + + Post Process + Pós-processamento + + + + Post Process the selected Project + Pós-processar o projeto selecionado + + + + Post Process the Selected path(s) + Pós-processar a(s) trajetória(s) selecionada(s) + + + + Path_Profile + + + Profile + Perfil + + + + Creates a Path Profile object from selected faces + Criar uma trajetória de perfil a partir de faces selecionadas + + + + Create Profile + Criar perfil + + + + Path_Project + + + Project + Projeto + + + + Creates a Path Project object + Cria um projeto de trajetória + + + + Create Project + Criar Projeto + + + + Path_SimpleCopy + + + Simple Copy + Cópia simples + + + + Creates a non-parametric copy of another path + Cria uma cópia não-paramétricos de outra trajetória + + + + Please select exactly one path object + + Apenas uma trajetória deve ser selecionada + + + + + Path_Stop Stop @@ -700,57 +887,47 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Mudar de ferramenta + + + + Changes the current tool + Muda a ferramenta atual + + + + Path_ToolLenOffset Tool Length Offset - Offset de comprimento da ferramenta + Ajuste de comprimento da ferramenta Create a Tool Length Offset object - Criar um objeto do offset do comprimento da ferramenta + Criar um objeto de ajuste do comprimento da ferramenta + + + + Create a Selection Plane object + Criar um plano de seleção - PathToolTableEdit + Path_ToolTableEdit EditToolTable - Editar Tabela Ferramentas + EditToolTable Edits a Tool Table in a selected Project - Edita a tabela de ferramentas de um projeto selecionado - - - - PathWorkbench - - - Commands for setting up Project - Comandos de configuração de projeto - - - - Prepatory Commands - Comandos preparatórios - - - - Operations - Operações - - - - Commands for grouping,copying, and organizing operations - Comandos para agrupar, copiar e organizar operações - - - - Path - Caminho + Edits a Tool Table in a selected Project @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath A forma base deste caminho de ferramenta diff --git a/src/Mod/Path/Gui/Resources/translations/Path_pt-PT.qm b/src/Mod/Path/Gui/Resources/translations/Path_pt-PT.qm index 691236e361d386ce73f657faeb5013dea836b563..423e54b1802f08fa571f8b032254c7684cad3647 100644 GIT binary patch delta 8921 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

    m(?k4nL4r9!_rY)Ijd0LK_FHjJMUQJ zAgln;P`26~^nmK=F?vGjw-$>@jys2QiDi9Ok(_2rl~-qN3_Z${0m2hG08t-lR6vF0 zB6;y}!T7-V(EbL%mB21x6*E-0Jy&`7P&&>#5F1o!7OO&5QJx-yNjf}L%R80T+1)~D zliC@~5d;WN%Kt;4e0gVUOINGXk@J$a)Xx@%I{@By6jrT=cZxS<8Fb*4McN|Q=9Nj+ ze`Sylvdpx*9ao0(5}DwXZ|B=gb1sc+aa9+(F%xyHN*$_ z>~UGd&?7A4-wx6er1K&3$w6g{(V?G)OfWoenAwHwgVPD{(8rXmzAU<)abXlR%+Q`*{g>P$;%L|<(J zvNVD|gz!T`!jgcp<+;EQ3^5Q;6Ge@pG0=d3K~so9QOoA}-eU$jQ2b$HCNuAScRlys zbHC|Xv1-MJRB15`_M^b~l`x*l1axnqApJL<%dm6)6(DIMPM-M&C~QaX&y_&(uQ(^W z0HZ~>u7>)YJl($4Zv!JQ=qGGvoN+hxMW0Ux%-`#0nSTOGBz<+sX<*D^eQnYgK=xUE z_uPJ9LWdz?=6*mLe$9}2cq@=G$xwZaj>dzA+P|2x|w5`^{hUc|)DTG0yVet%FS4^X z>xpg5GqKXz|7Qk)-m=+D-?9=znRo%Lif!D64}j78ZKZ{jo5D8#fnmVV4{gn>iF}gJ z*7gd|#p`Xm4^v;-Ve747;@nPqRzDMDZMDz6^BMt;m-}??F)!F}y&h(o1NPe&FVMT! zVQMr1qxu|mBXfZ?mz<|BnKH!W=uVl*B#X4CYm@dYIPU1FI1kvm9PbJJl!=bh9}#`& zO~>VFOq#Yxen+3xm~D)!+_HsZt&KaVEMalK#C^Q$1Z%h+Kh?n^3%`mlfBFv~!5KgM z#udPu9e?O{1F{kron^Xy zInUtEJD#w3&l^BySwg*BOpd&nu=e~ulJHnU&j>xw&(n2Ew}DgkB1@j@a?72M$0<7u zU&l+EFayiciXcL0gNNUG1o&J6ADa0V;?tw*!)Ty3h!&oMsJqYBN9#6fm#Lmbm`>d? zo&)IMTZ8IRg-R?y9_BG#C#7|2#^&KXYH5QMid1!UXhJ}_GxSqknl}brD@`IegK|}h zTkcD?Dx+PAx_}=GsS*$c{74yLo)}F97=WLes%VHDLa0UKU2U$KKdk-=t5~=is?Ebj z=~81r-7A&t5ulX5T5F9=ntq0Wb$d=Q2abqCG0K4<}!P%F-YC+!^kjuA(V(#D5Q z^U*}>P^VwdR0G=@X_$|7Hc=}$A{re@Jg^?Y!79(g$8Y5Z!OU-ke8v5wGS!`?OT<%m z! zRO#nmE{V6gKH#aUT#z@< s*Xe2Xg?zHJ`cx0qa#C^Z)<= diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts index 8eebc5ee4..540c4e160 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts @@ -161,7 +161,7 @@ Export the camera positon of the active 3D view in POV-Ray format to a file - Export the camera positon of the active 3D view in POV-Ray format to a file + Экспорт позиции камеры из активного 3D-вида в POV-Ray формате в файл Export camera to povray... @@ -182,12 +182,12 @@ Export part to POV-Ray... - Export part to POV-Ray... + Экспортировать деталь в POV-Ray... Write the selected Part (object) as a POV-Ray file - Write the selected Part (object) as a POV-Ray file + Записать выбранную деталь (объект) как файл POV-Ray Export part to povray... @@ -214,18 +214,17 @@ The current view camera is not perspective and thus the result of the POV-Ray image later might look different to what you expect. Do you want to continue? - The current view camera is not perspective and thus the result of the POV-Ray image later might look different to what you expect. -Do you want to continue? + Текущий вид камеры не является перспективным и таким образом итоговое POV-Ray изображение позже может выглядеть иначе, чем вы ожидаете. Вы хотите продолжить? Export view to POV-Ray... - Export view to POV-Ray... + Экспорт вида в POV-Ray... Write the active 3D view with camera and all its content to a POV-Ray file - Write the active 3D view with camera and all its content to a POV-Ray file + Запись активного 3D вида с камерой и всем его содержимым в POV-Ray файл The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. @@ -317,33 +316,33 @@ Do you want to continue? Luxrender - Luxrender + Luxrender POV-Ray not found - POV-Ray not found + POV-Ray не найден Please set the path to the POV-Ray executable in the preferences. - Please set the path to the POV-Ray executable in the preferences. + Задайте путь к исполняемому файлу POV-Ray в настройках. Please correct the path to the POV-Ray executable in the preferences. - Please correct the path to the POV-Ray executable in the preferences. + Исправьте путь к исполняемому файлу POV-Ray в настройках. Lux project file missing - Lux project file missing + Отсутствует файл проекта Lux The Lux project file doesn't exist. - The Lux project file doesn't exist. + Файл проекта Lux не существует. @@ -366,7 +365,7 @@ Do you want to continue? All Files - All Files + Все файлы @@ -381,12 +380,12 @@ Do you want to continue? POV-Ray file missing - POV-Ray file missing + Отсутствует файл POV-Ray The POV-Ray project file doesn't exist. - The POV-Ray project file doesn't exist. + Файл проекта POV-Ray не существует. Rendered image (*.bmp) @@ -430,22 +429,22 @@ Do you want to continue? The path to the POV-Ray executable, if you want to render from FreeCAD - The path to the POV-Ray executable, if you want to render from FreeCAD + Путь к исполняемому файлу POV-Ray, если вы хотите выполнять рендеринг из FreeCAD POV-Ray executable: - POV-Ray executable: + Исполняемый файл POV-Ray: POV-Ray output parameters: - POV-Ray output parameters: + Выходные параметры POV-Ray: The POV-Ray parameters to be passed to the render. - The POV-Ray parameters to be passed to the render. + Параметры POV-Ray, которые должны быть переданы рендеру. diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts index 08554e590..e3f3f9359 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.qm index 7d52a4e5eaab33d19666a3ed9bc3a56899af261e..b2c26efc559c1b365b977896cb33833ef28cdf3e 100644 GIT binary patch delta 1187 zcma)4OGs2<6#nkacxRkDkMfa0mRBUGh1S9XCxgruNl`*6CQ(f@H)oueIOC8mbkj=+ zwEjW}deg#!HliCBK@VwFK~TG(7uBLg*n=pl@7x=L(4xhiGynO&bH4BY&Y3iCnB&zW zpOERU0DK#?U4?m|q*hC`bO73zYyHS_z&Pu<^?sW9XP)`dEZ~3R#Ng$U)RWu9E!CT! zTmwokInmgrCt{BPPfYKf@dDm=`o!=r0G;~9*)pDwd+Qp>r$6@|x)}mS0&9Ft_sdE2 z(l@?D@nYO}clrPumig}4v8%Lk?llFT@)s|WFu2rz^&|`3JB{$e?=;IB_ugE-(fX#ufJqY)0wVz^s<1vgW{3H(wgK6Fm0pJcU$+W~v+b z@8jBNr>?lh zwE7&1OqzsPND-Dr9tEBTcp{WHeMmDOLjr?S`#n)@?HY75ahRYehS;@0kd!2O&Z38< zX`3ghUX?^@R$;f45-(IQiM5Ebi0@&ArJD5Ss%2UiJ|fO9#?Q2|aSW=ndULIbPIhy; zJAzW$K2{dlPoyT*7roWk!+!&mYH8b5tGBUcBie1$5c)L1iC#zPR@5V}JnmXG>1_&! z(8fwp<2dup8>#E$IZd?KAq*y!%6(k)QahQ{Uf(Ev*g=GaBh1GZ?o29MT%S~*eWO*a zc2;^iF34{JQFX2~(y|2|+AurFC`3(~yeWESlGEv*wd=&+56tF~(N<8CAO^4wMOET& z3kDYQ%qq*@v?xLFJYsfv(4v-NHxs-h8X;0?(L-drr`=<^EACmf9$b(@ z1S#XE3zgCJA*EhKUwq4uga{!hB8Vsgp%+1ddMNtlKSl^a#d(-BGv9pk&CLHmf2a=^ z=Dt(Mv3w#=snTdI66F;s$*N`|ML4$S))8q}Tx0VSh`)C&4yK5F^R^9)<(-~;4BSe! zV(u=H_nK|BdNmn)LF7uPZIf;y_iOcP-wz^cQAeg$!5?s!gwaoZ<32GOB+B{AJ&~uY z(dd(Bc!fY>$n#|4I0Sw5OtbaYd&4sy;rIHwZ=qpez3MGMXYM_T7~Sbs{p?R-aj$-Cg6QZi6h>3`|Or2g5!xmTAVq&PTP zSdPhiL;0nRM2^`|-0Xw(m_)(nPB7`>k)n$pWg${YRn&>Ei_+9fCUsCNS!9q-)l^1@ zkZDIWB_kQi0(T0C7#ZU?9T$}{ot6br)&*z`WGQ4Ucv*NBC=eMx>S|R=H&P2+gL(jF zfC;`7B>-%fy(Lt9$ct_$ga!k-xKxk;o;?FK2|6S8s1-oe$X3jgM!gQbX^FNdBQB^F zn>PW$s=FmO|M6_>*`1f9iO*_{R*PIhA`B66hqrE_I&fLQ|792AzPox&J~aT#>Ue{4 z3TXJ^j+Puilqa+(39d9YsLMXBax%_Y;-F`+U@i7-(pjm{-m(RBmvDIp3l8JY0yEEe z1PBuhNz~ox&@Q z{m0yt?^3RxnxMsiBJRx3z>q#4TSt^5tRf+!d>6hh-VI)uoEV5SouoE+b`8(Udod(K zJG|J^yx0M_?5d^RI`EpNHA}(Pn}Fh-Gq1h>jMyKrigj$0qukkm8rHx&(xEENdlGL0 nL;LFfdyZf4ONTyInWeZG4UX*G@h|Th-TAVn)D#!}p?g08g|7(! diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.ts index fd9980562..00b0fe96a 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.ts @@ -29,7 +29,7 @@ Approximate B-Spline surface... - Approximate B-Spline surface... + Aproximace B-Spline plochy... Approximate surface... @@ -51,12 +51,12 @@ Poisson... - Poisson... + Poisson... Poisson surface reconstruction - Poisson surface reconstruction + Poissonova rekonstrukce plochy @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + Zobrazit triangulaci @@ -79,29 +87,29 @@ Fit B-Spline surface - Fit B-Spline surface + Přizpůsobit B-spline plochu u-Direction - u-Direction + směr u Degree - Degree + Stupeň Control points - Control points + Řídící body v-Direction - v-Direction + směr v @@ -111,12 +119,12 @@ Iterations - Iterations + Iterace Size factor - Size factor + Koeficient velikosti @@ -126,27 +134,27 @@ Total Weight - Total Weight + Celková váha Length of gradient - Length of gradient + Velikost gradientu Bending energy - Bending energy + Ohybová energie Curvature variation - Curvature variation + Variace křivosti User-defined u/v directions - User-defined u/v directions + Uživatelsky definované směry u/v @@ -159,7 +167,7 @@ Please select a single placement object to get local orientation. - Please select a single placement object to get local orientation. + Vyberte prosím jedno umístění objektu pro lokální orientaci. @@ -172,12 +180,12 @@ Poisson - Poisson + Poisson Parameters - Parameters + Parametry @@ -192,7 +200,7 @@ Samples per node - Samples per node + Vzorků na uzel @@ -212,7 +220,7 @@ Please select a single point cloud. - Please select a single point cloud. + Vyberte prosím jednu množinu bodů. @@ -220,7 +228,7 @@ View triangulation failed - View triangulation failed + Zobrazení triangulace selhalo diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.qm index 9678cc3bfd063baa61b32a9c7561f1fd3425571c..40d884c7269f210edf18bac27625866919df140d 100644 GIT binary patch delta 411 zcmew(|6XB&NWBGv?~wekGq77+CokGaN%17#L?W8PrQKFmP{T zS^Z)wQ2ZLp=gvGJp8-PizGcn6unwqBoXzIKA_fM|We}P>i7g}f90LPOBwN-tb_NFa z$86K<{xL8xWU$TMEd=EEvn!hb?W@8jfq|`!FhR{si5Sn=- zgl1uf(0u2)t;Ab_>KM2SX0fq~nd zW%Y}#3=FK8? z@e00eGI~G@{_=~c`T;G>%Vc2STg?nK!HB_e@&qQy%|(nXOp{dwEH+EBgz*3XlTcCv diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts index 4178f9b77..45ba111ac 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - Vernetzung anzeigen + Vernetzung anzeigen diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_el.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_el.ts index 37a4ee804..115077976 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_el.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_el.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.ts index 52c731166..37d2601d2 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - Ver triangulación + Ver triangulación diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts index f82f972ee..29b5e6536 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts index 79687c688..87040cc3f 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - Voir la triangulation + Voir la triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts index e96bb75fc..6befa5bcc 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.qm index 17558bce5aee119b4b66d1a284ff88af3abaec0a..723aa5a489d0e4e80e0f3bb7b72f472c797b9478 100644 GIT binary patch delta 1047 zcmaJ? zHAXHJ1NK^}J&^;fwNkM0JRnV*j%3OJ<%Q+(#sd34EV-*u?p;Q8uUf+^Plzj$8&)0w zj)z87qH?hBEnpd!hZk*tZBxFP{tci@o?R;B{+6x6Pdzzj>zVT)16P;5Zn+3>x$RR0 z8V8T;FBiH=SZaTz*KUXZ^*Rlvoyj{Cbf0kEzv2PRgNpaf7KPp^eiw!C%&4YIMm0Y* zs-?uJo>`@S_hsUsjNN8+%_#TG@9O|3TuV}%&RSioW+rugbx*EM(@3pnao-^(zu_&e zY6naoy#1jxYiS7ZeACWJ&r2$C3ZsajADc*UmEfalJyzd*n`u(od8~OY8~>Rev+mz< zI#+Q3XArv6-H&*t|XMH6bMW}F+~i9sqw{$dE}Tyg3q zgtB(c)?8GGR<6f%Ct{Mti1yKTd`}sg=`o`BRRrlT&L_nrP4?^Md(p;8jQqlxV2fgc zyOh+aeX?hE6<{rokK-p#Ko{d)P)qI?I{o% z%cEJTrdn5lKwRxu&;aed`e5WQfF||P(r(@dwX!Jv)VJEr83#F7rFv{-4~;(SlLdmr zkp6nUnG1c_mnDYIhN5qN@ZMq!Jf@*-8q;?jz~5ws-~Fc13o~lb2#b024d>B6y@`MF z=(uK8(QWEr_Dm72X7h>vTZ{%@ttF+8o1L&e`kB;Pw8y{P=OSTeq2v^kC&Pv1jeze% zxGg_3sKJwxxrQ^eRk>R%a7oaw_Q8=6df{1 z@+)U0y!~a4tZ30EiuU0uXAXILB+0h2BZFRHgmU|fagFCJt1`=VYSNsMV&_z->Rct_ zd|>H*k~3X8$fPdM5hgp$R1wchW|ULCWZbXJsHbZ`yXsi`j}^m4jNHJE+_E8*F)`&- zT<-MtbkW7h@@-|l7IbX-M7#ttt?O}}WLq~gFd04bU0ZK9_tVq^+y3wh5i2nN0R% Reverse Engineering - Visszatervezés + Fordított tervezés @@ -24,7 +24,7 @@ Reverse Engineering - Visszatervezés + Fordított tervezés @@ -46,7 +46,7 @@ Reverse Engineering - Visszatervezés + Fordított tervezés @@ -64,14 +64,22 @@ Reverse Engineering - Visszatervezés + Fordított tervezés + + + + Structured point clouds + - + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation @@ -79,29 +87,29 @@ Fit B-Spline surface - Fit B-Spline surface + B-görbe felület ilesztése u-Direction - u-Direction + u-Irány Degree - Degree + Fok Control points - Control points + Ellenőrzési pontok v-Direction - v-Direction + v-Irány @@ -111,12 +119,12 @@ Iterations - Iterations + Lépésszám Size factor - Size factor + Méret tényező @@ -126,27 +134,27 @@ Total Weight - Total Weight + Összsúly Length of gradient - Length of gradient + Dőlés hossza Bending energy - Bending energy + Hajlítási energia Curvature variation - Curvature variation + Görbület variáció User-defined u/v directions - User-defined u/v directions + Felhasználó által definiált u/v irányba @@ -159,7 +167,7 @@ Please select a single placement object to get local orientation. - Please select a single placement object to get local orientation. + Kérjük, válasszon egy önállóan elhelyezett tárgyat a hely meghatározásához. @@ -228,7 +236,7 @@ Reverse Engineering - Visszatervezés + Fordított tervezés diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts index d04118a38..0d0e38086 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - Vista triangolazione + Vista triangolazione diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts index b745e3f0d..688a2f5db 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts index ce8c799af..05b7a2269 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts index 1fb4cf761..bacf4682d 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts index 5386a464a..797f92f1f 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.ts index 964b5d11a..27dbc0c12 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - Triangulação de exibição + Triangulação de exibição diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-PT.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-PT.ts index ff35aa885..25c73b353 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-PT.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-PT.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.ts index daae8c45c..173bb43ea 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts index 0ce5179dd..954c230a7 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.ts index 5ea3f3865..400633929 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sl.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sl.ts index d0008f75b..a713a635f 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sl.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sl.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - Pokaži triangulacijo + Pokaži triangulacijo diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sr.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sr.ts index e24f146e9..dfd5dbbf0 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sr.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sr.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.ts index 953a69a9d..a0989bbe1 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.ts index 6f95e8605..7d7f49b80 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts index 6c95fc4ed..907e57576 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.ts index 71ebe2a99..5952b96a2 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts index 1148252fb..a1ae8c0b3 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts @@ -68,10 +68,18 @@ + Structured point clouds + + + + Triangulation of structured point clouds + + + View triangulation - View triangulation + View triangulation diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_cs.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_cs.qm index d9ee5304ab98325fb37432f5130d513e50932257..fc1fd05e4efdd3d42f59542438516db6310c9366 100644 GIT binary patch delta 1182 zcmXBTdr(wW90&04-FxrK?q0bWD6uFkC@rM>%>K}7AYA$`=b!!D^V@sQ`JLbS z-Ts}@nVr(Ex#2MYxq!n7t=P%`T6_kQW~S2AI^{SVL9-KhpwP6(F(ekKFWzl=;QQ9S_k;vpsSh4E}`=d zeV*}yfO-`0PtY%b01u^}qEFB>^exIw1E11M^fEAG5@F;qJ3hekB4sjpZwft8Ac+;p z>lb=P_)ao2Zx9C80tH)GIgVHF0m{>$bkO2Bl&jr5zy+aeo6vht=({KkOeW+8p+itt z7O|9mq3bl%6Fi~+8K_^cV|-NT9!H^_C3Eb9KcO=vdPV9BccH#%0pA|Q%M0HFN;=Vf z@*TjaqbJ7k+z8G((*gG}VaYJ!=c<6rm}JTM4JcYE=^`xjR3ISOaCb^XjWc|mKUh^P(VO$t0F$J5CG1EHJhvO_<`Iu?<4H=l_ zFzxSh0y&3G*Y)pM_}pl(V$a@ajy2>1b8^gAw!h8HUlsbM%)d0g3wQ^je=2F=RhIQu zzGXdV8QC$PRs73x>+>pL-d4+hqqBj+$28N`WLBX@b3BmAR%zAhNP!APtAN{{)V)pYnW7!Kw>9Am-8+)-l3u;p!~*u|gBv11$_o8j*(!b} r?aX1xR|6AjgEcD?HPRZa!&)?A6Ix)y7Bu5^H1KybS_YbJOYQ#yCR7%` delta 1170 zcmXBUeQZ-z7zXg?_TF1|+v~0{wz=}L4>r2bcI~>ZYfCpaAq>O#Lj#)OK*CpXfhZaS zI*Ux*7Pg@&3(Cw)kOm`&D9OxVYy-nr8coyyi!qECgQ5=2rZEhtKHW+G`1PFjob#UN zzU{dK(&q=HcjiaN0Tcjbi)j#8oFR1Vqalu02_0Y1r5q0no$0im<9~$CWpoW-pBB3E z0VM!c1GrLIId7RXuokG;#pF0%$HQx_P&%l063X>%USL@0d|BxJRaiADto|!0 z4+tHCx}uWNl?t7wpbqecz7h!*j~bi z=5Iy!nb!fcf&Mth^Y>xI!7R#;2>k;{Ty6vwj!4$LTR>${GD6gAl5);}#2&aKdA@ub z(B?{4j}HRQ-%YD;b^>#^n0gK}yU>_v@R?1#?q{ayxC5{S>r9E(9h_Jt=k(VAi>BoI znKG|L)8*{va^>cWe*;-=xoxKCdig@iT_)NgC$_Q7z%2#NJ1qNOCH(PA>>Vh(``AN) zsM2w$oR76cdH=suz!+0vUe4DvDucELU|x$d)yY$H7N2hzY_ZM)l;*R zm+4annz@TFqF(Uu)OlysKi0Rgk^Sm}QtnbR8GR^c=BAjpe#pLFa?~9AmgZNOZ`gVm z;Z^hPcmY@WqLqrhA(k>c90Ican!JY%Wcy9aS~G{eFd+;%w7|}jth7mc_a1|*9oG)t zl!4i0+Tr~UAn!eG%=m`EXGLR*J$Hj8zOe|%$g^B)e~p!I5>`!Fe%!Vfa370KD4CIv zb&HMPvh`XobuD6we_C&!Xap9tSnpp+2Rya9c0H9TtklaMUC371p*IDOuxH1G72oTv zYr{ZhhW^HP{QR*ty}f!jfAAahqZaOyozRD7=F{|%f}c4r>A$?y$!EA;fB2*VSQg|z z5}a;eGvAALtIkkg>JQl!JocpF4zp(}_Zsd!)N|i(UrLV88>?T`7+{| All Files - All Files + Všechny soubory diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_hu.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_hu.qm index e22ea34b840769eaac4758ecb0aadfbbb0a035f5..bdf6d119784d2d020044b49b4c96156630360364 100644 GIT binary patch delta 1175 zcmXBUZERCj7zglwd+)8g?X?$hP}afL!NxXVZP&HXu3a|<5}58KS;QbX1A?QAjzp0F zibW@mft#BJ6(o}kCLl6RQ07zyl5DaxlK28OibTzVSwz2-FU&Fgcjrrg_dLDloaa3E zx%a&;!_h87=bY#efIPrCgNA?w6GB%r4FmZlLRU9k#_Qw%9(MxvGR-)-yP1J9$lWaLPrp6E0HsKwn-tTE{(v+}w0H(vH zTXDV{ncHGMc|lc z^V2C9JAYIp&Ai1V-q&>*MXJz15J4L+*!xp`Tqm*gA<|v delta 1171 zcmXBUdrVVT90%}kd+)8>_O3-y8AYX4kn!p*rC+7WUQL0Gu5b#3v7#q#RaE0$Z(HlPolVGA^b7j%pNRpOEv`Dx198k&pE&Lobx-s z`|CZ?WjNYpcymEy06-4lveE#s^k1RgNP|GGF4T|H6`Y?E>Qi(j=OaRQ5v>Ov8WR>z z0&)egESpx+I?DC=J82b-Q?8HX-{fEwP+*}CQ;y|o`U+jch0SywO)l67_@0J+H?e1{tx7XblJC%Z*=ei-9qyarU% zpySf3yyG3j5}Ysi5LaCpOnINMVh^T2TMuM84VJ}xSY>vDEtqu7;21aqRQ4LY9~}VH z#fC3>`T+Mg#=6lqVD1~n&ckei(5J?}C!S$1#ElaP7htbUF;4G&o&mq)h=qXc3)0G& z^v*};Nm){t??B%D&IIFi z^1-*=e5?lf*nKOIYL(+A{%)l^b{8n>5tjd@oS&V% z%(KeH2JYftqYQd^YUa4|`<51#UvY+kVWQu=Bv&T&%_D;Zb z%yc`E!&NUvOXa1tj{7P7{XtePrb^B1piGCFQ9lRp3<*PX)ruEB0Bo&l*MF?siedHe zs07SzQI8*T0ZUe^H*H@7i`t@bIoBC9C!Wd!=C3keZ{5Sx*9v_D=AU-#V{7e?{voGF zVA*Epuk6E?Ywb&Dk>&P#>w$&8TJC*54=7F5)Eico;j~tix`@59R@)dj&88g^de3Nk z9}ffRk7)b9=l2g@(OUhx`8TiD&YHQ8qh7l_6JMuY&H0&cf?@5K*V|YEr#7`g2FwfF z9|%m;u$ym1I}|*gvYkqJmE1mO@qzTOiO>Td9EerCv9~*Rc;fu^=5R_yA%;P@@~f2XDsPXGV_ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts index 10936f2ee..9e9488e07 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts @@ -415,7 +415,7 @@ All Files - All Files + Minden Fájl diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ja.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_ja.qm index 9f3698561b70a5cad5897eaca701405464aa6521..cb197c3e8af3c5de5a471b56415af65601bbf742 100644 GIT binary patch delta 1148 zcmXBTdrVVT90%}kd+$YVd+7zFvI0s$pj1kqJTztKlo6SVnK~AOV{tyP{;|2&9}-+a z;)866OK}faP^Zln-R3qY2Io*QJ~qOFOK`?5&OdxD8#v;Y1*W)fIZ2z(J*PeA{LZ(( zo^9-F+?x^p1wbxeDYOijl`PELLd!X>66PJCPjP%o=#c0lj>m+K0IdNs{}MW7Kn?jK^fny;e2H|B27zf05r*9{^#ErPodoP_h0b~)o{8AIgw9Sb zvas@{LjQRn@H&%Y@oV-0CBH%5P2D>oUv1+Bz7aas3Fq_+JrzRV#+W>y_!yMM#f&ar z==caq4{zxC0m|78oc~&wKZqg+Bg<{T+$sNw3>!WP+fWzE;r+bWT)=RBV`w||7Bjho z?g5Tx^x%w}+2n5*`m-^4i5WjpYcOZu1YAP~y_^=lXRx0;1Rh~1I=Pb()ET}%+6y?Y z7?xoUeqw50o#Hc$vU$rKgU& zc*d3fBAz-!SN?plg|*&P9=f>8>^qT1Qfg97T>bt&UVSJodWB|0Be`;E)v@@#zH$b2 zT9q2uFxFM7t%m;&=b*5-QVqWH1)v>L-yLUArTf*68xkwMt9HKa2GT3lYx<8s>itMm zc4RFu4ZP$8lJ=U0cQvxo6++LOre8NT0dra+BXVkZvw340zhzA@Uwmgakg~&k=d)_= zvBmt~Wh+oHs;O5k3_V9HOq|8mSg+NVeas#m78W#X+nx^r$<Ac{vR^R4hR4M delta 1150 zcmXBS3rtgI6bJBsd+$YVd*M>FFdo{1&{`g?v`{nxMpOd2;WN5LWZ46xo7oavvS`q% zh(Z)2scwpj8H~8hZJEKK-CT8M>Nd8Sv8cfI=bmR#%G02h0bR@B6JqfReHMEQNj4q8r6Q+^-JxX*_LK;~4skS?Vaw3+g9x0k*^*U~j~nAY&(?Lx;O!+rgfp(7(8-ZyH(}O!DFW$)IObSNO{>2u~a zRD1D1VDcTQIhu9&qzkeC05Nx^@dlRZE0^K92YBn`z(?A^d4HuGPOSp0-^(Lyyfx)v=z!#z-K~7w#ZAoW6BcwTpIg|BZ%FB{vtNe-5hn19kr`iIoniox9yYTBZ7{{u7Y=Fw`qM zGs;Z^uet!sKGW4*O{{dK(DSb8M#EMhrzP~aoE%(lu21E^ta0W`d!_?ZTFifbQq40O z&12tMf!twDy%x`*JGA_SXKBn$um diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts index 5a1e9bb8c..1d6c6990c 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts @@ -409,7 +409,7 @@ KRL file - KRL file + KRLファイル diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_pt-PT.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_pt-PT.qm index 3418f9e9317cf50dc3150a4dd35be4510b3b4637..ef2cea019df31acac41171918633d0169fe8356f 100644 GIT binary patch delta 1536 zcmYL}3s96*6vzL&`|Y|5-|m9E0>oVrP(WCoE3mk{dXdk`2167=UTzOSuox)Y(kWm} zqE-}Xh8WAnP|=C9$U>hlJLMk*Eiq&cuqa#5vWv{4+#qQAnk)bozbcs64oEh@ z+Dk4YFOobT<3r|>JS%ZHV_xFqVJbc*A0fxcM}b%)xg1zZd(uiWmMkI%$qjU@5wxr) zH&TBSP#*%)pCFHrFOnz79+JVOkB}VcQ{-77V*xPd4xCv0nP-B;A##=({3)1t8_=>M z(b0lQQ9z=B@~EJV&XVg{xpTmV4j{W8QVY4X0MaE^CpK5mGAWq+v|yUQV8#kJnYn!i z>c>-=QJ-K!IMm0PVcH(3hbkD5T`+MSQWmjf@e~_}Y0(O1L%hWuE?h(piN}P-jX6mw_ z%?q>Nt^!P93h(e=f%U093ZtD9Yo)^c%?H4;JVnaqZvwh!6yF^h01}FntH)ab|50Vz z?k*t9svK|!oa3jQ9*Jl3?NQEdt7aXKs?6P4K*UB>o+r(0SAfb?x>Hqr>Te+UBh?O% z_JnF!dy6-7UNyU!VP-CoU||c`mP?LO1l~%swC|n)@JW&mSgFrC zEDeO@1ECYr?N)kSU~_e-EY1jZZ#VBf&L)`Aq(0`$Tr&SrA1|hrvKo-7Z?pmn&&qe#N_-;1di9yp`TU|9^mQwFP(QA(pJ`** z(fZCOivd-IVa4~?7}${Er!QEfxju$bQ!>*D7EGOMOmeU@Qzwi`O>UMLlTMS?NaN}{ z9Uaaw4ph;e-%;b`EIuE}*BEWCmgPe+-@JaMW>lY5jC@q19uCx@6lTw;<@_e%sI9>B z9A&tHYpCIBE&ttnAIR0NtGdwsH2-OZ-zO;N)=Dl`dyLVP%aj`^xlg%zV*JBB$4l?K zahoyIa1CCd%W9sb#|5RX9;(wtn BVp#wH delta 1440 zcmYk+dr(wW90&04viB~#?A={Sc|YYLAdls-yk8<|QlX9(Mj)bzxK0W!%p{~?Y6&9} zxHy(g*ig(kS!hFO6hSc~YE1c^w;N}-#zEt-}#+$Ze645 z&fBU+@0x4?!9e65ng%SY7Df%x47NWLniZM_gaio9Wt3w>@`dK(G!Flq&a< zTpZgZR~du`Qf6OXj)!Om|o{QU@&Pc4%lm z24uQBbj>Ebvh^o?frz zI*+_3fY?-FMx`#btev}mO4sy|#m)-WHIJwP=ht+{4n_e1L%KoJ58SO+?QN1@Sh&-P znLjwX-DzM`7~s0g>Dqx^Tt<&DDbQ(X>mI)U$NszIR%6p|@nkR0JNo|mK$@x_`(!2H zGpL`u-~w3oE4u4OmT*78OlWaacCWJnZsp1wSNYz3SUHef#lKF! z@{tqg@po6c=i=Ly-r!q|7bw5HSqB83Ql{2Q{6+ZG8`36nc%$+Swpj{PTvmItO-D^F&8zbUqQ)+|$OKTU8nt+MI3 zE4NKurJQemlj%n0)4bK^m~GZ?EFX&a&+Bl|+%#ktBL_QBffCqI34fH+lDYQF^d-iu zC}WS=H)V`l{}-_`UWqch%Gb3cZo!mFb=YolUnrMx3adRc)XU!N9x89)Fq^&CJ+fom H)hFgZ5Aad^ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_pt-PT.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_pt-PT.ts index 24e17d43f..ad0c82f26 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_pt-PT.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_pt-PT.ts @@ -214,7 +214,7 @@ Insert preselection position into trajectory (W) - Insert preselection position into trajectory (W) + Insira a pré-selecção posição na trajetória (W) @@ -246,7 +246,7 @@ set the default orientation for subsequent commands for waypoint creation - set the default orientation for subsequent commands for waypoint creation + definir a orientação predefinida para os comandos subsequentes para a criação de waypoint diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ru.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_ru.qm index eca6e2282340a14ae6b5358ebc46828007f3c1ae..76c21e1c2e611403567832a68250955719189a1c 100644 GIT binary patch delta 46 vcmZpe#Mm&2aYLbk5Q`9tBa1160*eca0gEMzHH-J;W`z?RFz)7H#kJ}H_bCc) delta 46 ucmZpe#Mm&2aYLbk5Q8H_4iG9ZxG`h`=~RZ|$;}EUI2h6(+|9v?Yt;c9?F>f% diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts index 82acc04c0..3d09e8017 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts @@ -409,13 +409,13 @@ KRL file - KRL file + KRL файл All Files - All Files + Все файлы diff --git a/src/Mod/Ship/resources/translations/Ship_af.qm b/src/Mod/Ship/resources/translations/Ship_af.qm index b1278fd8d3f1d661cf4ec7633214647c58934847..22704b34172d26961962d125834e9c7439865f93 100644 GIT binary patch literal 20704 zcmdU13yd7)egEJ4vG?!`a~K12Huc$H4zR&7Hc;;2!w2WH6CZYC%eZs9bGKvf&MY&t zcNl6Ck)%KkCX|x4!~_ae1tPSOa2rTMNT^5}R4N3a6_p~=5~8@R5~Vb0QCjHl|9$h` z*}c6zyQH$tvyYko_kVr=_qSI+m+5)sXD1$dwRh!Xx&%$brAi=Ox@4!{WmN~^-Vv2o~ZfK z`dwr16DfDpr;mPsb(YkBe#=s#x@+s7d-NWn_5WS}^#?zR>(%uypSO-^@%#0^I&p+( z?avz;owJBG{e45*e|(eZqIC`HA91kmiG~65M?_m*Z20t(xc{tAHr%)55~Az>uHo&+ zasADg8rvTF9?^}rHSRp#Ks4||TnfS#wD{$>;4t~}QC z#;RZ7{@3KSeWK}KSHDiQ;oauJ+m;cn+1EUN1^Bq-oaRSEyvF}NpxYV z<$=2a_lnnBzWDI-M2r5S<*~2)5z)o@mM^#T1MmN8`R=zN-+_tNWe;NA*85wxf7K>x z`g-e~rvUH#Z0lpc0zCS0>-TqE11Vk5`p$>I_nMiu;>vYI%Rb&Vn|+z+^7q>Au{(*b zDzx46DDdm}T-&kRe**gY+m5G)p*Kt09vTL`^B!+|;)6G!XAieM^{05>)!p`;JqJL? ziMCfS-+}d8+Ubjr0N-8hJ@tS;)Y-o06Zm}l!FKz>w}_V3wg2Jb^+eYlZ-4%oM)38Y z+h2YR{2qC~{g)j_iH6UT*U?X<8h#3X55Jk}>OBQ{e>T-OhUZsJr#6_Nla8gf_Tl^b zCsQAP>?xw|XHweM3BY+QWqjreqOJF(?)XF-==fpk!DAZq>aNruJ4>aHz_m-=|-sOJ{x!uyGe{L`K*_~bYzVbWJgQH#d zZ3I8-C%Zn}2{@ZS+r9i^(4E@XebN1Y0KISMzGlz)L|3M})4zO^sQr!Z$5%cJeR{F` z

  • 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 delta 1030 zcmX9+ZBSHY6n^gK?%lh07XcB8h22Hn1y+F;D^r|Yg(<#TsFq2CoPy0QXq$l@rq696 zhjam(uEwa4pfinVn$z7z_(52PmFbM5+Yg%wbf6iL)TANDG^a!N$Gy+{zUO_;dCv2m zD}zk$YtePXjp=7^_3b(D$Q;``IQp9p;0hr;b_iHG2jKt!cd3pA$q@HAk*&b@z_ z;)^zO-N`FScsDnBkZ{=rUfS~$P_%}Bx`zW+{LCMd)&RVpzkWOka83wOV+VEW`bu#6 zN*6j8Jk^Iu@drZuQxcFVTB&{8IFNZm z+R>^2+54p(2dIGjj1+tO8VPhuJuhzpl8;D-9$W%eJujUJ)Du6tK{{Vl1sJ|CrL&aC z9X17OX}>DV)T&+vtgNYbkq21bXBs)i1F1gK_y9TM88-cGeiz7X*Rf!|%-tks@*b5f zjv0D_jk2qf_-V89S{I$ORdUV15D7XiH?4h^_%F(@cN7Cr$FRJ&ErqQ8NbX~ZVERm+ zNuHxlcAH_Rr*YPpwa;xNV8T4TKyWmh@3bwY*_c;y7dp+FQ$kncG<#Tn##UZdj7u_?_;rw^VtlPJXqeF6}h@5YjB6?RDgU%hGlB9kM=V>Gt-M zVuLj;pOl;2*1TQ2fx_>s2QxJinr)4rqgjw9bae98Z(`3;93kN0GPRc9rL7Z&4C*V& zef5YXswSSuR(~-kX+i4+M&nZNi)zT$rls1a87;AFlGV=TYP|O6>IPOlQ{vW2OFDUN z#y85TA6ArVy=B#0c^(1?qZtvjpb2(b2k9UD|0IM)T5q991H7m=(r7@WZ*d^p9BFB? khlBQDb0pMg-_p|HtyeET)xmhxK)FLbU9m*#DX$g(168jY-2eap diff --git a/src/Mod/Ship/resources/translations/Ship_af.ts b/src/Mod/Ship/resources/translations/Ship_af.ts index 9df426372..d26900df8 100644 --- a/src/Mod/Ship/resources/translations/Ship_af.ts +++ b/src/Mod/Ship/resources/translations/Ship_af.ts @@ -4,50 +4,55 @@ Ship - + Ship design Ship design - + Weights Weights - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Ship length [m] - + Ship breadth [m] Ship breadth [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Draft - - Trim - Vernou - - - + Displacement Displacement - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Aantal punte + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Aantal punte @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Computing hydrostatics - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Main frame - + Create a new ship Create a new ship - + Length Lengte - + Breadth Breadth - + Draft Draft - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plot hydrostatics + + GZ curve computation + GZ curve computation - - Trim - Vernou + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimum draft + + Maximum angle + Maximum angle - - Maximum draft - Maximum draft - - - + Number of points Aantal punte - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plot hydrostatics + + + + Trim + Vernou + + + + Minimum draft + Minimum draft + + + + Maximum draft + Maximum draft + + + + Number of points + Aantal punte + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Select ship example geometry + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Density [kg / m^3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Ship @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Mass [kg] - + Linear density [kg / m] Linear density [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Density [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Ship - + Mass Mass - + Linear density Linear density - + Area density Area density - + Density Density + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_cs.qm b/src/Mod/Ship/resources/translations/Ship_cs.qm index a4a71ba7fcb7f0575e2d59deaefb7435805eba51..231a299e35bb75d0664d184f960f5a09dc4c2669 100644 GIT binary patch literal 21026 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 delta 1075 zcmZ8fZA?>V6n<`R?`>~ydyDd6VFhnn<)f5=D__$&15RbLAnJw-2IDs9EK<6x?HJ1F z7NbP@*pfR~<{&aO2IKU{ZWZ`}vKX8&-LlCaTozo0M0AtP#johhj_JSsxOwuPbI*C6 z^PDqqjQQ0cd1<)TGP%&(eZ^)yzw_(S-%0^C4_xt4;Q9ODjsVCKW0*(r;eP>PB8Cnh z|uR|BpVY;2pNyf%hu71%Xa04yy-Q^zQvFJ@B2Hh`atVY-bOic}i`iK z_>-8R;r<>0xNDk9&m$nQNAuarcnbfl8Bfguq@9|_z0JULbF8Z`L=7j{lE5rr>tR10 zr2L{=Z0F(}65h$q3=l5=Rx5N*0580&-PFYb8T+-Tgckv=S9|Mp9N-w>BKmzaX=Vdw zFI`8IJ2_XyASt$R(H;`uc)&&Pw36Z~?ouH&Na*IS+V9bS;TQ^q+-=7%K-wpK>7E22 zxrndGCkNz*eBVt6y>Ig;Q`(960)NsrM#QEVrat1Y2hWgmfe3#u@DyM|I?pvyn(~9L ze*Pa)o~Zlk@CaahqWk_kvOL48FB=MyGhTiFW6EQ%eyWlzXTA}_R+>ESN1Pg z8>+U@JJ)FlD${_u)$qk47m(gy7&)aS2j&dp{p3te)NtSU5#W3^hI!Q@dxxCK7DUN5 zPb*j>W_YN6Nx8TxgW?*uxVirX3A!%Ut$Lm6w~CGX@_~rGQT#F#PmS}%UWN(`W8(bc zyQH|-2$@#n&>7X^sU+Z-arRk(Jcf)jk<_{uzXu7+e z2FRY4Ooym0(-Om+c`5F_8?>q^soYIGu6$`*(gjq4vr4}G+sJ_esbjK*tZ$M!-F;-u zf;lOhlp9LT&QCuFR?L|PtSVXflR0{sZb5hwL;E@Nx%M|GZ}kE01IiX{L|w^^>Xc^F zWwV58>_z}V)S(f7DV35#IV&kjSBXO@kmA$>=2=E9O88KxB&U6#UX(8}YW?y)jVe1i zPVFg7V*cMj9V*IU6z|J<>dfjhT2)l~Q>(ufMEo@mPHsNj56PF({LWH{!CiD?^ zGex#jd Ship - + Ship design Návrh lodi - + Weights Hmotnosti - + True if it is a valid ship instance, False otherwise Pravda pokud je vybrána platná instance lodi, jinak Nepravda - + Ship length [m] Délka lodi [m] - + Ship breadth [m] Šířka lodi [m] - + Ship draft [m] Ponor lodi [m] - + Set of external faces of the ship hull Sada vnějších ploch trupu lodi - + Set of weight instances Sada instancí hmotnosti - + Set of tank instances Sada instancí nádrží + + + Set of load conditions + Množina zatěžovacích podmínek + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft - Zkosení + Ponor - - Trim - Oříznout - - - + Displacement Posunutí - + Areas curve tool draft selected [m] Vybrán nástroj Křivka ploch [m] - + Plot the transversal areas curve Vykreslí křivku příčných průřezových ploch - + Areas curve tool trim selected [deg] Vybrán nástroj průřezových křivek [deg] + + + Trim angle + Trim angle + + + + Number of points + Počet bodů + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Vykreslí křivku kapacity nádrže (křivka hladina-objem) - + Plot the tank capacity curve Vykreslit křivku kapacity nádrže - + Number of points Počet bodů @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Prosím, vytvořte nebo otevřete geometrii trupu lodi před použitím tohoto nástroje - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Lodní objekty mohou být vytvořeny pouze na geometrii trupu (mezi vybranými objekty nebylo nalezeno těleso) - + Computing hydrostatics Počítaní hydrostatiky - + Computing external faces Výpočet vnějších ploch @@ -203,22 +218,22 @@ Nebyl nalezen platný řez lodi - + Ship objects can only be created on top of hull geometry (no objects selected) Lodní objekty mohou být vytvořeny pouze na geometrii trupu (nebyl vybrán žádný objekt) - + A ship instance must be selected before using this tool (no objects selected) Musí být vybrána instance lodi před použitím tohoto nástroje (nebyl vybrán žádný objekt) - + More than one ship have been selected (the extra ships will be ignored) Je vybráno více než jedna loď (lodě navíc budou ignorovány) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Musí být vybrána instance lodi před použitím tohoto nástroje (ve vybraných objektech není platná loď) @@ -248,25 +263,130 @@ modul Graf je deaktivován, nástroj nemůže vykreslit výsledné křivky - + Failure detecting external faces from the ship object Selhala detekce vnějších ploch z objektu lodi - + A tank instance must be selected before using this tool (no objects selected) Instance nádrže musí být vybrána před použitím tohoto nástroje (nejsou vybrány objekty) - + More than one tank have been selected (the extra tanks will be ignored) Je vybráno více než jedna nádrž (nádrže navíc budou ignorovány) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Instance nádrže musí být vybrána před použitím tohoto nástroje (mezi vybranými objekty nebyla nalezena platná nádrž) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Hlavní žebro - + Create a new ship Vytvořit novou loď - + Length Délka - + Breadth Šíře - + Draft - Zkosení + Ponor + + + + ship_gz + + + GZ curve computation + GZ curve computation + + + + Plot the GZ curve + Plot the GZ curve + + + + Maximum angle + Maximum angle + + + + Number of points + Počet bodů + + + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection ship_hydrostatic - + Plot hydrostatics Nakreslit hydrostatiky - + Trim Oříznout - + Minimum draft Minimální ponor - + Maximum draft Maximální ponor - + Number of points Počet bodů - + Hydrostatics tool trim selected Hydrostatický nástroj ořezu vybrán - + Hydrostatics tool minimum draft selected [m] Hydrostatický nástroj minimálního ponoru vybrán [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatický nástroj maximálního ponoru vybrán [m] - + Hydrostatics tool number of points selected Hydrostatický nástroj počtu bodů vybrán @@ -377,6 +545,19 @@ Vyterte vzorovou geometrii lodi + + ship_loadcondition + + + Create a new loading condition + Vytvoří nové podmínky zatížení + + + + Create a new load condition spreadsheet + Vytvoří tabulku nových podmínek zatížení + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Pravda, pokud je vybrána platná instance nádrže, jinak Nepravda - - Volume of fluid [m^3] - Objem tekutiny [m^3] - - - - Density [kg / m^3] - Hustota [kg / m^3] - - - + Create a new tank Vytvoří novou nádrž - + Tanks objects can only be created on top of its geometry (no objects selected) Objekty nádrží mohou být vytvořeny pouze na jejich geometrii (nejsou vybrány objekty) - + No solids found in the selected objects Ve vybraných objektech nebyla nalezena tělesa - + There are not ship objects to create weights into them Nejsou zde objekty lodi pro vytvoření jejich hmotností - + Ship Loď @@ -481,79 +652,79 @@ Vytvoří novou hmotnost lodi - + True if it is a valid weight instance, False otherwise Pravda, pokud je platná instance hmotnosti, jinak Nepravda - + Mass [kg] Hmotnost [kg] - + Linear density [kg / m] Lineární hustota [kg / m] - - Area density [kg / m^3] - Plošná hustota [kg / m^3] - - - + Density [kg / m^3] Hustota [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Objekty hmotnosti mohou být vytvořeny pouze na jejich geometrii (nejsou vybrány objekty) - + No geometrical shapes found in the selected objects Ve vybraných objektech nebyly nalezeny geometrické tvary - + Unknow object shapes selected Jsou vybrány neznámé objekty tvarů - + There are not ship objects to create weights into them Nejsou zde objekty lodi pro vytvoření jejich hmotností - + Create a new weight Vytvořit novou hmotnost - + Ship Loď - + Mass Hmotnost - + Linear density Lineární hustota - + Area density Plošná hustota - + Density Hustota + + + Area density [kg / m^2] + Plošná hustota [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_de.qm b/src/Mod/Ship/resources/translations/Ship_de.qm index 8caef772a78d10b1704907ad52e35c0004f5741b..eaba8f0839c40f2b985bacd2f2a5b8d7e66eca06 100644 GIT binary patch literal 22080 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 delta 1059 zcmX9+eM}p57=G@q*WUHoD}zxOg0|(OD-_3QhmNTkY(q8}6rvEfu$Tx)6;@qaP#CMp zRKobsgRx9O#4S18N_0}A_^}K_1pmM|hk+?fGjwJeGhKX_=5l%Rdq1D|dEdzU zOhS>DrM3RP8Ef*?lcz3TDFnD2@DH8_T>0P!0c58{(cK6>{2!oyH;Nh8U|HA! zY^+8R_b`w%gp!VVK%9@FHGqc57QprbTDmU+!XlF-bpX2hC^}Y|3!!}mAn7}1t@}6X z1eX6}642(ep3;ASgrC{h^W(_8#7?I;0MiJ2yZ=St-dWB$5THg1SKwO)(yntajgUVs z%=N@(1GzKY)nP(MrAF-g8ps>dl=pH#R-0yA+zM#UX|8_|1K88}kZ_bHbspkvg}Z3- zoxHPbgcuj|6K@g$dpkdI;|LMD%zu?f1 z|0Kt_?!?=ZfGq32{FEfm5`^Llet`d67`jb<92e$2Bsuf37)++gV_z0q8m0luDY4UU z1XA0?&OvHm2#Q^8D`fvs?0sq{5Whz}eP@nVdq(`Cs)q7IE^%h_UfRueeIiSRvP<+; zmGpKs=>5t95VN8`zRn3`=ISTMHMElT`spE3X7lg*zYOib{S{Gk_e zf)>eMO8FZWq-}Pxv*l97&?pg_mFl)VM)^I`!J}>USCRv?a~^+^2;B}nI_)!3WF zxX=I#ttO+>puUqr1OkTTy9w#98vYJ!021enj=PiE!ba~;6I3w4ICXW2R+DJFSwsVD zx*{8oQJ&Kh#oSam=DBMWFUWgc)F)?;Ty6dg9`J`{?<>`Gm8#r*=`bCQQSNaK5M!Om zoJGtfw<+_rH|U7+OvA}4Nw{E|xJ Ship - + Ship design Schiffsdesign - + Weights Massen - + True if it is a valid ship instance, False otherwise True, wenn es eine gültige Schiff-Instanz ist, ansonsten false - + Ship length [m] Schiffslänge [m] - + Ship breadth [m] Schiffsbreite [m] - + Ship draft [m] Schiffsentwurf [m] - + Set of external faces of the ship hull Satz von externen Flächen des Schiffsrumpfes - + Set of weight instances Menge von Massen - + Set of tank instances Menge von Tanks + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Tiefgang - - Trim - Beschneiden - - - + Displacement Verdrängung - + Areas curve tool draft selected [m] Ausgewähltes Flächenkurvenwerkzeug: Entwurf [m] - + Plot the transversal areas curve Schaubild der transversal Flächenkurve erstellen - + Areas curve tool trim selected [deg] Beschneidung für Flächenkurvenwerkzeug ausgewählt [Grad] + + + Trim angle + Trim angle + + + + Number of points + Anzahl der Punkte + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Zeichne die Tankkapazitätskurve (Füllstand-Volumen Kurve) - + Plot the tank capacity curve Zeichne die Tankkapazitätskurve - + Number of points Anzahl der Punkte @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Bitte erstellen oder laden Sie eine Rumpfgeometrie bevor Sie dieses Werkzeug verwenden - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Schiffs-Objekte können nur oberhalb der Rumpf Geometrie erstellt werden (keine Volumenkörper unter den gewählten Objekten) - + Computing hydrostatics Berechnung der Hydrostatik - + Computing external faces Berechnung der äusseren Flächen @@ -203,22 +218,22 @@ Keine gültigen Schiffsabschnitte gefunden - + Ship objects can only be created on top of hull geometry (no objects selected) Schiffs-Objekte können nur oberhalb der Rumpf Geometrie erstellt werden (beliebiges Objekt ausgewählt) - + A ship instance must be selected before using this tool (no objects selected) Eine Schiff-Instanz muss aktiviert sein, bevor Sie dieses Tool benutzen können (keine Objekte ausgewählt) - + More than one ship have been selected (the extra ships will be ignored) Mehr als ein Schiff wurde ausgewählt (die zusätzliche Schiffe werden ignoriert) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Eine Schiff-Instanz muss gewählt sein, bevor Sie dieses Tool benutzen können (keine gültiges Schiff bei den ausgewählten Objekten gefunden) @@ -248,25 +263,130 @@ Plot-Modul deaktiviert, Tools können die Ausgabe-Kurven nicht zeichnen - + Failure detecting external faces from the ship object Fehler beim Erkennen der externen Flächen des Schiffs-Objektes - + A tank instance must be selected before using this tool (no objects selected) Ein Tank muss ausgewählt sein, bevor dieses Werkzeug verwendet werden kann (kein Objekt ausgewählt) - + More than one tank have been selected (the extra tanks will be ignored) Mehr als ein Tank ist ausgewählt (die zusätzlichen Tanks werden ignoriert) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Ein Tank muss ausgewählt sein, bevor dieses Werkzeug verwendet werden kann (kein gültiger Tank bei den ausgewählten Objekten gefunden) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Hauptrahmen - + Create a new ship Erstelle ein neues Schiff - + Length Länge - + Breadth Breite - + Draft Tiefgang - ship_hydrostatic + ship_gz - - Plot hydrostatics - Zeichne Hydrostatik + + GZ curve computation + GZ curve computation - - Trim - Beschneiden + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimaler Tiefgang + + Maximum angle + Maximaler Winkel - - Maximum draft - Maximaler Tiefgang - - - + Number of points Anzahl der Punkte - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Zeichne Hydrostatik + + + + Trim + Beschneiden + + + + Minimum draft + Minimaler Tiefgang + + + + Maximum draft + Maximaler Tiefgang + + + + Number of points + Anzahl der Punkte + + + Hydrostatics tool trim selected Hydrostatik-Werkzeug Beschneidung ausgewählt - + Hydrostatics tool minimum draft selected [m] Hydrostatikwerkzeug für minimalen Tiefgang ausgewählt [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatikwerkzeug für maximalen Tiefgang ausgewählt [m] - + Hydrostatics tool number of points selected Hydrostatik-Werkzeug ausgewählt: Anzahl Punkte @@ -377,6 +545,19 @@ Wählen Sie Schiffs Beispiel Geometrie + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Wahr falls es ein gültiger Tank ist, Falsch sonst - - Volume of fluid [m^3] - Volumen der Flüssigkeit [m^3] - - - - Density [kg / m^3] - Dichte [kg / m^3] - - - + Create a new tank Erstelle einen neuen Tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks können nur in ihren Geometrien erstellt werden (kein Objekt ausgewählt) - + No solids found in the selected objects Kein Volumenkörper im ausgewähltem Objekt vorhanden - + There are not ship objects to create weights into them Es existieren keine Schiff Objekte um Massen in ihnen zu erstellen - + Ship Schiff @@ -481,79 +652,79 @@ Erstellt eine neue Schiffsmasse - + True if it is a valid weight instance, False otherwise True wenn es eine valide Masse ist, False andernfalls - + Mass [kg] Masse [kg] - + Linear density [kg / m] längenbezogene Masse [kg/m] - - Area density [kg / m^3] - flächenbezogene Masse [kg / m^3] - - - + Density [kg / m^3] Dichte [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Massen können nur in ihren Geometrien erstellt werden (kein Objekt ausgewählt) - + No geometrical shapes found in the selected objects Keine geometrischen Formen im ausgewählten Objekt gefunden - + Unknow object shapes selected Unbekannte Formen ausgewählt - + There are not ship objects to create weights into them Es existieren keine Schiff Objekte um Massen in ihnen zu erstellen - + Create a new weight Erstellt eine neue Masse - + Ship Schiff - + Mass Masse - + Linear density längenbezogene Masse - + Area density flächenbezogene Masse - + Density Dichte + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_el.qm b/src/Mod/Ship/resources/translations/Ship_el.qm index 6dabce15d57c7e7fa27ff8a88551468859b6625b..dbc0b6716632f3b78721522d34b9343ee15d8ff2 100644 GIT binary patch literal 20896 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 diff --git a/src/Mod/Ship/resources/translations/Ship_el.ts b/src/Mod/Ship/resources/translations/Ship_el.ts index bf0009728..c11baf5fd 100644 --- a/src/Mod/Ship/resources/translations/Ship_el.ts +++ b/src/Mod/Ship/resources/translations/Ship_el.ts @@ -4,50 +4,55 @@ Ship - + Ship design Ναυπηγική - + Weights Weights - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Μήκος πλοίου [m] - + Ship breadth [m] Ship breadth [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Draft - - Trim - Περικοπή - - - + Displacement Μετατόπιση - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Αριθμός σημείων + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Αριθμός σημείων @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Computing hydrostatics - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Κύριο πλαίσιο - + Create a new ship Δημιουργήστε ένα νέο πλοίο - + Length Μήκος - + Breadth Breadth - + Draft Draft - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plot hydrostatics + + GZ curve computation + GZ curve computation - - Trim - Περικοπή + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimum draft + + Maximum angle + Maximum angle - - Maximum draft - Maximum draft - - - + Number of points Αριθμός σημείων - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plot hydrostatics + + + + Trim + Περικοπή + + + + Minimum draft + Minimum draft + + + + Maximum draft + Maximum draft + + + + Number of points + Αριθμός σημείων + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Select ship example geometry + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Όγκος του υγρού [m ^ 3] - - - - Density [kg / m^3] - Πυκνότητα [kg / m ^ 3] - - - + Create a new tank Δημιουργία μιας νέας δεξαμενής - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Πλοίο @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Μάζα [kg] - + Linear density [kg / m] Γραμμική πυκνότητα [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Πυκνότητα [kg / m ^ 3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Πλοίο - + Mass Μάζα - + Linear density Linear density - + Area density Area density - + Density Πυκνότητα + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_es-ES.qm b/src/Mod/Ship/resources/translations/Ship_es-ES.qm index 84d0895494f3cecdfd9db062b62b5e71e66a8dfd..330a5bd1dcd3872b265b6cfc02c1397b3eeffc6f 100644 GIT binary patch literal 23006 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 Ship - + Ship design Diseño naval - + Weights Pesos - + True if it is a valid ship instance, False otherwise Verdadero si es una una instancia del tanque válida. Falso de lo contrario - + Ship length [m] Longitud de la nave [m] - + Ship breadth [m] Manga del barco [m] - + Ship draft [m] Calado del barco [m] - + Set of external faces of the ship hull Conjunto de caras externas del casco del barco - + Set of weight instances Conjunto de instancias de peso - + Set of tank instances Conjunto de instancias del tanque + + + Set of load conditions + Conjunto de condiciones de carga + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Calado - - Trim - Recortar - - - + Displacement Desplazamiento - + Areas curve tool draft selected [m] calado [m] para calcular la curva de áreas - + Plot the transversal areas curve Trazar la curva de áreas transversales - + Areas curve tool trim selected [deg] Herramienta para ajustar las curvas de área seleccionadas [grados] + + + Trim angle + Ángulo de recorte + + + + Number of points + Número de puntos + + + + Areas curve tool number of points + Número de puntos de la herramienta de curva de áreas + ship_capacity @@ -160,12 +175,12 @@ Trazar la curva de capacidad del tanque (curva de nivel de volumen) - + Plot the tank capacity curve Trazar la curva de capacidad del tanque - + Number of points Número de puntos @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Por favor, cree o cargue una geometría de casco de barco antes de usar esta herramienta - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Sólo se pueden crear objetos de barco sobre la geometría del casco (no sólido encontrado en los objetos seleccionados) - + Computing hydrostatics Calculando hidrostática - + Computing external faces Calculando caras externas @@ -203,22 +218,22 @@ Cualquier sección válida del barco encontrada - + Ship objects can only be created on top of hull geometry (no objects selected) Sólo se pueden crear objetos de barco sobre la geometría del casco (ningún objeto seleccionado) - + A ship instance must be selected before using this tool (no objects selected) Se debe elegir un objeto ship antes de usar esta herramienta (ninguno seleccionado) - + More than one ship have been selected (the extra ships will be ignored) Se han seleccionado más de una nave (se ignorarán las naves adicionales) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Un objeto ship debe seleccionarse antes de utilizar esta herramienta (no se ha encontrado ninguno entre la selección) @@ -248,25 +263,130 @@ El módulo de gráficas no está habilitado, las herramientas no pueden representar las curvas de salida - + Failure detecting external faces from the ship object Fallo detectando las caras externas del objeto barco - + A tank instance must be selected before using this tool (no objects selected) Una instancia del tanque debe seleccionarse antes de utilizar esta herramienta (no objetos seleccionados) - + More than one tank have been selected (the extra tanks will be ignored) Más de uno de los tanques han sido seleccionados (se omitirán los tanques adicionales) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Una instancia del tanque debe seleccionarse antes de utilizar esta herramienta (sin tanque válido en los objetos seleccionados) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + Una instancia de condición de carga debe ser seleccionada antes de usar ésta herramienta (no se seleccionaron objetos) + + + + Wrong Ship label! (no instances labeled as'{}' found) + ¡Etiqueta de nave incorrecta! (no se encontraron instancias etiquetadas como '{}') + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + ¡Etiqueta de nave ambigua! (se encontraron {} instancias etiquetadas como '{}') + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + Mas de una condición de carga ha sido seleccionada (las condiciones de carga extra serán ignoradas) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + Una instancia de condición de carga debe ser seleccionada antes de utilizar ésta herramienta (no se encontraron condiciones de carga válidas en los objetos seleccionados) + + + + Too much weight! The ship will never displace water enough + ¡Mucho peso! La nave nunca desplazará suficiente agua + + + + Wrong Weight label! (no instances labeled as'{}' found) + ¡Etiqueta de peso incorrecta! (no se encontraron instancias etiquetadas como '{}') + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + ¡Etiqueta de peso ambigua! (se encontraron {} instancias etiquetadas como '{}') + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + ¡Peso inválido! (el objeto etiquetado como '{}' no es un peso) + + + + Wrong Tank label! (no instances labeled as'{}' found) + ¡Etiqueta de tanque incorrecta! (no se encontraron instancias etiquetadas como '{}') + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + ¡Etiqueta de tanque ambigua! (se encontraron {} instancias etiquetadas como '{}') + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + ¡Tanque inválido! (el objeto etiquetado como '{}' no es un tanque) + + + + Computing capacity curves + Calculando curvas de capacidad + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: falló el cálculo del área transversal + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: ¡Volumen nulo encontrado durante el cálculo de desplazamiento! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Área flotante no puede ser calculada + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: ¡Área nula encontrada durante el cálculo de área flotante! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: El área del armazón principal no puede ser calculado + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: ¡Área nula encontrada durante el cálculo del coeficiente del área de la armazón principal! + ship_create @@ -296,70 +416,118 @@ Cuaderna maestra - + Create a new ship Crear un nuevo barco - + Length Longitud - + Breadth Manga - + Draft Calado - ship_hydrostatic + ship_gz - - Plot hydrostatics - Trazar hidrostática + + GZ curve computation + Cálculo de la curva GZ - - Trim - Recortar + + Plot the GZ curve + Graficar la curva GZ - - Minimum draft - Calado mínimo + + Maximum angle + Ángulo máximo - - Maximum draft - Calado máximo - - - + Number of points Número de puntos - + + Variable trim + Recorte variable + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + Ángulo de la herramienta de curva GZ seleccionada [deg] + + + + GZ curve tool number of points selected + Número de puntos de herramienta de curva GZ seleccionada + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Trazar hidrostática + + + + Trim + Recortar + + + + Minimum draft + Calado mínimo + + + + Maximum draft + Calado máximo + + + + Number of points + Número de puntos + + + Hydrostatics tool trim selected trimado para el cálculo de hidrostáticas - + Hydrostatics tool minimum draft selected [m] calado mínimo para el cálculo de hidrostáticas [m] - + Hydrostatics tool maximum draft selected [m] calado máximo para el cálculo de hidrostáticas [m] - + Hydrostatics tool number of points selected número de puntos para calcular las hidrostáticas @@ -377,6 +545,19 @@ Seleccione ejemplo degeometría de barco + + ship_loadcondition + + + Create a new loading condition + Crear una nueva condición de carga + + + + Create a new load condition spreadsheet + Crear una nueva hoja de cálculo de condición de carga + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Verdadero si es una una instancia del tanque válida. Falso de lo contrario - - Volume of fluid [m^3] - Volumen de líquido [m ^ 3] - - - - Density [kg / m^3] - Densidad [kg / m ^ 3] - - - + Create a new tank Crea un nuevo depósito - + Tanks objects can only be created on top of its geometry (no objects selected) Los objetos de deposito sólo se pueden crear en la parte superior de su geometría (no hay objetos seleccionados) - + No solids found in the selected objects No hay sólidos encontrados en los objetos seleccionados - + There are not ship objects to create weights into them - No hay objetos de envio para crear peso en ellos + No hay objetos de nave para crear peso en ellos - + Ship Nave @@ -481,79 +652,79 @@ Crear un nuevo peso de la nave - + True if it is a valid weight instance, False otherwise Verdad si es una una instancia del tanque válida. Falso de lo contrario - + Mass [kg] Masa [kg] - + Linear density [kg / m] Densidad lineal [kg / m] - - Area density [kg / m^3] - Área de densidad [kg / m ^ 3] - - - + Density [kg / m^3] Densidad [kg / m ^ 3] - + Weight objects can only be created on top of its geometry (no objects selected) Sólo se pueden crear objetos de peso en la cima de su geometría (ningún objeto seleccionado) - + No geometrical shapes found in the selected objects No hay formas geométricas encontradas en los objetos seleccionados - + Unknow object shapes selected Formas de objetos desconocidos seleccionados - + There are not ship objects to create weights into them - No hay objetos de envio para crear peso en ellos + No hay objetos de nave para crear peso en ellos - + Create a new weight Crear un nuevo peso - + Ship Nave - + Mass Masa - + Linear density Densidad lineal - + Area density Área de densidad - + Density Densidad + + + Area density [kg / m^2] + Densidad de área [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_fi.qm b/src/Mod/Ship/resources/translations/Ship_fi.qm index e124b37ee0a8f1b1cf8f4b7138090eea7aac8d2b..c8b3587cc0b73c6e0abc07c00e7421d4ca061689 100644 GIT binary patch literal 21488 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 K@D6oTru+}})Y32j delta 1050 zcmX9+ZA@Eb6n^f#y>0KkZ7<`aV@Rc?Fz5$tv<#<63`N*iThUC2PNu`LP&4RUi~G=7 zm6!>%(|8>^ErE?hx3HO*%d(+t!x)?r(S)%dQOnPy=Uk2W{wK6&5so^zh_ zob$&=%<<=A51!wdJ+Y8HI%&(j^vv-K*L?uD7X11_VC|3K`vJJP6na?j=l=o3SPBd6 zuwJVHR(GL}s{%^*V9ViYKzJ{Oc@tW;24K}O zW+DDNRRYWZIRa?SY`y;uU>;@PdLV>low zljKjI;u7g4L_EyhI6+v{t`UxY4V2et9y!7RjtpPeU zU_mTVPESw zkS7aW5hGx`Ds=Tz0Yiz<^WrSsZx)U``!JBXQ5aml0+ekKzHDfs_*j)NSr(w#6pPs` zC32OB4Uf^eOcW!^H6YC|zPrK=6xWF(XEdb1U2%MXlv(q(_?O`j;I2xcr&QwRNg4N& zWU|fC2rN>OpW?IorOG0@XG7AX1E+{kQfjH(O7S&PduKTiD=>S>Bi4AnhN7$ z9W_ugX)<c4bSztPBQMs`~@`wf_P^ CHyn!q diff --git a/src/Mod/Ship/resources/translations/Ship_fi.ts b/src/Mod/Ship/resources/translations/Ship_fi.ts index dc0564abf..5ca16bc82 100644 --- a/src/Mod/Ship/resources/translations/Ship_fi.ts +++ b/src/Mod/Ship/resources/translations/Ship_fi.ts @@ -4,50 +4,55 @@ Ship - + Ship design Aluksen suunnittelu - + Weights Painot - + True if it is a valid ship instance, False otherwise Tosi, jos se on voimassa oleva aluksen ilmentymä, muuten epätosi - + Ship length [m] Aluksen pituus [m] - + Ship breadth [m] Aluksen leveys [m] - + Ship draft [m] Aluksen vedos [m] - + Set of external faces of the ship hull Aluksen rungon ulkopinnat -joukko - + Set of weight instances Joukko painoesiintymiä - + Set of tank instances Säiliö esiintymien joukko + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Vedos (vesirajasta pohjaan) - - Trim - rajaa - - - + Displacement Uppouma - + Areas curve tool draft selected [m] Alueiden käyrien vedostyökalu valittu [m] - + Plot the transversal areas curve Piirretään poikittaisten alueiden käyrä - + Areas curve tool trim selected [deg] Alueiden käyrien työkalu: rajaus valittuna [deg] + + + Trim angle + Trim angle + + + + Number of points + Pisteiden määrä + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Piirrä säiliöpasiteetin käyrä (taso-tilavuus käyrä) - + Plot the tank capacity curve Piirrä säiliöpasiteetin käyrä - + Number of points Pisteiden määrä @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Luo tai Lataa aluksen rungon geometrian ennen tämän työkalun käyttöä - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Laiva objekteja voidaan luoda vain runkogeometrian päälle (yhtään monitahokasta ei löytynyt valittujen objektien joukosta) - + Computing hydrostatics Lasketaan hydrostatiikkaa - + Computing external faces Lasketaan ulkoisia tahkoja @@ -203,22 +218,22 @@ Yhtään käypää aluksen lohkoa ei löydetty - + Ship objects can only be created on top of hull geometry (no objects selected) Laivan kohteita voidaan luoda vain runkogeometrian päälle (kohteita ei valittuna) - + A ship instance must be selected before using this tool (no objects selected) Aluksen ilmentymä on valittava enne4n kuin käytetään tätä työkalua (kohteita ei valittuna) - + More than one ship have been selected (the extra ships will be ignored) Enemmän kuin yksi alus valittuna (ylimääräiset alukset jätetään huomiotta) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Aluksen esiintymä on valittava ennen tämän työkalun käyttöä (ei kelvollista alusta löydettävissä valituissa kohteissa) @@ -248,25 +263,130 @@ Tulostusyksikkö kytketty pois käytöstä, työkalu ei voi piirtää käyriä - + Failure detecting external faces from the ship object Virhe havaittu aluskohteen ulkoisissa näkymäpinnoissa - + A tank instance must be selected before using this tool (no objects selected) Säiliökohde on valittava ennen kuin käytetään tätä työkalua (kohteita ei valittuna) - + More than one tank have been selected (the extra tanks will be ignored) Enemmän kuin yksi säiliö on valittu (ylimääräisiä säiliöitä ei huomioida) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Säiliön esiintymä on valittava ennen tämän työkalun käyttöä (ei kelvollista säiliötä löydettävissä valituista kohteista) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Päärunko - + Create a new ship Luo uusi laiva - + Length Pituus - + Breadth Leveys - + Draft Vedos (vesirajasta pohjaan) - ship_hydrostatic + ship_gz - - Plot hydrostatics - Tulosta hydrostatiikkakäyrät + + GZ curve computation + GZ curve computation - - Trim - rajaa + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Pienin syväys + + Maximum angle + Maximum angle - - Maximum draft - Suurin syväys - - - + Number of points Pisteiden määrä - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Tulosta hydrostatiikkakäyrät + + + + Trim + rajaa + + + + Minimum draft + Pienin syväys + + + + Maximum draft + Suurin syväys + + + + Number of points + Pisteiden määrä + + + Hydrostatics tool trim selected Hydrostaattisen työkalu hienosäätö valittu - + Hydrostatics tool minimum draft selected [m] Hydrostaattisen työkalun pienin syväys valittu - + Hydrostatics tool maximum draft selected [m] Hydrostaattisen työkalun suurin syväys valittu - + Hydrostatics tool number of points selected Hydrostaattisen työkalun pisteiden määrä valittu @@ -377,6 +545,19 @@ Valitse laivan esimerkkigeometria + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Tosi, jos se on voimassa oleva säiliön ilmentymä, muuten epätosi - - Volume of fluid [m^3] - Nesteen määrä [m ^ 3] - - - - Density [kg / m^3] - Tiheys [kg / m ^ 3] - - - + Create a new tank Luo uusi säiliö - + Tanks objects can only be created on top of its geometry (no objects selected) Säiliön kohteita voidaan luoda vain sen geometrian päälle (objekteja ei valittuna) - + No solids found in the selected objects Ei löydy yhtenäisiä rakenteita valituista objekteista - + There are not ship objects to create weights into them Ei ole aluksen kohteita, joille voidaan luoda painoja - + Ship Alus @@ -481,79 +652,79 @@ Luoda uusi aluksen paino - + True if it is a valid weight instance, False otherwise Tosi, jos se on kelvollinen painon ilmentymä, muuten epätosi - + Mass [kg] Massa [kg] - + Linear density [kg / m] Lineaarinen tiheys [kg / m] - - Area density [kg / m^3] - Alueen tiheys [kg / m ^ 3] - - - + Density [kg / m^3] Tiheys [kg / m ^ 3] - + Weight objects can only be created on top of its geometry (no objects selected) Painokohteita voidaan luoda vain sen geometrian päälle (objekteja ei valittuna) - + No geometrical shapes found in the selected objects Ei löytynyt geometrisia muotoja valituista kohteista - + Unknow object shapes selected Tuntemattomia kohteen muotoja valittu - + There are not ship objects to create weights into them Ei ole aluksen kohteita, joille voidaan luoda painoja - + Create a new weight Luo uusi paino - + Ship Alus - + Mass Massa - + Linear density Lineaarinen tiheys - + Area density Alueen tiheys - + Density Tiheys + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_fr.qm b/src/Mod/Ship/resources/translations/Ship_fr.qm index a456db93c4c2391175e7fd898825a24f5c497394..cd4dee78085ef6e5005ab5d56900655fbbd38ec8 100644 GIT binary patch literal 22342 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 delta 1045 zcmXX^e@qj16#rbWckT7sYk`5#71yJ)1u4vW#er;@;zmrY+EvA64q`SSc7kQ$SGF;` zL5yR7F1fKq2U;~47iWz*{DDS+Iow93e<=U3WN~b;$VOzk$bJ}cPrE!-2e7$y_j}$37XHn8dmE_WLw03k5?FMU zeg7E6Q|8#NA=y1xUSZP%~g!vfw@`V&GCpg*JkEp7v{9bDAdMw8}! z#buSeM3Xmh-gU=_@p-QQQzDSv#`WLcNsRs6x67zN+BkP3>mI!uPN1oU``vY&-W&Lm zcb)(oGQZAG3Oqf^_ug`m{g6Ly@1Xh|e_S4-#v2kSZ|8riKTXPIMEQG>d4M@!2>d`y zGlvatPX9@P%ZAVQ4*=4ahHr*Ra&NwI_1SuW`_~w|PjMVFjs;0_W=3dq(B#QuLi4r} zz&Rzf*IS4HBeWl+1{PN6c=r|{XA67Yco9gg6OPQ^pw$ivSIWvMKe|S^>RSsKzc!`o zs8IesQ(1^?f2*lp9S4$LF@2Wg1#(|A4V=)^N|u^NVx){>H_e&f1D?5%z=F8Q-X>+1 zghff7rg)#|2~d8WJ5O=isfv9^(+}Dso(l&`b3?-P| z;&k#|nxxeXC#}X4F>6ONiNFE#&0+^|vW zmh6l=Z|zbSmdffb$)=vPzMvVBSe^Po`ZcXD&23N%oclH2HN$AvJWsJ2pI6IilSOBA z+FL6pI4!bzlU`jEOjh+FMLQj+V*_54A%Yq-q83$fqVn;-`mrbczqN&86;M!aq$>eW uUus#Trm?ol8L4(w*EEJJom*-vlydb{Acd-b$S7(&D678E0`1q}R{lRsn;l00 diff --git a/src/Mod/Ship/resources/translations/Ship_fr.ts b/src/Mod/Ship/resources/translations/Ship_fr.ts index 876a9fd6f..a9a9599df 100644 --- a/src/Mod/Ship/resources/translations/Ship_fr.ts +++ b/src/Mod/Ship/resources/translations/Ship_fr.ts @@ -4,50 +4,55 @@ Ship - + Ship design Conception de navires - + Weights Poids - + True if it is a valid ship instance, False otherwise True si c'est une instance de navire valide, False sinon - + Ship length [m] Longueur du navire [m] - + Ship breadth [m] Largeur de navire [m] - + Ship draft [m] Projet de navire [m] - + Set of external faces of the ship hull Ensemble des faces externes de la coque du bateau - + Set of weight instances Groupe de poids - + Set of tank instances Groupe de compartiments + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Tirant d'eau - - Trim - Ajuster - - - + Displacement Déplacement - + Areas curve tool draft selected [m] Outil projet de courbe de zone sélectionné [m] - + Plot the transversal areas curve tracer la courbe de surface transversal - + Areas curve tool trim selected [deg] outil de découpe de courbes sélectionné [deg] + + + Trim angle + Trim angle + + + + Number of points + Nombre de points + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Traçer la courbe de capacité d'un compartiment (courbe niveau-volume) - + Plot the tank capacity curve Traçer la courbe de capacité d'un compartiment - + Number of points Nombre de points @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Veuillez créer ou charger une géométrie de coque de navire avant d'utiliser cet outil - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Les navires ne peuvent être créés qu'au sommet de la géométrie de la coque (aucun solide n'a été trouvé parmi les objets sélectionnés) - + Computing hydrostatics Calculs hydrostatiques - + Computing external faces Calcul des faces externes @@ -203,22 +218,22 @@ Aucune section valide de navire n'a été trouvée - + Ship objects can only be created on top of hull geometry (no objects selected) Les navires ne peuvent être créés qu'au sommet de la géométrie de la coque (pas d'objet sélectionné) - + A ship instance must be selected before using this tool (no objects selected) Une instance de navire doit être sélectionnée avant d'utiliser cet outil (aucun objet sélectionné) - + More than one ship have been selected (the extra ships will be ignored) Plus d'un navire ont été sélectionnés (les navires supplémentaires seront ignorées) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Une instance de navire doit être sélectionnée avant d'utiliser cet outil (aucun navire valide dans les objets sélectionnés) @@ -248,25 +263,130 @@ Le module de tracé est désactivé, traçage impossible - + Failure detecting external faces from the ship object Échec de détection des faces externes de l'objet navire - + A tank instance must be selected before using this tool (no objects selected) Un compartiment doit être sélectionné avant d'utiliser cet outil (aucun objet sélectionné) - + More than one tank have been selected (the extra tanks will be ignored) Plusieurs compartiments ont été sélectionnés (les compartiments supplémentaires seront ignorés) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Un compartiment doit être sélectionné avant d'utiliser cet outil (aucun compartiment valide parmi les objets sélectionnés) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Cadre principal - + Create a new ship Créer un nouveau navire - + Length Longueur - + Breadth Etendu/Largeur - + Draft Tirant d'eau - ship_hydrostatic + ship_gz - - Plot hydrostatics - Tracer les lignes hydrostatiques + + GZ curve computation + GZ curve computation - - Trim - Ajuster + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Tirant d'eau minimum + + Maximum angle + Maximum angle - - Maximum draft - Tirant d'eau maximum - - - + Number of points Nombre de points - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Tracer les lignes hydrostatiques + + + + Trim + Ajuster + + + + Minimum draft + Tirant d'eau minimum + + + + Maximum draft + Tirant d'eau maximum + + + + Number of points + Nombre de points + + + Hydrostatics tool trim selected L'outil d'ajustement des lignes hydrostatiques est sélectionné - + Hydrostatics tool minimum draft selected [m] Tirant d'eau minimum sélectionné par l'outil hydrostatic [m] - + Hydrostatics tool maximum draft selected [m] Tirant d'eau maximum sélectionné par l'outil hydrostatic [m] - + Hydrostatics tool number of points selected L'outil nombre de point pour les lignes hydrostatiques est sélectionné @@ -377,6 +545,19 @@ Sélectionnez un exemple de géométrie de navire + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Vrai si ceci est un compartiment valide, sinon False - - Volume of fluid [m^3] - Volume de fluide [m^3] - - - - Density [kg / m^3] - Densité [kg / m^3] - - - + Create a new tank Créer un nouveau compartiment - + Tanks objects can only be created on top of its geometry (no objects selected) Un compartiment peut seulement être créé à partir de sa géométrie (aucun objet sélectionné) - + No solids found in the selected objects Aucun solide présent parmi les objets sélectionnés - + There are not ship objects to create weights into them Il n'y a pas de navire pour y créer des poids - + Ship Navire @@ -481,79 +652,79 @@ Créer un nouveau poids de navire - + True if it is a valid weight instance, False otherwise True si ceci est un navire valide, sinon False - + Mass [kg] Masse [kg] - + Linear density [kg / m] Masse linéique [kg / m] - - Area density [kg / m^3] - Densité surfacique [kg / m^3] - - - + Density [kg / m^3] Densité [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Un poids peut seulement être créé à partir de sa géométrie (aucun objet sélectionné) - + No geometrical shapes found in the selected objects Aucune forme géométrique parmi les objets sélectionnés - + Unknow object shapes selected Formes inconnues sélectionnées - + There are not ship objects to create weights into them Il n'y a pas de navire pour y créer des poids - + Create a new weight Créer un nouveau poids - + Ship Navire - + Mass Masse - + Linear density Masse linéaire - + Area density Densité surfacique - + Density Densité + + + Area density [kg / m^2] + Densité surfacique [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_hr.qm b/src/Mod/Ship/resources/translations/Ship_hr.qm index a4acc95c145934c654c3173f289154d60e4a6924..b24c43bb42b761beba3f2566a4b6783016e60793 100644 GIT binary patch literal 20749 zcmdU13ve9eegE{b9w*69j4*<%46$qwGT2~@4HP{r+aSwsEbL+z%<66>t$nvEcJCyN zW73eeff`&WCC$SG5>f_AXwzaQ(B?_UX~UG6PLej0rWx8vU~tQj(v&bv2I%kieYels zJL_SWbUgCi?d|@*|M!2tzPtLlOxue;Klac|9qr$|^$TDBNv{yK>qXuA$As8&qo{jC z2+>!kUbhxR-E;2>arLLgqF-1-oO4uYKk5_W+V{mk%}YXTdQ05!$sY*Ocv8Ktc|mOd zc8?INKQ6|5XCxxi*Q?J+Ms=m6XS%?pRwCd;gzK#V&b={lK z3o-Ai>K%jc2%-IMb^7poSf{J{{tb(TsJgcLxkv61;*#p>zj^Q`A-a02Pn@?(h=uQ0 z|LWL5Ay&R!Q=30ah;?t&H2%*wgt%yRP1nPDtowLPkNqrgXYH%GZ_y<} zZ2qsBm%oVD-*~mQ@uBYual^6N?MG{b==pK&k)PnX3(~a@J+>9=y-@pf<5i%~v$g;6 z=LGiy&$D%Z zzYcKQAE^8O^0#pRzpB@!->&=53%)1Bnm6b5-myf86}QeCx*T-eaM`?vU%NnvPHo;( z%Z^~3j(JaYd<*N}s$SRJHt*luXF->z=e=cvK2@*Gd*?3D=iHm>2mb~8=zP6?|H)rq zU)$@Co^xD?3m4Wua5vyy{(AlAKKr~73!bfi^edkh;$pY{%k|y3zNr51z778NI1Ni4 z#JUZiY1r~rSBSb34R@Ucyz{MwM}Gx);?;&9?6?M8>S*}s`@r{_`x^`GtAtpxyK!p# zgbIb~@o@jjRz3)TLzSj8U zm+-mutj6!`x*7X8*7(w8+pzw^Ch@t4f!F?~wrardTivwlBe=fh<4x{^KN4bbebb*T z>=NR-ziN8^=~~eBwWbq~g5I0YZTe;NVIlgjRIgjVkg9nD^zMH<)!K0q-#?z}9K`d> zbE!2p_9>2}Hg@9s>OV{U=A%yvG5?vAv2j?4ffrKNCoUIaR1)vr2aYey{|nWMEBjPlZ*Zv`+u}qXpccYu5P~mf$s|Oq3fETdHg)! z`9|{(zp_w>OTX0oGYR*m=9AZhUh9@Mznwovh>oe2hI20jpH8%_BK_9C++zOwap1A1 z<(n`66!NmKwdD^0XY-EM1rx78&UUo6y#l<>KGb^d1K9V{zi8dI7Wi!X%hugX{}y~Z z)N20TZs^&)t@pn8QOLnlt@o`3J*zXV?{5d3^~dHfy%_sW-8%oGKm23J{fFmYv+H~z zt~fkD{mXw6qUp!;zu5i^(izXgHPg4 zF(`HlL*#`fY%z-e4RJd@8Nv~k&_xzkM)8`)71zHfFUIj%!0 z8t*K;Gl7~Z-@E=&ON&coZ9Su!VV_-uJ!P0<T z-z5Ie;xk1ikj*$3y729QywjDiY>5jceoDeJe4<=F>=X>m9Mw#)$klXhQqP(hCBB|O zbZG;6)-^O6g6&M1t`VhPGmti_?gU^<1c2*zOTNd1X}Q=Txq?krwSZGpu>(NM#Kx#z zxZH)7^EnRRX<%*JY`{czwUXu!S9RN~^NF`5a^OA*>`AIC`;8kh4j`x%=(lU+Z z9DeUFr|rnvd8xa3N4MNb!*QY1`ZRFR#8wC%#fIvufebbv^IcI0{WTW$0bJeynJr^V z5}Bk_8&h9VJmki*qOXW9O_gFk=nDo`VmwV8r9Y2X8ZBk;Ji-)B7_N^2k`48uS#-of zAHj7c2>Obv*_M{KCp-g3+op{fcFxE<2g~lFO>6-ns8cq`P7_4yb|9pc&07v;92=G= zZ>FWNEF=l`g|A9_T%N$_Kmo?Z!ID+dBCw##eCE2eBIDCra|2w5XP;?2mFv(!w+RSc z)IF4==y`)Q+PVclq30&DMb8i>oHT6vc-tm*i`?(P4Aw5oSJCZr_JTw_B3$ey8@0}@FX0+lBb_%g zp1WwG@a>Z(MG~WT8hBVBLk@<7hRoCF3E)U;n-58NM+pvAAva<;)Yl2ywDMB9;uvh1 z1_rbcCUBtLDWyXO*TzC_`oa=C@{XAcks@P^N!J}mr40&B`<$Z_sG^~u%7q<5bHC|M zWD#ZM3@c9&i-Tx_6FvZ3(;@p(2hkf%ynCtW#ez1LkoFS(NRL>i1w+#y;Qz7ziSKxc z3>Xx5NUkx;sjrhw!z8_Kjb)_+jXyjq0<=gOPU{nT+RPu6V!S@VGzZZqm;rOi_?ofI zK@hvt_qO}ySw^BB^uYHgtU5B=Re`}usm_cJvf>i>YN|ZdjE2p}POS0?d08d=w3S(7 z(#T#iX=e*LL*cxN;+cT-3h;}3Vpu*M!Ym$UWIio=9EU1v*oSghG!J8Pk$75B8nbKI zc|p2oMl8y$#TA{`M**7}s>!>(6==g%e9E9h8PAni-Nt=3;4#Rf;iRdJ8<2p)dwMix zH>NcfBsf9nkt?`)Z3Mp4GpHlRsO=b9!Q}(_aYU}t?5?zI%^ukgqwD(jN>(&0sYTLc zXI0?%-mf9K!omG?7)gc{Kx%p<8qBamjWaOHih%GRJ8gtlnL{ZTN9}@z2uQ`&J_n0z zD#M*mN$vz;0fjA`!p=@)DY~aeTyN-!rbt?O2{mRXpWpcaC=ixEkM>mCu$++-vyrp( ztSJ^`q^_o9$wVf?8jEKQD$CMm&j=+?uld_Hed^5G;=TBR(IH8$qEat)P^Zh>GG z!jvR0P9I_3SH_%@(Z5Di?_lN&L| z3UqJjjFBAnLF#TBTJ@aVNLQpzb33Fz4u(s{E<$g# zCX`Gt2Pz4?tJ;xvt2}|VSOya;RkFN6Wet|n@t#E&2DeiXe%90(c%WQ~Z&Y@}j6)SO z!@;i#iB+|mFjeWq#ZxR+bmNI(36Idcj74QI%xXL$w1lAo-iELMoClM%tGs?#tno&&OvFf zZIobDV2v0X#d#E$9nCc}Mz=PM2uUVINRAv9Y59O#NRNj=x>@#SvIn)CJ*n)!p^Z8Q zLaTzqb`~l}uIx1>vQn%;jha>D2@r{_^HR>T34f?wbxxn1n<(VDYBar-b*d7v5tk;e zRiTyVld>&XDcY+`-c(oOLZ>P)FAWxn7ne)-a$({UOpXI>3u@Pk0??ng(i`%(Ycp#d6Ol(2)l^Wxsz}wHrUNZZ#T+GOm9D`Nn2(|FNkfRpOPr@ zz_Z$_5ip%X1)pKHP1To_C6CvF7|M7YRx(PDK>nVpqQy{$eNA-diz_f38iOn;tTUlX zp1zHBqx?86E1DIh)rxU_(m<&RHr7usr9eQc9li8^SDP}?2t#cOU1fmIl%e6h6=@i_ zTvCerVSrbjPWz$ZEQbVII*J{$)5&YB_>tCen(!IwNFXZ%QEISArj4WL8r%PVmfxrq zqo#v*B%HVFf?IaWM`y6**$Rh8xS5E+=EO}`;yURvT}D^lb&#dZMI}5abJ(@aPAbbf zZ<+3{Z$UAh?e#putL^Y^ePRnd=uW zP$2#)6Jl!aM4~Vb9AE{1FIUKpRL;&6Fj9c9BxAbz2-1Tt&9$|yo+co7z&2F)HG%P# zWc;03;O}KlG(piFj7dS9DCSH|3{-l+`-(F+p)}yCvio4}g6SWn(qoQ3fyAYdN6Mf& zY-M8LW1&JxI8F@kRQ^$AYo4(QWRlrt(g;oY5evpGGwpT_$>K_}Y|TBwry>iZ;gYhM z2@TssMl`e;bh!Td10)5-+Z$60>P%jjsxunf)_$P z+GuO|RE3I}l@?SeO`mt>$_P4B8m-uwj+YY3)Cdq9V{~P1m4Q5H$kK}H)2RYVI9*{H zG+Zpg1O`6{SQ)@FCZu~%=930c4e2tl4azzUlGz2tK&o#XHw@c0D%~h`sJx~_7DJ?! zmvO6we!WAJDW^#^RW&gzyD&DMY$5lH-9UwQfj#w|KwQlP2f3%p>y#Z}=n!sJ()I** zCS|FCiUgv6#csz&HZ2vvD_x?!?G0tls0EzI_!&jIsdkn|!Hz!ROg~noNJ;ZoOhN#MbW(tm9B8*1eGS-%%U`Mk0eEE!SJO?sW zj@E6EeH8yV8D`==C+8TBB*nu4QFhIYD7koGZyTedX4=H8S~yxRL!v*LF^QtC>D2NO zH=|5yrbmda9l59rFf7UQs0WP&CB?*0lJ0|R>}68G+0{fK%~iMJ z0i|!jL-oA~)Nl|X@sYU>gqLij@?c}h?H3{6W&%M!>A+mD%|PN-BI;QKHrfYHW*TH& z4iCs|WCVYiB4OFbm=sQxQpJEy%>$u!LL#x6VGRq#;{(BS^9JP+iNq(`#AYcGWGbiZ zZH&{=ng$Zm6lB?n5LN=h9%%x+jHHY?@P%Z_<~=I!2+K2J*Gr)ryF&_Ge*#=DQ=&De zT~?W4X$ZU*w2Y3@F89}zeH=N*8B`_rdV{nP42CLVaEf7KP$Y(zzyHoCF7er7AFUFS z?5cdi z{xifQe}R^5`t4?}kPGH$BLtt-5N!kk&&0^&9?N^qJSLt#G7J4dRBzkyJyr2IPWm$591h~79mWi(ja5VwIEtf!mMak4|vCYd$#JPgxW)lq>yp{rVaz(S@*Td`ia zD$VGJReGLul0(~g&m#t$5vG~;YDKDY0(gpb!P_E1fW zt_QA!m2!vh&<-e?3mG|?Iq6{{%wHyUfo_Q^;4{5tS6Hay3>UwJGd78*UqG6`_%KQe z3;ImXH*|$hat?=1CX8zn{^f+6=M^PE*kmSocWisq$#8Eu_D04O+LM;z%l;7L((775#)0`RIEaqzJ!yuVEQPC1CH%&WIr_=H<* z#UZqZf{H7BF3(J=qm4l?fL1+vAey*M6rapUJlP`+YT})Js<5w4S8{`}zQx1RnmfUO z-5oa!Sp{F@6T!blQse4r;O6<55)6HcoL_ucX2-igvVatLMy{=6*ofNP~bp9fV|Deta%W%Ff(7k0TEpu zsW07Tzf=rH*d$N^K*%R`@|UJB7_BLpy21wHNBWkB7xa+!$Dv&BL|-Wyvp6YP3S4v7jTlu&q;qh>N?@fwA`p)d9|T;v=o zeUSk}4F8$^m_$*|i@1f`7i?G0>Bl5UQNM4I_+t_=%-i4tRe+#I7}-vt>;%74(A)!W zj+sLXrgr=2(ND896%)S=)PHOk1txZdoIb zESD_8q11AbOb|zfnD4W>EfOI}E-U1zkR|J^sIX2F^u-bA6#%!Q_(t0qr*D0K1=3y^ zeJFvTYeNKGR0QSIa&0m#+u^^JpI|;*j`6L7sMG3b-c`V_yAq@lY(uP%!uAkOMz=wh zj@-~FL+v)*l@6waeT%$%{l$Yt8~GHMN?vBP=t-g`Q&mgYA)=IV+*Z|ovbOg@iDF>sC1W$7q? oUBZp+yVcKFd9L_$#2XPF+zq?mvassiRjK!vRM)=S)wKA30r@%udDN8~;`LGk#v zxUPhJAm8Ms`w27u<)!XRK;d?N(?Jf%y3L=GUIO@9{?G5@0PiC~x3^QLzF!4z$;PLh z3wc#1Nbyl&@CXUWs1ye0J|)Gq!uX4nAaP!}=3SuwKDSUR7XHe(3b=2JB_AdMsS{$= zN^(HkA@;^HfW=+n$+Qm2?-x&c&QoE*LU)V!d+U#se^eJ2!cPF^fUV*NDNTFBwrh5t zl)q{F=4cdf4BIaLM3!gmvA;UhO3v)E_dTRII_#6xWI1y|YD=fi<7%bdJI8?Z1!;e) z6Ie1N?LS5Zlsc*7qZkP+mJYtX0Z2F_9e;9-MypE~Y68U9*GUtFm4NN6oXS$7W!-Yk z7W!VkL2fm!11?$qDn1Wb`imSr#RExY@>m}^lQ$(laC`z}_gc6jsBm-SOin;iJ+m}| zkm9Q#e)7Ds+DG^7CS`NqcO>Yn(y;n<;_p@7X8Com5p`Sg&!~o=siD2w$bmw&^YX`J{fOG-?;{x z%LT5SLtg>~F;{=ONkV2Qp`fH<~rB0mEu_;;Du&m3xCL5BbYYhJ?A6ijH(-R zuPia^T~iEm#Hdf%YHm*&5RI@qVy0;`jCmt-nl-Oxo4om;=zZ2KT6>x|x%Fe5F;KqI zjFwh$WjUxp7|m!y3mTx&xsl$D&u&5p(z%Wz_3$HLr^SFs&!U=eb6ZP;7H-rUo7+M` et*)isA29B})^3cKJB;?SWaCzOiuprXK>Qz=BpKiU diff --git a/src/Mod/Ship/resources/translations/Ship_hr.ts b/src/Mod/Ship/resources/translations/Ship_hr.ts index 011e93d8a..ba880cbf8 100644 --- a/src/Mod/Ship/resources/translations/Ship_hr.ts +++ b/src/Mod/Ship/resources/translations/Ship_hr.ts @@ -4,50 +4,55 @@ Ship - + Ship design Dizajn broda - + Weights Težine - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Ship length [m] - + Ship breadth [m] Ship breadth [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Skica - - Trim - Skrati - - - + Displacement Premještanje - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Broj točaka + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Broj točaka @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Computing hydrostatics - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Glavni okvir - + Create a new ship Izradi novi brod - + Length Dužina - + Breadth Širina - + Draft Skica - ship_hydrostatic + ship_gz - - Plot hydrostatics - Izradi hidrostatiku + + GZ curve computation + GZ curve computation - - Trim - Skrati + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimum draft + + Maximum angle + Maximum angle - - Maximum draft - Maximum draft - - - + Number of points Broj točaka - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Izradi hidrostatiku + + + + Trim + Skrati + + + + Minimum draft + Minimum draft + + + + Maximum draft + Maximum draft + + + + Number of points + Broj točaka + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Select ship example geometry + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Density [kg / m^3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Ship @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Mass [kg] - + Linear density [kg / m] Linear density [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Density [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Ship - + Mass Mass - + Linear density Linear density - + Area density Area density - + Density Density + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_hu.qm b/src/Mod/Ship/resources/translations/Ship_hu.qm index 2b0737d15d92c930586a80b9b1c27ad1f0fc149c..789237c729678e5eb04b85025763de2ad094d0ec 100644 GIT binary patch literal 21105 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 Ship - + Ship design Hajó tervezés - + Weights Súlyok - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] - Ship length [m] + Hajó hossza [m] - + Ship breadth [m] - Ship breadth [m] + Hajó szélessége [m] - + Ship draft [m] - Ship draft [m] + Hajó tervezet [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft - Tervezés + Tervrajz - - Trim - Vágás - - - + Displacement Elmozdulás - + Areas curve tool draft selected [m] Területek görbéi tervező eszköz kiválasztva [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Pontok száma + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Pontok száma @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Kérjük, hozzon létre, vagy töltsön be egy hajó törzs geometriát mielőtt használná ezt az eszközt - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Hajó objektumok csak hajótörzs geometriára létrehozhatók (nem található szilárd test a kijelölt objektumokon) - + Computing hydrostatics Vízszilárdság / hydrostatika kiszámítása - + Computing external faces Külső felületek számítása @@ -203,22 +218,22 @@ Bármely megtalálható érvényes hajó rész - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Fő keret - + Create a new ship Új hajó létrehozása - + Length Hossz - + Breadth Szélesség - + Draft - Tervezés + Tervrajz + + + + ship_gz + + + GZ curve computation + GZ görbe kiszámítása + + + + Plot the GZ curve + A GZ-görbe felrajzolása + + + + Maximum angle + Maximális szög + + + + Number of points + Pontok száma + + + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection ship_hydrostatic - + Plot hydrostatics Vízszilárdság / hidrostatika nyomtatása - + Trim Vágás - + Minimum draft Minimális merülés - + Maximum draft Maximális merülés - + Number of points Pontok száma - + Hydrostatics tool trim selected Vízszilárdság vágó eszköz kiválasztva - + Hydrostatics tool minimum draft selected [m] Vízszilárdság minimum merülés kiválasztva [m] - + Hydrostatics tool maximum draft selected [m] Vízszilárdság maximum merülés kiválasztva [m] - + Hydrostatics tool number of points selected Vízszilárdság pontok számai eszköz kiválasztva @@ -377,6 +545,19 @@ Válasszon példa hajó geometriát + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Density [kg / m^3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Ship @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Mass [kg] - + Linear density [kg / m] Linear density [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Density [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Ship - + Mass Mass - + Linear density Linear density - + Area density Area density - + Density Density + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_it.qm b/src/Mod/Ship/resources/translations/Ship_it.qm index a8a30e25d5ff8baa2f67b0be47cf521bef8ef59d..a46907d6cce4ca78a4de76a05421cc6a535825ea 100644 GIT binary patch literal 23442 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 TodV26Ruhrq^&C?wD=PjMkD<+1 delta 1390 zcmah}Yfw~W7=HGgJ%rrQN{d?;)H9koc7s(;^`B{|Shfycpwv zaWo6COd^NR08)yvX5R>){=ti;L2MmL1)|2WqvbN7dPf!_?gM-Vy%^_^U2tvE0HIT| z2QBxh5;)=40YGtt%g>tyf&;iC%jN?zk-Hjh0Sx2ZlT$kZV+bGL?xaE|_-E?w0?}3c zo*p{)yU!o=O(5di_&Z&Mv14-8vFpIn4f6Gecp$-FeqNOh$j9Wryk`Jn&I&H&UQ(K9 z5KNibqz-oNcsG;svTRe z0+CayCWjVS@JQ8knhI!pRn5Ea5y52Dp)Jn>0UfIDxnUqROZ90{Db;mtQ{7y&7Eq3< zgE&f*IIAuypmnN3?O>yTuR+~9FCK`yrXDyi2ZENVuXd0#*5m5mG%o|mNnT7_E%MXk zO!93}7db&KSSXtFC_ZFTTyCa)u2X!jqZiPHiRH^}6#ukXyLU0*GB=1Pob$=r7V(sf z0yJNW6TS~g$$kxt)S8$;jdUiQ98hcSx&zD+n%|wl^fqR-7LU?+t^LP7dVDvvSMK~o zttr+%%pn1bx^>zE6qnHNMeFA}L;cUx+D*E(R;rVt)NKs-82J$1)!Enprpb<4FM=j0kU_?F58wkr_hlA#obn*i2l(Vl5;q0<5 zn3>{2nU5|f>HYtSFGmICsHH*CFtX9CMQp?nLInI+yEcfuslUd~76* zzV)~1-TKMhQz~-{eTDPz=PXq~Mujcr(>)FxlagK?t$+7az|G1S-HwyU|y{CdZ zM=i_OS!H$X;;Qu-_5Uj0ZJW^}xRRK;8Se6MtaV#JD~HEaCwqHUC^K1trK;QyIcY~; zq@3-xr7(3-pwyJ##TTTY$P@1E%|GNTC}krhEc3`Nq0SkxnT8dmO81XSLBqeOuDY?N o+*ns(tf+3Zml;cHHd{+skZp_XDHd;Azz*2bStwPyW$Rb`1 Ship - + Ship design Progettazione navale - + Weights Pesi - + True if it is a valid ship instance, False otherwise Vero se è un'istanza di nave valida, altrimenti Falso - + Ship length [m] Lunghezza nave [m] - + Ship breadth [m] Larghezza nave [m] - + Ship draft [m] Pescaggio nave [m] - + Set of external faces of the ship hull Insieme di facce esterne dello scafo della nave - + Set of weight instances Imposta una istanza di pesi - + Set of tank instances Imposta le istanze del serbatoio + + + Set of load conditions + Condizioni di carico + Ship_AreasCurve Areas curve - Curva della sezione + Curva delle sezioni @@ -117,34 +122,44 @@ ship_areas - + Draft Pescaggio - - Trim - Assetto - - - + Displacement Dislocamento - + Areas curve tool draft selected [m] - Strumento per disegnare la curva dell'area immersa selezionata [m] + Sezione selezionata per lo strumento curva dell'area immersa [m] - + Plot the transversal areas curve Traccia su un grafico la curva delle aree trasversali - + Areas curve tool trim selected [deg] - Strumento per definire l'angolo di assetto per la curva della sezione selezionata [gradi] + Assetto selezionato per lo strumento curva dell'area immersa [gradi] + + + + Trim angle + Angolo di assetto + + + + Number of points + Numero di punti + + + + Areas curve tool number of points + Numero di punti selezionati per lo strumento curva dell'area immersa @@ -160,12 +175,12 @@ Traccia la curva di capacità del serbatoio (curva di livello-volume) - + Plot the tank capacity curve Traccia la curva di capacità del serbatoio - + Number of points Numero di punti @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Si prega di creare o caricare la geometria dello scafo prima di utilizzare questo strumento - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Gli oggetti nave possono essere creati solo su una geometria dello scafo (nessuno degli oggetti selezionati è un solido) - + Computing hydrostatics Calcolo idrostatico - + Computing external faces Calcolo facce esterne @@ -203,22 +218,22 @@ Nessuna sezione valida di nave trovata - + Ship objects can only be created on top of hull geometry (no objects selected) Gli oggetti nave possono essere creati soltanto sulla geometria di uno scafo (nessun oggetto selezionato) - + A ship instance must be selected before using this tool (no objects selected) Prima di usare questo strumento si deve selezionare un'istanza nave (nessun oggetto selezionato) - + More than one ship have been selected (the extra ships will be ignored) E' stata selezionata più di una nave (le navi extra saranno ignorate) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Prima di usare questo strumento si deve selezionare un'istanza nave (tra gli oggetti selezionati non è stata trovata nessuna nave valida) @@ -248,25 +263,133 @@ Il modulo Plot è disabilitato, quindi non è possibile tracciare le curve - + Failure detecting external faces from the ship object Errore durante la rilevazione delle facce esterne dall'oggetto nave - + A tank instance must be selected before using this tool (no objects selected) Prima di utilizzare questo strumento si deve selezionare un'istanza serbatoio (nessun oggetto selezionato) - + More than one tank have been selected (the extra tanks will be ignored) Sono stati selezionati più serbatoi (i serbatoi in eccesso verranno ignorati) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Prima di utilizzare questo strumento si deve selezionare un'istanza serbatoio (tra gli oggetti selezionati non è stato trovato nessun serbatoio valido) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Operazione Volume serbatoio non riuscita. Spostare leggermente la posizione della superficie libera e fare un nuovo tentativo + + + + A loading condition instance must be selected before using this tool (no objects selected) + Prima di utilizzare questo strumento deve essere selezionata una istanza condizione di carico (non è selezionato alcun oggetto) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Etichetta nave errata! (non è stata trovata nessuna istanza etichettata '{}') + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Etichetta nave ambigua! (sono state trovate {} istanze +etichettate '{}') + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + È stato selezionato più di un carico (i carichi aggiuntivi saranno ignorati) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + Prima di utilizzare questo strumento si deve selezionare una istanza condizione carico (tra gli oggetti selezionati non è stata trovata nessuna condizione di carico valida) + + + + Too much weight! The ship will never displace water enough + Troppo peso! La nave non potrà mai spostare abbastanza acqua + + + + Wrong Weight label! (no instances labeled as'{}' found) + Etichetta peso errata! (non è stata trovata nessuna istanza etichettata '{}') + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Etichetta peso ambigua! (sono state trovate {} istanze +etichettate '{}') + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Peso non valido! (l'oggetto etichettato '{}' non è un peso) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Etichetta serbatoio errata! (non è stata trovata nessuna istanza etichettata '{}') + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Etichetta serbatoio ambigua! (sono state trovate {} istanze +etichettate '{}') + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Serbatoio non valido! (l'oggetto etichettato '{}' non è un serbatoio) + + + + Computing capacity curves + Calcolo delle curve di capacità + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Operazione booleana fallita nel tentativo di ottenere la parte sommersa. Spostare leggermente la posizione della superficie libera e ripetere l'operazione + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Calcolo dell'area trasversale non riuscito + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: durante il calcolo del dislocamento è stato trovato un volume zero! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: non è possibile calcolare l'area di galleggiamento + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: durante il calcolo dell'area di galleggiamento è stata trovata un'area zero! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: l'area della sezione maestra non può essere calcolata + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: durante il calcolo della sezione maestra è stata trovata un'area zero! + ship_create @@ -293,75 +416,123 @@ Main frame - Telaio principale + Sezione maestra - + Create a new ship Crea una nuova nave - + Length Lunghezza - + Breadth Ampiezza - + Draft Pescaggio - ship_hydrostatic + ship_gz - - Plot hydrostatics - Disegna idrostatica + + GZ curve computation + Calcola la curva GZ - - Trim - Assetto + + Plot the GZ curve + Traccia la curva GZ - - Minimum draft - Pescaggio minimo + + Maximum angle + Angolo massimo - - Maximum draft - Pescaggio massimo - - - + Number of points Numero di punti - + + Variable trim + Assetto variabile + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + La nave verrà ruotata fino all'angolo di assetto per ogni angolo di rollio. Questo aumenterà in modo significativo i tempi necessari per il calcolo + + + + GZ curve tool angle selected [deg] + Angolo selezionato per lo strumento curva GZ [deg] + + + + GZ curve tool number of points selected + Numero di punti selezionati per lo strumento curva GZ [deg] + + + + GZ curve tool variable trim angle selection + Seleziona l'angolo di assetto variabile per lo strumento curva GZ + + + + ship_hydrostatic + + + Plot hydrostatics + Disegna idrostatica + + + + Trim + Assetto + + + + Minimum draft + Pescaggio minimo + + + + Maximum draft + Pescaggio massimo + + + + Number of points + Numero di punti + + + Hydrostatics tool trim selected - Strumento di regolazione assetto idrostatico selezionato + Assetto selezionato per lo strumento idrostatica - + Hydrostatics tool minimum draft selected [m] - Strumento idrostatico del pescaggio minimo selezionato [m] + Pescaggio minimo selezionato per lo strumento idrostatica [m] - + Hydrostatics tool maximum draft selected [m] - Strumento idrostatico del pescaggio massimo selezionato [m] + Pescaggio massimo selezionato per lo strumento idrostatica [m] - + Hydrostatics tool number of points selected - Strumento idrostatico numero di punti selezionato + Numero di punti selezionati per lo strumento idrostatica @@ -377,6 +548,19 @@ Seleziona la geometria di nave di esempio + + ship_loadcondition + + + Create a new loading condition + Crea una nuova condizione di carico + + + + Create a new load condition spreadsheet + Crea un nuovo foglio elettronico per la condizione di carico + + ship_outline @@ -433,42 +617,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True se è un'istanza di serbatoio valido, altrimenti False - - Volume of fluid [m^3] - Volume del fluido [m ^ 3] - - - - Density [kg / m^3] - Densità [kg / m ^ 3] - - - + Create a new tank Crea un nuovo serbatoio - + Tanks objects can only be created on top of its geometry (no objects selected) Gli oggetti serbatoio possono essere creati solo sopra la loro geometria (nessun oggetto selezionato) - + No solids found in the selected objects Tra gli oggetti selezionati non è stato trovato nessun solido - + There are not ship objects to create weights into them Non ci sono oggetti nave in cui creare i pesi - + Ship Nave @@ -481,79 +655,79 @@ Crea un nuovo peso della nave - + True if it is a valid weight instance, False otherwise True se è un'istanza di peso valida, altrimenti False - + Mass [kg] Massa [kg] - + Linear density [kg / m] Densità lineare [kg / m] - - Area density [kg / m^3] - Densità della zona [kg / m ^ 3] - - - + Density [kg / m^3] Densità [kg / m ^ 3] - + Weight objects can only be created on top of its geometry (no objects selected) Gli oggetti Peso possono essere creati solo sopra la loro geometria (nessun oggetto selezionato) - + No geometrical shapes found in the selected objects Tra gli oggetti selezionati non sono state trovate forme geometriche - + Unknow object shapes selected Gli oggetti forma selezionati sono sconosciuti - + There are not ship objects to create weights into them Non ci sono oggetti nave in cui creare i pesi - + Create a new weight Crea un nuovo peso - + Ship Nave - + Mass Massa - + Linear density Densità lineare - + Area density Densità della zona - + Density Densità + + + Area density [kg / m^2] + Densità [kg / m ^ 3] + diff --git a/src/Mod/Ship/resources/translations/Ship_ja.qm b/src/Mod/Ship/resources/translations/Ship_ja.qm index a11e42d35d16101cf83f3830ead0953dca973345..d7f413715612683d42cbd5504156f6314379e94c 100644 GIT binary patch literal 17515 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 delta 1016 zcmXAneN0nl6vm%>Z|`mIM{f&AZK3FGJEKgt;1DOm6zWEnSp@6A41(E*5Naqa0meXB zml5L!r6apI!-R;M7@Z%>a@mw*qRWObGxtURVatMxn#o)=x}Y&Sx3k?pZl2t8-gD0H zJnwsRH`5=E6`kGYzI1zN-({co{Huq~{Tc+gT=1)p0R9H>2LUXSO$~&>pZy!KW}E7n zgf_Dt$oL+m+;e~y$A(==Ksaft%ZY{y`G6~l_V_u9yO|7m7r^^X&75Y=#Htk_lpISu?91eckKTqd|O%;;-&A?A|zCZ|eE&x(r z5jL(Q2NpgOhHnJu|99a;Mlbajg%iFDRCnLh^dE&QEuT^U12JK~`7yw_tf8NYG_A+F zeeN$J7p(_A8Uw`ltdn1o<=%wt#WO7g0^7(#%43r)SwWUFL9xwCn=2u)y8A4!Obv9(+%0luafht><|uz% zUK*nM6uVrwl;VsbZyGsHKquw8!j~z(TyE-FN%K86d9XE&$fo2Wh6=1#2XIF1+5c~<+9SV>(&L-8pP#)-76^$n`dH?PxGy``4r(HyN>-QxNR72v*BBRjW{1GQ@WQWsfYruO9x6Y&m*YdMiy z_d1?@e}Ep*fa9>&AkZGi=(qG1tYK3@=$A|tAjvadR22{TeMDVuGi`t+alYvn&{TNTK%=6 eH2u!nXE^Wv*Y)+q0lj9OOK&e;XzX5h)$%WBqY|e8 diff --git a/src/Mod/Ship/resources/translations/Ship_ja.ts b/src/Mod/Ship/resources/translations/Ship_ja.ts index 7248d6bd4..86c755ffb 100644 --- a/src/Mod/Ship/resources/translations/Ship_ja.ts +++ b/src/Mod/Ship/resources/translations/Ship_ja.ts @@ -4,50 +4,55 @@ Ship - + Ship design 船舶設計 - + Weights 重さ - + True if it is a valid ship instance, False otherwise 有効な船舶インスタンスの場合 True、それ以外の場合 False - + Ship length [m] 船の長さ [m] - + Ship breadth [m] 船の幅 [m] - + Ship draft [m] 船舶の喫水 [m] - + Set of external faces of the ship hull 船殻の外部面を設定 - + Set of weight instances 重量インスタンスの設定 - + Set of tank instances タンクのインスタンスを設定 + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft 喫水 - - Trim - トリム - - - + Displacement 変位 - + Areas curve tool draft selected [m] 面積曲線ツール 喫水選択 [m] - + Plot the transversal areas curve 横断領域曲線をプロット - + Areas curve tool trim selected [deg] 領域曲線ツール トリム選択 [度] + + + Trim angle + Trim angle + + + + Number of points + 点の数 + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ タンク容量曲線 (水位-体積曲線) をプロットします。 - + Plot the tank capacity curve タンク容量曲線をプロット - + Number of points 点の数 @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool このツールを使用する前に船殻ジオメトリーを作成するか読み込んでください - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) 船舶オブジェクトは船殻ジオメトリー上にのみ作成できます(選択されているオブジェクトの中にソリッドがありません) - + Computing hydrostatics 流体静力学を計算 - + Computing external faces 外部面を計算 @@ -203,22 +218,22 @@ 有効な船舶断面が見つかりません - + Ship objects can only be created on top of hull geometry (no objects selected) 船舶オブジェクトは船殻ジオメトリー上にのみ作成できます(選択されているオブジェクトがありません) - + A ship instance must be selected before using this tool (no objects selected) このツールを使用する前に船舶インスタンスを選択する必要があります(選択されているオブジェクトがありません) - + More than one ship have been selected (the extra ships will be ignored) 複数の船舶が選択されています(余分な船舶は無視されます) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) このツールを使用する前に船舶インスタンスを選択する必要があります(選択オブジェクトの中に適切な船舶が見つかりません) @@ -248,25 +263,130 @@ プロットモジュールが無効になっているため結果の曲線を描画できません - + Failure detecting external faces from the ship object 船舶オブジェクトからの外部面検出に失敗 - + A tank instance must be selected before using this tool (no objects selected) このツールを使用する前にタンク・インスタンスを選択する必要があります(選択されているオブジェクトがありません) - + More than one tank have been selected (the extra tanks will be ignored) 複数のタンクが選択されています(余分なタンクは無視されます) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) このツールを使用する前にタンク・インスタンスを選択する必要があります(選択オブジェクトの中に適切なタンクが見つかりません) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ メイン フレーム - + Create a new ship 新規に船を作成 - + Length 長さ - + Breadth 全幅 - + Draft 喫水 - ship_hydrostatic + ship_gz - - Plot hydrostatics - 流体静力学をプロット + + GZ curve computation + GZ curve computation - - Trim - トリム + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - 最小喫水 + + Maximum angle + Maximum angle - - Maximum draft - 最大喫水 - - - + Number of points 点の数 - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + 流体静力学をプロット + + + + Trim + トリム + + + + Minimum draft + 最小喫水 + + + + Maximum draft + 最大喫水 + + + + Number of points + 点の数 + + + Hydrostatics tool trim selected 流体静力学ツール トリム選択 - + Hydrostatics tool minimum draft selected [m] 流体静力学ツール 最小喫水選択 [m] - + Hydrostatics tool maximum draft selected [m] 流体静力学ツール 最大喫水選択 [m] - + Hydrostatics tool number of points selected 流体静力学ツール 点数選択 [m] @@ -377,6 +545,19 @@ 船のジオメトリーの例を選択します + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise 有効なタンク・インスタンスの場合 True、それ以外の場合 False - - Volume of fluid [m^3] - 流体の体積 [m^3] - - - - Density [kg / m^3] - 密度 [kg / m^3] - - - + Create a new tank 新しいタンクを作成 - + Tanks objects can only be created on top of its geometry (no objects selected) タンク・オブジェクトはジオメトリの上にのみ作成できます (オブジェクトが選択されていません) - + No solids found in the selected objects 選択されたオブジェクトの中にはソリッドがありません - + There are not ship objects to create weights into them 重量を作成できる船舶オブジェクトがありません - + Ship 船舶 @@ -481,79 +652,79 @@ 新しい船舶重量を作成 - + True if it is a valid weight instance, False otherwise 有効な重量インスタンスの場合 True、それ以外の場合 False - + Mass [kg] 質量 [kg] - + Linear density [kg / m] 線密度 [kg / m] - - Area density [kg / m^3] - 面密度 [kg / m^3] - - - + Density [kg / m^3] 密度 [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) 重量オブジェクトはジオメトリの上にのみ作成できます (オブジェクトが選択されていません) - + No geometrical shapes found in the selected objects 選択されたオブジェクトの中にジオメトリー形状がありません - + Unknow object shapes selected 不明なオブジェクトのシェイプが選択されています - + There are not ship objects to create weights into them 重量を作成できる船舶オブジェクトがありません - + Create a new weight 新しい重量を作成 - + Ship 船舶 - + Mass 質量 - + Linear density 線密度 - + Area density 面密度 - + Density 密度 + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_nl.qm b/src/Mod/Ship/resources/translations/Ship_nl.qm index 0052d50231a8db4078a2165874caefe9fe9c3e19..659b30b9437790c23f3069a2f29cb89cd053ea87 100644 GIT binary patch literal 20822 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 LvxoxKRaO5B3l6=+ delta 1041 zcmX9+eN2>f9RED`yxcv{bN3vt2f`iQOT^0^s2!*&Hb7&Fr=bgI(J@znt-^L&24@8|b@`+UDY z^fApf;k=Qm#EHeO_S+8Y^}U~6{kafe*MQ$}4#=(q-vc21LIhWT2!7-VATCDGWrBTb z3-J7Q6tSBD_X>6#y-R#v1XF;0H*$gJ6dY{53K*)GB>5JY0Qc%~7D!9x2E~^Eu8#ZjizvYLG9NZHQK#u~ytD8X z>UeRn8 z_csw8`p!>A0po)Ho3Bao7cLpLU9Kl(4jXzO6OR_d-4c?VnGhST)OplN@!-BOz_wm& zt~Zh7%VKj6C6GTBTi%}~`vLLz+gpK{S@GP{NgC}falFh={^0`g_S&5^lW8eYM}g8O zrLsMA&u*3K)hWQ7FLgwFNXmbu(Ls(BI3kVpk}_FVX~p;fknvLlSAQw93#3eDr>r>U zh`%VO`N%&ZSKgFHcHLX@?%vO-pn17^(`$g|rd-#Q1B9Ix`D{Zh5IZh+G2|dk%X2YH zfb|z6>@*tZuu(g2BL%XJGygj{#*P0ptO6|SO&QNR^_had4N<@f)Af7zX*3qoQV})a zE>%p&$S>`y2xgTkQTubw$G^9zzy-V~+vo9{5pX|*e%RPBjRQH?Pk?T@%O1$EHYpuKLNVYI~52RhA~sc~BV zx;mW}-h74A%C`)&>R&syYfp+w*y2o-A%q$Xx@z%xq_RdlW(rV?KG4YVZ? s=!-84)il;t+d~0+pr$ccWv{5M^!n9}#Z8P?y;kf{y}kr(rFgIK9|f)&!~g&Q diff --git a/src/Mod/Ship/resources/translations/Ship_nl.ts b/src/Mod/Ship/resources/translations/Ship_nl.ts index f97d40cee..dc6dfbbeb 100644 --- a/src/Mod/Ship/resources/translations/Ship_nl.ts +++ b/src/Mod/Ship/resources/translations/Ship_nl.ts @@ -4,50 +4,55 @@ Ship - + Ship design Scheepsontwerp - + Weights Gewichten - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Lengte van het schip [m] - + Ship breadth [m] Ship breadth [m] - + Ship draft [m] Diepgang [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Diepgang - - Trim - Trim - - - + Displacement Waterverplaatsing - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Aantal punten + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Aantal punten @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Hydrostatica berekenen - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) Er is meer dan één schip geselecteerd (de overige schepen worden genegeerd) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Main frame - + Create a new ship Maak een nieuw schip - + Length Lengte - + Breadth Breedte - + Draft Diepgang - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plot hydrostatics + + GZ curve computation + GZ curve computation - - Trim - Trim + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimumdiepgang + + Maximum angle + Maximum angle - - Maximum draft - Maximumdiepgang - - - + Number of points Aantal punten - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plot hydrostatics + + + + Trim + Trim + + + + Minimum draft + Minimumdiepgang + + + + Maximum draft + Maximumdiepgang + + + + Number of points + Aantal punten + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Select ship example geometry + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Dichtheid [kg / m^3] - - - + Create a new tank Een nieuwe tank aanmaken - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Schip @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Massa [kg] - + Linear density [kg / m] Linear density [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Dichtheid [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Schip - + Mass Massa - + Linear density Linear density - + Area density Area density - + Density Dichtheid + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_no.qm b/src/Mod/Ship/resources/translations/Ship_no.qm index ac727ae867f3a2e817d401973612e6cfee5a0ed3..caf1a3954ed70940d34f74b20fe4383ce502ce08 100644 GIT binary patch literal 20730 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 delta 1050 zcmX9+YfKbp6g@MuGrKdhI}6JjSv$KZ&sDHcORJ=UN~$0t(IwHcfy!D?=+f*W(Q3Db zG{l0~bPBc=B4E>Ki8js9D6KsDprxj!Nu@t9X|Z)}#1afzYwA|h+wPBVPQH8Ro_p@O z-@^gs<9)%k7wZx)-|6kX;z${<85sS!7~pcj7n}xG3gAxx$k-aeoGkDc9|7Wc1f8Q$ zXVwF$_fWzW0@;HoZJ(yRErRwhQ9tn%u=H!Rc8&t34NS7!4hRboT<&Eq1b3Q&ghl2~ z=R9=+%P)=qe2A?m`x}U}v2Q&aL*X0jq&*W*BsSc809ew zH`3$D7l09lY}A11T|(NXn#q#?*EkdKM4x=eUAaA%UE`elqT02 z_s-oTJH+|^VcEE2D*+5#9aNr@~G zWgL*)m2_X3FZs0@z-p6DM7x0HA4wzU3_xt9G}%wixTd7P%!h%@BN5DT%iIDvlT{=u zjyYOEm7HEi_3>eOO*+NdDtTM~SrRlRd)I8IdY}AqTRsqUOv&#BV#wNeilTuPtmh==^$}(|Srb>1RvIxr$u4;X@-@&;&06P*IEh^xco&;m1CTsn|t1 z6&^Zys5a4afj}qD?Q3jl@~XZ)>Ym1yhB|dulP9lQ3vFs+^0fNR4sE71LGRzZQ}`FZ CNg)dW diff --git a/src/Mod/Ship/resources/translations/Ship_no.ts b/src/Mod/Ship/resources/translations/Ship_no.ts index fd58afe1f..b37ec7a42 100644 --- a/src/Mod/Ship/resources/translations/Ship_no.ts +++ b/src/Mod/Ship/resources/translations/Ship_no.ts @@ -4,50 +4,55 @@ Ship - + Ship design Skipsdesign - + Weights Vekter - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Skipets lengde [m] - + Ship breadth [m] Skipets bredde [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Draft - - Trim - Trim - - - + Displacement Displacement - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Antall punkter + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Antall punkter @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Computing hydrostatics - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Main frame - + Create a new ship Opprette et nytt skip - + Length Lengde - + Breadth Bredde - + Draft Draft - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plot hydrostatics + + GZ curve computation + GZ curve computation - - Trim - Trim + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimum draft + + Maximum angle + Maximum angle - - Maximum draft - Maximum draft - - - + Number of points Antall punkter - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plot hydrostatics + + + + Trim + Trim + + + + Minimum draft + Minimum draft + + + + Maximum draft + Maximum draft + + + + Number of points + Antall punkter + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Select ship example geometry + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volumet av væske [m ^ 3] - - - - Density [kg / m^3] - Tetthet [kg / m ^ 3] - - - + Create a new tank Lag en ny tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Skip @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Masse [kg] - + Linear density [kg / m] Lineær tetthet [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Tetthet [kg / m ^ 3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Opprette en ny vekt - + Ship Skip - + Mass Masse - + Linear density Lineær tetthet - + Area density Area density - + Density Tetthet + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_pl.qm b/src/Mod/Ship/resources/translations/Ship_pl.qm index c9f58018c24b20886f4764ad6ed0e8386e913700..188a8621bc1505f9baa160188df19d23a985ed5d 100644 GIT binary patch literal 21916 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 Ship - + Ship design Projektowanie statku - + Weights Ciężary - + True if it is a valid ship instance, False otherwise Prawdziwe jeśli instancja statku jest obowiązująca, Nieprawdziwe w innym wypadku - + Ship length [m] Długość statku [m] - + Ship breadth [m] Szerokość statku [m] - + Ship draft [m] Szkic statku [m] - + Set of external faces of the ship hull Zestaw zewnętrznych powierzchni kadłuba statku - + Set of weight instances Zestaw wzorców wag - + Set of tank instances Zestaw wzorców zbiorników + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Szkic - - Trim - Ucinanie - - - + Displacement Wyporność - + Areas curve tool draft selected [m] Wybrano narzędzie kreślenia obszarów krzywych w [m] - + Plot the transversal areas curve Drukuje krzywą poprzecznego obszaru - + Areas curve tool trim selected [deg] Narzędzie przycinania obszarów krzywej wybrane [stopnie] + + + Trim angle + Trim angle + + + + Number of points + Liczba punktów + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Kreśl krzywą pojemności zbiornika (krzywa poziomu pojemności) - + Plot the tank capacity curve Kreśl krzywą pojemności zbiornika - + Number of points Liczba punktów @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Przed użyciem tego narzędzia, proszę utworzyć lub załadować geometrię kadłuba statku - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Obiekty statku mogą być utworzone tylko na górze geometrii kadłuba (brak odnalezionych stałych spośród wybranych obiektów) - + Computing hydrostatics Obliczanie hydrostatyki - + Computing external faces Obliczanie obszarów zewnętrznych @@ -203,22 +218,22 @@ Odnaleziono prawidłową sekcję statku - + Ship objects can only be created on top of hull geometry (no objects selected) Obiekty statku mogą być tworzone tylko w górnej części geometrii kadłuba (żaden obiekt nie został zaznaczony) - + A ship instance must be selected before using this tool (no objects selected) Instancja statku musi być zaznaczona zanim użyje się tego narzędzia (żaden obiekt nie został wybrany) - + More than one ship have been selected (the extra ships will be ignored) Więcej jak jeden statek został zaznaczony (dodatkowy statek zostanie zignorowany) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Instancja statku musi być zaznaczona zanim użyje się tego narzędzia (brak obowiązującego statku wśród zaznaczonych obiektów) @@ -248,25 +263,130 @@ Moduł wydruku jest wyłączony, narzędzia programu nie są w stanie narysować krzywych wyjściowych - + Failure detecting external faces from the ship object Niepowodzenie w wykrywaniu zewnętrznych powierzchni obiektu statku - + A tank instance must be selected before using this tool (no objects selected) Należy wybrać dany wzorzec zbiornika przed użyciem tego narzędzia (wybranych obiektów) - + More than one tank have been selected (the extra tanks will be ignored) Wybrano więcej niż jeden zbiornik (dodatkowe zbiorniki będą pominięte) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Należy wybrać dany wzorzec zbiornika przed użyciem tego narzędzia (brak prawidłowego zbiornika w wybranych obiektach) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Rama główna - + Create a new ship Utwórz nowy statek - + Length Długość - + Breadth Szerokość - + Draft Szkic - ship_hydrostatic + ship_gz - - Plot hydrostatics - Wydruk hydrostatyki + + GZ curve computation + GZ curve computation - - Trim - Ucinanie + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Szkic minimalny + + Maximum angle + Maximum angle - - Maximum draft - Szkic maksymalny - - - + Number of points Liczba punktów - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Wydruk hydrostatyki + + + + Trim + Ucinanie + + + + Minimum draft + Szkic minimalny + + + + Maximum draft + Szkic maksymalny + + + + Number of points + Liczba punktów + + + Hydrostatics tool trim selected Wybrano narzędzie wykończenia hydrostatyki - + Hydrostatics tool minimum draft selected [m] Wybrano narzędzie minimalnego kreślenia hydrostatyki w [m] - + Hydrostatics tool maximum draft selected [m] Wybrano narzędzie maksymalnego kreślenia hydrostatyki w [m] - + Hydrostatics tool number of points selected Wybrano narzędzie liczba punktów hydrostatyki @@ -377,6 +545,19 @@ Wybierz przykładową geometrię statku + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Prawdziwe jeśli wzorzec statku jest obowiązujący, Nieprawdziwe w innym wypadku - - Volume of fluid [m^3] - Objętość płynu [m ^ 3] - - - - Density [kg / m^3] - Gęstość [kg / m ^ 3] - - - + Create a new tank Tworzenie nowego zbiornika - + Tanks objects can only be created on top of its geometry (no objects selected) Zbiorniki mogą być tworzone tylko na jego geometrii (brak wybranych obiektów) - + No solids found in the selected objects Nie odnaleziono brył w wybranych obiektach - + There are not ship objects to create weights into them Brak statków aby przypisać do nich wagi - + Ship Statek @@ -481,79 +652,79 @@ Tworzenie nowej masy statku - + True if it is a valid weight instance, False otherwise Prawdziwe jeśli wzorzec statku jest obowiązujący, Nieprawdziwe w innym wypadku - + Mass [kg] Masa [kg] - + Linear density [kg / m] Gęstość liniowa [kg / m] - - Area density [kg / m^3] - Gęstość obszarowa [kg / m ^ 3] - - - + Density [kg / m^3] Gęstość [kg / m ^ 3] - + Weight objects can only be created on top of its geometry (no objects selected) Masa posiadające masę mogą być tworzone tylko na jego geometrii (brak wybranych obiektów) - + No geometrical shapes found in the selected objects Nie znaleziono kształtów geometrycznych w wybranych obiektach - + Unknow object shapes selected Nieznane kształty wybranych obiektów - + There are not ship objects to create weights into them Brak statków aby przypisać do nich wagi - + Create a new weight Tworzenie nowej wagi - + Ship Statek - + Mass Masa - + Linear density Gęstość liniowa - + Area density Gęstość obszarowa - + Density Gęstość + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_pt-BR.qm b/src/Mod/Ship/resources/translations/Ship_pt-BR.qm index 405adca3577751d448cba2904f512104f8fa51b4..2d81c920046dfe27e7fa02dc50f4c93f6fb0c981 100644 GIT binary patch literal 21958 zcmeHP3ve9eeg7<3lJ&6sHpUpTGA@>}F~MMijY%Te7Phfv1HvYzJXX4uwD#StvU_J? zUU^Uw2#-Q3G%YaD&@xFNDNWn~rXden+L8%vC!rJQG?Tba2AmX_lsav~1p51Z|NHiF zw|A2KNXWFKIo;jf?)UxQ@7=XeXXbtD%?Iy$v17s4uldtwzu&FYpsGgZUWzf$T$Us5yQ$}6=XudG+rDYb5c>ZyNGsm-^ji$3*|QZ0w%ebpMZ z?VDXnt@xQ5{>DnB&b>yB-tnwb&F@Z{-})(~rc9Oh_0LXvYFC?5oogn&dB=ZXLsi%C zvuBiQe6?;nU{I%CUN>;#J4$sI>h4}MOQ}hPx~Ct$O{w?$b$@;Dhm|_>%XQD6yhN#4 zZ`Qs2;6A06ZK$7In4{F1yX%|(>uXA#@o@dJhYEn}vHC9WM@oI*h5CwoZBysuv|x%s{ql-hpzb^VdOrs|7d33T^N>;}o!qehe!$I1AXewYW&3~K%Y}qH*NV>;IZ`drrn3$ z0)Osoy6eRKz~i5q?zt7~p7(oA5B$k9O3ied9(nRJN-aOw^hDEg!2N}$zyBuqyWwxA z%)S@0%3x9jER;({eg&3&qQ zbohCtRt`1a7ED#@f}ZBv9tM0<-)z49`qyy$3(a>8tOs4*Y`$+j*0XMCe)OI1Dz!D! z{P{n__i1-F|J{x&vHlO6Up#9oVbyzfTDz))hdGEclwf+szd(($o+dB?{-`%Z? zx8VBUS=ze71D@)E*7FzR_xjnb7eDfOrDiN`b5|TJ&=$8X+1RaKY{1;Hf22u`M9KQ^F1#pwQzRZ zR~|bVbY0u_y(ecVbXeffDYf|KsY^(|wI84A z9@r1P`pML<|KK3t`)T{sPh*{nUTdE|@?*%$%kA@i47lcB+SAkk&a{D_|BF(sZ%zB`g0DcH{(Rd0Z`b4dN%G#dUfx$9miG_-YTDOszf7s# zw_T+!&f!e;yK0^CR9@{?Mf@+|v!yc1!T&*Js{wop@Yzw<;x|Y6%EcLe>1aluJ%IB9 zoGDlGe;!Bn^2{mNKsDlZ+NDmx@&+yE+JfWf?W{Fu4>$pj6owru76CNRDlQg*oY+|t%r&(2r_UOwX%TrVFaxB5`ktz2vr z0QY~#`v5j1u7*Mde9NnkfO1Z_-JH^P1v|gTa`OS+foXEL>WJ0aZA2p)(e#AUPNR-H zG+d~*SEt%iB1sX1u{G=o9^uFpDyOatF_=yUSpB|ZX9~mC6}c;uz|T|bH6Sji47Y+8 znQg0VxIn93Amaq?P(FEWr`ir6JP4Z;idt=8+GQ=@9xPOX@_x;=oEpKRE^u%FjFI5l z%TCkFW}W;{8j7D*JFu1y0kgF(xEg2+oEN>I23X*FPSdlJXBG%@KxF|FSD>^cp;?Aw zJtP@cY?;+#X9LIbpj7^- z8#qbow}ARoXHNwoubOsh=_wP?1t2WNg?u%_PJkSIkFIU)f{X;#K+)f;chW??S|41; zV_Jzft3F(4Ls6-imR@imvAAedxIE4w{?x1h0FVy>zPYiDt?gN_pe;wixAVbX#}8mq z>~TPI8W1C01r~CU0_NtKPi+J=8SD$W!TtyEaw)Rmj%^$FWqc2ouHX)6L7G9LTpd4Jvgg|&@*b{_L}566 zZBU|2X~Ny+hs+OXr-sM3_a)#Cccl!&JK$XuSX>*aKB8eW(w5TcW}(6!ik zcsDyYk}dhOIAOI(y_%L?Nd&Z4!{Ev2${v>qnLu-L*eW+a4*Df>C|CZLHjlo z3oRB^z*z9zT#QT^XGn(| zUNMiDO|poPgC#aq;m$v*%OI3g+w@qT!WBk`_)J5@1V%)RUNoXWJdPlp=uxE9BIb+2 zES{G~X+l_#NsDMG)(5p<55r4GG^OAt#XH)QzeLo&s4JO9TGb`nIU>29)Hnv^NTc5j zHS6p5rN_-D*QwEW@~zEiASpbSq2Odl;#{T8b-8v{T;HThNu?7jHuZNO90w z6X{_7S&`sOTA;ci-Yjgf)W*EeLk7>VmZ^ft1=)FY^*Kx;Ms@nYb6Nb}r^TLGB*QHW zY+zBG-z3S9)PpOI>NWYvf)X%+any2r?kk-cWrmU|GK);^5P&QLI6EE601z56$O0~A ztn4J1EZ0CZ2nZbf5elZ>rmrexJVI8&Jk0j*>P89CK|$FYaeP$ONmJX+LjOjG9fW)S zK5h9u6z?U0K`w)a4;mG|6}TB^xz&e=P$!>ALVcF^c|lMd7>+F&WZ5^&?z3{uUYO0`1Qidi==Y6MJbAC+VZnkZ3KGpd)JxX#Os6bsxnSw_$` z$_lYj=ag!9(vD_k#Qc)%H^ijvi<;ETC8FKtMY|>Y&*_LQ*R6sqIL`uEv{jW>MaZ?e z(Kh8xiAszXR@sDEh7Woo>kAj287*8=u_|QRRq84Z18PaABnjnm12J`$j#~}V;p%Ei zzp@9CSVWm4;}odxU}2J|kRdM@)$Ao5NvCvPZ2}|X1qS0L#FQEhG6@zdHgSWS=Hf(` zS?S@qq=N(zdtwRixtsFhu<0b=>X<(XoaK%V>XS#S(bl0s6^FOC0*knVIF^`{J7bW%SFuqgx*gmHp~p9k>Y)r@8vKzej$>;iLgIKpBp?R@nS z3yMuNQOIi|>vMerLnelTcALh8K`jda%qeIT7=Lk2jNWz#FVaAa3LDT|g~vo}dChgW zhV&<8D|QPpU#a_uIWJShmEnij;>Ns01a7ml92)_=)_a04*b$rDhdU7cVU3y2?o_q22rWF zOfYHSWH_GZk#16EqQuedp*9$rp*4M;hZ;UgFOqY0=;Dm_G&;i0V|K%*A=cANmQ-<^ zyjL6=PPexlRc;!ytL#D44z!X(6)?fyYCsZI#!XJruRJtZZ z%(TX_DRP(K*8+I7@aGfskLUXI*2zNsvE;$I!h^Cx@R4%iZnaAbt%q@bdSZ&TBq_=8 zzE?*w$#64jBTyk&(=?&K$>#?_304WxlY+EhwIfuRjk_G*Tkr050~9_>$v`h-G96Tl z0nHTsuwA{y0O;K$(*tbojN2vSVUI$(5%f zo-;V;4!D?&jK}v?Nc0C2CQ;HgjV&MLX4H%vj!lS7)d*4YD;4r#EGy?i$ASAIw0uSo zMliyY&V*E82(hUM`=PAP>KbIx9Rc%*gFA}`idoyI*tOEWUo8=q9%!78+i)ls^s*-W z>&It=Z{cFi-Aqb2Wu3ajOx=v4>tTjaWDFTz+SH9;4!7&1UU+P7dZ<8Y?19>fOI9Ie zq^C?FsU|m57}AF?X`AS|s1VILJs#Q|er6m5r)MmdI5>#RK$MLZn$`|^Q@ChbPps*Y zO2D}&dWd?`(ivHeW{(@U=o^VrueH?0fP=Y!3=vEHPVOaRP7vKT)e_YYQdjC!7eX(o zAu_;OUQ7uS{}8j;7w(dbCNB3}yGe`Z&~>Gm{mONt-WY?=AyAFGMY)El;8u=!FAVq8 z{U<#$9934YFazER2zpa6iy#XGr}=uLx6JZCbiWJ#ifKuO=5MyNTFoHCiZZ28(S(V z{hBc{-j~iKsl+o`WI)eeFISh&LL~c4rZ#C5qrL;c1Oh~v-vY{L049MPn5BFQ4BV6!w+1~j`(apO3z6+km zqzGjk%dwGr_#Oi&4)8CxHWj3{&-*i7LC&n_ZX1?^2VNd9I{7>9_Dq*QPVp;MF!X9f{YqbZ{!**N=po*ZMyZB=Te3?{aL> z2nA$mB@b$v>U0)dUh|GGDw*`vtH}(RlqxeJobRiIGjaP8MLQj~`K4~ZlmuCa2<1Cm zJv7;xWfNH|6tmb`arReV>nQy|IeeE_KolBS)Md6cq zds1~Q&(qX5O$Y%>TmrjomG^#z&4viXExf}setRc(Yu2WK9c66;`VeuN4!4*b+WlG^ zrPqIXRV4@uF4Y6x;sgvN@q0|mpy>tD;(zERC8TB{YZRYN2Vb(S@;h-@-jXXbPzZW0 z%teKySiDY}CbqsKn#jXPlpd;J1tUyDf?>zeJ%gDcfx=TXrTF}Vv0yWvkcyjtFofik z3P|Xt!kx&WY5*+K05F0xGj28*#V~@J$)W`c@Zm^knPDaa1C^QTP2A{TSjI5M#iVq>Q;kax0n7Njl+$@l6d1;rLl# z?w+j#WdiprS6)09ktV~5vc_t}_E={$o$Wp2q=a;@lKZ65p(D2AM98o<1rF(rG24}* z14T%>P6xmfW~Akz(7c^`fKcD%ZASlU(0)OzqEWGUM8s&(SX(VF^PLIZ5p&71sXUT_ zQC|5YR+0~8;4DLAjrmQhWIuwLc-QPWw1z??7x#MTpQ61p#yvSHV75e^vv4{61e}y} zAA`V#)X+A8NJ+bNtQMp+C|LxN=DUaj2T~~rX^!aV?;X7$?@x8Iii6w8ONrE{ETffIy6ttSj@wSD^Pf1YVtqS594p zx#Q?jMJL2pwyxMSWSwc{u3DiVAyBc&s+xwzh=s9|p(urD%uB=@S~3I$s%ph^@l~}vRvNJ2`9xl?fz6OaqD=!3G<-|QZM% zy$509uswq3uSv6{${nPsVqMc;RZ#6cWuGgcyY;wOXk$n?yfsnlyej=6Ut$kx+vf`G zy0JU+5DHl}5s_aQ3&^+~Lq*;yAT~V`pOY`k@5y_kW=OsyJ!XU@RZxE0f|YGM>vT!EJM?IIAeqPS2fSxPOXAS_M5B;e!(9MPL{r zo&_FvpnzQtEViL=_b9;s9Yd!98wPU#S0`acQm=DiLxd)E3!E$8 zOOt=hxr=)M=QP)MfCQwi%5Z;*qe2|iBTf1)b%nf~JEWch**4KMUJk~1)L-J?7X8Ag3%Im7TFJ53(f$~SEo0^}UN zrO^Z=FXvkh6M^x4KKkYzif`ukzWN+6cP)SP{#A15Uw*i}ns~z@{z}#wz)&y5Gt|gE zE|kAW?@h?ti~apt&K+I1W-L9EStiEd>^+!)CQ!YMuC2SF=YTOf95s6f0RPR30G zjvGeEw3^gaM)g<{Ibbv1eo&B7W&Ayu0K~VM(jQFf+HCUQ>Z67`P3Lb;&}z1urVD6* zMSjWjF4bk6iD6bmvTXXER&`8T;~}0!m!t~Y7bpYwspQ{TK|7w1T1U2$^%tc*o=#F+ zYPMyNaxvGu;Jy8HL_u@6T_p?0%zaT&tYMEr$D1+t}MeB7aUdf`iTM`+?8-GoG+4idCarjJnTV%c*rs z+ZpxS6&0LX`1}N`JndVhItn+kMQ)TMfO>?`fLh3?p_h!hhY|n(uS&|Tg9p_HQbGqq zipvA_p@v#HP$$>bhx|2iWy3m8wX&sny(U+A#y8hg^RU@1yg|5LDfKxNYl%(S;hU$f IDA}d^4+ Ship - + Ship design Design naval - + Weights Pesos - + True if it is a valid ship instance, False otherwise Verdadeiro se for uma instância válida do navio, Falso caso contrário - + Ship length [m] Comprimento do navio [m] - + Ship breadth [m] Largura do navio [m] - + Ship draft [m] Projeto do navio [m] - + Set of external faces of the ship hull Conjunto de faces exteriores do casco do navio - + Set of weight instances Conjunto de instâncias de peso - + Set of tank instances Conjunto de instâncias de tanque + + + Set of load conditions + Conjunto de condições de carga + Ship_AreasCurve @@ -117,36 +122,46 @@ ship_areas - + Draft Projeto - - Trim - Aparar - - - + Displacement Deslocamento - + Areas curve tool draft selected [m] Ferramenta de esboço da área da curva selecionada - + Plot the transversal areas curve Traçar a curva das áreas transversais - + Areas curve tool trim selected [deg] Ferramenta "Aparar áreas curvas" selecionada [deg] + + + Trim angle + Ângulo da aparamento + + + + Number of points + Número de pontos + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -161,12 +176,12 @@ Traçar a curva de capacidade do tanque (curva de nível-volume) - + Plot the tank capacity curve Traçar a curva de capacidade de tanque - + Number of points Número de pontos @@ -174,22 +189,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Por favor crie ou carregue uma geometria de casco de navio antes de usar esta ferramenta - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Navios só podem ser criados a partir de geometria do casco (nenhum sólido encontrado nos objetos selecionados) - + Computing hydrostatics Calculando hidrostática - + Computing external faces Processando faces externas @@ -204,22 +219,22 @@ Encontrar qualquer seção do navio - + Ship objects can only be created on top of hull geometry (no objects selected) Navios só podem ser criados a partir de geometria do casco (nenhum objeto selecionado) - + A ship instance must be selected before using this tool (no objects selected) Uma instância do navio deve ser selecionada antes de usar esta ferramenta (não há objetos selecionados) - + More than one ship have been selected (the extra ships will be ignored) Vários navios foram selecionados (os navios extras serão ignorados) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Uma instância de navio deve ser selecionada antes de usar esta ferramenta (nenhum navio válido encontrado nos objetos selecionados) @@ -249,25 +264,130 @@ O módulo de plotagem está desativado, não é possível traçar curvas de saída - + Failure detecting external faces from the ship object Falha na detecção das faces externas do navio - + A tank instance must be selected before using this tool (no objects selected) Uma instância do tanque deve ser selecionada antes de usar esta ferramenta (não há objetos selecionados) - + More than one tank have been selected (the extra tanks will be ignored) Mais de um tanque estão selecionados (os tanques extra serão ignorados) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Uma instância de tanque deve ser selecionada antes de usar esta ferramenta (nenhum tanque válido encontrado nos objetos selecionados) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -297,70 +417,118 @@ Quadro principal - + Create a new ship Criar um novo navio - + Length Comprimento - + Breadth Amplitude - + Draft Projeto - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plotar hidrostática + + GZ curve computation + GZ curve computation - - Trim - Aparar + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Calado mínimo + + Maximum angle + Ângulo máximo - - Maximum draft - Calado máximo - - - + Number of points Número de pontos - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plotar hidrostática + + + + Trim + Aparar + + + + Minimum draft + Calado mínimo + + + + Maximum draft + Calado máximo + + + + Number of points + Número de pontos + + + Hydrostatics tool trim selected Ferramenta de corte hidrostático selecionada - + Hydrostatics tool minimum draft selected [m] Rascunho mínimo da ferramenta hidrostática selecionada [m] - + Hydrostatics tool maximum draft selected [m] Rascunho máximo da ferramenta hidrostática selecionada [m] - + Hydrostatics tool number of points selected Número de pontos da ferramenta hidrostática selecionada @@ -378,6 +546,19 @@ Selecione um exemplo de geometria de navio + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -434,42 +615,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Verdadeiro se for uma instância válida do tanque, Falso caso contrário - - Volume of fluid [m^3] - Volume do fluido [m^3] - - - - Density [kg / m^3] - Densidade [kg / m^3] - - - + Create a new tank Criar um novo tanque - + Tanks objects can only be created on top of its geometry (no objects selected) Tanques só podem ser criados em cima de sua geometria (não há objetos selecionados) - + No solids found in the selected objects Nenhum sólido encontrado nos objetos selecionados - + There are not ship objects to create weights into them Não há navios para criar pesos neles - + Ship Navio @@ -482,79 +653,79 @@ Criar um novo peso de navio - + True if it is a valid weight instance, False otherwise Verdadeiro se for uma instância válida do peso, Falso caso contrário - + Mass [kg] Massa [kg] - + Linear density [kg / m] Densidade linear [kg / m] - - Area density [kg / m^3] - Densidade de área [kg / m^3] - - - + Density [kg / m^3] Densidade [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Tanques só podem ser criados em cima de sua geometria (não há objetos selecionados) - + No geometrical shapes found in the selected objects Nenhuma forma geométrica encontrada nos objetos selecionados - + Unknow object shapes selected Formas selecionadas desconhecidas - + There are not ship objects to create weights into them Não há navios para criar pesos neles - + Create a new weight Criar um novo peso - + Ship Navio - + Mass Massa - + Linear density Densidade linear - + Area density Densidade de área - + Density Densidade + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_pt-PT.qm b/src/Mod/Ship/resources/translations/Ship_pt-PT.qm index 862d4969a61795c64b703e3643cb1b7aef152981..be12e15e59bce149f0bef73bd1770eb4fdc5dcf4 100644 GIT binary patch literal 21434 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 azs!}ec7G<@P;F;im4$_>SE%__-O_)z1SAXq diff --git a/src/Mod/Ship/resources/translations/Ship_pt-PT.ts b/src/Mod/Ship/resources/translations/Ship_pt-PT.ts index 28a939bd6..934a71edd 100644 --- a/src/Mod/Ship/resources/translations/Ship_pt-PT.ts +++ b/src/Mod/Ship/resources/translations/Ship_pt-PT.ts @@ -4,50 +4,55 @@ Ship - + Ship design Desenho de Barcos - + Weights Lastro - + True if it is a valid ship instance, False otherwise Verdadeiro se for uma ocorrência válida de navio, Falso caso contrário - + Ship length [m] Comprimento do barco [m] - + Ship breadth [m] Largura do Navio [m] - + Ship draft [m] Projeto do navio [m] - + Set of external faces of the ship hull Conjunto de faces exteriores do casco do navio - + Set of weight instances Conjunto de instâncias de peso - + Set of tank instances Conjunto de instâncias de tanque + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,42 +122,52 @@ ship_areas - + Draft Calado do Navio - - Trim - Aparar - - - + Displacement Tonelagem - + Areas curve tool draft selected [m] Ferramenta das áreas da curva do calado selecionado [m] - + Plot the transversal areas curve Traçar a curva de áreas transversais - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Pontos + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity Tank capacity curve - Tank capacity curve + Curva de capacidade do tanque @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Pontos @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Por favor crie ou carregue uma geometria para o casco do barco antes de utilizar esta ferramenta - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Objetos do barco só podem ser criados no topo da geometria do casco (sólidos não encontrados nos objetos selecionados) - + Computing hydrostatics Computando a hidrostática - + Computing external faces Computando as faces externas @@ -203,22 +218,22 @@ Qualquer secção do navio válida encontrada - + Ship objects can only be created on top of hull geometry (no objects selected) Objetos do barco só podem ser criados no topo da geometria do casco (objetos não selecionados) - + A ship instance must be selected before using this tool (no objects selected) Uma ocorrência de navio deve ser selecionada antes de usar esta ferramenta (não há objetos selecionados) - + More than one ship have been selected (the extra ships will be ignored) Selecionou-se mais de um navio (os navios extras serão ignorados) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Falha a detetar faces externas do objeto de navio - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Caixilho principal - + Create a new ship Criar um novo navio - + Length Comprimento - + Breadth Amplitude - + Draft Calado do Navio - ship_hydrostatic + ship_gz - - Plot hydrostatics - Traçado da hidrostática + + GZ curve computation + GZ curve computation - - Trim - Aparar + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Calado mínimo + + Maximum angle + Maximum angle - - Maximum draft - Calado máximo - - - + Number of points Pontos - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Traçado da hidrostática + + + + Trim + Aparar + + + + Minimum draft + Calado mínimo + + + + Maximum draft + Calado máximo + + + + Number of points + Pontos + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Selecione geometria exemplo de navio + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Density [kg / m^3] - - - + Create a new tank Criar um novo tanque - + Tanks objects can only be created on top of its geometry (no objects selected) Tanques só podem ser criados em cima de sua geometria (não há objetos selecionados) - + No solids found in the selected objects Nenhum sólido encontrado nos objetos selecionados - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Navio @@ -481,79 +652,79 @@ Criar um novo peso de navio - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Massa [kg] - + Linear density [kg / m] Densidade linear [kg / m] - - Area density [kg / m^3] - Densidade de área [kg / m^3] - - - + Density [kg / m^3] Density [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Tanques só podem ser criados em cima de sua geometria (não há objetos selecionados) - + No geometrical shapes found in the selected objects Nenhuma forma geométrica encontrada nos objetos selecionados - + Unknow object shapes selected Formas selecionadas desconhecidas - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Navio - + Mass Massa - + Linear density Densidade linear - + Area density Densidade de área - + Density Densidade + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_ro.qm b/src/Mod/Ship/resources/translations/Ship_ro.qm index ed7fbe7d9adcb04c2ffeec12c776fcb4442321c9..8b92db59b44b3e89918ee5794ad32abb825b7cee 100644 GIT binary patch literal 21177 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 delta 1088 zcmX9+drVVz6#jZ|?``kB?JbmtmGNk)fE2+YhtAnnvvfVLhO2*8cWM46w?~h4fw2X;uZ7 zUiLI~zJYU8pC!gc+{kevuxc+ia_0cR@8`ZLp#<@z-1YRk^j}vL1vmG*{Th(k!c-}Ns8nzwXSKN8cV zDcvjcf05&y?$pUqzzE&fUy|gROZtk70a9kSe&_-D5!Tp+e%iiI%}dxw7A*Qo*6nvgqEe&jXNmbB>B3Efl&Hq(urUk5H~CJYbZecNt!n= z5#u5QtTY>jCzht-glT{+xZ5sKGc0n{p(axB@2-g9H*E~S6MXA*uQ8#h7b;_Xe zzA`6=l;pBBwa@gQMsr+gP6#O5avkc!_!oHPYD%yAruAoy`qb)aMqQV^s8!!9Il!ok zn|E<)NBI=1Jn3?&>np0+>O9oL4=*~=LFR=OZnVN2}G}W^MC!dfe8=j-AdXC0N<8wglyr!iN9_2eFH+l};=6Q6V3Fdmblz6)zL! UlRZwY+^@7L2VE=Ff~p?=e@B5KIsgCw diff --git a/src/Mod/Ship/resources/translations/Ship_ro.ts b/src/Mod/Ship/resources/translations/Ship_ro.ts index e388e48e5..855df8a67 100644 --- a/src/Mod/Ship/resources/translations/Ship_ro.ts +++ b/src/Mod/Ship/resources/translations/Ship_ro.ts @@ -4,50 +4,55 @@ Ship - + Ship design Proiectare nave - + Weights Greutati - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Lungime navă [m] - + Ship breadth [m] Lățime navă [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Ciorna - - Trim - Taiere - - - + Displacement Deplasare - + Areas curve tool draft selected [m] Ariile curbe - unelte selectate [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Numărul de puncte + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Numărul de puncte @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Creati sau incarcati geometria unui fuselaj de nava inaintea folosirii acestei unelte - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Obiectele-nava pot fi create doar pe o geometrie tip fuslaj (nici un solid printre obiectele selectate) - + Computing hydrostatics Calcul hidrostatic - + Computing external faces Calcul fete externe @@ -203,22 +218,22 @@ Nici o sectiune de nava nu a fost gasita - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Cadrul principal - + Create a new ship Creaza o nava noua - + Length Lungime - + Breadth Latimea - + Draft Ciorna - ship_hydrostatic + ship_gz - - Plot hydrostatics - Printeaza caracteristicile hidrostatice + + GZ curve computation + GZ curve computation - - Trim - Taiere + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minim proiectat + + Maximum angle + Maximum angle - - Maximum draft - Maxim proiectat - - - + Number of points Numărul de puncte - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Printeaza caracteristicile hidrostatice + + + + Trim + Taiere + + + + Minimum draft + Minim proiectat + + + + Maximum draft + Maxim proiectat + + + + Number of points + Numărul de puncte + + + Hydrostatics tool trim selected Unealta hidrostatica - taiere selectata - + Hydrostatics tool minimum draft selected [m] Unealta hidrostatica - proiectare minima selectata - + Hydrostatics tool maximum draft selected [m] Unelte hidrostatice - ciorna maxima selectata [m] - + Hydrostatics tool number of points selected Unelte hidrostatice - numarul de puncte selectat [m] @@ -377,6 +545,19 @@ Selectati geometria pentru nava exemplificativa + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volumul de lichid [m^3] - - - - Density [kg / m^3] - Densitate [kg / m ^ 3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Navă @@ -481,79 +652,79 @@ Creează o nouă greutate a navei - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Masă [kg] - + Linear density [kg / m] Densitate liniară [kg / m] - - Area density [kg / m^3] - Densitatea zonei [kg / m^3] - - - + Density [kg / m^3] Densitate [kg / m ^ 3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects Nu s-au găsit forme geometrice în obiectele selectate - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Crează o nouă greutate - + Ship Navă - + Mass Masa - + Linear density Densitate liniară - + Area density Area density - + Density Densitate + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_ru.qm b/src/Mod/Ship/resources/translations/Ship_ru.qm index 99536f05a1b18fce6f1645908d39576860776b6b..77401aeada332b493b18493eb50112dd6396cc1d 100644 GIT binary patch literal 21565 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 Ship - + Ship design Проектирование судна - + Weights Грузы - + True if it is a valid ship instance, False otherwise Истина - если это правильный экземпляр судна, Ложь - в противном случае - + Ship length [m] Длина судна [m] - + Ship breadth [m] Ширина корабля [м] - + Ship draft [m] Осадка судна [m] - + Set of external faces of the ship hull Задать внешние грани корпуса судна - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Осадка - - Trim - Обрезка - - - + Displacement Водоизмещение - + Areas curve tool draft selected [m] Заданное значение осадки при расчёте строевой по ватерлинии [м.] - + Plot the transversal areas curve Диаграмма кривой поперечных зон - + Areas curve tool trim selected [deg] Инструмент обрезка области кривой выбран [град] + + + Trim angle + Trim angle + + + + Number of points + Количество точек + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Количество точек @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Необходимо создать или загрузить геометрию корпуса судна перед использованием этого инструмента - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Объекты судна могут быть созданы в верхней части геометрии корпуса (не найдено моделей среди выделенных объектов) - + Computing hydrostatics Вычисление гидростатики - + Computing external faces Вычисление наружных поверхностей @@ -203,22 +218,22 @@ Любая допустимая основная секция плавательного судна - + Ship objects can only be created on top of hull geometry (no objects selected) Объекты на корабле могут быть созданы только на верхней части корпуса (объекты не выбраны) - + A ship instance must be selected before using this tool (no objects selected) Экземпляр корабля должен быть выбран перед использованием этого средства (объекты не выбраны) - + More than one ship have been selected (the extra ships will be ignored) Были выбраны более чем один корабль (дополнительные корабли будут игнорироваться) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Экземпляр корабля должен быть выбран перед использованием этого инструмента (не подходящий корабль для выбранных объектов) @@ -248,25 +263,130 @@ Модуль диаграмм отключен, инструмент не может отобразить кривые - + Failure detecting external faces from the ship object Сбой обнаружения внешних граней судна - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Мидель-шпангоут - + Create a new ship Задание параметров плавательного судна - + Length Длина - + Breadth Ширина - + Draft Осадка - ship_hydrostatic + ship_gz - - Plot hydrostatics - Расчёт гидростатики + + GZ curve computation + GZ curve computation - - Trim - Обрезка + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Минимальная осадка + + Maximum angle + Maximum angle - - Maximum draft - Максиимальная осадка - - - + Number of points Количество точек - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Расчёт гидростатики + + + + Trim + Обрезка + + + + Minimum draft + Минимальная осадка + + + + Maximum draft + Максиимальная осадка + + + + Number of points + Количество точек + + + Hydrostatics tool trim selected Расчётный угол дифферента - + Hydrostatics tool minimum draft selected [m] Расчётное значение мнимальной осадки [м.] - + Hydrostatics tool maximum draft selected [m] Расчётное значение максимальной осадки [м.] - + Hydrostatics tool number of points selected Расчётное количество точек гидростатики @@ -377,6 +545,19 @@ Выбор геометрии судна из образцов + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Объём жидкости [куб.м] - - - - Density [kg / m^3] - Плотность [кг / куб.м] - - - + Create a new tank Создать новый бак - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Корабль @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Масса [кг] - + Linear density [kg / m] Линейная плотность [кг/м] - - Area density [kg / m^3] - Области плотность [кг/м^3] - - - + Density [kg / m^3] Плотность [кг / куб.м] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Создайте новый вес - + Ship Корабль - + Mass Масса - + Linear density Линейная плотность - + Area density Области плотность - + Density Плотность + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_sk.qm b/src/Mod/Ship/resources/translations/Ship_sk.qm index 86cebf1d4a96f8101153ad743384764b54e94d28..247c4f9ded5ebfed3cb26070d9fd6e55ad77acbe 100644 GIT binary patch literal 20700 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 diff --git a/src/Mod/Ship/resources/translations/Ship_sk.ts b/src/Mod/Ship/resources/translations/Ship_sk.ts index d108bebf1..63adba9c4 100644 --- a/src/Mod/Ship/resources/translations/Ship_sk.ts +++ b/src/Mod/Ship/resources/translations/Ship_sk.ts @@ -4,50 +4,55 @@ Ship - + Ship design Ship design - + Weights Weights - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Ship length [m] - + Ship breadth [m] Ship breadth [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Draft - - Trim - Odrezať - - - + Displacement Displacement - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Počet bodov + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Počet bodov @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Computing hydrostatics - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Main frame - + Create a new ship Create a new ship - + Length Dĺžka - + Breadth Breadth - + Draft Draft - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plot hydrostatics + + GZ curve computation + GZ curve computation - - Trim - Odrezať + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimum draft + + Maximum angle + Maximum angle - - Maximum draft - Maximum draft - - - + Number of points Počet bodov - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plot hydrostatics + + + + Trim + Odrezať + + + + Minimum draft + Minimum draft + + + + Maximum draft + Maximum draft + + + + Number of points + Počet bodov + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Select ship example geometry + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Density [kg / m^3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Ship @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Mass [kg] - + Linear density [kg / m] Linear density [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Density [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Ship - + Mass Mass - + Linear density Linear density - + Area density Area density - + Density Density + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_sl.qm b/src/Mod/Ship/resources/translations/Ship_sl.qm index 1df5713bd92654fb635dc340e24f5143dde4fd06..637ca9c5c6a3cd95cbdb444e5f57fb32cfb8ca2f 100644 GIT binary patch literal 21387 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 delta 1043 zcmX9+ZERCz6n^e!d++US_d&NYyR9Gl>Q=^J_<@sw!{Ll=nNy2OW)Ry!bz2SHBr>oh z1jg((%q|~6w=f_oO7Mrb3jHxQV0E;T{Y)=Z1_NKA$2W%dH7${0%Yu_kf9ANU59>8ErW9cMwI`)bQ$h*zl z?E8b5zzTmR0g-2$ymx?{I`;j?vnf2oP87HSOBQ=~=pDeem-7sF5|NL4GBOP~tGS&g zD4(^B>(5$5!rk2UV}zvvUOMm{u=E_ic7OxQYxz^sa)2M?fB!rKDE105<1Xsd?G&8# z4b-_;@c2)V;t?TnkOUMT6%uprlAxW!`A6shYprnAd5ix0D2>ur!mR5GQ24J{zik1q z@S5mfMh-akh{HErKz>|2nI9+OZtKS%;<%5d&$vb-#1Y&;zWghAuTUCN`^m}(-+nTt}FjXKZVAZ^_|K|%~t zZ&U^Bm!;k#L||Gg#k+4%yipo>{V5>(N9p+etK`rf>DxdH)yGyymzMZwCev~rOAonc z8`?B)f$fqReyb`K?fp+Dd(y?n95Odj-!=2f{f-A}pLj_8cGLtnA z6eLWr(`Z~tlm2l533$mg{eOY;d(-XCg+OkB>VD8^z8d}|K@T2M$FBcMqbXMB*H8nV zF0=X`)s?5xSk+_Bc`DCbP^h}Breh}$Zx07)n+*xe-T)+Jq*-LY0Z4U?hyo|epxMN zv^vW^Ex6jDn=>}D+Vi=e>AE#2YW;-+deAY&=zM9C)&Hp&<@NbTTUjQk6|H(&E2+0? zJ64tGvnzM=dUu1)X;uD}deJi*x#p!LcnczkqLaQ`(19?W*I=i62yY_7s1G6`imXRF tbhH?0TOiW01|n@;?IC-l)!y3H6%N|hx4&A`qIGza+9rRlUgz_P{{cTq8Y%z) diff --git a/src/Mod/Ship/resources/translations/Ship_sl.ts b/src/Mod/Ship/resources/translations/Ship_sl.ts index 9fb35e838..bb502255d 100644 --- a/src/Mod/Ship/resources/translations/Ship_sl.ts +++ b/src/Mod/Ship/resources/translations/Ship_sl.ts @@ -4,50 +4,55 @@ Ship - + Ship design Oblikovanje ladij - + Weights Teže - + True if it is a valid ship instance, False otherwise Prav, če je primerek ladje veljaven, v nasprotnem primeru Napak - + Ship length [m] Dolžin ladje [m] - + Ship breadth [m] Širina ladje [m] - + Ship draft [m] Ugrez ladje [m] - + Set of external faces of the ship hull Niz zunanjih ploskev ladijskega trupa - + Set of weight instances Niz primerkov teže - + Set of tank instances Niz primerkov rezervoarja + + + Set of load conditions + Niz obremenitev + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Ugrez - - Trim - Prireži - - - + Displacement Izpodriv - + Areas curve tool draft selected [m] Izbran ugrez orodja za krivuljo ugreznih površin [m] - + Plot the transversal areas curve Izriši krivulje prečnih ugreznih površin - + Areas curve tool trim selected [deg] Izbrana uravnoteženost orodja za krivuljo ugreznih površin [°] + + + Trim angle + Kot vzd. nagnjenosti + + + + Number of points + Število točk + + + + Areas curve tool number of points + Število točk orodja za krivuljo ugreznih površn + ship_capacity @@ -160,12 +175,12 @@ Izriši prostornostno krivulja rezervoarja (krivulja prostornine v odvisnosti od ravni) - + Plot the tank capacity curve Izriši prostornostno krivuljo rezervoarja - + Number of points Število točk @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Preden uporabite to orodje ustvarite ali naložite geometrijo trupa - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Objekte ladje lahko ustvarite samo na geometriji trupa (med izbranimi objekti ni teles) - + Computing hydrostatics Preračunavam hidrostatiko - + Computing external faces Računanje zunanjih ploskev @@ -203,22 +218,22 @@ Noben veljaven prerez ladje ni bil najden - + Ship objects can only be created on top of hull geometry (no objects selected) Objekte ladje lahko ustvarite samo na geometriji trupa (noben objekt ni bil izbran) - + A ship instance must be selected before using this tool (no objects selected) Preden uporabite to orodje, izberite primerek ladje (noben objekt ni bil izbran) - + More than one ship have been selected (the extra ships will be ignored) Izbrana je bila več kot ena ladja (dodatna plovila bodo prezrta) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Preden uporabite to orodje, izberite primerek ladje (med izbranimi objekti ni veljavne ladje) @@ -248,25 +263,130 @@ Izrisni modul je onemogočen, orodja ne morejo izrisati izhodnih krivulj - + Failure detecting external faces from the ship object Zaznavanje zunanjih ploskev ladje ni uspelo - + A tank instance must be selected before using this tool (no objects selected) Preden uporabite to orodje, izberite primerek rezervoarja (noben objekt ni bil izbran) - + More than one tank have been selected (the extra tanks will be ignored) Izbran je bil več kot en rezervoar (dodatni rezervoarji bodo prezrti) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) Preden uporabite to orodje, izberite primerek rezervoarja (med izbranimi objekti ni veljavnega rezervoarja) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Operacija na prostornini rezervoarja je spodletela. Orodja poizkuša rahlo premakniti položaj proste površine + + + + A loading condition instance must be selected before using this tool (no objects selected) + Preden uporabite to orodje, izberite primerek obremenitve (noben objekt ni bil izbran) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Napačna oznaka ladje (nobenega primerka z oznako '{}' ni bil najdenega)! + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Nejasna oznaka ladje (najdenih {} primerkov z oznako '{}') + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + Izbrana je bila več kot ena obremenitev (dodatne obremenitve bodo prezrte) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + Preden uporabite to orodje, izberite primerek obremenitve (med izbranimi objekti ni veljavne obremenitve) + + + + Too much weight! The ship will never displace water enough + Preveč teže! Ta ladja no bo izpodrinila dovolj vode + + + + Wrong Weight label! (no instances labeled as'{}' found) + Napačna oznaka teže (nobenega primerka z oznako '{}' ni bil najdenega)! + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Nejasna oznaka teže (najdenih {} primerkov z oznako '{}') + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Neveljavna teža (objekt, ki je označen kot '{}', ni teža)! + + + + Wrong Tank label! (no instances labeled as'{}' found) + Napačna oznaka rezervoarja (nobenega primerka z oznako '{}' ni bil najdenega)! + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Nejasna oznaka rezervoarja (najdenih {} primerkov z oznako '{}') + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Neveljaven rezervoar (objekt, ki je označen kot '{}', ni rezervoar)! + + + + Computing capacity curves + Računanje prostornostih krivulj + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Logična operacija je med poizkusom pridobivanja podvodne strani spodletela. Orodje poizkuša operacijo z majhnim premikom položaja proste površine + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: izračun prečnih presekov je spodletel + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: med računanjem izpodriva je bila najdena ničelna prostornina! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: plovne površine ni mogoče izračunati + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: med računanjem plovne površine je bila najdena ničelna površina! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: površine glavnega ogrodja ni mogoče izračunati + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: med računanjem koeficienta površine glavnega ogrodja je bila najdena ničelna površina! + ship_create @@ -296,70 +416,118 @@ Glavno ogrodje - + Create a new ship Ustvari novo ladjo - + Length Dolžina - + Breadth Širina - + Draft Ugrez - ship_hydrostatic + ship_gz - - Plot hydrostatics - Izriši hidrostatiko + + GZ curve computation + Računanje krivulje GZ - - Trim - Prireži + + Plot the GZ curve + Izriši krivuljo GZ - - Minimum draft - Najmanjši ugrez + + Maximum angle + Največji kot - - Maximum draft - Največji ugrez - - - + Number of points Število točk - + + Variable trim + Sprem. vzdolžna nagnjenost + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + Ladja se bo zavrtela na uravnotežen kot vzdolžne nagnjenosti za vsak kot nagiba. To bo znatno podaljšalo čas izračuna + + + + GZ curve tool angle selected [deg] + Izbran kot orodja za krivuljo GZ [°] + + + + GZ curve tool number of points selected + Izbrano število točk orodja za krivuljo GZ [°] + + + + GZ curve tool variable trim angle selection + Izbran spremenljivi kot vzdolžne nagnjenosti orodja za krivuljo GZ [°] + + + + ship_hydrostatic + + + Plot hydrostatics + Izriši hidrostatiko + + + + Trim + Prireži + + + + Minimum draft + Najmanjši ugrez + + + + Maximum draft + Največji ugrez + + + + Number of points + Število točk + + + Hydrostatics tool trim selected Izbrana uravnoteženost orodja za hidrostatiko - + Hydrostatics tool minimum draft selected [m] Orodja za hidrostatiko - izbran najmanjši ugrez [m] - + Hydrostatics tool maximum draft selected [m] Orodja za hidrostatiko - izbran največji ugrez [m] - + Hydrostatics tool number of points selected Orodja za hidrostatiko - izbrano število točk @@ -377,6 +545,19 @@ Izberite primer ladijske geometrije + + ship_loadcondition + + + Create a new loading condition + Ustvari novo obremenitev + + + + Create a new load condition spreadsheet + Ustvari novo preglednico obremenitve + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise Prav, če je primerek rezervoarja veljaven, v nasprotnem primeru Napak - - Volume of fluid [m^3] - Prostornina tekočine [m³] - - - - Density [kg / m^3] - Gostota [kg/m³] - - - + Create a new tank Ustvari nov rezervoar - + Tanks objects can only be created on top of its geometry (no objects selected) Objekte rezervoarja lahko ustvarite samo na njegovi geometriji (noben objekt ni bil izbran) - + No solids found in the selected objects Med izbranimi objekti ni bilo najdenih teles - + There are not ship objects to create weights into them Ni ladij za ustvarjanje teže - + Ship Ladja @@ -481,79 +652,79 @@ Ustvari novo težo ladje - + True if it is a valid weight instance, False otherwise Prav, če je primerek teže veljaven, v nasprotnem primeru Napak - + Mass [kg] Masa [kg] - + Linear density [kg / m] Premočrtna gostota [kg/m] - - Area density [kg / m^3] - Površinska gostota [kg/m^3] - - - + Density [kg / m^3] Gostota [kg/m³] - + Weight objects can only be created on top of its geometry (no objects selected) Objekte teže lahko ustvarite samo na njeni geometriji (noben objekt ni bil izbran) - + No geometrical shapes found in the selected objects Med izbranimi objekti ni bilo najdenih geometrijskih oblik - + Unknow object shapes selected Izbrane neznane oblike objekta - + There are not ship objects to create weights into them Ni ladij za ustvarjanje teže - + Create a new weight Ustvari novo težo - + Ship Ladja - + Mass Masa - + Linear density Premočrtna gostota - + Area density Površinska gostota - + Density Gostota + + + Area density [kg / m^2] + Površinska gostota [kg/m^3] + diff --git a/src/Mod/Ship/resources/translations/Ship_sr.qm b/src/Mod/Ship/resources/translations/Ship_sr.qm index 0ffead3207bec6185ffe724eb87f9994182f3530..2e3388586ba0e3a9285465c6047ca595866ba377 100644 GIT binary patch literal 20805 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 GEBpt3w;-bc diff --git a/src/Mod/Ship/resources/translations/Ship_sr.ts b/src/Mod/Ship/resources/translations/Ship_sr.ts index 47c62013a..a228acbe6 100644 --- a/src/Mod/Ship/resources/translations/Ship_sr.ts +++ b/src/Mod/Ship/resources/translations/Ship_sr.ts @@ -4,50 +4,55 @@ Ship - + Ship design Дизајн брода - + Weights Тежине - + True if it is a valid ship instance, False otherwise Иcтинито ако је важећа брод иcтанца,Лажно у другом cлучају - + Ship length [m] Дужина брода [m] - + Ship breadth [m] Ширина брода [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Cет cпољашњих површи трупа брода - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Цртеж - - Trim - Trim - - - + Displacement Displacement - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Број тачака + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Број тачака @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Прорачунавам хидроcтатику - + Computing external faces Прорачунавам cпољашње површи @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Главни костур - + Create a new ship Направи нови брод - + Length Дужина - + Breadth Ширина - + Draft Цртеж - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plot hydrostatics + + GZ curve computation + GZ curve computation - - Trim - Trim + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimum draft + + Maximum angle + Maximum angle - - Maximum draft - Maximum draft - - - + Number of points Број тачака - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plot hydrostatics + + + + Trim + Trim + + + + Minimum draft + Minimum draft + + + + Maximum draft + Maximum draft + + + + Number of points + Број тачака + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ Select ship example geometry + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Запремина флуида [m^3] - - - - Density [kg / m^3] - Гуcтина [kg / m^3] - - - + Create a new tank Направи нови резервоар - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects Ниcу пронађена чврcта тела у одабраним објектима - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Брод @@ -481,79 +652,79 @@ Направи нови тег брода - + True if it is a valid weight instance, False otherwise Иcтинито ако је важећа тег иcтанца,Лажно у другом cлучају - + Mass [kg] Маcа [kg] - + Linear density [kg / m] Линеарна гуcтина [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Гуcтина [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects Ниcу пронађени геометријcки облици у одабраним објектима - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Направи нови тег - + Ship Брод - + Mass Маcа - + Linear density Линеарна гуcтина - + Area density Area density - + Density Гуcтина + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_sv-SE.qm b/src/Mod/Ship/resources/translations/Ship_sv-SE.qm index d4e947dac59672a31e2d1bf57526265a7379be50..4e904046d7e68b422b3953630d87bdd03729cde6 100644 GIT binary patch literal 20836 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 delta 1057 zcmX9+ZA@Eb6n<{+M|*qw1qBM&y4!Y0fijpyq5?|*$Cl9{)(KMrn+iCTuEc`Nlv#Be z!pAm}J2Y;P@sXG`0+dM663x6Tp<-mO5^8UtMo4tM{zfQ+kKt>Ckth7C($6w zLRA4NAomDEx74qOr9KE_|HA&8VCwACra!aRpVBaj@u!-Ga zBd}p!>^?;eq(frwJGaPREgpUK86Yt#j;+trYQGo1uBoT|NU3;j^G-l}NuR2rLY~|D zngG2w9oL7In}FG?|0Kan1T6Zga~vtqrk@=qWpX|GKMjX~tow1yo0ix+q)fIdnVc&W zSEWop<=fJvqD=B@>ZIp}&k&&-Qd7|`x|JWK{f7&Hh|3~<+HM7`)6yVA3Hmu{CGj3$ zpEN+G)wm`M>Sqoj5HQ64OK?sb{%TJHQryO@|0lH@TYed*fc_WUwdrX$LUujiuns)lAPtKgFHsvy^!FxzDBYl}8Z2tR`8uQKC9Mg{fa3$TN?u@8E@Mffu4SF!)Re+TjiT97phikAbLyV* zSyoxEELW4a1=#H#)F6ab97GUJ*bf Ship - + Ship design Fartygs design - + Weights Vikter - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Fartygslängd [m] - + Ship breadth [m] Fartygets bredd [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Djupgående - - Trim - Trimma - - - + Displacement Deplacement - + Areas curve tool draft selected [m] Area kurvans djupgående verktyg valt [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Antal punkter + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Antal punkter @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Var god skapa eller öppna ett fartygs skrov geometri före - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Farygs objekt kan endast skapas ovanpå toppen av skrovgeometrin (ingen solid funnen vid valda objekt) - + Computing hydrostatics Beräknar hydrostatik - + Computing external faces Beräknar externa ytor @@ -203,22 +218,22 @@ Ingen giltig fartygs sektion funnen - + Ship objects can only be created on top of hull geometry (no objects selected) Fartygsobjekt kan endast skapas ovanpå skrovgeometrin (inget objekt valt) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Huvud spant - + Create a new ship Skapa ett nytt fartyg - + Length Längd - + Breadth Bredd - + Draft Djupgående - ship_hydrostatic + ship_gz - - Plot hydrostatics - Skriv ut hydrostatiken + + GZ curve computation + GZ curve computation - - Trim - Trimma + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Minimum djupgående + + Maximum angle + Maximum angle - - Maximum draft - Maximum djupgående - - - + Number of points Antal punkter - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Skriv ut hydrostatiken + + + + Trim + Trimma + + + + Minimum draft + Minimum djupgående + + + + Maximum draft + Maximum djupgående + + + + Number of points + Antal punkter + + + Hydrostatics tool trim selected Hydrostatikens trim verktyg valt - + Hydrostatics tool minimum draft selected [m] Hydrostatiska verktyget minimum djupgående valt [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatiska verktyget maximum djupgående valt [m] - + Hydrostatics tool number of points selected Hydrostatiska verktyget antal punkter valt [m] @@ -377,6 +545,19 @@ Välj exempelfartygs geometri + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volymen vätska [m^3] - - - - Density [kg / m^3] - Densitet [kg/m^3] - - - + Create a new tank Skapa en ny tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Fartyg @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Massa [kg] - + Linear density [kg / m] Linjär densitet [kg / m] - - Area density [kg / m^3] - Ytdensitet [kg / m ^ 3] - - - + Density [kg / m^3] Densitet [kg/m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Skapa en ny vikt - + Ship Fartyg - + Mass Massa - + Linear density Linjär densitet - + Area density Ytdensitet - + Density Densitet + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_tr.qm b/src/Mod/Ship/resources/translations/Ship_tr.qm index 0573439a7350268db1d2ec11bde401b3af6d90a7..6471cbb2345b43a2c74d3133121c2b67f03cad1e 100644 GIT binary patch literal 20745 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 delta 1046 zcmX9+YfKbZ7(Mgcot@cPSl+OU`#^aupj~RQY7-Divph;kyC$^|TOJXFZd)LvP`ho2 zHN4bhgg%5w!5AB(e})FP)fH>0me$x*`@^P+jcWp}!6>nfCE9+vKW5II`^`D`eCNA; z6U^yd!A++clIQM@4qtNG&hGf)%=Hq0TMMCR639=7a2P<=J5eln0m7+AfOI~JuIq4I z+X7^yp^V!MR=5`egd1#i#X}&$${u(=j<#>Hv-WI2HL)wB?*VD8oM)_q1TS;Nfe7GKxDSs} zJ+_4#vgQGKA#Q$xFymid8vX%T*T}!Lj|0{`7*!1Nm`ej}%;Zx~t@ zm&y4q!=cYZfHGsaaE>BhbHMoGbUP)}VjN$gItGkat0{8kJE_w~oyWW>b?ux5Y>%YA zb~CVQTIxGY2gvo(K+gghERy!smjc$WrOC%vXtaBz@BOvJ4;D+8)>Q(A)23vWgt88q z{5ABQ?=!V)*8q#v^hvA-SbfnHI>7_+HKy5dO2!j0{jKZ)VYzYRE5sj=-|8&{g3gHiSw|d2`>8z25W#d(UbNn) zPL3#W&}dveihk5i2`EbB3Bh?#`KKd=gavc<(@uGF^B+?r=r*67zeN$V=KE#TK(1Xi z_Y*I(KZ#gxYOJr9@oFFYoZ51Ek{nx*S3P diff --git a/src/Mod/Ship/resources/translations/Ship_tr.ts b/src/Mod/Ship/resources/translations/Ship_tr.ts index ffe813d48..d9cff0fef 100644 --- a/src/Mod/Ship/resources/translations/Ship_tr.ts +++ b/src/Mod/Ship/resources/translations/Ship_tr.ts @@ -4,50 +4,55 @@ Ship - + Ship design Ship design - + Weights Weights - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Ship length [m] - + Ship breadth [m] Ship breadth [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Taslak - - Trim - Kırp - - - + Displacement Yerdeğiştirme - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + Nokta sayısı + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points Nokta sayısı @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics Computing hydrostatics - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Ana kare - + Create a new ship Create a new ship - + Length Uzunluk - + Breadth Genişlik - + Draft Taslak - ship_hydrostatic + ship_gz - - Plot hydrostatics - Hidrostatikleri çizdir + + GZ curve computation + GZ curve computation - - Trim - Kırp + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - En az taslak + + Maximum angle + Maximum angle - - Maximum draft - En fazla taslak - - - + Number of points Nokta sayısı - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Hidrostatikleri çizdir + + + + Trim + Kırp + + + + Minimum draft + En az taslak + + + + Maximum draft + En fazla taslak + + + + Number of points + Nokta sayısı + + + Hydrostatics tool trim selected kırpma seçili Hidrostatikler aracı - + Hydrostatics tool minimum draft selected [m] en az taslak seçilmiş [m] Hidrostatikler aracı - + Hydrostatics tool maximum draft selected [m] en fazla taslak seçilmiş [m] Hidrostatikler aracı - + Hydrostatics tool number of points selected nokta sayıları seçilmiş Hidrostatikler aracı @@ -377,6 +545,19 @@ Gemi örneği geometrisini seç + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Density [kg / m^3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Ship @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Mass [kg] - + Linear density [kg / m] Linear density [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Density [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Ship - + Mass Mass - + Linear density Linear density - + Area density Area density - + Density Density + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_uk.qm b/src/Mod/Ship/resources/translations/Ship_uk.qm index abbfb9e9f87fe0a32ab3ef0f0cee4376e25b80e2..8f46222c13a671b2ff2cf1537e6d415e45cfd5f4 100644 GIT binary patch literal 21623 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 z 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 X8F++w3+KGMCh`8_67Ah}Rg3-~GZ)8| delta 1044 zcmX9+e@v8h9Dd$=f84$Ad%pnrAs+bN9lsBe^G*WMb`suXaX^lamBZ0elLF2J#?tCq zSmWlI0FSAB&IyDxSH2~T9F2MMzroY?a<;Jv_A?q`9V6z;fK1aN)aAEQ=6^Nx}Y zq5!yCBQO| zP~oKnoI#=gjuWu)!box#4XzbN>}P3kQ52O8!j0xnsQ=Bd@F27ZFbDMIKax`0wEo4J zzbMiU{f7s~0n-irxz8!`>@mZ}Q_Y~<4FeD99D5B{swi^i7qQhw&SR}&+l~of`6aQl z*#tO_ik*jOfH5F;?YTn&W5xZ?mjX+A#i7N^l+cX$Rj`)$;WBZ`9RLhIDM?3-TvJkT z6aBkKrDpXSVC|LOkIAJd=cV!E93{{oO$<;n`Ce(>_!^LVHHxb)%Iqv9v!X{f+h^$f zoSa!s{H4p};!LXRLh@4s$4Jl#d0TNcu=0Dksoe{N(ql;p@t#Tndw{fG(OXupA6(x znoVyLFXv^()s{huJDqpdMKLgSv_9)C%}^gH~)- z7B+u8Q-Uz=JsD@)y0Z3ZK14+EluN6IX5!7YHlqQ&c_8gFIUK|;|if*Ga9i49@H9W zJ0Q>(9}G3LHf~cw+m-DNt@T@#&5c_;wW>Gp0`s`KF_5KRsElEWqMi@f)%BH$Co0;6 F{{ci`9YFv9 diff --git a/src/Mod/Ship/resources/translations/Ship_uk.ts b/src/Mod/Ship/resources/translations/Ship_uk.ts index 7b1bfdab1..ee279dd1b 100644 --- a/src/Mod/Ship/resources/translations/Ship_uk.ts +++ b/src/Mod/Ship/resources/translations/Ship_uk.ts @@ -4,50 +4,55 @@ Ship - + Ship design Проектування корабля - + Weights Вантажі - + True if it is a valid ship instance, False otherwise Істина, якщо екземпляр корабля правильний, Брехня в іншому випадку - + Ship length [m] Довжина судна [m] - + Ship breadth [m] Ширина судна [m] - + Ship draft [m] Осадка судна [m] - + Set of external faces of the ship hull Задати зовнішні грані корпусу судна - + Set of weight instances Набір екземплярів вантажу - + Set of tank instances Набір екземплярів ємностей + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft Креслення - - Trim - Обрізати - - - + Displacement Водотоннажність - + Areas curve tool draft selected [m] Задане значення осідання при розрахунку стройової по ватерлінії [m] - + Plot the transversal areas curve Діаграма кривої поперечних зон - + Areas curve tool trim selected [deg] Інструмент обрізка області кривої обраний [deg] + + + Trim angle + Trim angle + + + + Number of points + Кількість точок + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Діаграма ємності резервуару (крива рівень-об'єм) - + Plot the tank capacity curve Діаграма ємності резервуару - + Number of points Кількість точок @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Необхідно створити або завантажити геометрію корпусу судна перед використанням цього інструменту - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Об'єкти судна можуть бути створені у верхній частині геометрії корпусу (не знайдено моделей серед виділених об'єктів) - + Computing hydrostatics Обчислення гідростатики - + Computing external faces Обчислення зовнішніх поверхонь @@ -203,22 +218,22 @@ Будь-яка допустима основна секція плавального судна - + Ship objects can only be created on top of hull geometry (no objects selected) Об'єкти на кораблі можуть бути створені тільки на верхній частині корпусу (об'єкти не вибрані) - + A ship instance must be selected before using this tool (no objects selected) Примірник корабля повинен бути обраний перед використанням цього засобу (об'єкти не вибрані) - + More than one ship have been selected (the extra ships will be ignored) Було обрано більше одного корабля (додаткові кораблі будуть ігноруватися) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) Примірник корабля повинен бути обраний перед використанням цього інструменту (не підходящий корабель для обраних об'єктів) @@ -248,25 +263,130 @@ Модуль діаграм відключений, інструмент не може відобразити криві - + Failure detecting external faces from the ship object Не вдалося визначити зовнішні поверхні судна - + A tank instance must be selected before using this tool (no objects selected) Перед використанням цього інструмента потрібно вибрати екземпляр ємності (не обрано жодного об'єкта) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ Мідель-шпангоут - + Create a new ship Створити новий корабель - + Length Довжина - + Breadth Ширина - + Draft Креслення - ship_hydrostatic + ship_gz - - Plot hydrostatics - Діаграма гідростатики + + GZ curve computation + GZ curve computation - - Trim - Обрізати + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - Мінімальна осадка + + Maximum angle + Maximum angle - - Maximum draft - Максимальна осадка - - - + Number of points Кількість точок - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Діаграма гідростатики + + + + Trim + Обрізати + + + + Minimum draft + Мінімальна осадка + + + + Maximum draft + Максимальна осадка + + + + Number of points + Кількість точок + + + Hydrostatics tool trim selected Розрахунковий кут дифферента - + Hydrostatics tool minimum draft selected [m] Розрахункове значення мінімального осідання [m] - + Hydrostatics tool maximum draft selected [m] Розрахункове значення максимального осідання [m] - + Hydrostatics tool number of points selected Розрахункова кількість точок гідростатики @@ -377,6 +545,19 @@ Обрати приклад геометрії судна + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Об'єм рідини [m^3] - - - - Density [kg / m^3] - Щільність [кг / м^3] - - - + Create a new tank Створити нову ємність - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Судно @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Маса [kg] - + Linear density [kg / m] Лінійна щільність [кг / м] - - Area density [kg / m^3] - Поверхнева щільність [кг / м^3] - - - + Density [kg / m^3] Щільність [кг / м^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Створити новий вантаж - + Ship Судно - + Mass Маса - + Linear density Лінійна щільність - + Area density Поверхнева щільність - + Density Щільність + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_zh-CN.qm b/src/Mod/Ship/resources/translations/Ship_zh-CN.qm index 564672e0573c8c380b9de0d9344a4d51f18a99c3..f2013730216391b507a342d98bea5cc1683e115e 100644 GIT binary patch literal 19593 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 delta 1052 zcmX|9e^3-<7=HHl$KBrU?ICxb2X}CHoO&FbP0dj%P$UI3iGU2kj0DpZFrIUG)qzg* zW1XlR0kxS;9SsJOG8?mh_C#q$p=mI3@}JITk{P8&6G_D+ts%>L^Je;E_xbkw_Icmu zdERg50p^Dn)Z&vZ&a=1r_nz~)$DaT2)WuSOeHi?zVIcSg_(1?mEh)^K0)O&vK+H&? zXC=HBo&vlcl(UZmfsI(Z<2+#6l0w&3Y#M(Qa2I1+-zmVDU^1m0fDlcgubMfbZj=E> zlDXA)gF3;$-yQ|{9z#v#0${sic(2e#+m{U!SwX;3X}H(_Dv&YHh6XyQQ3<;yb_K{9 zVYeTl^R&;{UFj=G_y%_R5TSRH6Zd`ttYEn6-7JtZ%pDU~1Du`v3m`z3GfW^iMcmP&?SEIF)EP0z$bI=(tp({G#%ux`@aKR!$N77 z9az#RR25JHS+&BzH9z2V2}d(~sqy#1QQtW6k|}hp7JiH$r~21b;co0c!1Nd^r%0)D z#<+R*H&WhU{NUgyARCNde@T(&6q=qn5ho!I)6hLSN3ZF84Mon3h@Eb7Zv9BywrK*$ zoECS+Eo6XjkQ$gj7JFa2MgkRa_lr*hi~bUa?Z3FNbDRXv+N&9 z@y!xnk^+^)Uwlz23edixL|Q-eDIh^=Evh4aK-$t>0I1npr2`!{iZ&tjGei)7m1fiD z$;n|EUK&mIZCO8@MFK|TEB_I)SIK{LWB~RVOYniys3r1Kf-c{fWo-H~HM(P&FDC=b zM-@vC@%+nEn0s7Fd+BFN;*zp1Onm|lrNQwPYQRk?k#`#CR(_)Noqe66->>Wn4^T7< zR!2T57rU%^d)@~^J=Q~RorJz@O?*ptL3}cW*$M0E-VH$hWCVCf(Q3IpdNCg~YBTax zjZ;(`S3Os|*+esgKo3{iMJL+P3NNkO=-u{UCxRAQH_}Nn w!f5)x`QrLmw6nd{8*B5nMLQ!c-p2OkaFg~{SvM2bgmRx2uUMi#QNC9A7dA^8m;e9( diff --git a/src/Mod/Ship/resources/translations/Ship_zh-CN.ts b/src/Mod/Ship/resources/translations/Ship_zh-CN.ts index 94f128d8b..8aac9a8bb 100644 --- a/src/Mod/Ship/resources/translations/Ship_zh-CN.ts +++ b/src/Mod/Ship/resources/translations/Ship_zh-CN.ts @@ -4,50 +4,55 @@ Ship - + Ship design 船舶设计 - + Weights 重量 - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] Ship length [m] - + Ship breadth [m] Ship breadth [m] - + Ship draft [m] Ship draft [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft 吃水深度 - - Trim - 修剪 - - - + Displacement 位移 - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + 点的数量 + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points 点的数量 @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool 在使用该工具前请创建或加载一个船体几何 - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) 船舶对象只能创建在船体几何之上(选定对象中未发现实体) - + Computing hydrostatics 计算流体静力学 - + Computing external faces 计算外表面 @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ 主框架 - + Create a new ship 创建新的船舶 - + Length 长度 - + Breadth 广度 - + Draft 吃水深度 - ship_hydrostatic + ship_gz - - Plot hydrostatics - 绘制流体静力曲线 + + GZ curve computation + GZ curve computation - - Trim - 修剪 + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - 最小吃水深度 + + Maximum angle + Maximum angle - - Maximum draft - 最大吃水深度 - - - + Number of points 点的数量 - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + 绘制流体静力曲线 + + + + Trim + 修剪 + + + + Minimum draft + 最小吃水深度 + + + + Maximum draft + 最大吃水深度 + + + + Number of points + 点的数量 + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] 流体力学工具最小吃水深度选择[m] - + Hydrostatics tool maximum draft selected [m] 流体力学工具最大吃水深度选择[m] - + Hydrostatics tool number of points selected 流体力学工具点数选择 @@ -377,6 +545,19 @@ 选择船舶示例几何体 + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - Volume of fluid [m^3] - - - - Density [kg / m^3] - Density [kg / m^3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship Ship @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] Mass [kg] - + Linear density [kg / m] Linear density [kg / m] - - Area density [kg / m^3] - Area density [kg / m^3] - - - + Density [kg / m^3] Density [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects No geometrical shapes found in the selected objects - + Unknow object shapes selected Unknow object shapes selected - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship Ship - + Mass Mass - + Linear density Linear density - + Area density Area density - + Density Density + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Ship/resources/translations/Ship_zh-TW.qm b/src/Mod/Ship/resources/translations/Ship_zh-TW.qm index 8096c9c315902b155cf402960877b6f090f52f4c..89a3b0985f105ecac31d756833c996e4545b3bd9 100644 GIT binary patch literal 19803 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 J;h6)x{a?7QM;ZVC delta 1034 zcmX|9ZA?>V7(MO%Xm4-tEmFQMa7$qnTDO^Y%d{*Jl#e(-MjS*PxCk0+tSkd&z-@IQ z8(|bRxw_5{B8oB%(La~1@p4M;9eL43V#N71VCOij;=G{&OQMIE{@7K zP;RaU>`|04F9OaRc&R%E7#rhgTZ!%C&jFcP*d00t7>?^Q#BPAEj-w-07Y%MS11VwM z{m>jKLC^g<25`IdHI;t?Nm=>>E3I^VM?aBS07zc_? zJxTWo2bsRaWn?_e+&)H_bAS~NeF-c(#je}O0J$63)4~dB@DKLhnFK&tNGEx z%PA=(`FYM=eG;(!#*KbR2J9=i(fN1C&^UMHc`9HvaMyDdsDLMq#`n2j9M|Z56JOGq z1f=fatG$#!)*wGH;{eip{76PG3HR_L_Hp7xMCF`gh5uR`n(z7n#CK+<@a%)7WX25@<9{3{o-$bEe;w07Wxp zNpX>LVT+}3|3O-!jh16Jjf`%vjDAhKAh_eGtg@W%eFboT2G^>6qCYOy&<9g`f|SMp(a~nFDNr1VMPi**P_PLBG{S?1|3#APT6VSv swkj>#lx;iP{msgzK%=KYEi5l(Y~d~H#R`Y|NqLI8P?4&|%DcIL0Oa-^*Z=?k diff --git a/src/Mod/Ship/resources/translations/Ship_zh-TW.ts b/src/Mod/Ship/resources/translations/Ship_zh-TW.ts index 6a8ace752..5203ac705 100644 --- a/src/Mod/Ship/resources/translations/Ship_zh-TW.ts +++ b/src/Mod/Ship/resources/translations/Ship_zh-TW.ts @@ -4,50 +4,55 @@ Ship - + Ship design 船舶設計 - + Weights 重量 - + True if it is a valid ship instance, False otherwise True if it is a valid ship instance, False otherwise - + Ship length [m] 船舶長度 [m] - + Ship breadth [m] 船舶廣度 [m] - + Ship draft [m] 船舶吃水 [m] - + Set of external faces of the ship hull Set of external faces of the ship hull - + Set of weight instances Set of weight instances - + Set of tank instances Set of tank instances + + + Set of load conditions + Set of load conditions + Ship_AreasCurve @@ -117,35 +122,45 @@ ship_areas - + Draft 吃水 - - Trim - 修剪 - - - + Displacement 位移 - + Areas curve tool draft selected [m] Areas curve tool draft selected [m] - + Plot the transversal areas curve Plot the transversal areas curve - + Areas curve tool trim selected [deg] Areas curve tool trim selected [deg] + + + Trim angle + Trim angle + + + + Number of points + 點數 + + + + Areas curve tool number of points + Areas curve tool number of points + ship_capacity @@ -160,12 +175,12 @@ Plot the tank capacity curve (level-volume curve) - + Plot the tank capacity curve Plot the tank capacity curve - + Number of points 點數 @@ -173,22 +188,22 @@ ship_console - + Please create or load a ship hull geometry before using this tool Please create or load a ship hull geometry before using this tool - + Ship objects can only be created on top of hull geometry (no solid found at selected objects) Ship objects can only be created on top of hull geometry (no solid found at selected objects) - + Computing hydrostatics 運算流體靜力學 - + Computing external faces Computing external faces @@ -203,22 +218,22 @@ Any valid ship section found - + Ship objects can only be created on top of hull geometry (no objects selected) Ship objects can only be created on top of hull geometry (no objects selected) - + A ship instance must be selected before using this tool (no objects selected) A ship instance must be selected before using this tool (no objects selected) - + More than one ship have been selected (the extra ships will be ignored) More than one ship have been selected (the extra ships will be ignored) - + A ship instance must be selected before using this tool (no valid ship found at the selected objects) A ship instance must be selected before using this tool (no valid ship found at the selected objects) @@ -248,25 +263,130 @@ Plot module is disabled, tools cannot graph output curves - + Failure detecting external faces from the ship object Failure detecting external faces from the ship object - + A tank instance must be selected before using this tool (no objects selected) A tank instance must be selected before using this tool (no objects selected) - + More than one tank have been selected (the extra tanks will be ignored) More than one tank have been selected (the extra tanks will be ignored) - + A tank instance must be selected before using this tool (no valid tank found at the selected objects) A tank instance must be selected before using this tool (no valid tank found at the selected objects) + + + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + Tank volume operation failed. The tool is retrying that slightly moving the free surface position + + + + A loading condition instance must be selected before using this tool (no objects selected) + A loading condition instance must be selected before using this tool (no objects selected) + + + + Wrong Ship label! (no instances labeled as'{}' found) + Wrong Ship label! (no instances labeled as'{}' found) + + + + Ambiguous Ship label! ({} instances labeled as'{}' found) + Ambiguous Ship label! ({} instances labeled as'{}' found) + + + + More than one loading condition have been selected (the extra loading conditions will be ignored) + More than one loading condition have been selected (the extra loading conditions will be ignored) + + + + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + A loading condition instance must be selected before using this tool (no valid loading condition found at the selected objects) + + + + Too much weight! The ship will never displace water enough + Too much weight! The ship will never displace water enough + + + + Wrong Weight label! (no instances labeled as'{}' found) + Wrong Weight label! (no instances labeled as'{}' found) + + + + Ambiguous Weight label! ({} instances labeled as'{}' found) + Ambiguous Weight label! ({} instances labeled as'{}' found) + + + + Invalid Weight! (the object labeled as'{}' is not a weight) + Invalid Weight! (the object labeled as'{}' is not a weight) + + + + Wrong Tank label! (no instances labeled as'{}' found) + Wrong Tank label! (no instances labeled as'{}' found) + + + + Ambiguous Tank label! ({} instances labeled as'{}' found) + Ambiguous Tank label! ({} instances labeled as'{}' found) + + + + Invalid Tank! (the object labeled as'{}' is not a tank) + Invalid Tank! (the object labeled as'{}' is not a tank) + + + + Computing capacity curves + Computing capacity curves + + + + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + Boolean operation failed when trying to get the underwater side. The tool is retrying such operation slightly moving the free surface position + + + + Part.OCCError: Transversal area computation failed + Part.OCCError: Transversal area computation failed + + + + ZeroDivisionError: Null volume found during the displacement computation! + ZeroDivisionError: Null volume found during the displacement computation! + + + + Part.OCCError: Floating area cannot be computed + Part.OCCError: Floating area cannot be computed + + + + ZeroDivisionError: Null area found during the floating area computation! + ZeroDivisionError: Null area found during the floating area computation! + + + + Part.OCCError: Main frame area cannot be computed + Part.OCCError: Main frame area cannot be computed + + + + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ZeroDivisionError: Null area found during the main frame area coefficient computation! + ship_create @@ -296,70 +416,118 @@ 主框架 - + Create a new ship 建立新的船舶 - + Length 長度 - + Breadth 寬度 - + Draft 吃水 - ship_hydrostatic + ship_gz - - Plot hydrostatics - Plot hydrostatics + + GZ curve computation + GZ curve computation - - Trim - 修剪 + + Plot the GZ curve + Plot the GZ curve - - Minimum draft - 最小吃水量 + + Maximum angle + Maximum angle - - Maximum draft - 最大吃水量 - - - + Number of points 點數 - + + Variable trim + Variable trim + + + + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + The ship will be rotated to the equilibrium trim angle for each roll angle. It will significantly increase the required computing time + + + + GZ curve tool angle selected [deg] + GZ curve tool angle selected [deg] + + + + GZ curve tool number of points selected + GZ curve tool number of points selected + + + + GZ curve tool variable trim angle selection + GZ curve tool variable trim angle selection + + + + ship_hydrostatic + + + Plot hydrostatics + Plot hydrostatics + + + + Trim + 修剪 + + + + Minimum draft + 最小吃水量 + + + + Maximum draft + 最大吃水量 + + + + Number of points + 點數 + + + Hydrostatics tool trim selected Hydrostatics tool trim selected - + Hydrostatics tool minimum draft selected [m] Hydrostatics tool minimum draft selected [m] - + Hydrostatics tool maximum draft selected [m] Hydrostatics tool maximum draft selected [m] - + Hydrostatics tool number of points selected Hydrostatics tool number of points selected @@ -377,6 +545,19 @@ 選擇船舶幾何範例 + + ship_loadcondition + + + Create a new loading condition + Create a new loading condition + + + + Create a new load condition spreadsheet + Create a new load condition spreadsheet + + ship_outline @@ -433,42 +614,32 @@ ship_tank - + True if it is a valid tank instance, False otherwise True if it is a valid tank instance, False otherwise - - Volume of fluid [m^3] - 流體體積 [m^3] - - - - Density [kg / m^3] - 密度 [kg / m^3] - - - + Create a new tank Create a new tank - + Tanks objects can only be created on top of its geometry (no objects selected) Tanks objects can only be created on top of its geometry (no objects selected) - + No solids found in the selected objects No solids found in the selected objects - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Ship 船舶 @@ -481,79 +652,79 @@ Create a new ship weight - + True if it is a valid weight instance, False otherwise True if it is a valid weight instance, False otherwise - + Mass [kg] 質量 [kg] - + Linear density [kg / m] 線密度 [kg / m] - - Area density [kg / m^3] - 面密度 [kg / m^3] - - - + Density [kg / m^3] 密度 [kg / m^3] - + Weight objects can only be created on top of its geometry (no objects selected) Weight objects can only be created on top of its geometry (no objects selected) - + No geometrical shapes found in the selected objects 無幾何造型於所選物件中 - + Unknow object shapes selected 選取了未知物件造型 - + There are not ship objects to create weights into them There are not ship objects to create weights into them - + Create a new weight Create a new weight - + Ship 船舶 - + Mass 質量 - + Linear density 線密度 - + Area density 面密度 - + Density 密度 + + + Area density [kg / m^2] + Area density [kg / m^2] + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.qm index 074d5c9660c15a9e3349bfe77669ce0311f8b59e..4a994fcdf7872c472d682f231d83898661b9a04b 100644 GIT binary patch delta 4809 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 gH9Ld$nn80GZyf>Hq)$ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts index ea6462b6b..81a87c0f1 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts @@ -1051,7 +1051,7 @@ Mirror sketch - Ozrcadlit náčrt + Zrcadlit náčrt @@ -2243,7 +2243,7 @@ Přijatelné kombinace: dvě křivky; koncový bod a křivka; dva koncové body; Center sketch - Center sketch + Střed náčrtu @@ -2253,7 +2253,7 @@ Přijatelné kombinace: dvě křivky; koncový bod a křivka; dva koncové body; Swap constraint names - Swap constraint names + Prohodit názvy vazeb @@ -2348,7 +2348,7 @@ Přijatelné kombinace: dvě křivky; koncový bod a křivka; dva koncové body; Name (optional) - Name (optional) + Název (volitelný) @@ -3138,12 +3138,12 @@ Použijte nástroj Kontrola náčrtu. Do you want to open the sketch validation tool? - Do you want to open the sketch validation tool? + Chcete otevřít nástroje pro ověření náčrtu? The sketch is invalid and cannot be edited. - The sketch is invalid and cannot be edited. + Náčrt není platný a nemůže být upravován. @@ -3675,17 +3675,17 @@ Přeješ si odstranit podporu průčelí? Solve - Solve + Řešit Resets all solver values to their default values - Resets all solver values to their default values + Obnoví všechny hodnoty řešiče do výchozí pozice Restore Defaults - Restore Defaults + Výchozí nastavení diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts index f1cdc890c..f5acebd4a 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts @@ -3506,12 +3506,12 @@ Voulez-vous la détacher de son support ? LeastNorm-FullPivLU - LeastNorm-FullPivLU + LeastNorm-FullPivLU LeastNorm-LDLT - LeastNorm-LDLT + LeastNorm-LDLT @@ -3571,12 +3571,12 @@ Voulez-vous la détacher de son support ? Eigen Dense QR - Eigen Dense QR + Eigen Dense QR Eigen Sparse QR - Eigen Sparse QR + Eigen Sparse QR diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.qm index dd05c62f4e2aad32429666160ba8e1486e026045..9badbac1ca8b081fcf355f9249aa7b4b7fdb4703 100644 GIT binary patch delta 10307 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 A?*IS* delta 8944 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 rqnrHk0ZqPC Close Shape - Close Shape + Zárja be az alakzatot Produce closed shape by Link end point of element with next elements' starting point - Produce closed shape by Link end point of element with next elements' starting point + Zárt alakzatot hoz létre az elem végpontjával összekötve a következő elem kiindulási pontját @@ -121,27 +121,27 @@ Create a conic - Create a conic + Létrehoz egy kúp ívet Create a conic in the sketch - Create a conic in the sketch + Létrehoz egy kúp ívet a vázlaton Ellipse by center, major radius, point - Ellipse by center, major radius, point + Ellipszis központtal, fő sugárral, ponttal Ellipse by Periapsis, apoapsis, minor radius - Ellipse by Periapsis, apoapsis, minor radius + Ellipszis periapsis-al, apoapsis-al, alárendelt sugárral Arc of ellipse by center, major radius, endpoints - Arc of ellipse by center, major radius, endpoints + Ellipszis ív központtal, fő sugárral, végpontokkal @@ -154,42 +154,42 @@ Create regular polygon - Create regular polygon + Szabályos sokszög létrehozása Create an regular polygon in the sketcher - Create an regular polygon in the sketcher + Szabályos sokszög létrehozása a vázlatban Triangle - Triangle + Háromszög Square - Square + Négyzet Pentagon - Pentagon + Ötszög Hexagon - Hexagon + Hatszög Heptagon - Heptagon + Hétszög Octagon - Octagon + Nyolcszög @@ -202,12 +202,12 @@ Connect Edges - Connect Edges + Élek csatlakoztatása Link end point of element with next elements' starting point - Link end point of element with next elements' starting point + Elem végpontjával kösse össze a következő elem kiindulási pontját @@ -354,12 +354,12 @@ Constrain InternalAlignment - Constrain InternalAlignment + BelsőIgazítás kényszerítése Constrains an element to be aligned with the internal geometry of another element - Constrains an element to be aligned with the internal geometry of another element + Egy elemet kényszerít egy másik elem belső geometriájához kényszerítéssel @@ -466,12 +466,12 @@ Constrain refraction (Snell's law') - Constrain refraction (Snell's law') + Kényszerítés törésmutatója (Snellius–Descartes-törvény) Create a refraction law (Snell's law) constraint between two endpoints of rays and an edge as an interface. - Create a refraction law (Snell's law) constraint between two endpoints of rays and an edge as an interface. + Létrehoz egy törésmutató törvény (Snellius–Descartes-törvény) kényszerítést két végpont és egy él, mint interfész, közt. @@ -622,12 +622,12 @@ Create an arc of ellipse - Create an arc of ellipse + Létrehoz egy ellipszis ívet Create an arc of ellipse in the sketch - Create an arc of ellipse in the sketch + Létrehoz egy ellipszis ívet a vázlaton @@ -658,12 +658,12 @@ Create draft line - Vázlatvonal rajzolása + Tervvonal rajzolása Create a draft line in the sketch - Vázlatvonal rajzolása a vázlaton + Tervvonal rajzolása a vázlaton @@ -676,12 +676,12 @@ Create ellipse by 3 points - Create ellipse by 3 points + Létrehoz egy 3 pontos ellipszist Create an ellipse by 3 points in the sketch - Create an ellipse by 3 points in the sketch + Létrehoz egy 3 pontos ellipszist a vázlaton @@ -694,12 +694,12 @@ Create ellipse by center - Create ellipse by center + Ellipszis létrehozása középponttal Create an ellipse by center in the sketch - Create an ellipse by center in the sketch + Ellipszis létrehozása középponttal a vázlaton @@ -734,12 +734,12 @@ Create heptagon - Create heptagon + Hétszög létrehozása Create a heptagon in the sketch - Create a heptagon in the sketch + Egy hétszög létrehozása a vázlaton @@ -752,12 +752,12 @@ Create hexagon - Create hexagon + Hatszög létrehozása Create a hexagon in the sketch - Create a hexagon in the sketch + Egy hatszög létrehozása a vázlaton @@ -788,12 +788,12 @@ Create octagon - Create octagon + Nyolcszög létrehozása Create an octagon in the sketch - Create an octagon in the sketch + Egy nyolcszög létrehozása a vázlaton @@ -806,12 +806,12 @@ Create pentagon - Create pentagon + Ötszög létrehozása Create a pentagon in the sketch - Create a pentagon in the sketch + Egy ötszög létrehozása a vázlaton @@ -900,12 +900,12 @@ Create square - Create square + Négyzet létrehozása Create a square in the sketch - Create a square in the sketch + Egy négyszög létrehozása a vázlaton @@ -936,12 +936,12 @@ Create equilateral triangle - Create equilateral triangle + Egyenlő oldalú háromszög létrehozása Create an equilateral triangle in the sketch - Create an equilateral triangle in the sketch + Egyenlő oldalú háromszög létrehozása a vázlaton @@ -959,7 +959,7 @@ Edit the selected sketch - Edit the selected sketch + Kijelölt vázlat szerkesztése @@ -1027,7 +1027,7 @@ Merge sketches - Merge sketches + Vázlatok egyesítése @@ -1037,7 +1037,7 @@ Select at least two sketches, please. - Select at least two sketches, please. + Kérjük válasszon ki legalább két vázlatot. @@ -1051,7 +1051,7 @@ Mirror sketch - Mirror sketch + Vázlat tükrözés @@ -1061,7 +1061,7 @@ Select one or more sketches, please. - Select one or more sketches, please. + Válasszon egy vagy több vázlatol, legyen szíves. @@ -1111,12 +1111,12 @@ Rectangular Array - Rectangular Array + Téglalap alakú tömb Creates an rectangular array pattern of the geometry taking as reference the last selected point - Creates an rectangular array pattern of the geometry taking as reference the last selected point + Létrehoz egy téglalap alakú tömb mintát a geometriáról, az utolsó kijelölt referenciapontot figyelembe véve @@ -1147,12 +1147,12 @@ Show/hide internal geometry - Show/hide internal geometry + Belső geometria megjelenítése/elrejtése Show all internal geometry / hide unused internal geometry - Show all internal geometry / hide unused internal geometry + Minden belső geometria megjelenítése / a fel nem használt belső geometriája elrejtése @@ -1166,7 +1166,7 @@ Select Conflicting Constraints - Select Conflicting Constraints + Jelölje ki az egymásnak ellentmondó kényszerítéseket @@ -1179,12 +1179,12 @@ Select Constraints - Select Constraints + Jelölje ki a kényszerítéseket Select the constraints associated to the selected elements - Select the constraints associated to the selected elements + Válassza ki a kijelölt elemekhez kapcsolódó kényszerítéseket @@ -1198,7 +1198,7 @@ Select Elements associated with constraints - Select Elements associated with constraints + Kényszerítéssel kapcsolatos elemek kijelölése @@ -1211,12 +1211,12 @@ Select Horizontal Axis - Select Horizontal Axis + Jelölje a vízszintes tengelyt Select the horizontal axis - Select the horizontal axis + Jelölje ki a vízszintes tengelyt @@ -1229,12 +1229,12 @@ Select Origin - Select Origin + Válassza ki a kezdetét Select the origin point - Select the origin point + Válassza ki a kezdőpontot @@ -1248,7 +1248,7 @@ Select Redundant Constraints - Select Redundant Constraints + Válassza ki a felesleges kényszerítéseket @@ -1261,12 +1261,12 @@ Select Vertical Axis - Select Vertical Axis + Függőleges tengely választása Select the vertical axis - Select the vertical axis + Függőleges tengely kiválasztása @@ -1279,12 +1279,12 @@ Symmetry - Symmetry + Szimmetria Creates symmetric geometry with respect to the last selected line or point - Creates symmetric geometry with respect to the last selected line or point + Létrehozza az utolsó kijelölt vonal vagy pont geometriai szimmetriáját @@ -1297,12 +1297,12 @@ Toggle construction geometry - Toggle construction geometry + Építési geometria átkapcsolása Toggles the toolbar or selected geometry to/from construction mode - Toggles the toolbar or selected geometry to/from construction mode + Építési módból/-ba váltja az eszköztárat vagy a kijelölt geometriát Toggle construction line @@ -1323,7 +1323,7 @@ Toggle reference/driving constraint - Toggle reference/driving constraint + Referencia/megvezetési kényszerítés ki-/ bekapcsolása @@ -2685,7 +2685,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Invalid constraints - Invalid constraints + Érvénytelen illesztés @@ -3087,7 +3087,7 @@ However, no constraints linking to the endpoints were found. Disable - Disable + Letilt @@ -3105,7 +3105,7 @@ However, no constraints linking to the endpoints were found. Invalid constraints - Invalid constraints + Érvénytelen illesztés @@ -3113,7 +3113,7 @@ However, no constraints linking to the endpoints were found. Invalid sketch - Invalid sketch + Érvénytelen vázlat The sketch is invalid and cannot be edited. @@ -3139,12 +3139,12 @@ Use the sketch validation tool. Do you want to open the sketch validation tool? - Do you want to open the sketch validation tool? + Szeretné megnyitni a vázlat érvényesítés eszközt? The sketch is invalid and cannot be edited. - The sketch is invalid and cannot be edited. + A vázlat érvénytelen, és nem szerkeszthető. @@ -3174,24 +3174,24 @@ Use the sketch validation tool. Over-constrained sketch - Over-constrained sketch + Túl sok illesztés tartalmazó vázlat (click to select) - (click to select) + (kattintás a kijelöléshez) Sketch contains conflicting constraints - Sketch contains conflicting constraints + Vázlat szabálytalan illesztéseket tartalmaz Sketch contains redundant constraints - Sketch contains redundant constraints + A vázlat felesleges illesztéseket tartalmaz Over-constrained sketch @@ -3546,17 +3546,17 @@ Le akarja választani a támogatási felületről? Param1 - Param1 + Param1 Param2 - Param2 + Param2 Param3 - Param3 + Param3 @@ -3586,37 +3586,37 @@ Le akarja választani a támogatási felületről? 1E-13 - 1E-13 + 1E-13 Solving algorithm used for determination of Redundant constraints - Solving algorithm used for determination of Redundant constraints + A felesleges kényszerítések meghatározására használt megoldó algoritmus Redundant Solver: - Redundant Solver: + Feleslegesség megoldó: Maximum number of iterations of the solver used for determination of Redundant constraints - Maximum number of iterations of the solver used for determination of Redundant constraints + A felesleges kényszerítések meghatározására használt megoldó maximum ismétléseinek száma Red. Max Iterations: - Red. Max Iterations: + Felesleges ismétlődések maximuma: If selected, the Maximum iterations value for the redundant algorithm is multiplied by the sketch size - If selected, the Maximum iterations value for the redundant algorithm is multiplied by the sketch size + Kiválasztás esetén, a feleslegesség algoritmus maximum ismétlődések értéke összeszorzásra kerül a vázlat mérettel Red. Sketch size multiplier: - Red. Sketch size multiplier: + Felesleges vázlat méret szorzó: @@ -3626,27 +3626,27 @@ Le akarja választani a támogatási felületről? Red. Convergence - Red. Convergence + Feleslegesség hasonlító 1E-10 - 1E-10 + 1E-10 Red. Param1 - Red. Param1 + Feleslegesség Param1 Red. Param2 - Red. Param2 + Feleslegesség Param2 Red. Param3 - Red. Param3 + Feleslegesség Param3 @@ -3671,22 +3671,22 @@ Le akarja választani a támogatási felületről? Iteration Level - Iteration Level + Ismétlődés foka Solve - Solve + Megoldás Resets all solver values to their default values - Resets all solver values to their default values + Alaphelyzetbe állítja a megoldó értékeit az alapértelmezett értékekre Restore Defaults - Restore Defaults + Alapértékek visszaállítása @@ -3704,7 +3704,7 @@ Le akarja választani a támogatási felületről? Sketcher tools - Sketcher tools + Vázlatkészítő eszközök Sketcher geoms diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.qm index a85f9be77411080c79f73199a1fbf5cc3488c07d..9db5cb9cff4c56448db6a89e0b4398b90641298e 100644 GIT binary patch delta 6489 zcmZ{o30O_r+rZy-_TFdS=b$KQE+iUNh6p8Ps7%oyNrgyV$~+u|$apQpy@n`PrpS?u zrPMXto6J+Du8^^0Dw6L#XZQEN-}gM9p2x4X_FC^+>z&rS`g5`P$`bK5-2$Sq*b3~`{wTN|u(#I$Y3C)->NkOQ z%LEQr3k*L2oU<F;XJVQ_7Z39ELjt8LEVPwiN z+~{%`l~WAF+7?ES8;OjA(1ghVZ#P0%bSaRyI}pC_B@mZ+Fh-mP#6|_N{;mM;tzqKx zTL2%vKyqsz4S@VN*f=~GV3#pu8KA1VWWyd86+rPl^|1u4 z0h+6>22O5J0g;yBxe35+8~97S5r_qWYa&~KGFQ0i@Eeer>ri=o6Tqal&@`F?n6!tc z!*u|XbA&mlNd{QoL?k6z0Oys&xhWgKy@?FkiZ*vnBk>*ayWM*-E%^#S_B}E~wgcdv zTwql(S+d^|Kv_*z954hheL_|=plW^JkX?QW0C$rFR<$IV`Llp1%>;JoNRC&c2Hf_O z(`|OI1y~(SE=bYg5;l-anxz1p!|5TBh2|u={5vXKx>2B_PM~VDz!uL0w(23!;HbdX zBLo`F5ZHEuz;>1bO*aWNUn|h!wLmK`fj096YHZI7zjR;(+64;i+)`kdaRMDK2y~hz z(D|c4*I@$P;sm-M6XdDo9=t172$;%jY(J!gwU4uD}Pb42c!~pzLNxoj`0q~}Wh}+Q~U_gpU z`mr2HprOd{1&)8=BMN`Ppszg;#jHsJ;u$Q8(>$pM;=VvMmFW*qbX_#(T6fHWZ$(QV ztiYTZF4{7FGLY_}qP$(>feaijIx!G^zdse7F2-P7nJ7A6gn}#{ib`I+0(f*zpp{+KYszc5|490fAy1mk!g^WB|OjEgQI+l*jb{B-<{anU7Un@YyJ7sl4!BaDwO z|F!SJ3~l=qAaWivLf7svi;3pn0qmDC(bw|;9&TV_bM1h*ZDl6iS&0W7t`UCuG@F@H zJrdJ}Ka*(W08lxINu1UiNW>E+={yPuSW_hA5!1K5nT_UJ1?Z1x%SA(I2_ z!7h710~KTRzd)so%`46a64HS^{suF9FKafx4ik2dR&0^+34no<*}qfKS2_%0%Q{2@ zoUCQ9O&bTqBZR%1i&xqEdiKF;Zvbu~f#2x`AH5eKz~DU@Z{SMeLhHtpMtm zu^(0@poxNY#P}axCv+r&z-z|r*L<9KEt>sy-wnu6%6@-p1yJ&VllH(92V`;brv|9{ z=bS?(+ImC)=j=j&#MUE4KqmMj8RQnOPh1v;cNW*z0!`ZII5&95Cx9Ovxgn?;7VlcM~3IK8>+-iS! zJU|AwRuheJIMkQ>wXrLZ_ylf~HQFYsf%`*uQu`!sZyy`%&*idDpf{_YbNd&n0QgVb zp=DJ7j^26_@6}vR##(@zXSl=nZsNw~bGhpnfTzp2+(K(0LvC`pk4K=K8t!a2yhBIL z;|lC?+_xhh+%8b;jXex#z@(VfJKgEc_9&Jr6~6aeXc zOWfLJDZo~ZMr;~+3}Bj>*g7l)FXe;cj{D7lh}wu9w)F#;l_}PTiFK~HSHH^u&)#iI=kfmq%a$Mt&;aB;mj!4gyWhZ*AJF)YB0+2WaxccAU<#B;u) zhRS`#^BVjyg})Imte*>{lg3p{hoLhS>=JJ(>JMOZS-d%yMb#_B+cOpdoEatFV}iEq zaZ|i^{ZT9@RO0M2ab*? zG6G=yElG=GB7l#JBnFSr2}!ENcz7VjzjlGdsStf2a+$=Z7s7))7GTUJX_!?B#=rWmbkgRfSX{1@##tq! z>QvI{pV248Zqj+mo|w5L(goYA06Ygs7v4jYtQsR--18X_hvU*E|JY-AO_VO5wh?RQ z{?d(`@MM|aq`T`D0%`F@nt84(n&^|jt~aDv`|#FW=qEk8|0&kcPo;SaG@$^Ym!+qB ztw7bbm!6GA=QGTZmbjwoeoc{HdglWW9VGoLM+I=eKw8m&;iYzwJ{t592!BReIT9Cs z-B((52~Re5q_l?30Mc`(wD#E*fTMZRFC2c~YAdZDxCsyHCjIddQ+2ofGV91}eDbuF zxoB!}C+D8adM?TVxD+qzb;TH9N4czb$M%@>)v|~#j{x>1$s#JE02X=5;*P(;T6v2s zDFMI#B9$fYp9U~DRyOzk7l7&!vgP)Jfb_7F(Xs@*mW^avmbJy(bdPMCK^Z`+2eOjE zCxNutC(vn?Omkyw3ZAG!R<(XDE^H}#Rho~PY`Lsvnm6A65?O8GD@?6xWFLyIV6m>2 zeQY=gFx^Z~;?gAhRA-JEua&HE2+C3U3Uo4(JKLjX+f9)7))n^yJIj09qY3@C$b0W8 z1?byVKIk0w*Tib%0U753zGle-J+v6dGv(nSsJfwxqhYQ@RfLttSTF7@WI4`h4zAG#Q zpFx~__t*XaW)bo%o#y6iLgoANb^!e4BF~E}z!%+dd2vchfD1YDYmc&k4EL8`clrmP zA3fv`RzC$Y@rV3nmrN``F3Mm1fhK5UAkf%D{zcbs|EK)Rc@(^)R^Iqz7`~S(6tX$7 z=&aES`SeTZQ{IZ!Ht1_UZxwx%-7)@0N)>}Aq%U%D%LQc&?heFNrLhfYb~c5t=PNbEWZ4nDh^Dk0x~R7abYRGWv8@N zlw}xT!4M`eC`obUyDg9bFBR7}qt6s76*nXpX0n5d`@PV{F-D4teYpV3|5iM*90)LE zr{dA44FI2SE8eY|gHPbsiucFxpvR*Wb-S8$_rF}xWbFvB>6B8XdxD0IQnopad5O8B z>}Z2wbFV_+vqQ?xY-=o^2MY99taN;iVW(cM>?*;c)v~kFt2LgubdS>4ekTy4PDnw*c>msP5UdyF4F7+82woJOZPkggYU|@bI}xhh;m_T z45Q%9%9J1b@o{aV+(=5WKKNC+iR}lFQlZ?Y%WwxiDYKR*VWs1#JhMCieI-+Q&I8A_ z7^^%txjjaWqq6ARc_5S9Doe9Xfpp%WEUnE%pINHB*ofavJ1K8#bg%tdUuDG%%mYq` z^dvqfl@(=Y@J=vOK1xPg9h#!7s#0Ot-BG?+hk0OQmhyWWT!`^kem~HJZ{B?ZyX5oC zK@&99d%o3UG)=!=e7kfs4gJAem7_03IrBEIcu@Zxyk4{SEqIOomuF4bu?OIOw7};< zynSEHP$T1c&oqjE_h`v`*(Ttfu!ZkuQ3^02j`w?mCm-60AMpY=Hl>me5#jgUg?wmE z6Q8t3BXd#BmU_(Ob|Pl z@YN+ZP(|beg&8_Q)My)p?4lYNb(KjK+zZJylm0nxm6u zt15~I;a`9}RS*2`W3^kYdh4D8kTz2FzQPz&>@iiH788=6R`nwd!_|Lw}ldXZ3HJ zTru@()LE@>q7w$Gj~k#f`9`X%`l1FWd{@8zcmwCV2n=dcf36J1CtHeIufcf-YUNT5P{!m_Z#|C+D$i~aX}-MFwpm&qtvHo}759^8&b4sNNN ztz9yBkd$=CZU=o+Ir5{3cu+FBGd9hs|LAwiWkipJDyfH83#tz3 zfP)m;OCdc7=}Va~cby12DC{vxun*TsFw{;A=XC;SL-um(G@JQq=}PS>&7eSxG^&A z=1HF!;z-xTo6-Fjd72mRgYt!zlJes$wSA{{HYCn8>SEjU%+90@T~{KfnTwYaJGyF# zonFM~CHovm4kbq-QG_x*GLZPB*8~umHs^?1MB-_|(J1}NT(p>V?f)T zb)%23{O6k?{d(;`n^MqyXM2(zI_=Q4rBWJrRY}+NmeY0xVLv6WEErGH^dod@stf=7 zWkF#ey;CH}ttoW;Im6|gH<_)UvF6T>4f?sms3O~+{acH?sQioxU31Qu%8GyL zlJ+S+Nn)C%7*qT6#&kxBE!|pVsGWU&0?~_FTWU#-OI12I)M>wGDKDZKmrT+>MGym; ze4!;hQ;O#)k!!bJkcjB+^M=%Nf|#x^m(n}OTcnrFB_{f>A1`Tj^Q>uH(SH@)@V5uu z`?vM~v7$n&DH|s&zP{X$^5rH!&*53_NgGa?pm^8+Z0L5moY1!YRkZf13H=j&|VTRMwmmH%s#hBsCdwA8MfR{D|YWkZQVd;2EW znoQOY)|v17%U-(3P*R^)fqWW_z{s(L7>I?LG`G6_a7ulo^#u2SDgw}c@zX)w|zy!}P-uRg6wLpMV@ZfTqJi9B&9UDCJnM86@!{Hr`E z@2U2}RsR*U>8e)5DZj#>BpDOe^hLvnk!+GavS&a-`qU^A#NCBpNT9ox7^p2_>d(+m lhD2%^ZJJ*bMPBhlP7gPlrGH5zOVWep5pn*4U&z1~{{s$$Jn{el delta 6684 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 Y^ekN+M=r5MoIhn2*-}c Create an arc in the sketcher - Crea un arco nello sketch + Crea un arco nello schizzo @@ -98,7 +98,7 @@ Create a circle in the sketcher - Crea un cerchio nello sketch + Crea un cerchio nello schizzo @@ -159,7 +159,7 @@ Create an regular polygon in the sketcher - Crea un poligono regolare nello sketcher + Crea un poligono regolare nello schizzo @@ -609,7 +609,7 @@ Create an arc in the sketch - Crea un arco nello sketch + Crea un arco nello schizzo @@ -645,7 +645,7 @@ Create a circle in the sketch - Crea un cerchio nello sketch + Crea un cerchio nello schizzo @@ -663,7 +663,7 @@ Create a draft line in the sketch - Crea una linea di costruzione nello sketch + Crea una linea di costruzione nello schizzo @@ -775,7 +775,7 @@ Create a line in the sketch - Crea una linea nello sketch + Crea una linea nello schizzo @@ -829,7 +829,7 @@ Create a point in the sketch - Crea un punto nello sketch + Crea un punto nello schizzo @@ -847,11 +847,11 @@ Create a polyline in the sketch. 'M' Key cycles behaviour - Crea una polilinea nello sketch. 'M' per ripetere ciclicamente + Crea una polilinea nello schizzo. 'M' per ripetere ciclicamente Create a polyline in the sketch - Crea una polilinea nello sketch + Crea una polilinea nello schizzo @@ -869,7 +869,7 @@ Create a rectangle in the sketch - Crea un rettangolo nello sketch + Crea un rettangolo nello schizzo @@ -887,7 +887,7 @@ Create a slot in the sketch - Crea un'asola nello sketch + Crea un'asola nello schizzo @@ -923,7 +923,7 @@ Create text in the sketch - Crea un testo nello sketch + Crea un testo nello schizzo @@ -995,7 +995,7 @@ Close the editing of the sketch - Chiude la modifica dello sketch + Chiude la modifica dello schizzo @@ -1008,12 +1008,12 @@ Map sketch to face... - Mappa sketch su faccia... + Mappa schizzo su faccia... Map a sketch to a face - Mappa uno sketch su una faccia + Mappa uno schizzo su una faccia @@ -1074,7 +1074,7 @@ Create sketch - Crea uno sketch + Crea uno schizzo Create a new or edit the selected sketch @@ -1129,12 +1129,12 @@ Reorient sketch... - Riorienta lo sketch... + Riorienta lo schizzo... Reorient the selected sketch - Riorienta lo sketch selezionato + Riorienta lo schizzo selezionato @@ -1368,7 +1368,7 @@ Validate sketch - Convalida lo sketch + Convalida lo schizzo @@ -1378,7 +1378,7 @@ Select one sketch, please. - Selezionare uno sketch. + Selezionare uno schizzo. @@ -1510,13 +1510,13 @@ Select edge(s) from the sketch. - Seleziona bordo/i dello sketch. + Seleziona bordo/i dello schizzo. Select an edge from the sketch. - Seleziona un bordo dello sketch. + Seleziona un bordo dello schizzo. @@ -1552,12 +1552,12 @@ Only sketch and its support is allowed to select - E' consentito selezionare solo lo sketch e il suo supporto + E' consentito selezionare solo lo schizzo e il suo supporto One of the selected has to be on the sketch - Una delle entità selezionate deve essere nello sketch + Una delle entità selezionate deve essere nello schizzo @@ -1584,16 +1584,16 @@ Select entities from the sketch. - Seleziona entità dello sketch. + Seleziona entità dello schizzo. Select exactly one entity from the sketch. - Selezionare solo una entità dello sketch. + Selezionare solo una entità dello schizzo. Select one vertex from the sketch. - Selezionare un vertice dallo sketch. + Selezionare un vertice dallo schizzo. @@ -1602,7 +1602,7 @@ Select vertexes from the sketch. - Selezionare vertici dello sketch. + Selezionare vertici dello schizzo. Cannot add a fixed x-coordinate constraint on an external geometry! @@ -1789,19 +1789,19 @@ Select exactly two vertexes from the sketch. - Selezionare esattamente due vertici dello sketch. + Selezionare esattamente due vertici nello schizzo. Select two or more vertexes from the sketch. - Selezionare due o più vertici nello sketch. + Selezionare due o più vertici nello schizzo. Select exactly one line or one point and one line or two points from the sketch. - Selezionare una linea o un punto più una linea, oppure due punti dello sketch. + Selezionare una linea o un punto più una linea, oppure due punti dello schizzo. Cannot add a length constraint on an external geometry! @@ -1814,7 +1814,7 @@ Select exactly one point and one object from the sketch. - Selezionare esattamente un punto e un oggetto dello sketch. + Selezionare esattamente un punto e un oggetto dello schizzo. @@ -1822,7 +1822,7 @@ Select exactly one line or up to two points from the sketch. - Selezionare solo una linea oppure al massimo due punti dello sketch. + Selezionare solo una linea oppure al massimo due punti dello schizzo. Cannot add a horizontal length constraint on an external geometry! @@ -1861,13 +1861,13 @@ Select two or more lines from the sketch. - Selezionare due o più linee dello sketch. + Selezionare due o più linee dello schizzo. Select at least two lines from the sketch. - Selezionare almeno due linee dello sketch. + Selezionare almeno due linee dello schizzo. @@ -1968,11 +1968,11 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Select exactly one arc or circle from the sketch. - Selezionare solo un arco o cerchio dello sketch. + Selezionare solo un arco o cerchio dello schizzo. Select one or two lines from the sketch. - Selezionare una o due linee nello sketch. + Selezionare una o due linee nello schizzo. Cannot add an angle constraint on an external geometry! @@ -1985,16 +1985,16 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Select exactly one or two lines from the sketch. - Selezionare solo una o due linee dello sketch. + Selezionare solo una o due linee dello schizzo. Select two edges from the sketch. - Selezionare due spigoli dello sketch. + Selezionare due spigoli dello schizzo. Select atleast two lines from the sketch. - Selezionare almeno due linee dello sketch. + Selezionare almeno due linee dello schizzo. @@ -2005,7 +2005,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Sketch axes cannot be used in equality constraints - Gli assi dello sketch non possono essere utilizzati nei vincoli di uguaglianza + Gli assi dello schizzo non possono essere utilizzati nei vincoli di uguaglianza @@ -2019,7 +2019,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Select two points and a symmetry line, two points and a symmetry point or a line and a symmetry point from the sketch. - Selezionare due punti e una linea di simmetria, o due punti e un punto di simmetria, o una linea e una punto di simmetria dallo sketch. + Selezionare due punti e una linea di simmetria, o due punti e un punto di simmetria, o una linea e un punto di simmetria nello schizzo. @@ -2046,27 +2046,27 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Select two points and one line from the sketch. - Selezionare due punti e una linea dello sketch. + Selezionare due punti e una linea dello schizzo. Select exactly one line from the sketch. - Selezionare solo una linea dello sketch. + Selezionare solo una linea dello schizzo. Select two lines from the sketch. - Selezionare due linee dello sketch. + Selezionare due linee dello schizzo. Select exactly two lines from the sketch. - Selezionare esattamente due linee dello sketch. + Selezionare esattamente due linee dello schizzo. Select two entities from the sketch. - Selezionare due entità dello sketch. + Selezionare due entità dello schizzo. Select exactly two entities from the sketch. - Selezionare solo due entità dello sketch. + Selezionare solo due entità dello schizzo. Edit sketch @@ -2088,7 +2088,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; You have to select a single face as support for a sketch! - Si deve selezionare una singola faccia come supporto per uno sketch! + Si deve selezionare una singola faccia come supporto per uno schizzo! @@ -2098,7 +2098,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; You have to select a face as support for a sketch! - Selezionare una faccia come supporto per uno sketch! + Selezionare una faccia come supporto per uno schizzo! @@ -2108,7 +2108,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; You need a planar face as support for a sketch! - Serve una faccia planare come supporto per uno sketch! + Serve una faccia planare come supporto per uno schizzo! @@ -2118,7 +2118,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Not allowed to edit the datum because the sketch contains conflicting constraints - Non è consentito modificare il dato perché lo sketch contiene vincoli in conflitto + Non è consentito modificare il dato perché lo schizzo contiene dei vincoli in conflitto @@ -2200,7 +2200,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Sketch orientation - Orientamento dello sketch + Orientamento dello schizzo XY-Plane @@ -2393,7 +2393,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Sketch orientation - Orientamento dello sketch + Orientamento dello schizzo @@ -2556,7 +2556,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Sketch Solver - Risolutore dello Schizzo + Risolutore dello schizzo @@ -2632,7 +2632,7 @@ Combinazioni ammesse: due curve; un punto finale e una curva; due punti finali; Sketch editing - Modifica dello sketch + Modifica dello schizzo @@ -3208,7 +3208,7 @@ Utilizzare lo strumento di convalida di schizzo. Fully constrained sketch - Sketch completamente vincolato + Schizzo completamente vincolato @@ -3384,13 +3384,13 @@ Utilizzare lo strumento di convalida di schizzo. Sketch has support - Lo sketch ha il supporto + Lo schizzo ha un supporto Sketch with a support face cannot be reoriented. Do you want to detach it from the support? - Uno sketch con una faccia di supporto non può essere riorientato. Lo vuoi per separare dal supporto? + Uno schizzo mappato su una faccia di supporto non può essere riorientato. Lo vuoi per separare dal supporto? @@ -3610,7 +3610,7 @@ Do you want to detach it from the support? If selected, the Maximum iterations value for the redundant algorithm is multiplied by the sketch size - Se selezionato, il valore di massimo di iterazioni dell'algoritmo delle ridondaze viene moltiplicato per la dimensione dello schizzo + Se selezionato, il valore di massimo di iterazioni dell'algoritmo delle ridondanze viene moltiplicato per la dimensione dello schizzo diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.qm index cc4b1447e3e6e2bcd7a4ca4269269a2408e9d414..c7bd267364b5e64ad8068da3aee4f2c50384978d 100644 GIT binary patch delta 3076 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 diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts index 1979f9053..2fe66b46c 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts @@ -2243,7 +2243,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Center sketch - Center sketch + スケッチを中央に配置 @@ -2253,7 +2253,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Swap constraint names - Swap constraint names + 拘束名を交換 @@ -2348,7 +2348,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Name (optional) - Name (optional) + 名前 (オプション) @@ -3139,12 +3139,12 @@ Use the sketch validation tool. Do you want to open the sketch validation tool? - Do you want to open the sketch validation tool? + スケッチ検証ツールを起動しますか? The sketch is invalid and cannot be edited. - The sketch is invalid and cannot be edited. + スケッチが不正で、編集できません。 @@ -3490,27 +3490,27 @@ Do you want to detach it from the support? Type of function to apply in DogLeg for the Gauss step - Type of function to apply in DogLeg for the Gauss step + ガウス ステップのためにドッグレッグで適用する関数の種類 DogLeg Gauss step: - DogLeg Gauss step: + DogLeg ガウス ステップ: FullPivLU - FullPivLU + FullPivLU LeastNorm-FullPivLU - LeastNorm-FullPivLU + 最小ノルム-FullPivLU LeastNorm-LDLT - LeastNorm-LDLT + 最小ノルム-LDLT @@ -3605,7 +3605,7 @@ Do you want to detach it from the support? Red. Max Iterations: - Red. 最大反復回数: + 余剰最大反復回数: diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.qm index b5c3db61fba6bac99773cc4823ea5217d967bc1a..45ad0a9b1074ac709b0f57286f1652df97e6b828 100644 GIT binary patch delta 2111 zcmYjReOOdw7XO{ObH};!>CAv5zh_bAR_epTBd?JE!s+ z`Gardzemn01x6Nu97g~@W3T~88w%3zVk`%lb^_^o(10f(`Nx3lA3++&cJ?12rSjR) z4QU#mgAySv=5ufwwDX%lV++?Ub54wb_Rv|7`4O~VKMi`~9JK$b0x2hY(R!;F`(5e9 z#0$Ncx)t)U6j0xxkY_SJb9~(;w`U~cyqqDZ3~_%+1|_>0$1~2sC{-T(x^R(q>`$1o zIR~g(jp^n80vY;Y=H8;n9g_rvx?^f*CO!j+!oOEeRyuyZIIiA*}6ACwr52J zCBhxAta%bm^#LVik~57v zoq9nUy6Gd3KUa$Rwh=gbPvTB%eAad$cqzVGU57AdOd>=U5_54Y>i# zxh7==n%pGKHQxjNxk{RQ>Hu)^xRh5n7^LxhFUIJ+p4X(3CRS%plS&(w0|k$z^1uvQ zrPW)w%agN3g)Y{%Ogi*p2{1e>8 z99>fhO#8Du%txTiG)4{MCPsFnfj~&#Ppkj7f}al<_yw zt@qM(5v902J@UG)5uofL@`eazls;MBp(gDAio7#vAj?;XJjMOHTzPLbxAMz_^1kzD zIKpwcZmk5I%a-eoM1bNq$#qw<*t${dQQXufT9u5DEppGQ?V#}sbjI2aQ21G$!~Gd( z$W0MvNL2>uvV(#^*5RVU;HTxH!Qdp1IBW3R@^p_+bE%u()O8JD)}yWom(fcdBE@)& z-V|n2zOqFB*Xu(-PcIY8OiuEN4JJQpT1{@xcKzi^4}tDv{k7@qfy)>5ZC?%qW`Cyd z&{l)I=Y-kpriUWh{5<7~Dzn?RR%xF63CJ~8IsM0SpeI^1n4R&vl>0~S@Lj*8{LpxU zwa1i)Kh*-o9RVbFrPBEz4A}LQ(lv#>x{m~q2DA#Z#ZRY1iY1kXi7Ly4(4-*4so3j) zakt^(>KmXem*Mu%8c@F=(Qa{u95Os=dIeZ+H*{Ui1io5fRF>xP7I{**tk2sLja5=7 zP_!?AlrTqBS)CI*jawa;fjx(e+bW&`>Ws$fn$4i-HO8Hl4WOaNjJp@KffD`3V=H-y z%(!A~t#q!gT*edKk)RP3qTQOU%r^DgR|Y(MPNesZ^{g@_2EWJmuG^F{(8=A1hlg8aPmF>lfd> zUx2O=0i@7XW~nxm|0yd(g>5Yz7QuEe?G$6|Zrf>dUBrIg+Oy3Eg#dnu6-9QZZKAn# zLNV|~mieqUg?IZcvBB>5)SDj_uLEAaY6+dk^F)Uw-1jbUXp3dw=n~M(>!RK6q~k(% zBx)l2ixh{qY_#QK>bIb2qb%)ldx4dcEZ<+~4;;YO4woj-?bUMg6ge-G8S(t0R2JP9~xBqpzLi# z!H00g?N?i7qDEFaO^M^-DHCzb}K~*UgW3hn8SulV&kknRF*a2SB^!jR@tenRJJNN z)uo8Ps^lepFXW8BvmQ?*+^+ woMWjKhX=_0iMM*si- delta 1954 zcmXYxdt8)d7RP^Q-g$?4XWp4{W`Gd{#^KTsN+TLg7=nf)Na0=inC1;xL4#cbbKTw4 z4cV-ZNbaK%m5GbHrJ#O@RTQK|AajjA?0;8D*HW^Crj{fVsMNLDuo2 zlv0x#Q5((&9d-rv_E_M09}fQ24E$1q77*~SGdQl>%oj_=cbaJ6$iHza{zK3do#-Vm zMT$g?msX1cjYBD?>V}n|kjwRDnk5?AC?0FQ^p%L09ZJ3?|H?0*$QqF)J6$E3ecKm- z5<4{qCi1lsyqcyXyj96Nn%0&gkU2_}$(}WO&CS2;17%2>do5>y*?AI8NdSu0NRAAS zboxPQ_y?bZyqVH7=URYo#!3nOX|ui~CG@Au+9@UUr^)7!UQFHyR3%Gk{lT*@lBR@Q z175u-;s7X7qB+1pq2e^#y(MJ*QyRl95wG_qd9=OPTtL%gS)Wu48ogLHT(bk6 z8FGB}dSKcg6gp1t@1$QL3y^bxj6H{`taY&1ER$wrg& zMX%mXheeFybX}J>^^5{#>*Xzxe4?zU<$v^VICzfyX=)UY&lkCh^XW`^PZfvq*nWBM z*;Bm2F1fB;0?uU1bzeq;l2*%gm#4G!HnCfA(h zj7RBD!lW)y7U|#mF%C3-j(Agb&=9dj_0n3=p*mgV`b(Ky-Mw-8t1~tOmoDhLjzs}; zztG>)R)O5j!enyNIT3G~Pnn|3JQhp-tm>nTI3_rIn2Ugn*Jy)gz$Ny|pR^_sa1c`9Vd~39^ zOnM9y?Ddn9(?prYG4Z_dWBVmwccXD@=_H`eXsoKP1jQE{KV9Dp8ot|Dv#bl05@bBO zjzwf~OSUpv4c@y3c;pjVgFLR~YD&-!es{g9FK!!1 z?pA#VIH1YDSF;?0K~aj>I_MeOxch2J-!4!@ow}LY_@S*37Y8{LeCpxn+Bk;qsfU-w zaP;P?E#0lGKgZSf&%#(A=Be%XtAU_4_3Iv@|wYTO8 z&=c+_g)TQqwV_-o%S5TQoGL|-%}u3ZjLm6nHq}MevuaN;?H8=%PeMe2&0+PJIwlkX zUr#rk*7{i6JH-~8*R|dBb0MqziYw;OJkBT1nujKA2O2*zN4-!4nsr#*u{r2-A=^_l zQBQ==?p_mOzL0*7^A&8qleh<1mudd#{9s^ghWSA~=kM7VbKkoh#YC+|$?5{`dMwem zP5@okEp8{v#U~>yxeEjrQnw}d7C;WOWr?3nmUU;(@WU^#Y`mYwPcqQ*;g*rW?N=>3 zf=;ohcU$(`S&hVPyEP)ma{JLqQ1S-Lf3D7C32LzTud(uje6F<{^`U{a4?LR@g9Hpk z4)U-Ng;;`I6mfqg^L74)qJYO2`~QmZTjBa?NJYDef-9oa$tu %1 missing coincidences found - %1 missing coincidences found + %1 manglende sammenfaliinger funnet @@ -2730,7 +2730,7 @@ However, no constraints linking to the endpoints were found. %1 changes were made to constraints linking to endpoints of reversed arcs. - %1 changes were made to constraints linking to endpoints of reversed arcs. + %1 endringer ble gjort i begrensninger koblet til endepunktene på motsatt buer. @@ -3181,7 +3181,7 @@ Use the sketch validation tool. (click to select) - (click to select) + (Klikk for å velge) @@ -3440,7 +3440,7 @@ Do you want to detach it from the support? Auto Update - Auto Update + Autooppdatering diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-PT.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-PT.qm index bf8497082e3aa930af399eb19f187fadf84df50c..f6e4e1063bec26f3459320c0baa3fb8f9eb72d30 100644 GIT binary patch delta 4776 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 Create fillet - Criar fillet + Criar Boleado (fillet) Create a fillet between two lines or at a coincidental point @@ -990,7 +990,7 @@ Leave sketch - Sair do Desenho + Sair do esboço @@ -1074,7 +1074,7 @@ Create sketch - Criar Desenho + Criar esboço Create a new or edit the selected sketch diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.qm index 334a679bc3f0c127b7575986f96a2f066762b876..650ce715e965980b484993d322f3c2c36e7a6eb1 100644 GIT binary patch delta 5342 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 MZys{;VRjw=4{Y{ea{vGU delta 5411 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 F{{cVZZvp@S diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts index 2e7fab420..d0f7be102 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts @@ -108,7 +108,7 @@ 3 rim points - 3 točke na robu + 3 točke na obodu @@ -1152,7 +1152,7 @@ Show all internal geometry / hide unused internal geometry - Prikaži vso notranjo geometrijo/skrij neuporabljeno notranjo geometrijo + Prikaži vso notranjo geometrijo/Skrij neuporabljeno notranjo geometrijo @@ -1346,7 +1346,7 @@ Trim an edge with respect to the picked position - Prireži rob glede na izbran položaj + Prireži rob glede na izbrani položaj Trims an edge with respect to the picked position @@ -1657,7 +1657,7 @@ Select only entities from the sketch. - Izberite samo entitete iz skice. + Izberite samo entitete na skici. @@ -1990,7 +1990,7 @@ Dovoljene kombinacije: dve krivulji, končna točka in krivulja, dve končni to Select two edges from the sketch. - Izberite dva robova iz skice. + Izberite dva robova na skici. Select atleast two lines from the sketch. @@ -2931,7 +2931,7 @@ However, no constraints linking to the endpoints were found. Grid snap - Pripenjanje na mrežo + Pripni na mrežo Unsolved @@ -3167,7 +3167,7 @@ Use the sketch validation tool. Empty sketch - Izprazni skico + Prazna skica @@ -3211,12 +3211,12 @@ Use the sketch validation tool. Under-constrained sketch with 1 degree of freedom - Skica z manjkajočimi omejitvami z 1 prostostno stopnjo + Skica ima še 1 prostostno stopnjo Under-constrained sketch with %1 degrees of freedom - Skica z manjkajočimi omejitvami z %1-mi prostostnimi stopnjami + Skica ima še %1 prostostne stopnje diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_af.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_af.qm index 8ea3e50b06c7e0d3f55a4fd5f96c3d081c800c3d..9d2230b370cfc0851b62cceb01d462a0037f0526 100644 GIT binary patch delta 157 zcmaFjyvAjM2&2G8(KJRTIqu1|jLRAKOjc!zSB&L4S;ES|AlA(N(cYDTfm4A;Kd703 zK`w(Qr1=R0gUo@+bD87?H}cL%4rX8wujIXNXw1MM%P{#YQwZbl%}UHiWUToZLK*Ua zFp(jbA(bJ8g8>NGfS5frFE24SHH96>77H#YN=-~D&PYuyaWBoZvhvMODa}dU{7{~m F2>|DoDhB`n delta 89 zcmV-f0H*(}MC3z|6afga6=nef9m|t_0jB|clO+OQ8667AbOita7K01%KScll2_OtF vQiA{h9w?Kg0v{1^4VYt7000+x4c{>{0011olhp!L0lTv*1H>G&E+GB^W=$Dz diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_af.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_af.ts index a307b03b0..242665cb7 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_af.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_af.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.qm index 2243f7de477285463191bf83e44de39e64ccbd11..2242949713571522bd3e4c831fe9d6f7783da2f2 100644 GIT binary patch delta 831 zcmY*WTS!xJ82_E^Z0GFe@iM2*c_9_eNDEDCVdjk`p@df2Lel2Yc`xT)vPSw4W~0kw zMP;GkO9@7^qU?S%L8GDs>mk8R^MZ+i5L$g>^w7gOzwi3{zVG*coz6iu-|3 zH?Y4H2wVm0ybT0bfOSO!0l&cZ9V34P?5G3K*}zV>0opN0)_tIQ6C}Mq35T)ay&7O| zA~*ID)u$l8{SonUC|>pCT`2j{L;g3I(sY1|!J)O~fL;-b&s+NeztfC=?;N21&g9NS z0i2d`%q{^w4yG&l0iaB0=I6iCLXSmUGz<7&Jv$O)&la7sQnRX1blr52f|a8CPhtp{ zL@#1Z0JB%DC=mlfzxe3OMVj8sCUjCojpvE{UJBuw9*-WyePzZ(KpYFemPzYzr!t$ z#{!yqJ|UhSK{L&#r#=Tn9sJHV(nQw7JDSzRTEIVzr1PZ5`O$6}5ORVa9ot06@S~Hz z2{UE!TXKM)Vp&QXp)sgSmbwr{Ya8T4RtXU&Di+fz!GBUF77$UmQMtR7?$upUUROA0}Ue3YRPR{GmuacYH(u+9I+ zC>KfD8dyA)&Rsq__c>uos)$3zzo7f1CRt|CQlA+Os7DoQ$*LpEMm=>{Erg) m)s@wn%Q><&g$;+zW#x^PX0z4MWYO#M>dTvI%mg&Ki)FP&lo56{9}2oCR1aAyMkOXHK4j6i?ZeFPe3$e8E~j_%%c2g8PXa0i zfY=+ro_#>%5}0}yh^hqZN(3Sn!1_;-Jq$M14%q9#zO@1|?;xyxPx)>LeG9}FNPlYq z*ew)0dni90JKG+SE{BRg!FUJUzx-s6L&>)T#zh=St^)E5vG}xp05G?3;e9^=%LG^a zJpmA7xb`3Oz=|gBV&+4-kj2f+Oj1Mlc`=az;cDkAn{OR|#!Ht?Tls6sesb>R9}FcC zr}<}21>kmR3~mh|U(uX=K1bCXS?UGyTU;zZt%bzwtTs3WJgjTbO@1dk?|MSK$@;F7 zZ5|IXs*?>*QE~k$LElVGMJ5WypuI^tF2q$YlTewkoN*|jnyHIkvn`y&*Ey&z1XbixaAs#+VOLwucy27@|2h#P}+4Y1|1| zJyL24J%aVCRFLx&;Ll1Wt+W%JUur*LA=T~DV+W0=ZIZ@%bwD)nLl!;CZ)t4mFWDP( zDY;t!Td6L)l~`))(dEo0P`iuz5wAeP$%eTC3P>M~X{96-FB#7*(<4}~nj{|;pjK-V zHj>bgsbR-s!3zh zMtexOCy=6jeF|k%ql!Gre@|WD dvOKLdr^1CVl;p)R)CWU>ZfmA45arPG{{RQWzYzcc diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts index 060033a79..1cf3aaffe 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts @@ -159,11 +159,11 @@ Set alias - Set alias + Nastavit alias Set alias for selected cell - Set alias for selected cell + Nastavit alias vybrané buňky @@ -313,7 +313,7 @@ Alias for this cell - Zástupce pro tuto buňku + Alias pro tuto buňku @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Nepojmenovaný diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.qm index a07816df107a9688ada045fa30e37163481ebfd2..0a6eea8cb20c94532793718269e5e2a7a5efe6f6 100644 GIT binary patch delta 162 zcmaFiy~SsO2&2G8(R4<}&y#BzmosjetjZLpq-f4{vV@g^LGnNMM|)QW2CgSO`a#VM z3`$`hAYm?711v4o#Z&qTSreH6`5Xz9p zki?J*Bol!+kD-Kv0SMTDm_0NvFEKYYg&oKi3oa;1O-w1yNKGwqFU_>F^36{v%}L$7 IS=p2c0LGy$8UO$Q delta 90 zcmV-g0Hy!5Oz2CH6afga6=wkfuakWNrvY%2B?4X=AoB{zbOita8UG9MKScll3giqg wQiA{hA`+9O0v{1i4VYt7000{I4c{>{001D8lhp!K0wTY&Dg%}vvjikC0`x~3tpET3 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts index 7a3427509..be4c8e908 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Unbenannt diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.qm index cb58067d5cd11d73dd83d991b1a4f04b908285f0..6f2b208c7051bc54563f73fccf3637276aaa3f89 100644 GIT binary patch delta 158 zcmbQ|_RMX92&2G8(KJRTdGpD&jLR8cOjc!zSM20ES;ES|AU>b_qrEEw1Lp}I{h($B z2KgyGAF;duU!>Vs2^*JCH3FTu_vnm{OdPnp)ysnrUU_o1apele(E# HQIH7$N3ktI delta 90 zcmV-g0Hy!tMxI8H6afga6=nef9`}=d0jB||lO+OQ8A%GsbOita7oQ99KScll3CIjD wQiA{hA5@d20v{2b4VYt7000=14c{>{0015Alhp!K0w49WDg*Exvsxhx0@_g<761SM diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts index 78378a4f4..da246ef97 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Ανώνυμο diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.qm index fe8f2ee1001b6783fe336c82c3b33345baebe1de..a164248042360d84b672be4fddf374b95d556f9b 100644 GIT binary patch delta 164 zcmccTwZ?mb2&2G8(R4<}%E`5i%b1i*CaW^VD<0)KS;ES|AQ{g6(cYDTfolPeeo!+5 zgW?^Ykme^03<@%n=Q7C&Da!KBNDgLTkc#BJZ)gk@PMUm{DTJ|lvl6p{f};pSFheFo z9)ki9=QHFoBry~*q;fC-0UHprhvwxa=BB2w1KDE11x2ZeDa9G7sU_~EnO0W5`6;D2 Kshe$;6`26P$X)Qd0x0dJPF9Rq``4sVw4IR*xW>%23PgBcj4B6;r{8Uy(?Dm9wz_* diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.ts index f02501af0..8b3c90101 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Sin nombre diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.qm index d27257c7544f3de0d0d2201907b0068620a48a89..c4d157993deb4686b0727202a54a6169cd8453c5 100644 GIT binary patch delta 156 zcmeD4yyiJUgi&ClXgVX~!pXIa%Nb)Pt1`tazU4Yu!pguP;mG~b-j#uY^8t^3P%{IA zA`4GQ^AiRJd7sI1ndAkXd1oXCGcZW{^WHZ!28#AfKFbusxOB4;bAY@xAA=u5CPOYm zDnkjwH-?ey)@Ix$~QlyG$(a)u96}X E0O-akvj6}9 delta 88 zcmV-e0H^=fNsdX76afga6=wkfVUv9UrvV(3B?4a=tqRF>1pojTK@0IeMF0Q^;0!NP ug8%>^#FM209}xo$m}64_02xmW-!U@)03S?~)dExjWwR;+P#?3pA{+uoDHrts diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts index e497023b5..8a61b0eac 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Nimetön diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.qm index de5ce2042a5ae1aaacb7d76347e4836ab3026dcd..bdde8af895120cce6b2cc2bc08ed049a8f3af333 100644 GIT binary patch delta 169 zcmZqjI^#7#gi&ClXc{AvqTu9O#^sDpCaW^VD~58NEMa9}kQC?sXz$9vz-7jxAJoji zpjgKf()@&hL4MWbxlHnc+j(as2Qx58ar53cGzN;knS7Qhm|aPlnSp`9WAX-O(ako@ zQ{-(07=jrR8S)s485DqIK0_`CP@aJeh}lE)@)C1XQ`muQvEYKD)WnqHjMUT;_tH!& QE8qN-(wx-Ir{001AVlhp!K0wLM6Dg&+`vl=5Z0$BtX`2YX_ diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts index 2c1088a8e..e1d5ae05d 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Sans nom diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.qm index ac969c62603c67e50af7f7f75c1a9ff2bffb1617..72fcc625eee88faee1feb5f941e82ed6b13c21ec 100644 GIT binary patch delta 157 zcmez9ywhcZ2&2G8(KJRTIo`>&jLRAKO;%-!SB&R6S;ES|AXd%&(cYDTfm4A;Kd703 zK`x6Yr1=R0gUq4HbD87?H}lR&4rX8w&*i;uXw1MM%QX2cQwZbV%}UJ2WUToZLK*Ua zFp(jbA(bJ8g8>NGfS5frFE24SHH96>77H#YN=-~D&PYuyaWBoZvhvMODa}dU{8*lk F2>|x;Dl7m1 delta 89 zcmV-f0H*)BMDatA6afga6=nef9nF({0jB|elO+OQ86OJCbOita7JCcvKScll2_OtF vQiA{h9x9Wi0v{1`4VYt7000+l4c{>{0011qlhp!L0ll*-1I8S)Fdzv6Z0s16 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts index b6538375d..773cc611c 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.qm index 6fd51c647b891e23f1615a0c0bded83f9285d339..8d96f6cac8e72f2385525b8b072b9c569183c770 100644 GIT binary patch literal 9369 zcmb_hYiu0V6+Ub4d)E&f*LECZCd6?PQw&WgDQN@5&dZQMl69OHLD^l8*W;bt+0Ksb zIO;rT{Vwskk{a=c`hEqd#7rC`J0uP*IM(tRdKxk)!NYETB7S- zto`EeKLoxD?%waLBE|yyrgsV_Y|P=;N}0 z`}`%~3EkrfJ_MYt!=5m^4t&LPy*Lj!4}0dIB({xkX* zoYcqAIeo0F)yMh+`q=QgK3*s2V^dromq_}!yw~^Nw^qTP=ls1ru=CO#{=3${41VAC z-+KbQ2VeG|{6aHu{?PxD0KR-{{L|kJz&|eer~mqCj7k6WrH?UwKhSf>7R-MoaQg|2 z?RA0mAFLp{;o0CHG!NvDhd#Uu_XF>TZ`lJm!mHuI8l%-=dLn%^7rpu(^cMQLxcp}p*u2m9g6i?Y(S&I4@XfOWS`c*Nii9%FJi<3e& zgR9}}s3>YaJZ$by4eQS%g$FLC_Ew5qrNXA1!irV3*{L$t5Hg{2hTTa!z{3ds7%Kuv zlmJJ^XpS?MH6(^N$xn0{I&5#QBvB z&Xc&(piAZd%dpf8rE$&f%TAa~wpyiYygACj#g()srnRh~j0jm#7UP;YEW|}w&Q<`p zdQ!_UAke*Z1x(IThWlDsZsWi%s&-KO`BTpAgNx!e>5R(EuCDW{*)>7FHtd=Nc2FOD zMFz8MN85RAQ1@C{9O1jS)xu|Y;2CH2;G$TK*`qNrx{_(Dh)+kT)wAg+u9NOT9E{tLM~No9H1*rSWuog*}lyq0k7=9wh{!({Q7M&zhG z8m_gDh7+QyN%5#GPg$p(b_;tBnF3k$HZ3P{13d34musZ^)}g|(;ym-{7Gxe;PJgdm zc>=mcI*N3t@T5NjW1#dhbT(}{no(5Es^l^i8v09oJ8Z2^5ziF;m@`B-qvDxCWg;Wy z6)L~Zg#ZLi5&9!T!iXe`Z0)T6vj$VW9qnb^Nu@AZic6I;#}||@Y-dnvL{Una7bFa% zIHUO$2vQpB$rdVCizVq(IKNIMttFg-DRYV|R<&sMOt5bRd#s$z7nvfq{uJNxtf-x3 zTi*a0+9|3Du}~zI#B~0&pH+~Yko`OeSsyIe@gkZFDb7W&6P^`1p5p2iW-B$CGtTPS zbe6Xk>mCPp3Jr4}S&7beZyIb);CBpn*|nTMHkdY5AR=l4>hmZs!b?Ito+0@~b#^N$ z!1My;>d`DS&iyN%5GG7+Hii?-mh=79QIw!TL!ZD`L%rq>N{g9#d?qbZ9m*NGH43wLGNe*(W$I5Arky8;15cnI_<^01(ZN3D(z5p7Bq*$bTS2c1P) z?-JZ)#~0^gGLI_;q#KwA$MUc^j|+~vrE4z&x_By!#I?|7?mf&)tSAf(XxRO6gT#_k zGbd4hh0{1>E$*7px17-@6(Cs?SO#SE6qXTq1e=wmt5Nz0UZ~_Yor%tCw*D@*{_*s% zsLE1W}9>ima%+qCG*Eg;K`kI_~KCmi+<|tbL}R&@Gz=rmzvp zo!aw9^dcl?G0sQUQ0~ZTDW-?}ll9jmyTIHS8C4d1KPmzj<_?zxw=lUujHgdV3}b}U z?bb}`h%@VjpUhIyc-h@2kMqWa#k*yboy8nKEGIF~D`@DSil%MQG=i2Z0ME`X$s$~V z%~3Te#O%Q}o2Ig_Ld8n;>2Z6_toF!j*6YrB>={sL;MPSX)aaBA_$HGGR{6^`Y)lSv z_z6`M?UruFA452ev8I+WKg{Q+q6t(5Q5*ec2@}w-;;#^f{ak`7@@!;bs5ZJU7cf|m zV0&~15|B#_3?VLI3h6|dw1J?9$x`Or+w4j6)4>v|Jlh;tYDcP(cqmJNA3c(kstfL5 zp9};CO9hcSN*VU;bR;)OyP#NQN)1A4_t>%-z170^3HykQm}Wt~ z_ka`cjWo!O$6}+*Bp4V2C=2zEn9O9J2>b5LH-6B?z9O>PA!EGk-m0klTde85M)(D5 z%CIEDzM>X3vTtuX9Zl&Jw3vFB+s3608+Izglq`2<#E)dj2HBc_xIG#aa;sjG;la!NuuCDo8s R{UI)}Pf?RGF&!Uu{T~rb?S}vW literal 8703 zcmb_hdu&@*8UGT$UvcKTX_{s29Zl1|FtiQhTbzW3U> z*AG@j_KAJZ_xgR``5woczL)F&qdcarzqeMHMQkoV$AqQNK0`_~iLzmk0Ke4c3OIr5$T7w87*=HDfW zywB6vn$Ls&4BhqM)7Upo2j9f=rLWN8e|#DA0*SW|62(43_pZ$mMGEwX_dh{&&84oy z*;ldemaef^RuKi>*LCvmZxHn?be(?h_lcsP=~`I$GxYIw2Zp>viG}Xuw!=hS1Kk5( z`Y}=Whr9EaAIAQ#bbm?*zu4p5UlX&~_nq!1f3%ut$!*;~StDY<;)xvg5cMWJAN%R+ z(C=yQ$QST^@~rpvn?8YkCGQNgi|+M4@)YbOEmDuz=fT^#d=TR{z|#_Bt7tp5GR8hF!KLysA2 z_=2%UJ;oYaVyr!fj5R)Iti9F!*F0o=Uh&1ie_vVye?Au+SqDEa+ZWut;Thojjo=4P z0Qb;B@Z?96(DO|2ya2rXr-K*Igb*Ju1~2~p7OYb6;^nuno(ZkHZ5!x+9=i1e*8X^C z!)vR6!{+cWbRYPijJ&=X--m?gO?$y-#jfb*uE5XBmc)V|2Y-0*=&Cy)XE1hj{MVp6 z75l81#`6baFTQ&{aQst`=kX!L@0p(BJsu+8J984soZ2B};w4b(+LNeunhd^0Ufsl^(f{8$Miz4TXLRQsvwZNDy zht)Rz{P8G%%1ytEMlCLMBe1ski+EDxK49-9P6=g6kwjg}38JJZuH*C~Q-K!Xi&{)#k6io4_ zRSZ)Wm#c}PA>;qX(5B+mz|h7nSr>;a7N%^cFl@x2B2Dpgx6B~|cjFnyZWrw~sIMY! zs~PvUP;07Mr1WlS$Yzz2iYUNPI z%xu%F+y+v~WM!PBL+t9qi97gib4>$^O-qR|n}wdxeD=G+oE0vHou zfzjS(Y>jFtE$ITf)C_M$8`3MDp}=Geq;6fz1stdNDQBp-AZH%9YfVYQl&aPD!4B1{ zPIjkwG_xbg#}U@%GelS(MDjPa45v$qtn=t$N;Nb!{2>b-9y6p^e#gioZ&fHoh_rN6j*RqhX;qSYN~IiC^lu5;FFWW&0=%vF3_GCg*24s^BP)lPm9xd1q$zSy;y61SI#^%hIr95!bR7InZEekQkoLQq zX=b7xQw=jrTC zCgEW|W)#o{vYgnvM^j6zJCw>><&2`{IZRQoNbw_#w$CK>4|93$WCI}E3RkmsLqTY> zCY%KU0^MX18{R6HOG>5!kIF4nNW=6BI9ZLJf0#SfU4TH>dd%~g^O%{VKXLdgsq zcaAKA%_+`O#2As>$&zUD7w9;&KMv8xm6qkq@J>~ekK-0Dqqwt(q60Rwt0mdU!|r6P z5VDlaE@}S;>Glg*FT09yCk@grAeN=9Db2_4AlxaU$dt$FKg6cjyh-KVS1q+}v9ulA z6}p1gVjVr0z1;;S7UwEcY{<+|?(}_}o|P@uBkBkd<{eA*$bKAYp{#3iG4IYLN!y`) zp7LE2umPsyWqCJPn^oNz^zih?oOA=NqqU|9fh`Ej8`iC5l!1v4W{=`-mZ!4;TVOX_ z1e?S$9@MqV-9;<}D1C{J^3Y)YQEec;gl{eZjEu=BQk_L>gJ+#4b~dtYR&-!f9m-tT zq>-A`Hhx9uO;4+fem$sDDGJLZq$W00Sc%p*svs*d7-AE;t;}#dSu#?P*{$u~QDv5o z*$%r~mN5sKAUsyVNi3SMdQ+85(M6vGs!j&cID?SLHfR>wn$c#2th;)4VzEJ}K`gc> zndNrWJX2$XIIm?YE@~%jYBOT?`;TRCm@A&wB+1R}ej9xOqS--W$QMkQtMR=y3PsWX1iVlMKf*)NRzkcYci55U?u>x$aD zUDfz6akhPfsI*07K;s6MwMuOCn?-WNw`MH#j1|jhGX+sqW(!4rKe57g9k*jv-nfy= z-j~TL(xfcSb0zv3n6sv2-o`dkWvi+4ZSx$UJus}HxuFsEXQ~^s+TxLs5r#}V+75ER t7r>j9bXO?$N(FTems*`d!Gg+Sz6gpc+fJb9bQ}sDP_>z?R1~MX{s-K>)KmZf diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts index 7df25dbcc..fd4f4da03 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts @@ -5,243 +5,243 @@ CmdCreateSpreadsheet Spreadsheet - Spreadsheet + Számolótábla Create spreadsheet - Create spreadsheet + Számolótábla létrehozása Create a new spreadsheet - Create a new spreadsheet + Új számolótábla létrehozása CmdSpreadsheetAlignBottom Spreadsheet - Spreadsheet + Számolótábla Align bottom - Align bottom + Lefelé igazítás Bottom-align contents of selected cells - Bottom-align contents of selected cells + A kijelölt cellák tartalmának lefelé igazítása CmdSpreadsheetAlignCenter Spreadsheet - Spreadsheet + Számolótábla Align center - Align center + Középre igazítás Center-align contents of selected cells - Center-align contents of selected cells + A kijelölt cellák tartalmának középre igazítása CmdSpreadsheetAlignLeft Spreadsheet - Spreadsheet + Számolótábla Align left - Align left + Balra igazítás Left-align contents of selected cells - Left-align contents of selected cells + A kijelölt cellák tartalmának balra igazítása CmdSpreadsheetAlignRight Spreadsheet - Spreadsheet + Számolótábla Align right - Align right + Jobbra igazítás Right-align contents of selected cells - Right-align contents of selected cells + A kijelölt cellák tartalmának jobbra igazítása CmdSpreadsheetAlignTop Spreadsheet - Spreadsheet + Számolótábla Align top - Align top + Felfelé igazítás Top-align contents of selected cells - Top-align contents of selected cells + A kijelölt cellák tartalmának felfelé igazítása CmdSpreadsheetAlignVCenter Spreadsheet - Spreadsheet + Számolótábla Vertically center-align - Vertically center-align + Függőlegesen középre igazítás Center-align contents vertically of selected cells - Center-align contents vertically of selected cells + A kijelölt cellák tartalmának függőlegesen középre igazítása CmdSpreadsheetExport Spreadsheet - Spreadsheet + Számolótábla Export spreadsheet - Export spreadsheet + Számolótábla exportálás Export spreadsheet to CSV file - Export spreadsheet to CSV file + Számolótábla exportálása CSV-fájlba CmdSpreadsheetImport Spreadsheet - Spreadsheet + Számolótábla Import spreadsheet - Import spreadsheet + Számolótábla importálása Import CSV file into spreadsheet - Import CSV file into spreadsheet + CSV-fájl importálása táblázatba CmdSpreadsheetMergeCells Spreadsheet - Spreadsheet + Számolótábla Merge cells - Merge cells + Cellák egyesítése Merge selected cells in spreadsheet - Merge selected cells in spreadsheet + A számolótáblában kijelölt cellák egyesítése CmdSpreadsheetSetAlias Spreadsheet - Spreadsheet + Számolótábla Set alias - Set alias + Autodesk álnév beállítása Set alias for selected cell - Set alias for selected cell + A kijelölt cellákra Autodesk álnév beállítása CmdSpreadsheetSplitCell Spreadsheet - Spreadsheet + Számolótábla Split cell - Split cell + Cellák szétválasztása Split previously merged cells in spreadsheet - Split previously merged cells in spreadsheet + A számolótáblában előzőleg egyesített cellák szétválasztása CmdSpreadsheetStyleBold Spreadsheet - Spreadsheet + Számolótábla Bold text - Bold text + Félkövér szöveg Set bold text in selected cells - Set bold text in selected cells + Félkövér szöveg beállítása a kijelölt cellákban CmdSpreadsheetStyleItalic Spreadsheet - Spreadsheet + Számolótábla Italic text - Italic text + Dőlt szöveg Set italic text in selected cells - Set italic text in selected cells + Dőlt szöveg beállítása a kijelölt cellákban CmdSpreadsheetStyleUnderline Spreadsheet - Spreadsheet + Számolótábla Underline text - Underline text + Aláhúzott szöveg Set underline text in selected cells - Set underline text in selected cells + Aláhúzott szöveg beállítása a kijelölt cellákban ColorPickerPopup Custom - Custom + Egyéni PropertiesDialog Cell properties - Cell properties + Cella tulajdonságai &Color - &Color + Szín Text @@ -249,11 +249,11 @@ Background - Background + Háttér &Alignment - &Alignment + Ig&azítás Horizontal @@ -265,7 +265,7 @@ Center - Center + Középre Right @@ -285,42 +285,42 @@ &Style - &Style + &Stílus Bold - Bold + Félkövér Italic - Italic + Dőlt Underline - Underline + Aláhúzott &Display unit - &Display unit + Egység mutatása Unit string - Unit string + Karakterlánc egység A&lias - A&lias + Á&lnév Alias for this cell - Alias for this cell + Álnév erre a cellára QObject All (*) - All (*) + Összes (*) Import file @@ -332,11 +332,11 @@ Cell contents - Cell contents + Cellatartalom Show spreadsheet - Show spreadsheet + Számolótábla mutatása @@ -351,67 +351,67 @@ Red - Red + Piros Dark red - Dark red + Sötétvörös Green - Green + Zöld Dark green - Dark green + Sötétzöld Blue - Blue + Kék Dark blue - Dark blue + Sötétkék Cyan - Cyan + Cián Dark cyan - Dark cyan + Sötét cián Magenta - Magenta + Bíbor Dark magenta - Dark magenta + Sötétbíbor Yellow - Yellow + Citromsárga Dark yellow - Dark yellow + Narancssárga Gray - Gray + Szürke Dark gray - Dark gray + Sötét szürke Light gray - Light gray + Világosszürke Custom - Custom + Egyéni @@ -422,44 +422,44 @@ &Contents - &Contents + Tartalom SpreadsheetGui::Module Unnamed - + Névtelen SpreadsheetGui::SheetTableView Insert rows - Insert rows + Sorok beszúrása Remove rows - Remove rows + Sorok eltávolítása Insert columns - Insert columns + Oszlopok beszúrása Remove columns - Remove columns + Oszlopok eltávolítása Properties... - Properties... + Tulajdonságok... Workbench Spreadsheet - Spreadsheet + Számolótábla diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.qm index caa0e6592ba38fa945c31d65bb9be240f7d4b0ad..14eae2e10a3f27008fb7347136f9030e74b204be 100644 GIT binary patch delta 163 zcmZ4I^~Y<12&2G8(R4;e&&jon%b1iHCaW^VD^BG)S;ES|AZg0|(cYDTflGo%Kd703 zL2(67Nb?g02KhIW=Q7C)e&n5z9L&HVWzT!x(3pWi!D#YXrVvK&%}UH4F;duU!>Vs2^*JCH3FTu_vnm{OdPnp)ysnrUU_o1ape Lle(E#S&<0KScll3K$G8 vQiA{hA!3uI0v{2p4VYt7000_44c{>{001BClhp!L0R^)v1MnZSU?Us?PHq@2 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts index ddb4c6fa3..aa89279d5 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Senza nome diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.qm index 3f2df1bcb387d6954133cff5a8d2b39262307f93..3715ade1e474992e9a2fc4a8520cd042b08f59dc 100644 GIT binary patch delta 170 zcmexwdD&`$2&2G8(R4<}#L2ac%NajRR%MD;Jj`{ngq49o=qdL{dshYqb`Ku?pk@XJ z$yGcd%}*E@B=jcFWs(z;Ip)pXnYVuj8U?wTe%}UHh67EtAz6_}h znGD4Y84USAHi(tVPy&Rh91K9f2E^>4d3lMssVVG0wpegMQEFmJaYkxtiF;|Lm6dOP NN@-5&W`F4oi~vLMETRAa delta 115 zcmca?_1|)W2qVWv(R4;e(aE)p%NdtUR%MF!Eay5|!pguP^pyLfy(O~lUfHzCoj)6h+9&eWKIR*xay}UD$gMsqvdG8w<1NnNBuQCNQ RN#5P8#cU+8d4=?9MgTKuA5Z`Q diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts index e93ebe4e2..3cf71a56c 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + MeishoMisette diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_nl.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_nl.qm index 2b62c680718be4bb107979f371b5cd638f22cd12..161ea2fd5db7a40f2d459dd02d24391624b9f6be 100644 GIT binary patch delta 159 zcmZ4H@y=s{2&2G8(KJRT1xs zc|e%Rkjs$Dkix+L1Z+Ue9-5bzn46ly4rGf37Zjx?rW9wSrk1#uW?EVK=BJeAq;CGJ HsL2EX_97}B delta 91 zcmV-h0Hpu!NTx`T6afga6=nefANiAg0j2^V!jmNeUl~6N$#ew(02plx@jpcX016xo xFH(a503c$Mr2-!jnGKj@Qvd)Nc@5t&GXMY{+>_M;Qvx9Uvnm7N9SpreadsheetGui::Module Unnamed - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_no.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_no.qm index 435ce0c348dece0bf91b8a0e366a93326d6d42cd..3f142115e4e4dc3507b36e67f49dc9cc2fac9d7e 100644 GIT binary patch delta 158 zcmaFoyv=2T2&2G8(KJRTIqAu@jLR9%Ojc!zS4`(RS;ES|AU2WvqrEEw11BGkeo!+5 zgIonqNb?g02ALz1=Q7C)9^{>o9L&HVK9Tpnp)mu4EX(AxOuRTH;=sX=UY`pHiBWy7{R* GCldhuc`3L6 delta 90 zcmV-g0Hy!7MD9b76afga6=nef9ov(A0jB|slO+OQ87B(KbOita7Lg0_KScll2@VV| wQiA{h9ypVw0v{294VYt7000+}4c{>{0011slhp!K0v^S)Dg($IvoatA0+j3-9RL6T diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_no.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_no.ts index ef5d2bad9..f8e953886 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_no.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_no.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.qm index 0138b17194c1e39d8ebe3b98e8d96152bdd9a125..ccf455adbf938aa0437877befb29ad74530e8334 100644 GIT binary patch delta 163 zcmdnx)!{usgi&ClXgVXK_vBi}WlTy8lU14G6{mBZEMa9}koe2}(cYDTfh&ebKd703 zL2(sNNb?g02KjH3=Q7C)zUQ5h9L&HV#m;-*(3pWi!DjMVrVvK|%}UI_F;duU!>Vs2^*JCH3FTu_vnm{OdPnp)ysnrUU_o1ape Lle$@4S(ym{1d%Hp delta 89 zcmV-f0H*(lOS(#s6afga6=wkf1(SUNrUD_llO+OQ8Bq$!bOita82t{001BMlhp!L0SU7z1NtAcY9k&3UbGm& diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts index 560e9d05c..8df06d762 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Nienazwany diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-BR.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-BR.qm index 7a557735fb4ff6a98aaa0b1d1bec0e23773bbf69..9944761ad6869d6b8bfcd421d575b96d747d4407 100644 GIT binary patch delta 160 zcmdnx(c(Elgi&ClXgVWf;^bP!WlV}vlU14G6<2bdEMa9}kg(+bXz$9v!1;(rKd703 zLE!*TNb?g026>LjbD89X6qtEuBnLAvNZRw>H#7zcdrdye6v7z1S&5lP-d2Dim?4!R zmqCFck0BpOr*bd=0UHprhvwxa=BB2w1KDE11x2ZeDa9G7sU_~EnO0W5`6;D2shc&G G1epMlc_)(q delta 115 zcmZqi+~qMrgpp&TXgVXK{N!53WlRb;CaW^Vd!}=pEMa9}kg(+bXz$9v!1;(rKd703 zL7|Rk)}K8<@w2=f^&$*Fz?-FP$G{-N#hc}Oj)6h`An%OiUSpreadsheetGui::Module Unnamed - + Sem nome diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.qm index 21231de170182ddba8fa895660a79de93f0d5dbf..abf4eda0f0bf9f4b73827bf2c0e60e0326bba649 100644 GIT binary patch delta 159 zcmX@-J;P^$2&2G8(R4<}r;}?Lmov_rtjZLpq^QevvV@g^L2^6yM|)QW2Ch{+`a#VM z3`#CMASIzy`$Zp?P_Uxv44aK(<(LK~ZXAN^wSNYKePkrj?a%eoARh>gKh| GicA3CDl4`C delta 89 zcmV-f0H*(#OwLP?6afga6=wkfqmz9BrvY4(B?4X=AnOXrbOita8Mh1ZKScll3aSh* vQiA{hA_9}80v{1Y4VYt7000`j4c{>{001D2lhp!L0j0Al1CSuI{39F!oO&7* diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.ts index 7af3700b7..2b11159e6 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Sem nome diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.qm index 79c5ea9c747f979eb9b0004b6cb775dd7e7d7b02..96051994e6c2371549020d37890b2267069736aa 100644 GIT binary patch delta 166 zcmezEdE9G)2&2G8(KJRTMb62!jLR8MOjc!zSM=vPS;ES|An}v?qrEEw16Kx*eo!+5 zgJKR(Nb?g02KiN!=Q7C)uH~JP9L&HV`I+~=p)pYO-Q=@O!Awg0o0XW?$=eGt_%Wn1 zqyTXqLn%WpLncEB2LlkW0Wo`MUS48uY6?4$Ef!o*l$w}QoROMZ;$E6*W#yZnQks)G NSw~rN^Aja;CIAYjErI|5 delta 90 zcmV-g0Hy!OO8ZHW6afga6=nefAjOk?0jB|klO+OQ84C)@bOita82JnFKScll3TO;3 wQiA{hAt;lj0v{1+4VYt7000^D4c{>{001AVlhp!K0wK$@Dg&+`vm7HU0>BFz0{{R3 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts index af2524ff7..243ac0c92 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Nedenumit diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.qm index 048b3443347c3027b3c41165dcfd86b726915873..c851fdb92e4e05963bbaa0db815027c64e72f6b1 100644 GIT binary patch delta 160 zcmaFwz1wGk2&2G8(R4<}?~`j8mosjdtjZLx=*o4ngq49o@-_EIdshYqt`9u=LCp*d zN?|-9%}*E@6c$XL%Oo$jkatFMFav|sN8bB}#z4_0lg~1RF#g}H#JohoUWi4I#gxUI zL4n1B#RkZ-WwGF300K53W)IEFOUzA8VF$9sf(wdL6H|&aQd3LZOEaykeDhOEb5b`S IRMukx0EN0NQ2+n{ delta 88 zcmV-e0H^=EOz%sO6afga6=wkfvy*)RrvYq}B?4a=0Sd`<1pojU>kIKeMF0Q_@C+|f ug8%>`5|gC@9}!&*m}64_02=WP-!U@)03e`~)dExjyR#|-q#&~rBq;)wC>f>z diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts index 779293bc2..6d2708e67 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Без имени diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sk.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sk.qm index 88733f7637a335cbad0e1ed6346744027d745fa7..7b1d457915950ed2460f28306ccc2cec5f4bfbbb 100644 GIT binary patch delta 157 zcmX@-I?Zi@2&2G8(R4<}*OO}*mou)KtjZLpBxlKWvV@g^L2N$vM|)QW22MR5{h($B z26-Qzkme^046^ek&t;MqoX9&PIhcV#LY4Qvp)pYO-sH1PA&d_?ey)@Ix$~QlyG$(cQeg%Fe E06KXpk^lez delta 89 zcmV-f0H*(zM$Sc$6afga6=wkftCM{JrvYk{B?4X=9r+5$bOita7M~08KScll2`&sT vQiA{h9}JVF0v{1k4VYt7000;z4c{>{0014Hlhp!L0im-h1EL+X3?T{vbha2C diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sk.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sk.ts index d1182d235..8a1feb747 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sk.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sk.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.qm index 5571ecd037dfa59e3065fd88b54da6a7380b757a..d75d7c6e6999605c78fa02833933c348f6f7c4d1 100644 GIT binary patch delta 162 zcmccby4G!i2&2G8(R4<}?~`j8mosjgtjZLx=+1Srgq49o+>raDy(!-3#;==|m{-U;iZJ*wq%veO z@5|gC@9}!y(m}64_02m<+-!U@)03D>0)dExjud^xxs2!7aArP}DAq4`EofvWe diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts index 696d4e20e..18dd19242 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Neimenovan diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr.qm index 0e5f5f813dd2e97452403fbf5889c61e14958e0c..98ede9b8163a617ce6d42a67b04e024f6c5ba108 100644 GIT binary patch delta 162 zcmezBe9&cr2&2G8(KJRTIoZjzjLR7>Ojc!zSIp-+S;ES|AQsF0(cYDTfm4DC^kQ!tY}>t-e9D>C*%EP^bi zEanUfEEX&_K$b0w0S5yRumLf9XkK1oZfXiUkS!KmP?VaOQk;>RTH;=sX=UY`pHiBW Ky7{9#3ljh{0011&lhp!K0v^G$Dg)FUvqB*M0gk5`SpreadsheetGui::Module Unnamed - + Без имена diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.qm index 5befbf216fbddb51509d8dfa2d6c14ce87831884..ea505c6f232539ec1a8a810b32e62fed7c889788 100644 GIT binary patch delta 158 zcmez7yw7EV2&2G8(KJRTImyYjjLR7>Ojc!zSIp!(S;ES|AhwzNqrEEw1E&Fxeo!+5 zgIonqNb?g02ANZn=Q7C)?&qD69L&HVzLxjCp)mu4EZ5|-Ou{0011ylhp!K0v^q?Dg(|Ovp66I0<7v8s{jB1 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.ts index 142d79e2d..a41da8a8f 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Namnlös diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.qm index f7908a12cd98369440fb5eb386bb44fcff2459a2..479bfed6291642c8062ebda282c2fd54ac415d62 100644 GIT binary patch delta 157 zcmccVywGKW2&2G8(KJRTInl|rjLR8!Ojc!zSIp!(S;ES|AePPj(cYDTfm4J>Kd703 zK`w(Qr1=R0gUpr5bD87?ck|9j4rX8wkLSH_Xw1MMD>C^kQwZbt%}UHSWUToZLK*Ua zFp(jbA(bJ8g8>NGfS5frFE24SHH96>77H#YN=-~D&PYuyaWBoZvhvMODa}dU{8j!5 FBLLyaD*FHc delta 89 zcmV-f0H*(;MA<`-6afga6=nef9o3V40jB|YlO+OQ87T_MbOita7HbRfKScll2^0)3 vQiA{h9w?Kg0v{234VYt7000+X4c{>{0011+lhp!L0k^X%1K1q1LLlD(T(ucd diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts index bd61c80b0..70545edca 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.qm index 85ffbcf93470bcbb0cb1d2ac5a4f7ead621adda9..cbedbe33913c1a1eb8c0b705706ee81c1f7913d9 100644 GIT binary patch delta 161 zcmdn&{@;Cq2&2G8(R4<}i<4^^moxTER%MD)l9%Q>S;ES|AbybhqrEEw1Lp%C{h($B z1_dLYkme^0402_Y=Q7C)mh#R>4rXAGILUk8&=@GXYw}s95XQrsm6)sK?1fkaSxi~X z85CG-SqxarS&UdLI2eF{4T#x8^YRjNQ&ZT1Y_Z^iqSVBc;*8YP68F+fD=Xjpl+v8k J&C?ZSm;lbIDl`B9 delta 89 zcmV-f0H*){N3%ze6afga6=wkfjgx%=rvXTlB?4X=9@h%VbOita7r_hhKScll3E&Jb vQiA{hAMTT-0v{1E4VYt7000=t4c{>{0016#lhp!L0e`b919~2_=ph#Z%dQ&2 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts index 2a3c4b500..c2f4e5a16 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts @@ -429,7 +429,7 @@ SpreadsheetGui::Module Unnamed - + Без назви diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-CN.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-CN.qm index 929bce34c87c9aa53addf79208ad7a54979388f4..d46b4df8a8934156bfed99b4fede3af861c36078 100644 GIT binary patch delta 157 zcmaFuwAp!r2&2G8(R4<}nUiZ7mos`zR%MD;e9d*Tgq49o%$NJ4y(^Gi}<|hmcGJcciGRXSpreadsheetGui::Module Unnamed - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-TW.qm b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-TW.qm index c63b0d79c725f8673dad6dd3157c24bbc9fc896a..93689a6998b003e4c7f90bd96fcf71562c1fd934 100644 GIT binary patch delta 149 zcmbPicG+x#2&2G8(R4<}{K>V9%Nc)7R%MD;e8_dOgq49o(31P3y(4d3lMssVVG0wpegMQEFmJaYkxtiF;|Lm6dOPN@-5&=4QzWi~#4#D31UD delta 115 zcmca?HrZ@~2qVWv(R4;e^U1Z0%NY+%R%MF!T*-B^gq49o(31P3y(y7xQw|i!cBIZSpreadsheetGui::Module Unnamed - + 未命名 diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_af.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_af.qm index ffd4654eeae0aed801fb501d59642b11f3f6bc28..ab0ade1526935b2d2f07f54682f7b5a8acdd6d35 100644 GIT binary patch delta 518 zcmX9)T}TvB6#i!J=$)P2*`)u!-JMj{Rf-7dk9^bh$>||{5FeC*-Ed{xothq83@xLG zST=VD>7kMkr7|i)gCMbxR4D32$V8BBHFA3>(CooNI?;uD?z!K&-~GOGdYk?<^=7_`Kykm=oK^@wBX;RIz+;Nv`pbaOHO5mM zkUlfDHV*7K#QaAd0Q<7+eq$*RTwxPg7ih7WZije5sdCH)N?%Chg(=cwtI~R66Htq! zjhz#KJCqp?iheosJ`nrJ_bxpF$_w0_sUeP!TZ02Y$tiv*Hv*K+^YjK$)Z6^&yDxw* z!e53y5YG6gmD9kk0RQ^Cg}nTd+2JujtdXx?o&^+3zLj1Cw4^-Qc7xtKjxGdxhFsaZ zk)=dXB3@;bijg1`Twdxc@j2au;qWVE~dS|Az?%`Bd*nl bbuHRybXaDTu7;VkW42?kZKG#BcLIL_1#^qg delta 410 zcmWMiTPTBJ7=Hf$`}wwi`=_)dhYfSsq{MP6%He`CZbsvMZ{FUgp40nVJyboRAMj&z+zK!^Chq%z=pvjI=>SW! z5bKcuzAV%`oIvE1SmTrdb3p7Z4*;5w_%>ytThF+I1JWH+Y;AykhZ%B~fcPZltxN&Z zyV>5P8Z_*r-%UK9Wbt(ZDP_{`>k;{}PwBfo3~1d_C}t0kw_S_rV&b&x!dO?&;~v(5 z)E?e?QVb-oa{Gb@h&ttiffc~i$ekggC>FkP{sbg^@*VRfX}h@pr2>dqThere is a new release of FreeCAD available. There is a new release of FreeCAD available. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_cs.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_cs.qm index 898cfc0c05611b7121ef6e57d2b4c881757830b9..f3d2ea09b82cf985247e3bb79a9e83a07b0126e4 100644 GIT binary patch delta 515 zcmX9)Ur19?82{aSZaeqS?nWXK=G<*Vn-)ZfR@6fwvxj!2ht-1*#-$CM%x!uhCdJGm zh!{6@L@y>0L=m(o^{HVnQbEawBnpBW{-NxlpfJcn`l18pJKy0! zp$e|wYysFljI88GvCB~j?-VbZ6+jyozuXD}d#^B_ z=YVvQ>Fp_?T4VJG9|E;y_8=Mn8rIm%m;zdCK35=KRBD>Cfjvd3v@r`*v8=S2-Ui$! zq^+76K)o<}zftrBMqkzUYA#;8S_Fa{JUM@iNQ`IhO#oh-U#>g?0?XXlB98kbf3mm^ z)H(clXo+wyfA_f)sNww6?`~jsNM;A708x~$4KD-Al6>3w0Qmdma?cHVUnrP@e`s78 zyF(HiOKQuuNJ^&F);Y4s2h{MuDs?}tuK3D?AJD5$aAYXu)y@#EFfyJGf*Ex@YL3k#!oZ$)v2B`q%d3lt9L5R76OEeu?b^Dqxwo zRE+iU{Ee+&pB?xz@RXZy#-zUO_P v3Usy7YCguAuRxy`^JRrR0lJ!pfB*G8Kzlf?Gl2pAfAcTKOPrhScr4@rsSThere is a new release of FreeCAD available. Je k dispozici nová verze FreeCADu. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_de.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_de.qm index d10dadd73fd8e95b10f875c21186dcb1e9af05ed..e6744833285b9b5b09ac8e206d02398295ed4b76 100644 GIT binary patch delta 525 zcmW+yT}TvB7(Fw0*gMYdtXLu@{!E&`nH7>E_+ZM~Lrw_#Bq|N;ge%*+xIQF`_Jbg@ zth%f8t-zawJ5kM8igV8LYV1RKy2c$Em zR(XJ=6_$Sc6_D1!rs^|+yck;w#(@^w=m`O~aVdY^2V8qDE&h53T#_Iix1AEZdy9Yl`2a{>;QRlYNlQ#-H|GJdR_=TD8Bk*K%fJqhSthTx3=mIWNEb4Cr{jWS zq%eO?DLxfR$ZzG&IysbYDUS9iu@))2X{*$KXk~t4mp82~Z;nXSjID6|1v!<~g0(|H z>rhKr6(usO>e~yH+!eK%my!yr`o|>oIq`O(`2Kqsuc==$KLnF%*;;4Zx}sOp3dru;v13+>dJHp8hI e9j`A2tL4Kz>QjjBJu4)7vg3F?K!)1;6LX(-*=P}(VF%_#uCmb`ugNQ%nsh6a=*k5iDaz}iRw;L)B02bj$ch`Z$`_dchP3Kk`b@3R z>W0thYD7!q!~pF|XMWnM#`W&yN19hz%6@(WoQ5dbz6WwmQNvthVpTMru9LBB;oThere is a new release of FreeCAD available. Es gibt eine neue Version von FreeCAD. + + + Load an FEM example analysis + Laden einer FEM Beispiel-Analyse + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_el.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_el.qm index cd9ea2667b7c54efead36e25dd021eb40104e936..ff4f552c0159fdf1ded079d29fb3344b42718b9d 100644 GIT binary patch delta 500 zcmX9)T}V@57=CuXli%@dXDMpK($m3zry(l+L3AS%f}O6s>4(LEO`OhcbS|6}YKWjQ zmUBdOQB)8`^m8#QC@~n-$h3qm5=zX|u)>hBE#Rj(B1`=7vJD92a}t(I2w z`IkUWgW}=G$&!9$(?{|vl6K40ZL(s^-r2TH@}v9TeV>2?+2sf7E+l_hX5~vK;6?}r zywE5IDYwD}oo*i@gmfc}0M-A04XS%#!VgpWXLb%ni92L?H6y6Cx^&GKF}lM6A3cpg Pujw}v`K%zBvT52Ll^BN` delta 399 zcmcZ;^(b%jj7uA0Rsb%71OJ! z$_xw|yO`N~*cljD#hH1X^B5RJg_-3HS1>S0moYC7QDR_Fmto#FiIV{cn2*;@W?%1sE4XGXsN~3$NCZcMJ@2eUtYximUPRzE1@@U&WD+vF0n# k%k_L&Ay0tLm*U@leGkwS*Gym_zuf$b@dDRo8(swk0NQtOeEThere is a new release of FreeCAD available. Υπάρχει μια νέα έκδοση του FreeCAD διαθέσιμη. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.qm index 5d23646044492946609a4fcaffde182afbf6c86e..6fcf40b6197533ad96b271951687a2bebac5317d 100644 GIT binary patch delta 494 zcmW+yUr1AN7(Ms?Zu{NcySt)RM!4;oY5v0ssR;IzOnUJ4G=fru8xA&|S7|7UqJ;!y zV>&P4Q&K?`QAun)L}DP8p}3bG5=@z{{|^P34;e_GesCVX1Lu6_J97=$#u3jz4mXBt z0M?6~1RP`HrKCbU#9ku@xGeFFMc}@6#V61|1|+#U1rBJfOt;6e(gP=bjxGO6`*Kco{kKWkJmN?-#}%^IeLd8 zmPeGDEs>IRDktC4i~NfcyppH$AC)!lG|B&{EJ5~iml}DxPW%N|)!jkh=o77C<|p7^ z(N3{is^p?(EWH4B&1+5kG*x0~zrqy13n`VarahxGse delta 437 zcmWMjT}V@57=F(APJZW{?c2mOqjEz{+h$-Px&*r#kqGM|yzvLAFxVtC3QEviU>7Rm zY$~!VrO84GOmOomF%eTylDu*hh&VNiP*6l#AinR-3lHzZ^YgAXt~7+R14;CR$^h1Z z@OBrF6~#)W1t_^FT^>;Y9+jGd29Obv>kS=ny^}k;GmCJmgnWpMYY)pDk4pCx<^D9RV^qf4lV&xPHiuG*Lu3pIqGqY?=JCV~ubt zPwqbea^LV@|C`85Ol74BK(1CJ#wL*eTAlax(Op!#AC41#s&≫DTT49nGSwrCML4 z1_-#4+Q2ZGcKp@L&SdiTPcL7j(0ot7_aa4x9_ib8^MtpXSdawOS0>-YF;MWseDi%b zaO0M6EgS&$C!&IRsH8gK{W(oStD=d!fvfA{@F@ihU9UWBxg&uX-f_ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts index cf6aa96cb..47cbddfeb 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Hay una nueva versión de FreeCAD disponible. + + + Load an FEM example analysis + Cargar un ejemplo de análisis FEM + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.qm index f392d96fe11520135465225df545c084a6f86ec6..c9d265667e5dc37097d1b3a9b53a988cb7f1c8f9 100644 GIT binary patch delta 518 zcmX9)T}TvB7(Fw0+B?qfT_fF)vUU8a)lHC+{-76=l?bPYScrVsnAia~*4@RCP!u&H z2w5g|3F#q`ekh8qhqZ@L6c)?=2_g!FSk&l;C@6ffMf#!(_q*RcALrb2&(l-+j?wa= z0xn%{2G|XZE)N1_+wuI67YI&B6_X0Ub5bh$eA~)>VCOv^Upx%dWO?fPB(T}y!-cy*-Bs?a6GP1K2QNMW z{xF}Ze@)WQ_=hjYfr?W8`A>wbd{SFP?u3Xd~)`^AV^HsQJzj(m9ziB>zw_ zQZjyx9M%tL%^NZq>DTr>p&zO)E!4e2&lk1j9eJV`-7HP=>Xf@P`=<_iT8T?4K!}e?JQq8jAtD zTXMf7M>~BG?MT8z6gt%e)i#7+&}pHUkS?SUr~d!cq`nU}VzAYJS-WUgwkOS~ZYK1$ bkfB?>W>+e1(bbIi*)coQBFb{Zo}>C-1cHgj delta 436 zcmWNOUuaTs6vw~!{%-#6{pnSZtf(zTXZ|6Gl8RApBdmdY5=K7w;sTARu(t{gd?}He z8nKr)#>VImnGd?BM2BoSHdehg2tu^cAEJV>7Z;;*UJe}2Ip5FsoOW#OYVlxp3lATM z0JeZ)F9XH+*8882|)fW-8% zn}8$1j-P%33=Og8Q8(Z_!0N|!dB**HJie*<_&`Hjv+8o9u4&(8w39sZ#E3K;QmV?Y!76<*!g28Mh5t^YmX zndDpFCxF8<{M%lfQ0}ViR2`7V)oJ4k;964K$vpLKYvE#zz#LjmPLhR1?a{oQtR}Sl z^f-_W{L;!Z#OxO$v@a98CeFSi&#FmWO7{sUFM7jmLe866fdth#bF#8Sby!Z$<$x10 zJ-G54a4PyaHU=maJ@R>p1RQ#tp9hXr^*`6h&`8QE-QT4Xgss=3Un&2!wLUeVLa-El P;zMm98KO3@Tz35jO>K6v diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts index 996ca125d..af9eed9d5 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. FreeCAD:n uusi versio on saatavilla. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fr.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_fr.qm index a30653982223a1b9f12740818c4f4f6d98b6c256..a7d45425b91844e2b887414425a0a5592d3e90f1 100644 GIT binary patch delta 473 zcmWkqUr1AN6#ll~)!*Ik?k-AMD7kK?PUl2KDgr}d%m?ZA(g=KTaG{0DbxM0E$-hWY zA?CbQOY zMu4R;ksAbxw($P43-C|H>rNYo_WODkaOUm#r{{rMALC;jDBw&DL;?3p=4qG*%93m@ zR1VY(vz18)sMy+|MYw6HW+?_#o|2Zg-U5=4_Ii#0^^vsiUICOueAa6_jDPfWIa_(@ z#vC9qVdR1N_NGCcjQoR z6~Q|j^gbzaWf{8PR@fNP%bQBa!Yev)(90shl%=?mwp&gp&XO delta 417 zcmWNNUr3W-6vm%@@0aiQee<26p%!h_)V0kG6)BN~E+m4%y4r1nqF{>U&?_-EQ3w^; zA4TlO5J8Hd6t-PC7L3hNVsxje*q9SFq5|2?#Nj!Yhx2fLzbE5OKZ#tszJtkdC%_Vj z6aqlqAii}Q0EaQ^Y=XGj)6bjP2~b#|+r2 zSZY=U4a)`QC})vv@nN9(t(-i~0There is a new release of FreeCAD available. Une nouvelle version de FreeCAD est disponible. + + + Load an FEM example analysis + Charger un exemple d'analyse MEF + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.qm index 732e985cf1f496a1e37741471b96f3ff5c76065b..b2f5febacca4510cd1f7a95571d5b435740ec260 100644 GIT binary patch delta 518 zcmXAlUr1AN6vw~!{;vM+?sg~05c{)r+x#~PBE(V%!p8RG4FVzQVRT_LH|93ni;}n` zf{1Z*u8!w0^yLd}40@kv)|HuP0U1mJP z0co76zBu6c!d&NG0VhK2WtSUhc+Td=ETF>*!#S$UOWu46aNm$-_ZF!i`zVzXWx)1S zI;xoil$Gp@Mqwel>WW&U{P@;8pzaNi6)pm&3p_bF0aTUv?c!^|ljY_Sm8k7}YIz%Q zw(*&!HPU|1zwTZEYIgX}pCGX;$?R+%5bNZ-BkR<{EsvW&0PT`I-+P~QI&!+;N_)F4 zV^0XNaY$(?i-dYiY5hzi@=3+tzeTdu%BFLk${$);hUDddwfF6B!ZK}Vp4|cJSJdW( zUx2GeJ3vh;7f`#LnG-aal&3o z#@ZG#f*LXiqfj5Vdf8YY>L8gKJ~R+Sw$$>$AQNK3@SMkw^KriKcMAR64`=XqVR{=wtQmM-U z!WVt-knTqdjREnW*OwQ8CO3bazeS!t{v??IOhG=q_YtsLdALFrL!K|K?*k2MJmcH| zY`1yw*FB)_89zK50513ISbG|fn{@H;E?_O_mi;rdx2g6-Qly`#LD>&n=u}@O&D2#> zXX3pGz6p>-|@ zT=i+!R*nJ7KkX*#B1qkuXXi5=TG9r1Cqas8e}<@#ebgvTo)Vnz#z)?tRA|if^+%Sd Tsc%N;6`QGw)GSglL&kazE9H1u diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts index ab24b9e88..8d88567b8 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. There is a new release of FreeCAD available. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.qm index a2a478f37e6fff07ed6adbc892b864093a161e6d..48d419b517615d852398043b81884dfb8e7577d4 100644 GIT binary patch delta 755 zcmYjOZ%7ky7=Cs){oPJ)rC9dI%}d2LF(M?R@JpFe;iABZ`XHTcRAFX8oGGhmMyHuV_+cHiLahydwr-06r&_z~`cBMxL<;}&`g0b7V? z9Sksz@=~P+Y&gMNcRd2OF7gj+3xMJ{Khk3YJ^Vx{N_`bZ`=B2v7%>jdzal+;+_>yr z1*ClA%El2O<52g5V$OQ7`%S)kfo(}V0g65|b)tfLHZ$M7K45(lyA*>G{0t|De`to=gv>(`Bb z7={2-!VQ$%9Qa{q7Q>A=02c!I1(n`1<>$~!XEmzepwmW~8yZD`YBHfJogNA;$#+l| zKm)vR!cKJ`=855iLb+>=8zjt+fS~`Lbc(zhui}&yO|GuWa>%apipQtA=vz@+{qE@T zw44EF=Dw`7X%Y)Y!*Xt63yrELiPT_~M*9&Yi6#m?lc7ZaSS(=~-_eX2!n9;H#Y+>TpT!yK*C(h+)I*uRx{{orPY;mdKZcxKLB@U@!(r^8HFcgsI%i33jmJS9XtSP? F{sK!Bzo-BJ delta 642 zcmXX@Ur1A76#wmhx4zvw?<}zq*0yrxwirlAi=qNq85u?ogQy3~w&_;7E1O_sxxj}~ z#+pjlOA@PS1QjuRN+w7-=-*33LVp-rkrfpo_Ao&@ck5m_-#Nc?e&_to_gy~z@mR7p zHjgV;n*gRFSr`Or4&(VQBj9xE)=!E6zoqlX6Ts?=!ij_oIMTvETOKeJgzwjEfc*pG zaSn(xO!0()+DFW?Jq>JVWp};xK*K(k9g{#G%MFeb@4D!miURc;#p!R)Xdasrm(&%Y zYCtTRvVeSh^iG3dPK~~@##(q?@d2=9FYnIn0XFyZ-qa*eo#U7C_W)ZXPn3wFtm6+~ zd;!cR{>1T`daHbX;Rs-Q!@n-Kla{oeHBJG7TR)Nb1XvgKv%wLn`zakvW(Z%FhJ+xn zs!JM9)zGe1X=I`mh&ldBV>d{&-6S`y2&CxS5A8DXO%+e@uhkD(!qHP*+rb2WTPNS)=a465WB_ zc*gsg&TRF}yJ_el6+`qCKQbjHcCS5|hZjKvunAGJKJ+036=8~1bdv4+pKU>e z@&S0zjQxc7lYg2xA*#^WezJaweCQ}6{xVk`AGVl%A?nu!SDB^N2gwWI998z97v1DX m%UKQ6;ts0Ux>S@@avG-fY{pR>qSHtEdg!m<(Tv@CO8E!dKcJid diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts index 1e8155b54..f7af5229c 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts @@ -261,17 +261,17 @@ http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc - http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc + http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc http://www.freecadweb.org/wiki/index.php?title=Tutorials - http://www.freecadweb.org/wiki/index.php?title=Tutorials + http://www.freecadweb.org/wiki/index.php?title=Tutorials http://www.freecadweb.org/wiki/index.php?title=Power_users_hub - http://www.freecadweb.org/wiki/index.php?title=Power_users_hub + http://www.freecadweb.org/wiki/index.php?title=Power_users_hub @@ -281,12 +281,12 @@ The section of the FreeCAD website dedicated to python scripting, with examples, explanations, and API commands. - The section of the FreeCAD website dedicated to python scripting, with examples, explanations, and API commands. + Ez a FreeCAD weboldal szakasz a python script írásnak szentelt, példákkal, magyarázatokkal és API-parancsokkal. http://www.freecadweb.org/wiki/index.php?title=Workbenches - http://www.freecadweb.org/wiki/index.php?title=Workbenches + http://www.freecadweb.org/wiki/index.php?title=Workbenches @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Egy új FreeCAD kiadás érhető el. + + + Load an FEM example analysis + Betölt egy FEM (Finite Element Method) példa elemzést + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_it.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_it.qm index d86a3c95b149dcc9c1ecf8289856fe3a35d2022a..8b755a14f9a8a79daa28be7dba4ead032f1f61ab 100644 GIT binary patch delta 505 zcmXw#Ur1AN6vw~6`@8LT{q5cvr7qIuO;=70BBZ|*1TtUhMh_C9F}SdWTWd;tDH1Iz zh!}J35`mFLAgw}sm=)1*V5Lx0P!9%?3@!Qx1%(7g(&?cC=iwYUUq0uP?Z|XyD*8(} zKhOg3QDo-&fR*KVy4?db71^p`6%a33IF$xmMWrJxX}?W5X_Wvyt9-dw4>TU;A|(Lz z4>wv9K&8Wdn{q%+nBQox0~!i^B3lM3KHcZg-F~%kJPFi?)WYW{zzWr+E_5#eMzgwD zH37IogCh;>-r#dzOm~UZ^JBoe2O>Vb6R3M6dae%x%SXhi(k;M$S)>=~#CRv}Jo^Cn z{NiEY1!dnCZ$9k2-yvdorSXm9fO1GXcltFT$Fxi7Szv8Yo9wzkIeQ$7)%Kq) z%U&VEz>sWNQV1k3H&4-rnkj?F<|$Q^b89APA8_*&rE58N*XU28O6eP}odMR*8cmPC z0ksE>ExeVC+%&AWcgdXB2#Kvg^)KUlgy{WWJ*;Wk!zM WM|wH1_sSTOx3;*7#MhDm|jg)W?<0xz|7vm&cML(mzmc&kAXo{mRZhl1p|ZhJLcsf zN(>C@Zp`~8aWVh_^YOaL3=G`2STwg3GcYKf z#l)rRj1Cje$|Z46V3&Hlj)6hdnLX#Y4N#9Sd%>c43=9JL>Ak?V_*T`>*c-nj)Ubz@RO;`4^)!mtYiwGeaUn5kn?JGMG-CJd;~~vLjFSW;Na{1pp}Z Ba+&}D diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts index 682d49cd7..27e362c06 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts @@ -256,7 +256,7 @@ Load an Architectural example model - Caricare un esempio di modello architettonico + Carica un esempio di modello architettonico @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. È disponibile una nuova release di FreeCAD . + + + Load an FEM example analysis + Carica un esempio di analisi FEM + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.qm index 9824028c6c03195e86695272456deb40d9fb6288..33d96cfc4e400d84f5dea4772ab0fa9b0e66e278 100644 GIT binary patch delta 516 zcmX9)Ur1A76#w1(-TB?!b*I!^bLn=`2eX2dp&3LkYd(4FL7#dUT-?ybbz9y7rI`I8 z5LrtdB7)5bDhaX&jUE&ODFsCdd@vAVxWw8+N#ToubfgcybI$iW=ls6kIg`QhD?_gS zJO-Ww0P!Yz&|N?auQ&BEJV^7Kw1;8XB5Jl#XEW)u=~W~Xbs>q8BcS7 zwJ|jq2THFoU&9n|;xl{IUJX>PvxN~m=&vw)D3AKl*ocuF42d<9N+%8OltR6m;41%H2!edH+# zta_;g4n@+@rZg_mfVL$i)Kj3}rh86q4sg(GVMHjK?Hd7?M}= zs!^`)Cw4Gd3??a5LU~VtqDL} z4d0(oK*djOPU2eS)a@?7*e!eBPk>NqMfSD*0ZNJNkK6~u*7%}@WsF~%>(WHb(*_Vz zCt6Mm31Omr-UaA8MF0IN5M3o4ej=1Zv3dRigl~x5lq;Is5jSt;K!`=W{??Mpf{tfx z1I(qHa@+xtKHX8{F!71bN@gyFGBHD9raU$GPon(~YQC2a3-GEXollfjs6LvGsBhDA zJEaC@>l@d9fT)Y0jJZJ|)~2N$e*zIp&OH{D%(brua*TEwSg()H{WdgPpUJU1_~6<@ TDV8Ss?Yi5~288=lNjLrji9T%= diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts index 5b51061a9..2f43e1fed 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts @@ -299,5 +299,10 @@ There is a new release of FreeCAD available. FreeCAD の新しいリリースが利用できます。 + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.qm index 82a48b4414b7e77741814e584365a53b54e5d2a5..16dcdb69bdbb5c00754562376e4616257b8605c8 100644 GIT binary patch delta 976 zcmYLHZEQ?g7=F&ZbLW1v(?N`B^}{ut?si&RLDg5Y@ikp59TiHVl`_nvGmM$h`fAY@ zD`=bP#IgL@B1nkcwVT}9kWx{U5EAjDk`1az@q-`qhx&+jgt#Z?TKt9iWtuesdCRD^U!e=C>6tDr}`-oUADoXOQu3uHH$F1)w~ zG>SJ(gON{w#cmoJ)deIKNt*dAzJNO6nhAabt~P0 zW+Gaq{t`Fn{Drzp2#}Di>b_$mD6z?E^P%~a*gn)!DDIsaV zQYB9zfz0ySPtKeJDQw#yMSL-3P5Dzwbh-6X?*&TmT@c7`6X_fL3pe}-L&qwF5J5Ez zMd%g85|r_mrgVN~SStT$9nK4-N>*mXB~fJE{D9Ivyo`!`R9f?8^&@0VRV9|W06_vb zVl!&7fp$7J5t6tVfzB(m0$UME;iciDGe3<)?{eO*IgHENC6-o!!$#vqXvE@@f(?GW|T&}KHVGEOWYpazs0*Q8uHVtH&j;}InoBq;5zw4UDC%PP8z!kj1mHGXkl5OHYL8ChVB>M~u=Kp~J delta 884 zcmXX?TS!z<6kX?@d*|GHow2ffmD(_BBdLWm%}hjTjiE)F zOyZ&XGJ0YJ6?6>@O{vVJAgDePq6b-&(c>efu;?#DUO&x#*k81@CvZ&%7^2rz=EG#vyt6iLg_h zi0cE)LCv&X2bfpO?x_Tf1}(pQGoa^d-9t|R#jid0X96jOwl#YX(VW@V&lv->EZea- z63$%0*maH;1;p%;D?oaQ*m*ApaD|2c>?vS66AiB}0cp7+GSP=H9P7l@2XBGoYocet zLsGU&48Pw1#Mg;;KT63-jm{T!(c(1yWaI_l9MNxAwGi%`vAWHo{;1KYRFQyYqxozM zC6#BioLox@CK>G=k`l@`vwkZiDBfH$NQvn%^8+I!=&|`a`F0sOZi(Wpv`}x4s=EA@ z2J7t$Pd5Vd4m;cfpULT%Bb(<@#9>FlGfGAqca(~yz?=(?FO}pd?NBtUAEyKhqHBuY z(EV{*|I=Pd=1(=?iM1x!Cq)!t4Jr|m`_*{)OVtz05I_a0P>m4vE9l%!oigl{wbSEd zrdGmyR*S|t>y{C{Lln{|fRL4AXiP4Qw$BJoy>ntKF?fl=Cri!D*k#xVKUKAG()sTW z$up))fz!HU_A~3d{gyI+VCsnzIaq{ptfb#Z>-S&>owYQp#&#m`SudtN5UfdFiht=S zCpJHcAcgQ+O$il@m%%GPB%Vp!NBEklmD>pv{BLUqsXaftnQV?0P#;M4a!8%78ase$Qt!@vcLPG>DB-M diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts index f19b0e6e3..34d5be551 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts @@ -46,7 +46,7 @@ Load a Drawing extraction - Open een tekening-extractie + Laad een Tekening-extractie @@ -81,7 +81,7 @@ Designing parts - Ontwerpen van onderdelen + Ontwerpen van Onderdelen @@ -101,12 +101,12 @@ Designing architectural elements - Het ontwerpen van architecturale elementen + Ontwerpen van bouwkundige elementen The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - de </b>bouwkundig ontwerp</b> werkbank is speciaal ontworpen voor het werken met bouwkundige elementen zoals muren of ramen. Begin met het tekenen van 2D vormen, en gebruik ze als leidraad om bouwkundige objecten te ontwerpen. + De <b>Bouwkundig Ontwerp</b> werkbank is speciaal ontworpen voor het werken met bouwkundige elementen zoals muren of ramen. Begin met het tekenen van 2D vormen, en gebruik ze als leidraad om bouwkundige objecten te ontwerpen. @@ -121,12 +121,12 @@ FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD biedt u verschillende gereedschappen om te converteren tussen Mesh en Part objecten. + FreeCAD biedt u verschillende gereedschappen om te converteren tussen Mesh en Onderdeel objecten. Work with Meshes - Werk met meshes + Werk met Meshes @@ -161,7 +161,7 @@ Latest videos - Recentste Video's + Nieuwste video 's @@ -236,7 +236,7 @@ The FreeCAD interface is divided in workbenches, which are sets of tools suited for a specific task. You can start with one of the workbenches in this list, or with the complete workbench, which presents you with some of the most used tools gathered from other workbenches. Click to read more about workbenches on the FreeCAD website. - De FreeCad interface is onderverdeeld in werkbanken, verzamelingen van gereedschappen die zijn geschikt voor een bepaalde taak. U kunt beginnen met een van de werkbanken in deze lijst, of met de volledige werkbank, met een aantal van de meest gebruikte gereedschappen van andere werkbanken. Klik om op de FreeCad website meer te lezen over werkbanken. + De FreeCAD interface is onderverdeeld in werkbanken, verzamelingen van gereedschappen die geschikt zijn voor een bepaalde taak. U kunt beginnen met een van de werkbanken in deze lijst, of met de volledige werkbank, met een aantal van de meest gebruikte gereedschappen van andere werkbanken. Klik om meer te lezen over werkbanken op de FreeCAD website. @@ -251,7 +251,7 @@ The <b>Ship Design</b> module offers several tools to help ship designers to view, model and calculate profiles and other specific properties of ship hulls. - De <b>Scheepsontwerp</b>-module biedt verschillende hulpmiddelen voor scheepsontwerpers om profielen en andere bepaalde eigenschappen van scheepsrompen te bekijken, te ontwerpen en te berekenen. + De <b>Scheepsontwerp</b>-module biedt verschillende hulpmiddelen voor scheepsontwerpers om profielen en andere eigenschappen van scheepsrompen te bekijken, te ontwerpen en te berekenen. @@ -261,17 +261,17 @@ http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc - http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc + http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc/nl http://www.freecadweb.org/wiki/index.php?title=Tutorials - http://www.freecadweb.org/wiki/index.php?title=Tutorials + http://www.freecadweb.org/wiki/index.php?title=Tutorials/nl http://www.freecadweb.org/wiki/index.php?title=Power_users_hub - http://www.freecadweb.org/wiki/index.php?title=Power_users_hub + http://www.freecadweb.org/wiki/index.php?title=Power_users_hub/nl @@ -281,12 +281,12 @@ The section of the FreeCAD website dedicated to python scripting, with examples, explanations, and API commands. - De sectie van de FreeCAD website gewijd aan python scripting, met voorbeelden, uitleg en API. + De sectie van de FreeCAD website gewijd aan Python scripting, met voorbeelden, uitleg en API. http://www.freecadweb.org/wiki/index.php?title=Workbenches - http://www.freecadweb.org/wiki/index.php?title=Workbenches + http://www.freecadweb.org/wiki/index.php?title=Workbenches/nl @@ -296,7 +296,12 @@ There is a new release of FreeCAD available. - Een nieuwe versie van FreeCAD is beschikbaar. + Er is een nieuwe versie van FreeCAD beschikbaar. + + + + Load an FEM example analysis + Open een FEM voorbeeld analyse diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_no.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_no.qm index 00b8c1367a75b005638a58bc2bde1be4c95b73e8..937cbc60c2eac4d6d35eab4e4092a1d1bb1d9a44 100644 GIT binary patch delta 518 zcmXAlUr1AN6vw~!{%-#6?sjLCrD&U1SLs9w5i>#QK{lei!w12Lur6-kVs6X(;xPPE z2^C}hS=LKR1W^grg9<^SATGiFnLQW;F=pYPhXTVF1L;IR_?_SRox}N_&p9j2?=B4H z^rUfnpb}trFqr8E4wzV~u>_xF9K4qo{|;v1lyk>}g)l1^Px7o0ur zE0*C=A}qO~RPKpHTBB6Gp$Ykd;^|l;S-X;P%v1R*D~pr7?6bB_{3fi2w(>_efnzIb z*}_l2c}qRT>S-g_RQ>BTu) zC_6v7Eu2#>pGE^BFyMzqHcZwF4|IA1=%h$Hq6m@yKWmU5gNYza`QNUy=pJc^7=FzN eYhI781v-uPXedBmBNQ`(X0k#$I9Y4EU-%b(M2WNj delta 436 zcmWNOUuaTs6vw~!{%-r-d-ZCFNUWOVUHPYA3@M9xlL`cVX;1_kdq}W|&DB#FD)`cd zm>T6vN(fRE)q_?K$p)em+7@jOZ6g>%i)s&x2wxnG&Ura-IA6Y>?>WoY)~;r)i48n> z=mpp;vYj|!5%B4p32>hj4wWQ;-xF@6Gr&Mhyq-}3S6Pe&w*f<4+V_&4+^gdv`BK2+a zfSSxzoI*6WVox~uVD}9$?BloF7f3SBqvaA{{=k#lF9BWWnLa6ufBD;`AHb0<{?YXr zaGd8Gze0em$barl5K2^LBQ-z_$%V`oU|*3NkvZC1QZ8q!1ZGfDVgxu4R%XiThere is a new release of FreeCAD available. There is a new release of FreeCAD available. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.qm index e6f8cbdcd37c3dfd57f15cecd6c834d78efcb5db..bf14c41c3336bb317e126f7cf5d10a99205b2b78 100644 GIT binary patch delta 498 zcmX9)T}V@57=E_z)OU8aGsVpHK50 zGINdyp`wCV6xD@x5e&-=V@`daGxVE)kz z`W|=yb`OKgF(B^?rY_k5w-G<>(3Z>{Y6h@{%s(HN0+o4;_j5q_$mE(3aQF@@s(J+! z3M^Sy0#w{&V?!3uVUw{0@s0?UqXtk~Eu?;o6Pgir!h3}O5q1m40INIxvceRJ&lCq{ z`LXOfpuC+2C#!*yVXnV;3gjkvSLQWP*2D*Pi6KAd@26J*=NkXynkD7?d|~4X;E3|| zzxCv#QDkRE0kcc&?VbmuTjHaEB|zC0(=B&N$B|G?MV;=mmZ2wP(B+dnduB4yA)T9` z0r@w{+m@yFo6@o~P4r(@)=%=HZf$wHO?ad2)UzJo#ADh0brUES<@2nD7SbfEiywdk zS-GBH0FDpKzx`ytENM60-l2it*l*OWkp0U!pTDOd!m=6wPI^YROfjk9B76u#Lo*c0 zAa9}vClb1>SWl@kzgEh+9tfyk zxli^Ja<7(6&_Rt|Yuoq)(nGquMJJGB)|-z*K+5d&zF^Ez_3zDupJg=&{a;kL$k1B* aNIMX9c;f@)rxtqgkvA+j6z`j^ChZ^Nv~bV> diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts index 3da69ab5e..f470c0a6e 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Nowe wydanie FreeCAD jest dostępne. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.qm index b568684eb07374d49eeb643879543492ab80a5fa..a81b0407dc74d9957ccbeae073a87bcdf7c66d5d 100644 GIT binary patch delta 555 zcmW+zOK1~O6g`tS&6~_*(klL_Z8J7%J`_ZXNpz6d%O4jv5^hg z8ZHfY0xXJ=g&|=5TfFRY0RfM&WlRM4DIt_?|MJ z=YTlO)NTvd7-em{?*dyZ>`qTR;B8{lMF;4x>QIU14vPMA8fbqkPJMk&dhC(7oLmJ| zueh>l8c@Qc<6hy%=xcZU4{xqN0Cp%mQQc1?>-fOUF`%iB=W6!=&k`@J(1cp$4_|!( zT6_7V?+x*deD2F(V6(|T{|y5z%@W&H25bT8;`v!X9+a*XJ^)%)s>Ci+|E-cPxU-9n z;&n3U{VjK{+Q`SayypddkXPhjs!r-B@d1V9>2)cr#P0tBw#_*^Zd?F%cBp}8 z-+{Kgx|elRAYH0H{{(25RKt891=6Q3ndE-^0hchiOhL@LPWCL4`&i@5yD8Ff)Z-NU z{KQWoCkvU9uK2SNn9yLr!bcd2sh(AR|ll@ z3X$^?z`KM7hZ6|x6RVvvV0jV;N*@5ti}*2Zq*=?jg9DO_DTVETewW2(tO7B5wo;x5 zB-gRSNj0e0nSF|Qvr>wu2S}8pgZC5CW1CW-;}6jGOTmakK;E2KG7AM0mxkIB9_`-% zl4^L{Sssv3&pQ|AfiO28epmyH`P>;Kh7!fy7tcWK8sE2E(dk<5dn*GXcKGYBjjXh( zSh@!gt*RO4Jz%(2d7H;*FECXh7>2UdlXGOuTr6k)iKPD{XPr_o?v;zW{iM1fKgM|p zAJi}hT~*mM&FkNUTeYbRBY?@SSdTw}xO*j=71ASemD1a7AY@;$@f;x9t$a0-Yokji j3There is a new release of FreeCAD available. Há uma nova versão do FreeCAD disponível. + + + Load an FEM example analysis + Carregar um exemplo de análise FEM (Finite Element Method) + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.qm index f25597362a0a552979dd190d56cc8290eb40b316..e3618a37f0b700c5fa89905ad3a76051f0f973b7 100644 GIT binary patch delta 1363 zcmZ`%eQZ-z96f!n?d$8u+K#nl>pGsR!xkou5@&D=VT_?sIzRY`@q^H=m37&=vbI5@ zZXiJsmu=bAESb7Y`~x)+6FZF&n1-MbFeYju7y_A0GUbnHoC^`n;%PU{AkgIY-Fxo2 z=XZYR-jOH2d%C}*dmQ`wRs!-)^k3=%7IowFsv@9T(Jda<1IjU7tfv<+z9&7=YX+9@ zmYxfb1J-fr%Ikh$*{H1aD1iQL+18K*++n%mu6F@nmwaebB@lGWV*@JqlTUUDo*U2y zN7KOVL;9n?ehGBTC-gHNvw&@n{+fFXu)Jn48$SkgU51(?aX{T~XpC+IOdAcKp86h; zUNl@ttpGF_AK0~z`?7I^_fNo}82j8buG18C$2%;vMk$*(3@n{d+D_I1{%Iw3a2Rk* zE4#$nVbhSM<%4ND{>)lEvKI)fwk&gi0OLkG4ai=0WiEQQu$9pXrHB+-HhI>~7yCr)-A%aENW7UN1oy$H#^T&yuC2fXs2Dw zT1s^>@w?uorsfZ%MWv<2^VqHV{xlMl&(d&&B_>$xKdYUbM>#TL(6UA7tZt>9E1D8! zYs{0mrKUHL#81>q6hhIko^gb!8sIF!wi1jaAI0?{Y2?JY(^9ArG%;})Im$P5L}FSb zsjY7eYw>3z?Wwjnmyxzz=|oyY`s#iIYyMcK5tr_a|Hj# zz0N;8pA@RkRlC7MuD1Ab$$8~w_6&ss;vaLVE+A3{tr9_ctwU(u^)qypAd-Iv^Y2SY zuAP33?(;~7-vlphrm$K;=H>$LPWCqBs&y`8CDBUsqHC3$(X^~Wf7v; zh{Ob!rE7RKD9ILJQ4A3^IZT|8iDZJh=m$*{qa(0Ero?C>F6xNW=Z+7GpS;U^?|Z*L z&-47A_lqYFK9O78e-3+x)&SZrv? zv&|O(-|y;`m&<|50Zj}Fz%{CwjVU15pe?!O4WMkBc4YH%VC9e6_&x)Cw6lGZeMeoD z$1^~A+I8}WkAQydjBBoY0mysRH6I!Wyl?7W_q%}7r`Mi{14gUf)cOeES+BqM@t1)5 zygrq#29|u~UbpK7#{Y0{2>%M`hI=SP;Yw5(Pmhvlt0>2+l?0w7tpB&V_^UNbZW%dH!Oiw6W%ooDhHeM-g<_P zdEjm8nITW9cRF%9#>7saHb_EG&ew75DwXE)st)d0o-)Nnpdu=%Dr;;qM|?( zl8B>=D}^2CMn*>UViyv~ShwpdRk02qq6cv+DK@I%QmkiL0^7M_n8gemqNuiC>pP=D zk*|3D(h7#mICiq23uzl&Zt~UMU5^bcj-ibWF|LRC*UGhn=M3Sx(97Bw{}YU+7`+kW z8{d{d7c*^)C%H%MlN|Py$j9>@vs%na)i;d>hA-N3Wj0tLUo!o&Tn|>UK8iZjkgwjs z&5-3HPidBRqn%${tF5hD?)69Hn7>|$$*255jW)=Fz#*fZ>gQKzP=SLA`xhYaTuodHs!L>7im>DPTaA8s;xo#Fp+ vE+RLU4H!<|>Bt33g?+z<&{iAbU9t91r+z-3ZY$+4xqN}E*^9nJq62@e|H diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.ts index 5317066fc..30699903f 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.ts @@ -41,7 +41,7 @@ Load a PartDesign example - Load a PartDesign example + Carregar um exemplo de desenho de peças @@ -51,7 +51,7 @@ Load a Robot simulation example - Load a Robot simulation example + Carregar um exemplo de simulação de robot @@ -86,7 +86,7 @@ The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - A área de trabalho <b> Desenhar Peças </b> está programada para criar peças complexas baseadas em esboços a 2D combinados. Use isto para desenhar formas em 2D, junte alguns dos elementos e extraia-os para formar peças em 3D. + A bancada de trabalho <b> PartDesign (Desenho de Peças) </b> foi desenhada para criar peças complexas baseadas em esboços a 2D com restrições. Use-a para desenhar formas em 2D, restrinja alguns dos elementos e extruda-os para formar peças em 3D. @@ -101,12 +101,12 @@ Designing architectural elements - Desenho de Elementos Arquiteturais + Desenhar Elementos de Arquitetura The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - A área de trabalho <b> Desenho Arquitetural </b> está programado especialmente, para trabalhar com elementos arquiteturais, tais como, paredes e janelas. Comece por desenhar formas em 2D, e use-as como guias para criar objetos arquiteturais. + A bancada de trabalho <b> Arquitetura </b> está especialmente concebida, para trabalhar com elementos de arquitetura, tais como, paredes e janelas. Comece por desenhar formas em 2D, e use-as como base para criar objetos de arquitetura. @@ -116,7 +116,7 @@ The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - A <b>Mesa de trabalho Malha</b> é usada para trabalhar com objetos Malha. Malhas são objetos 3D mais simples do que os objetos Peça, mas muitas vezes são mais fáceis de importar e exportar de/para outros aplicativos. + A <b>bancada de trabalho Malha</b> é usada para trabalhar com objetos Malha. Malhas são objetos 3D mais simples do que os objetos Peça, mas muitas vezes são mais fáceis de importar e exportar de/para outros aplicativos. @@ -131,12 +131,12 @@ The complete workbench - A Área de Trabalho Completa + A bancada de trabalho Completa FreeCAD Complete workbench - Área de Trabalho Completa do FreeCAD + Bancada de Trabalho Completa do FreeCAD @@ -231,12 +231,12 @@ Getting started - Iniciação ... + Por onde começar The FreeCAD interface is divided in workbenches, which are sets of tools suited for a specific task. You can start with one of the workbenches in this list, or with the complete workbench, which presents you with some of the most used tools gathered from other workbenches. Click to read more about workbenches on the FreeCAD website. - A interface do FreeCAD está dividida em Áreas de Trabalho, que são conjuntos de ferramentas apropriadas para uma tarefa especifica. Pode iniciar com uma área de trabalho desta lista, ou com uma área de trabalho completa, com algumas das ferramentas mais usadas, obtidas de outras áreas de trabalho. Clique para ler mais sobre as áreas de trabalho no site da Web do FreeCAD. + A interface do FreeCAD está dividida em bancadas de trabalho, que são conjuntos de ferramentas apropriadas para uma tarefa especifica. Pode iniciar com uma bancada de trabalho desta lista, ou com a bancada de trabalho completa, com algumas das ferramentas mais usadas, obtidas de outras bancada de trabalho. Clique para ler mais sobre as bancadas de trabalho no site da Web do FreeCAD. @@ -256,7 +256,7 @@ Load an Architectural example model - Carregar um modelo de exemplo de arquitectura + Carregar um exemplo de modelo de arquitectura @@ -281,7 +281,7 @@ The section of the FreeCAD website dedicated to python scripting, with examples, explanations, and API commands. - A seção do site da Web do FreeCAd, dedicada ao "python scripting", com exemplos, explicações e, comandos API. + A seção do site da Web do FreeCAD, dedicada ao "python scripting", com exemplos, explicações e, comandos API. @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Há uma nova versão do FreeCAD disponível. + + + Load an FEM example analysis + Carregar um exemplo de análise FEM (Finite Element Method) + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ro.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.qm index 989e415d1c39f34c8386c4154b498e766bc8ef7d..85ad150293156566d90f70728bf8e4a2699eb4cc 100644 GIT binary patch delta 499 zcmX9)T}TvB6#jPZ;2me@ZiV7n=mzWA0I11`ABy1O_pE5%yG zLX?=}qCP|tK`22bX+4xFNGTQiP!9=7ESmHOYJ~)f(uppdbI<+G{m%XFcjH{9si$yv z4%cpm0G2_|Vj3tg@aB{UI2dpad#yp~qL~A<$I|z{av=DQ@h%R?%S_b7fuaEO9T^5n zp0c6FGNAGpo9N94EjE+R5-%zT$84Z{S|0!QiqHjlJ+Tdl26>}s0&u6Ddliyjb!L50 zP3L=-9s(619-BE$oFGr$9Rzm%;Fojvfxs@_y+IuDlRtX94EW;wdF33i&&%h(o&|~x z{$;ZnC@of4)fgZhRWeuJ1M0jo(ESP6drO&Wy-xRMv!=`6xsu;|n-m5$HMA{}lGp0- zY5Jj}t48}0y`EAROQ#60bF(g*t~_(MKKKokt!anuTm|+wi32ZJ0RMI3IJu1o9W#2-(z@iVFK-!b`N9N_Ai2${S!`pdPTUZ_Sr60pz$ zopPLVEex2nhmj(r4N1hP{@=Bz?tqO5Y~`QVc@!n}39Ci7;(D!N>fw~tmW+kzXvI40 Oh@Evr!RVa!LjMc@r-u9h delta 391 zcmWNNStvwt6vn@~|C|4HXYPp=(NLNa!jMQ=QkE1R zhLkmvrHB^~rYy;lt$2{qkeu^)PT#NJckE@o)0cOYGoel6i$8n|>FgqQI zy2=Eht>_leaP6 zR$G8*i@5c2K-(+vtMQL`*PSZ2$zYN6e@%p1IAZndA%}fHm zt-SMg5im^geh+1o4!&~o2!#Fe&A2mS&vN&3F`zr=Pe0}4GAFU5RX|9QM*DAoNR#BM z>7l%JxI`7+(e6DoL1uB|a_XNz2BmV^AvKdC(kI#2 zGzrsPfbmr^@4o}#*-ARgqfa=LqRTbFOQ)3c3?SrM`KTsq!<$ys{zXmg+B(YvSsQ$I WFSYn^g diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts index 4befc303a..d97fbe66e 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Există o nouă versiune de FreeCAD disponibilă. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ru.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_ru.qm index 9be4fa2eda950fd5fb088d35291bac38c0eb7249..615a1cd9c7ba3a052634c3d9904496758e9e6862 100644 GIT binary patch delta 470 zcmcZ`eLZG^h~xu?j(%eX2IfwN36JU+7=(5*oU-I&V9+j}s4Jd$kEz=C0Rsci2Bue2 zl^Gbcc$nFH*cljD4m0yQ=P@vdUS^gvT*1H~tHr!LM2UexBZGP0Bu)k(U_M?q8K^IV zMRQ9r1A~ed%bu4+iU{FhE z&pB?xz@XgBUa)8$1B1X`_J#+m7#LK;+53J0weYdCuRr~ifkEyC`)-YMK%=YKZ@lnh zV36=+fBriT=#(}NX8kP;3`|-at&Nu%7`WDPOz*qLz@Ye%<4{Hy&>Y^$zKnA9+D4p{ z<^o-)>BeRJj|u3Kja;V3fIj4q;BqZ`47C0Z*CW|OKyd|b<{qH&9NV}v)_w+x2l41E zXl7tg@8Z=u@{WN)L5tUn*%=rjrM$kkw=yuWKIe^NH)mjwInDb%73h4`nS6{jUx6X< znJ+8k3DD;o`1fDm!@$A7rJTvYpyR#y6XPbX$!oa8CNJaWvyx$vV$o$#U@>5^1!8L! z3l?)00}fDlvH`J-Pkv&GLSmkRo2#!vYDHphK~5@=o0wBsoH_X+i^%3BJeG<8G5Ub` delta 398 zcmWNNODIHf6vn@M|Cj&0ciiy^gBURw21&9|Vj)ctD;trrP-7CJY{(-UBxXp8NJ^wo zMw;@>vxp5fENB|!kyvOfM&X?0*ZIEl`;MpfuEr4=dxL?|Jb(?t;p+w>tT-#s1DS#| z+fd&mc2;5yq9%|KK=Gv+P<@ou(Ql?<4_+3uJE8g|+}4(Pt6 zjE#1{(y3?BacQwJnO$}DFC5H0fL$UTtMBOlm? zXm47vI$WgxDgB}i2x?RY=Och%t1>iMhH_Z;m9ZIOPQO<3ennz0R`XA&vmB$AwmlG# zUG*g#5c8^z4bwq+Q)gTG0+PKUS#$l=Jw~$}eE^B>@g2dCR;_(D5PqszFLe2-ai88^ b^+@There is a new release of FreeCAD available. Доступна для скачивания более новая версия FreeCAD. + + + Load an FEM example analysis + Загрузить пример МКЭ анализа + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sk.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_sk.qm index 94ff00fb793e8d285f88487d442023d8a967f79b..cc59622ef04a874e48efd3aca66287a117179952 100644 GIT binary patch delta 518 zcmX9)ZAep57=G?OH_!dpofu2PoV(4^ErO6?CG{s{{s?csq$px=X*b-M+h~6#`PCPM zjO8}0{wNVd5mc1cAH_m)f>BWYNGN1zVfn+r7|{gjjSigmyytn(bKd8DiYH&48gUJl zaQ#LAV67Ng9sp`qvC!rOd}U$hxCHPcLO7EJssiGftV(!Tyl9pH?U}eX+6Xk?W<0|I z$!2o8YUPArf<0W(Ot#5%RT59|2`ezLi}9JY(`~_b|PGS}+CA;0q-` zMiQGosDUk!l)P74i!>rntHBE^)O}c8cFz)iR%03ZT~@X3N524L!?FL)6&ls6?|Z!t zxWDKJSvy&>LpMJ^2e$R=A$|y`o6~>Vq`vW(Q|K#`6~CR)uCJv2X7$TY)6_>f7XkcJ z6C1+15;}}dBw!&7gJPUw2ZAu^w2>yH2T8;z|6jEz??nm`q~w2QSJAHTOju#ViW?n4 a)3DQ4PcmlH)r$3|B88mfnkZ@KJ%0hzpNsPV delta 392 zcmWNMNhpMI7{;IP`+xb*e6!e>EHlh7){-U%Q4|giTnx$q*+N336rqr%X)Kc*L{cJU zDH8`{NthxWO)1HeHZgAHfKrk_e&8F{KubvD}V?; z1xs}RA`~;WTR@+zIBFQ9ezv_t&==$>r{+k_R3)3eA{kW5>8CV}cggwf4@3)-@1u?Y z<(rCGiK>uQ4QpRy)2~ih7yx27HA%There is a new release of FreeCAD available. K dispozícii je nová verzia FreeCAD. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sl.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_sl.qm index 4b6d5da3a77509d34a9fd06e696bfcb7c8435b85..8de58a15b9eaba85f956f1b36f0fa1c2fe6a4f95 100644 GIT binary patch delta 498 zcmWkqT}TvR6g@NF=r{ZA&Tc;Xn5g~*!&eMQ|l zoHCoLJB{XaUYck5n!V_Q>8&Z}!mH|(% zk}ncYxqDk5B9X^xwSm$^hV-^9Va*Eyf5%^c*#{K2^Ur^pfznMXs~ra961C^#G;w&;3+cB&MXNg2c9w8#$B-(z zPrEXgNn-Vos9Tn4>#wMPN-y$35k5RmsJq2nV2tKnZk8f+b*H=S_D@nZ?%6na3aI*} ztsnme1g>ihtdT6K*NoZwK*3e5nQtXaZ0);6>VpMd>G%?Tyull5`at!i@A1qC@wj@U zKq!*^A*~S77U!Y}Y&VgBi8!J-3JW?6>_J%lZ)YK8+1?JbMK=@ruCSq7U1ob{+@jWu YAF-phvnW<)WzUT4U&@M4{(r*Hvj+t delta 405 zcmcZ`_A+#WNc|0lj(%eX2If$P36JU+7zA4xPFeCXFlYoaO3Y(nU|^4BOzG)kU|D5$a1_rf%%N8-`+)~WIps2>O=jBlb1|jApEMN2gF);8*v-}d<$H2hl zHgTyMlgzq_XXTQ(p0P_kUdO}6kn`Y8j0j1c>7jdMW5i`j3y@MB;QV`P8+I}YfWBOJ{7TNoIaBsiw`-D6;o`^|AE zqYJ2?eR3$Hyr%@`q`5$+sabFt|6>BWU?P|4F`(Dj7jU^2JqFr(hwG8-A)q)9H**ir zR1OF3jJ2PE;t@PL3z``iR62OIj=W=FkhPk;mr-1eo%ekz(2Ytn`50@y0zJH+FDv8; s(2Z&Q`>*d|VBl=e1cvU*&A%80xHgyZTxXiRkXvlB1heGk8vcjU0B3}8NdN!< diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts index 3411d3f29..0e3f6066f 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts @@ -106,7 +106,7 @@ The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - Delovno okolje <b>arhitekturno oblikovanje</b> je zasnovano posebej za delo z arhitekturnimi elementi, kot so zidovi ali okna. Začnite z izrisom oblik 2D in jih uporabite kot osnovo za gradnjo arhitekturnih objektov. + Delovno okolje <b>Arhitekturno oblikovanje</b> je zasnovano posebej za delo z arhitekturnimi elementi, kot so zidovi ali okna. Začnite z izrisom oblik 2D in jih uporabite kot osnovo za gradnjo arhitekturnih objektov. @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Na voljo je nova izdaja FreeCADa. + + + Load an FEM example analysis + Naloži primer analize MKE + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sr.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_sr.qm index a1db8fffbec7036c052d48156a2e34fbd286d3cd..ef2a55854c789f651b6a50179ef7df47dab3d8fd 100644 GIT binary patch delta 470 zcmaDK_Beckh~xu?j(%eX2IgXh36JU+7=#2FPFeCXFleez)D=&h$5ie6fPsOBhw0T+ zWd;WIOU&#&>S0ePLc6qQtq>DsO~rWjTe3l z3}WlqpZ|_yV33aBVAkKlz`&%#(b{+!XoU^O^uBux4Dyv6hcdc==Cn`tWt6Xf$2n;( z(1GeaT*m*HfDTpWGCc!Ii_E+Qrr!LbxM|8)=PMaz%?A zQb?PWV=XojF6T-ZIV6<0n3DIseCqeSzbDc9(K4k=zsC4v8Nm86bw3QGF5#>~3l!}6 zi}cP?VX)yAPzQzA88eXYX57mGaf@jj-GI)>a!OW#jB&QoWCARw>~LBIIu;ua5Z5Bw z!u^1;M%;fnp)@Lf_xu5Jm6%LB1f&7~l2yps^ZVT=HO4iZKU$1WW`}Xuq$VMH-JH-jCdx9 z&kQsx4E3X`={XX!2Boq;fdqD>@+b}Cr&4WSg1-Jp_t_E3E7i`d>>G4w*$7$P*PDXg_h+i F!#@`$YuW$+ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts index a0d2cbdc1..acd960248 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Доcтупно је ново издање FreeCAD-а. + + + Load an FEM example analysis + Учитај пример МКЕ анализе + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.qm index 65e85b0f0e4eeb64d79342088fa1179fdde3d00f..f241397ac47f2a63e9389c839aa053b60baaedff 100644 GIT binary patch delta 517 zcmX9)T}V@57=F(APJU-+I}=JoOx?*kP}0=6DuH#;hUoex-Q!~!ywjwAu=3&}NY0+nHD=G$}PV>u}wTqnTm(pqr} zP?m;oR0-MP*A8EpmoDA|woh<>`T(%)2M=8v2MYi4Gnw0f^D>XG(S+L0@4xyAlpo?x zs^1XwJYQHj3>5$7%YV8_N=jyR(|~wVK6mylG3=Me;-3MnOP=kyNH|?dU2sGrmXRwY zuqvT6tcxVnsWi^ff_zSK_bn3Y9wl2oOVf9(EJo;Zr?uzqDye#8+jVsa*zr!SdG-^i z=u`Ky7COjjRsZx5*z{iQ=KFxsy!y*a>YX3$LO4(Rw%bp2e4&^teEMOAcr24XpvIWW z2?v!EO=v?920YNn2gtX=4V|JF{nY722!6^pehtb8V8RDe{(tHMdSz`v!=o7it<|k- a-hQJu#_{*m6+hV!*q(p?o zL79()6_Fb!*3f1Lid?4T`5%A%f1hD{)HbViJz{dE7$94i4LgCPAg-+%z)~TkElU8M z5IQ_wAi*WJco|?0h@@^fT}W$VE~-JDuJMho@EIYWM?yEkt@#yveU-*IUheT+5$DJ~lMZ3WWn6r}I~5W5r$ z-Y38iQJg!b_+P}|Bp7OCrEiG`GwE6JpUD09SjiPHMz2`S&There is a new release of FreeCAD available. Det finns en ny version av FreeCAD. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_tr.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_tr.qm index 2197cad99c9b350722f58b8de32a81b60a5beb00..68ce3252fec2df51d4f09d95c5417051704a2689 100644 GIT binary patch delta 494 zcmX9)Ur19?82{~_Tj%a>cbS=D`RAf@uAxRsS>!`7wx`{mCgjWHmRDTNZFpZc8k-?P zh?rBNhbSZoE3gO^f@H$blq3myD2QTck@Zky48cJ9q66nU-}#;M{l4G#+r9LwYrL$o zfEzd40G7n~W*R7+!K-r)z;iy^T%qTLYgz%YtHSqN^?-Ya@lg(lvrO?ufuoOD&8de# zRVkYZ)&Y${mYcAG7F$hE0=6~r#JmaAyTrwBD}?67Vr-xImc+gC93U664;n24+1It< z1V6U*1Ze2wk<|{MZivV4-vdgH@WH}k!0F{1y(Ws@6*a%k^E0My* zrsP=5Aw(&~m9&vVIklFWlJ~uQdVjsY=lyQ{X|P4b-eGjA5MceVc`ZOh5zb3=fZ@!Z zqi?Aa2dWdAL^4x$}rkbC;2a-Ef9`iWu zS>+0wiwr_!t7ry7O!AmB0tgl4@%c)i(l94aFOYKPj#Bt1lA22?I-$yZTPg4Lkx-N3 zP4G~jt7a2)P*tTiuls?N8%_42m8vURThere is a new release of FreeCAD available. FreeCAD'in yeni bir sürümü kullanılabilir. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.qm index b1f3a543034c79c501fe64857e7be1a659c69c08..f355c99b94bea28f19d9b02fedd3b62327261629 100644 GIT binary patch delta 517 zcmX9)T}V@57=F(Aj{DBec2Q4FGx2suRI1}7nzI>ZRYCi2M6LGnpE_| zSn3$Vi!1^$g6u-Oaw&)=6nWD{LLg&Hvx0&|Bn9gYKltA7{hpWSd7t^cUseZYYn-koy*?s4Jps08p4!551ImIq>UTp`>k_UIYFeo_3MECDKO8IN&5 zdcxGY5O6TboF|?Gg&{WHR1B22vzcKl=&;4U1o0eF*vZ1kZVPfb*QDB}Q$xQ&I*SNV@3lt}L%aC@%T0|)FglPeid+P ze7a(Zr0?(7XP~AB`ZrZJ3a-7F8S`jM?mS2Q}Go*+mYwm9+Hll&;@6|yVW}U zm>gDIRcdxcGICQn^_C{&S;fYo1z z6jiIISsiWUf~tRh4dlI1z5EQ>u&TfOWZ#u?2)&y$aLRF`=?mFEzi;+a8ZxY_0pM70 z^0&~fc+a8%VHog1qZp!C4-a&D{pchlhzLx|_o@cvU5FxpsQiD|7P^HEVZ)~xA+6q{ ZYyM6n7%~0yHO#JPATeOcpET_W?H|1qimm_v delta 436 zcmWMjOGq106g@L<>YJHlB82+Es8uH#69g%uBDf187Hpxosfa7ZDB`yi{9p=FXe7j_ zNRX-(p(v%bi=?ZjD!~u<>9&F(A!)R_uoUaUSfclCE*$RReC|#2-3$Li_YvMsRsgI6 z{@55`?#Et@32;;j*^3gu=Y%$|4@mQf%{~>de-cL;qkthQUd-x1=^o==4oL5r=IjA7 zbe8{k6|nqgD@{d!4Qzc{0S((7n<3u3WDgAjMG+}{zD;^8EM51e0OOF9%v=Z5(9{Q; zP&;+_$o-t>#Mc1pU*5f2OB9{=EiVG;=lpf_BcR8*FG&nd=U?^{K;9bvR{DeR41VF5p3f;#oFRREshZcmlZX z|CH$k@@%_QD^em^yHP85C^L_#bpvrS^iqxGMF@XoU|tfGyA7_-S3u!~v21A^C^2h} ztxF((Q>$W5>gbu)c>I-wzH6<#nmP(-f7&UKwb&$#UQ-3drmm)6v=7oZeug1KNp#XD PZi7i-SPh;UXA15CnPPkn diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts index 0a742efa6..c5683b8af 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. Доступна нова версія FreeCAD. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.qm index b4d6fcb083637a9d1385379acc4e5d282c3a628b..2ab418a13c65d913db16cd791f275ddb668e9986 100644 GIT binary patch delta 498 zcmX9)Ur3Wt6#sqSox6A6`ldD8+?;JFNJZj5vcjQQl}lM=lsA2@I_x8c`=qNou; zh?sMPPs#{N8DtOYLnJON6%~DnNDySW%<7?_@@2v3L>KNk=bm%!@BDrzee>0=$zoRq zj~>?pauX(xh5>69+l@BB^C4d4)cfQ?Edz)K`P-8Up!7N8;~ZcTQ~eP@^|K4L^FYyW zHrG}TxCL9CvVacT98Lf{Z@RQ(01l67kYl( z?(70k;^N`W8^HNx9(y_qC<#8ANdeAMK9Qp@mPY<^=NLGb|I!NB?(ma8 z9l+T-!K#-4>7ICa|2<$%iRp<$pg1koy2q&hIH5`2k$KD13=wo^l={3(L`IaW8ziux zL<#g|Y5Hg7sBDe$9xEFs^nxL4_lsYYA3Jj;`2cX$sF&Y;2ka@ef%!?;j;b9jlkB%@ z2fs!OnNxoRiM>;^NkgY3c+l3<_KAG1F#U0baLso^K-ulZpVET4^Ez4(g^n)x$VSLE zBLIzj5dD?}T^& delta 371 zcmdmKx8HVxh~y21j(%eX1}1BU36JU+7`O`=PFeCXFvuiN)D=%;V5;_gz`($Mgz42( zWd;Um6K3`vb_ND!MrK~;JO&1yi_CI{D;O9AnwXb|C^0ZdPGjCTiIV{cn2*;@2I}i! z(cDtZz#zJcWzWl_KuZc(zUKd9VBiR6`6afGfr0JL#HDIXLenOml~43zmwLR8fkAvZ zd(LqipcZHLf<^Nf7`PPK8y>7;U=Ul$-uDZrh2uE;`qNJt7=-lLcWayjs(Z|SRdfz<;1`%J5Lm6E_{l$|*8Rb3AI48{oI!r2$%lID? z(1E;MrpJIDW0l}?EqV+zt%U25>>;4TR&g`;08M4B;m%n587MBnqqCryfk9#)uhx-w z3=F~+llL-;tC{k?PX)SB>^2``%~zn?IQgThere is a new release of FreeCAD available. There is a new release of FreeCAD available. + + + Load an FEM example analysis + Load an FEM example analysis + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.qm index 36e70e7145c26d65ca60797b2049db60b92fbd81..05896fa0c513e2b8e2ae0355f1df0f0b3a18b167 100644 GIT binary patch delta 481 zcmeCTeri2Ir2YXzN53%x1CuPnghzD@4BYz}PFeCXFi5vDO3Y(nU|>1Rn9|b+q_vr% z`nZ7NN=((h4;UEO|1iCps?5M36~@fo!w%H{keSyxkAZ<#mRZhl1p|Y?H0I?YN(>AV zJDB%P;$#2<=Hqpff%=ZIXl^NHU=Vr2vghSd1_mLfAeOKB{}>oJdRcyn?E@+hnz&Sr zNr+?OS^3NkcB#kf7#PHMvgaJP0qQAbFIY5>fq^TLz2U(s1_sgX?0vt0S~z~PuRr~i zfkAKy`)-YMKygL(8!!AA82Aj?pZ|^ny5$B3v;Gza2F5Us*2c>W3~ZA)ruW@rU=Xh7 zIF!)^RNpw+mr=exf^*VbpbI4@a2fw&0y@N*%k&t~hb;fNT#Ft9ZC}ClNcIp=_XBR` z9-!&0N!%H0KLf?RcytytGcbrh;MF?v4(Ou-UNdHAV2G^d^}W3n=E{egP3N2z5a?X1 z5X6=~q56n_HwP#j*??HaCqFSoAu&(E&DB>SwIVUMASV^bP0Xn*&YUdBF0#3UgIyE= DFd~K` delta 419 zcmWNNODIHP7>3_-{$u{*j597X;~I)`FKJ?8M3J&#AuKEuQDew;qg=~In#Pz33z0}f zSYU%j$)yMjic(^RTox=e8#MX8&ENO+KX32*zF5XBPQ%b0M#oKn7!Rj+5YTqvEMEu2 znT6;%36L&?CcA^)OtH?P0I@e>U&SN9H^h(0WZGrM?VR{0rk1t?Ay+IRX9Wl=XUo+| zK(vi{T*07Wr-N?ddZqO39>6dq?Y|!b5n`3(?+5^LvGfz^0W?PwODSUb?!-l6LjjNV zZ2*z2yzR7*m{i`mFb61lKK!@}7+bjGhY)#|EJCt`(t>SuD@8G3NLPmO7cTd40@MjaKo=Z%Ify*QxRdXTyCAGVBf3;+NC diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts index 2a0b85e17..2f99deee4 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts @@ -298,5 +298,10 @@ There is a new release of FreeCAD available. FreeCAD有新版本可以使用 + + + Load an FEM example analysis + 載入有限元素分析範例 + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_af.ts b/src/Mod/Test/Gui/Resources/translations/Test_af.ts index d79245707..c72405f0c 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_af.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_af.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_cs.ts b/src/Mod/Test/Gui/Resources/translations/Test_cs.ts index 2bb3646cc..1b4dbea7d 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_cs.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_cs.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff"> 0</font> + <font color="#0000ff"> 0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_de.ts b/src/Mod/Test/Gui/Resources/translations/Test_de.ts index 83e2b3e08..ea23509b5 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_de.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_de.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_el.ts b/src/Mod/Test/Gui/Resources/translations/Test_el.ts index 5d0dd1a70..fe5ad4565 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_el.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_el.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff"> 0</font> + <font color="#0000ff"> 0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_es-ES.ts b/src/Mod/Test/Gui/Resources/translations/Test_es-ES.ts index 469748aea..73f5f303f 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_es-ES.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_es-ES.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_fi.ts b/src/Mod/Test/Gui/Resources/translations/Test_fi.ts index 5d04c649c..2ad277c30 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_fi.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_fi.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_fr.ts b/src/Mod/Test/Gui/Resources/translations/Test_fr.ts index 41c5e34e5..0cf77ced6 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_fr.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_fr.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_hr.ts b/src/Mod/Test/Gui/Resources/translations/Test_hr.ts index ae48b7ba5..0d7583042 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_hr.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_hr.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_hu.qm b/src/Mod/Test/Gui/Resources/translations/Test_hu.qm index 71d8e29429a6ec766feb7a16966575277003aa66..34c78b829969f7efee598c78fc0d7163175a7eb9 100644 GIT binary patch delta 47 zcmX>qwpVO|3ZwEwRd+_~iMjHO+b8zwGrCUPE5n$)@fJ5LCl^BqLn=ctL)GSQtp2P3 DV@VE7 delta 55 zcmdlhc2sPF3ZwQ!Rd+_`iMjHO`zQA5Gx|>4E5n$*@fJ6$pb$eCLncENLoq`-!$XD~ LhQ!V9Sp8W6;DZpC diff --git a/src/Mod/Test/Gui/Resources/translations/Test_hu.ts b/src/Mod/Test/Gui/Resources/translations/Test_hu.ts index 3aee4ec75..bae4e80f4 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_hu.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_hu.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: @@ -77,7 +77,7 @@ Test - Vizsgálat + Teszt Select test name: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_it.ts b/src/Mod/Test/Gui/Resources/translations/Test_it.ts index f71f9383d..8d73e5170 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_it.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_it.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ja.ts b/src/Mod/Test/Gui/Resources/translations/Test_ja.ts index 71d21d9ef..0c06f06d7 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_ja.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_ja.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_nl.ts b/src/Mod/Test/Gui/Resources/translations/Test_nl.ts index 62043868a..6cb275e4e 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_nl.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_nl.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_no.ts b/src/Mod/Test/Gui/Resources/translations/Test_no.ts index 7bd0605a0..b2fc48ad4 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_no.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_no.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pl.ts b/src/Mod/Test/Gui/Resources/translations/Test_pl.ts index 53bc4d417..8aa180da2 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_pl.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_pl.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff"> 0</font> + <font color="#0000ff"> 0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.ts b/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.ts index aea68de86..65ac62f32 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pt-PT.ts b/src/Mod/Test/Gui/Resources/translations/Test_pt-PT.ts index 173e286de..a5e5e60ff 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_pt-PT.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_pt-PT.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ro.ts b/src/Mod/Test/Gui/Resources/translations/Test_ro.ts index c4c8c42ac..1dfa636d1 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_ro.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_ro.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff"> 0</font> + <font color="#0000ff"> 0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ru.ts b/src/Mod/Test/Gui/Resources/translations/Test_ru.ts index cd2cf1956..aaae3006a 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_ru.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_ru.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_sk.ts b/src/Mod/Test/Gui/Resources/translations/Test_sk.ts index f12c5cb98..42fd8fdcb 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_sk.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_sk.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_sl.ts b/src/Mod/Test/Gui/Resources/translations/Test_sl.ts index 39c8e4a36..cbba0c844 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_sl.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_sl.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_sr.ts b/src/Mod/Test/Gui/Resources/translations/Test_sr.ts index 2e46915fa..10c2f2024 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_sr.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_sr.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.ts b/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.ts index 403bc58d5..8983a1740 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_tr.ts b/src/Mod/Test/Gui/Resources/translations/Test_tr.ts index a65b05668..7b4a28c04 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_tr.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_tr.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_uk.ts b/src/Mod/Test/Gui/Resources/translations/Test_uk.ts index 88961abc2..e7d9259e9 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_uk.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_uk.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.ts b/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.ts index e8e640528..97da2d6b8 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.ts b/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.ts index ec7fa4290..a1bf730b5 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.ts @@ -57,7 +57,7 @@ <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> Remaining: diff --git a/src/Mod/Web/Gui/Resources/translations/Web_cs.qm b/src/Mod/Web/Gui/Resources/translations/Web_cs.qm index a6a4bea1d0fc648e855ce61328bdd39fba27175b..f299f162c98a191c4411c77d8fbe42188cf74b40 100644 GIT binary patch delta 63 zcmX>tbY5t}8#bv-1_q9xjh_y%Yicm~Gn6o-GL$h!GQ0({6d1~YIFBJ8NWWyr1+w!Q OvKjIir6*tKC;vbXsV_8#b{_1_lnljh_y%tEw>gGZZkSGUPERFl2(sJRq+e$SVi)QyB6Y$|v9E GC; Open in new window - Open in new window + Otevřít v novém okně diff --git a/src/Mod/Web/Gui/Resources/translations/Web_hu.qm b/src/Mod/Web/Gui/Resources/translations/Web_hu.qm index ade5e1f773370d1e5756f237d29ba1ac7318cad5..f5b79ac85f9ac96dbdd8532bd084716b507af3ec 100644 GIT binary patch literal 2374 zcma)7U1$_n6h50xb~jOzG>H;K!c8GXg2tbKLQui{X)z{^)dqy3GrKpF$xh}jGqc&4 zm$tt4#XeLml$Jh}zVxXGmV(%~Lc#jdf}lQ#wA2R?D(0bx_}x1*ceCqG48!c1-MRNW z-*?V;&mQ@?(EIzdufM$0zw7qJ?`}ODC8B#oAOD1SGmNQk!q~JsjOqPRyb#9b;V@=$ zH1(B9l=(Hq*RUsjrRl-ScHmI@^HYBjrS3G3?8Eo;-Ij0v`+=zGMy9>}6;Vrf=0fRD zqGq0X{9qj4gWStM4&(j#)~io01MhI#Ctvg-zG%BO{2AinmTQ*>0Q=9D`#1kabhqCA z?HW<`m-eGqz6Z{a?VnzUj_k<}YZ&=bvmFor1)tnb8y{!W*s+JskwqRoBA*x;w2Dto zPHL7`aWfL+PyxR?SYza{fik#voe<14@r^r-(i$xTBES>hP-{1|MlxN# z5+q2R#w#VUk4|j_tr@q<9d85MoJ^hj-LNWXmO&*nZyrsv(O93JLg*7juJd=E;qxB% z7g&Xxnnq7e+oBapRuYrs9lL2t)prea!sLvW@QVenIk+Sx>AI?`wtg6h5_5!6uwCoT zZpycc%Q1yqMOlPg>0L&Pz;|%F>eGUFMrIw0K$oCb<&*x+mpzZW!6tGi)uGn#nrhPW z?wUfM7h>ssS83~{X(+MiQd}R+HY-;#+m(e$+&-w>x2nn@3yhAV81cbwe3-i;;P@;@ zM>sJ@lBQZKNYI&bcqVp$l}&lDvB4&k1~+PHImJMf1F0<;X0X0C5LQ$@4(C=?UbV+P zF*FnN;i!t_C8yaFouVpSY+T9Rj%`ar^3obQW=h9f(ym$|aDGv*@ChbDLryyZxGgj4F^$p!NzLx)YBK2#ao=Mx`tRT40ToEw7V*5e=8>l%tiGAj}Dbh0GdBT$myHWHLWqV{KqV$o? zE2;r~G(ZQU;swwV4=7&O(`{4XEMfx(qK+m)9-`CGU@3dY7Lo2mXUJFoq-JfwROei+ zwpZB)t(sT~xaS%UTUW=9SO}sPG1xHU|ER9?i;27j@}n|T&C(TTae0MRY_}jPvQQ22 lyVPl0Ms?-H&Lck8Y}=-dW!o|WTc~l=Iw!oM$=&=y>NSaU85jTn literal 2258 zcma)7O=uKJ6n-<4%p_4KnnVaeqyk1f%_=HN(1ZDP*N{X-1A%3?XQndKCg~cwYtn-k zf36;OJ@~WBvdhZK-o5BWJc%GE2nvEf2(q9jVGo`}{HnUUn9ig%3^Q-KyXyPi_q|uI z58WyEKm72=l}Cfy?*07t-B%+-^qlC&TZj*Wn7SIo^!6ZTI>LA$h;5l5w%?$s--<-p z`4s>7CsC%Fe%aUx9Liie_KYZXzis$CTxV{!|MmaBMCsqN`TS?1winr-YEKdOXWzaY zBWf>ne0mJ*^lazV_ZM;fr0d*eaA$w%y1VxRVtT{1i$j3@xZ%a^{}9h^y!YT5QSOKQ z;a_h8XC;6BI&@@TcUSg;FLkQ>)jQ;q`^U!58)QodX_5pnDw0JdTEsu8uO(H9jcZv9MUYBq%t7<3ir-XbzG|hhz9g4)p3oz&=|^dcta*go5mw8 zt%s%)p*q#7Zvm`Nj^Sf;0(=YFP7j4+G|n3Rh?$NqHpi z=%W|5?0xEDy=nAPc`@MCZwnvOXxvY%XD;|)@JC} z45}APb=T#NTnAf{(s=Wl?zzQqS`4H~Gv344jN zvfv(bgk-#7dvdS^w}XyiC*CV&U;DW03Rf-cg{hNudw4iZ>a@*$ZSVk1f!GWUBrrsK zR@H0MR4_Z((4MebiEz73y`svD>j@8I&=wX{vjn^PbyJ`~;| Web - Web + Web Previous page - Previous page + Előző oldal Go back to the previous page - Go back to the previous page + Ugrás az előző oldalra @@ -24,17 +24,17 @@ Web - Web + Web Next page - Next page + Következő oldal Go to the next page - Go to the next page + Ugrás a következő oldalra @@ -42,13 +42,13 @@ Web - Web + Web Refresh web page - Refresh web page + Weblap frissítése @@ -56,17 +56,17 @@ Web - Web + Web Stop loading - Stop loading + Letöltés megállítása Stop the current loading - Stop the current loading + Leállítja a jelenlegi betöltést @@ -74,17 +74,17 @@ Web - Web + Web Zoom in - Zoom in + Nagyítás Zoom into the page - Zoom into the page + Közelítsen az oldalra @@ -92,17 +92,17 @@ Web - Web + Web Zoom out - Zoom out + Kicsinyítés Zoom out of the page - Zoom out of the page + Nagyítás ki az oldalt @@ -110,17 +110,17 @@ Web - Web + Web Open website... - Open website... + Weboldal megnyitása... Opens a website in FreeCAD - Opens a website in FreeCAD + Egy weboldal megnyitása a FreeCAD-on belül @@ -129,12 +129,12 @@ Browser - Browser + Böngésző File does not exist! - File does not exist! + A fájl nem létezik! @@ -147,7 +147,7 @@ Loading %1... - Loading %1... + %1 betöltése... @@ -155,12 +155,12 @@ Open in External Browser - Open in External Browser + Megnyitás külső böngészőben Open in new window - Open in new window + Megnyitás új ablakban @@ -168,7 +168,7 @@ Navigation - Navigation + Navigáció diff --git a/src/Mod/Web/Gui/Resources/translations/Web_no.qm b/src/Mod/Web/Gui/Resources/translations/Web_no.qm index 993b0474c398dd8136aa1266656aa325d22d0ebb..a8e634a9aa0fa258cc101d6c16e0ae919534d10f 100644 GIT binary patch delta 57 zcmaDTcwcbB8@5%M3=HhgHhv0YS5{&;%22?N$B@dPz>o>Vc?^{dB|xaaPzL1ZF{Ch* JPR`{h0RRpN59|N{ delta 59 zcmcaF_)u`d8@4r>3=HfqHhv0YS5;x~XDDDuWyoVtV8{fMc|cw{kXH`or!eF*luyp) GC; Open in new window - Open in new window + Åpne i nytt vindu
  • LQgQ^Z?D zHqP7+qU#0_`yR6akX9suLv5n#H>EmLc?Qa(Bd*j`3-~N=W#WVf04FnBi9yB&U9(pY_&h z$!Z~n(>%P3oT^>Mgwx(Y=1-sDzuG^2vj0k3_lQq;O8a1~wZXwnvf0JJyATxpW(a&7 z(P|bmjYUE!L^@B?5xE%yLyvYBEDf$H@w5%oAh_`jy0XJE|8sg*jJFkhbb6*0bp88k zOyH}EZQ|W*vzzz2aGc9%#Lo&US^VH)d3UqbX#=kZWmUKcHu1ze-hbZ=lQ3J2YQYyCab1V2A- nhE;|AhJJPWT7u19PQw?RB|=^MzkR^=)h}&q>G((8l=S}r;W2At diff --git a/src/Mod/Path/Gui/Resources/translations/Path_pt-PT.ts b/src/Mod/Path/Gui/Resources/translations/Path_pt-PT.ts index edef560e8..c26ba53dc 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_pt-PT.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_pt-PT.ts @@ -205,28 +205,36 @@ A geometria base deste caminho de ferramenta + + Pat_hHop + Path - + Project Setup Configuração do projeto - - Prepatory Commands - Comandos preparatórios - - - - New Operation - Nova operação - - - + Path Modification Modificação do caminho + + + Partial Commands + Comandos parciais + + + + New Operations + Novas Operações + + + + Path + Trajetória + Path Closed @@ -236,24 +244,6 @@ Se o percurso é uma polilinha fechada isto é Verdadeiro - - PathComment - - - Comment - Comentário - - - - Add a Comment to your CNC program - Adicionar um comentário ao seu programa CNC - - - - Create a Comment in your CNC program - Criar um comentário no seu programa CNC - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area A altura de retrair, acima da superfície superior da peça, entre operações combinadas dentro da área de fixação - - - Compound - Composto - - - - Creates a Path Compound object - Cria um objeto de caminho composto - - - - Create Compound - Criar composto - PathCopy @@ -294,21 +269,6 @@ The path to be copied O caminho a ser copiado - - - Copy - Copiar - - - - Creates a linked copy of another path - Cria uma cópia vinculada de outro caminho - - - - Create Copy - Criar cópia - PathDressup @@ -327,94 +287,6 @@ The modification to be added A modificação a ser adicionada - - - Dress-up - Cobrir (dress-up) - - - - Creates a Path Dess-up object from a selected path - Cria um objeto de 'caminho Dress-up' a partir de um caminho selecionado - - - - Please select one path object - - Por favor, selecione um objeto de caminho - - - - - The selected object is not a path - - O objeto selecionado não é um caminho - - - - - Please select a Path object - Por favor, selecione um objeto de caminho - - - - Create Dress-up - Criar Cobrir (dress-up) - - - - PathDrilling - - - Drilling - Perfuração - - - - Creates a Path Drilling object - Criar uma trajetória/caminho de perfuração - - - - Create Drilling - Criar perfuração - - - - PathFixture - - - Fixture - Acessório - - - - Creates a Fixture Offset object - Criar um objeto deslocamento (offset) do acessório - - - - Create a Fixture Offset - Criar um deslocamento (offset) de acessório - - - - PathFromShape - - - Gcode from a Shape - Gcode a partir de uma forma - - - - Creates GCode from a FreeCAD wire/curve - Cria Gcode a partir de um traço/curva do FreeCAD - - - - Create GCode from a wire/curve - Criar GCode a partir de um traço/curva - PathHop @@ -428,162 +300,35 @@ The Z height of the hop A altura de Z para o salto - - - Hop - Salto - - - - Creates a Path Hop object - Cria um objeto de caminho de salto - - - - Please select one path object - - Por favor, selecione um objeto de caminho - - - - - The selected object is not a path - - O objeto selecionado não é um caminho - - - - - Create Hop - Criar salto - - PathKurve + PathInspect - - Create a Profile operation using libarea - Criar uma operação de perfil usando librarea - - - - PathLoadTool - - - Tool Number to Load - Número da ferramenta a carregar + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Objeto de máquina - + Create a Machine object Criar um objeto de máquina - - PathPlane - - - Selection Plane - Plano de seleção - - - - Create a Selection Plane object - Criar um plano de seleção - - - - PathPocket - - - Pocket - Bolso - - - - Creates a Path Pocket object from a loop of edges or a face - Cria um objeto de caminho de bolso (pocket) a partir de um loop de arestas ou uma face - - - - Please select an edges loop from one object, or a single face - - Por favor selecione um loop de arestas de um objeto, ou uma face única - - - - - Please select only edges or a single face - - Por favor, selecione apenas arestas ou uma face simples - - - - - The selected edges don't form a loop - - As arestas selecionadas não formam um loop - - - - - Create Pocket - Criar bolso (pocket) - - - - PathPost - - - Post Process - Pós-processamento - - - - Post Process the selected Project - Pós-processar o projeto selecionado - - - - Post Process the Selected path(s) - Pós-processar o(s) caminho(s) selecionado(s) - - PathProfile - - - Profile - Perfil - - - - Creates a Path Profile object from selected faces - Criar um caminho de perfil a partir de faces selecionadas - - - - Create Profile - Criar perfil - The tool number in use O número da ferramenta em uso - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Cria um objeto de caminho de perfil a partir de arestas selecionadas, usando o libarea para o algoritmo de deslocamento (offset) - PathProject @@ -657,21 +402,6 @@ An optional description for this project Uma descrição opcional para este projeto - - - Project - Projeto - - - - Creates a Path Project object - Cria um objeto de projeto de caminho - - - - Create Project - Criar projeto - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Matriz + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Comentário + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Composto + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Copiar + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Criar cópia + + + + Path_Custom + + + Custom + Personalizado + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Perfuração + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Perfil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Número da ferramenta a carregar + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Bolso + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Pós-processar o projeto selecionado + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Perfil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Criar perfil + + + + Path_Project + + + Project + Projeto + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Criar projeto + + + + Path_SimpleCopy + + + Simple Copy + Cópia simples + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Mudar de ferramenta + + + + Changes the current tool + Muda a ferramenta atual + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Comandos preparatórios - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_ro.qm b/src/Mod/Path/Gui/Resources/translations/Path_ro.qm index bddf8aedadae364cff3f756758cee16b61ba18a1..f1035e122d076613f17cb35a230173786cc920d0 100644 GIT binary patch delta 5458 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 R+U90PJ6wUzzm&d``d^wJ=@I|{ delta 3253 zcmah}2~<;O7XFgFmwgcgE4UC=tFj|%St7~~8c-g4r|+=-Cc7 zFBus9CD^LXK>AFu8?1Dm26ijmf8{pVy_0Bt3G5M${KP7dn%KqJfIJgWIf87faq^!y%tkMJsM<@|6Btk=zN%WNfx{081QPaEMxXP zAb5bRbklKKzb1Qi&I!Q!p{(kF4HzSp&HMKqK)*`1$iD&TTPEA~kTNEB%l0481Bsck z*2_E*yWwG^<0#^8QYLUXMHUvoM17wPm<}{98I`Wqi$lO>cB|i_D z`}h%v@f>3wE`6VBRn2rh;fVQtR$^|Unm%IXZ?C1A-D3mttEd!TvOz^opzI=>+~;*5 ze;r$Rg$R$D!@AcW2l_kNxuA!2&Fqq_#c6AaFFa8_5u4xMSm$TayXMtWEd!XuD zAjim_d7aKZX}j3V?~sEiqdc+42C5g`Uy~QPoC@O00KMYRsKdG zyg@!Ax*ixhL_W8Pg!*#3eC~N76m&-Zr;AAd4*GELQTf)Ltj1oH`*Xjm4^+zwiuZ@@rV>6?TnmVBlH$~A@>eud(SDCgoHs*pIp0cJ z*r<3=)*ndHDHGZYJb?OR;wP)I3}2P)s%Na9FOP&T(w&8HRlaQd6d4cDoS zLjSJZws<5F=~RBak!lY3Fk!y()HDaBI7a#PA#d00RbDNL1V*kRLr!~z`(;QL;hpHP@wAOpG~S(soreY0g`8`g>QXFk?m9M zwv!0Md#LVA830UX)apeu0M%(9#?MikVxCYb7_~Jm00C?RfV0D_Z6+>yRe5I)zb{5FEqH%sggeRZU zc;;r2`o|y9>`FdGHCf}soPC;IHy2S~Z`VAC-2`Nf)-rM5P|AC2P021`QmxiBgmB^o zZSIck6d|uI2p~ezdLKrEM+T~oC4e%eTZW@s0tk~j-zYv0>Bn&wNV zM|=J2Xi90d_WI49l%oFHpNg#1uQPSZz9bThOs9+`obs7YttTu`(HUA#kmD3x<4YvA z?7!+7<07dvZXd?3(rr=_k#TDYBPg&qUCZ>B0Y8tfEsEA-*6J?Yq(J+Bpu79@7-_5V)C26c=WQyg-pxEHMnMy-(tvY8X{RB^l^4m^YWw`9VX|ndwwIe?#+* z4q!;gIKvi8BN>f8oET`>(!tWCdS*D@{W!JZ9>eJ}E2S#b@O&UW5cRzcs9eiiqjt3f zD98Irg8AB@;FqZS)H(FmnYjjIk%MzuTsC_x-z|7T_Xrfj2@Vce;DVj(S^P&qy}J7s zJ2{8NWp~apX4-3NEVb6UmPx@937;3|WHrSWR~3IGZm?)Qja#4<_PkfQS{FaA*C~Ew zd^lg)Cz$^#K25*@2{tdbg!TSf!tY23WtD=L_Jmgqf|Y4^%#z56WdT3a6v!tfR;jx7 z`Nw@M{L-W}@x3!iJNc6#e*B6-{luNagQ`UfDZ&(!PI`@cWY8;(6lW zJXR~b{KnvV(Rw;~kWSdka@wk^ZMBvB?X>aY{lfG{(fTAket-~Vj;+zSJbXQ1kJH^F#^lFO1dv!b8jS z@MjYKL_rT;KQf$ekM`p;M^<>TWoqPPDgWWf2w~CMFICQ;ELkPe=w1}z>x>eY-NDxv z&u0CEkRKM06|Iudd7`y`^t+;!F($y{m1Yh7ET|=kdWBU%J5It%K~!!U12#IVM6^(I z2WEAxy>jz@WfZ=s6jnCO7SFxA4r%}=?Yn5tPIv3N=FU*x2=Q3!j1_jLvC?UGJE+T| z%cEad0mCJ?LRTrThXZikU-ID;#9{m%OVDEc4as=G$)i~JdH0Q`fX b&?uqlUkvGY265zX4B}stY8f?VZ~y-Sh;pM& diff --git a/src/Mod/Path/Gui/Resources/translations/Path_ro.ts b/src/Mod/Path/Gui/Resources/translations/Path_ro.ts index 7a9d69718..6ac61faa1 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_ro.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_ro.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Comentariu - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compus - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Copiere - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Buzunar - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Proiect - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Matrice + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Comentariu + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compus + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Copiere + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Personalizat + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Buzunar + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Proiect + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_ru.qm b/src/Mod/Path/Gui/Resources/translations/Path_ru.qm index 395b05198c4daa3fe8427e7cfb703e1d009146c6..44085154e2678bdef8f46aca99d37040ab518d7b 100644 GIT binary patch delta 9770 zcmc&(33yc1z5mZXnH9q#ArLN0Ai!jS5T%erLUt08U?Q?8aA)QwGccJuoh3^}Z;`gL z$b0JjR1|nVHy)p&?}JDS6*tg6rR9~jB0eo@D^_@j3ba+!^4|ZPGk50BWWcKZ-uv>w znY*0-`ulI^?mMSBvq3AB@AHm4{K>X^kBl4r!peuAJ24Ny)PVmg09L;M(7F;=4P^k{_rc)X2{7yqFg)r7=sE_5C-MDe4h%oN3E%%Q7+w^R&U~;v ze-zi#Fm?QB0Q-aBTJ$RNco7<;EgJx)ZilA3TmbxHSh{yBUi;w5GiHDr+Tl=(0bt2v z@LRKtj4I*y8y^AOd;z{V`2axORt><90G9twQ#<<=fXbMrG3yix__pTPFP7l@m$c@& zH30RawMCC)0W?{(r5_Ii&>z;;+>2|=A+5Ci((3>>&eOi9=>TXyu08vk4*=#J&|d7? z2vDYBYYnH<&AxyPm*_?;T89Kr>2f!s#)a?c^8b4qz_=xBU6!va+H?pte@Qp@2cH6z zH0!Qk5(BvQ7rKreF9Y~T>u$IO1^vN6oo~M%K**JJx1T!;Fr-DdA-fk~#wFdZzoKbP z)w&+5ni+wTB|eyN}Ir&@rvsrt&VP@u*! z`j+mQsM$!pP>z=3H|qnvccH89({HwRqXk;o+V-Y?m+NtWmC|ngt|xCsNp1RlKYAaa zW3K+-aWu{B9Q`ZfP>|+>`d2L{0rF<(-?1Zu1)KDz)@zaQG5vY?3*Ns?|JOSoL5+3# zFD?oIommD=%K+lWZ7|;RF93nzhGC69#Lr|yPHPxo)jNi=F}DKTq&Ix;^Jf60nFkC_ z@1aI3+YGUXUk0e%Vpt0(h_lMDY2862xZAL$6gBcZZ+K|kas=5j!&9c$0j6&>?Dw4j zSbT%wjSAFc&R)a2_v8L~bJ@DUWX!&OK3d9Ztl0l3fTPb?^UK!|JI@;HLnqO7wMJhy z2NLAYG_G>>08Ck9T)XZ;^!dANt@*;Z_BaYQ@|VWVH+_H%W*GnJze)k%BeqW7ZhUh0 z67=b5|aT!$vg{>1dy(T@Q}hTHw;n|-^w`+i*JOV5 zLk!3AJ?32-rDg<&)%?<9XhM{guH$}hKD;u7CSGWM`#IdW{Kw`$w&$bdJ?8h9ox$}P z^JiC`!Z@D9R_9x6jass_E0zMxx;snf`V0knEla=h2*BK1vz(2eBgoHZ4ar6e^}m_* zlVf%Ot(di5`sWYOC!JZ(h=|frPi385J{2Gwu~;^&01ekP)tqXTq zqyziV)T{d}XEs%0!q{c`yiSkko?z7!9|IU(XVn(0!6;Z{HS9!Fmpo{--h=n6TdhNc z0|3h&x8`)s2l(E2>zJV@0Sw2ii|(Fz-3+l475A&*=>arjYeQ(GGw`bvAwR?-3jMw#u?7!1rIWRbES0r>*|! zr%>~Kw)w+QP+c}#tA1_k)jp4|the3%N#LH7vUPc)oyX%+V`d1dEgby z5BJ;qu0~Ma_>R4=I3GZBoULO;`!_XbI_>wd_ajVf)8l9YS!8v;WVgomc~oII{aNwYnd0O#k6JfULJ2a|nuKOWE4{ zfTO7xEqCoOM^6?CGIF-#?n`?CZh6%4ko`H-_#?;8^}hkQ?oW2#cJC<4fR z!|}I^f5C7)>on&3F#aoFbPnH%7~rhV{5Ky5SaYXyTJSu8^72*M6y82>q1 zgkG*SB!u~>UkpY}cuU{LM|~PXl7lwf6sFsF2;g-!ZtuoF9*KBWWQMfy;i#VvaMfaW zHy`vOA^FZ++tp@DAqu_(LrPsfF>2+&mfUd~xhe12fvMa%jhr{3b6`*Y8qL5)SAj;- z%!YDsLnZ1UB6|U^is|)iDpVNnMDWj#VsudroACc$ybe$?J#jJpxR;~C_T%aSAN}2h zyE*8`cVf5_WmeNWJaQ1B2Y*W(ZWQq$N=_e%_-GaW^57j8-go0xLfQ|VmwAgki{P^m zk|(C`#@$i;dm2mRia8Z$q`UFmNuM#{_7w3*eIe(|>7Uz#}AwJA^3(>IO<04NYLY!EHF>&Me9w8j| zd%Z%C6N6k>K)#_^R45{7vl6s51|uP4KtWfeAE%cW7XSM|?W}z5z~nh+wFC8)R+D7Y zk49`);omI%jD&`Us&JU^Cxk47&C8v4659~e6SOcKkpGDtdGtSr&I_XzyXi9y z-w_Z!%*g^;nK>^GUWtZFesx&jqe292#_@zR*BKVOIi8CM0aQTnqBWwvOyV?SBoN{} zWs}N`!~1>sgrF-x1tYE{ASLJ_NWq>$4M9sn|4D5Dfk%@w{+!Uqd!m7UG_yb@iF?kH zNuqgBg-Q}NdHknDHh~sFHp4#)k}zHmuf|xc#vdVSvo31GZh7RGVxx^(UTz*UZyEbZ zl7J9o?rcbLLuOtijFo^SyfU-W=FPCD(3dr1i;Tk=^K*H_$L6K6Vk(8u!!cywm4jo) zs9vuqPkEgIgk?Nt@wDwIm&yh5f`T0RZ)1n52+FzRr%cMC;#7;FehR`7DLj~!L(ngG zkIz|}_G%`)atH@v9Fm`iqez_Nb}9-@KQX2WiDUvAKCh?`x z4GFoCGzka7l%*LD8ZkmqLBgdT3aK!diV{$CC1Qg>ugn+69_L1UdP(4WVv#5YOMRh7 z^a_dCUr|kOQ*(`yZLyr%$^=OxdzSItbZ^(71z1%mL{UTXLleeG3@$Y!@5MrtgEylY z+E88Q^cpn{s(do>f1`Xs(uF*0;;alZ41qLR6Z)E|sD-f*(Ri@%*IY4&kSIOJiO5;k-)7;-gXEOA)vh$-zfDwR7F2v?5&u^jc0ihe2?8VR)q@pt`1n@bDaT0bU!bu2{euV_ANMoG1xfAi~QH7o~T@`zx zXSIN3IvDYLv5a#8Q4DcnCntEjux^QAyw%BjX#6>;S?chrjc$sktU5*=`LrR=xU>oT zTFLty+dynfh)BK_X;ju+5nCj0rRtW{J6V$z1geokTBoEPln&5NDr>?l^1zH1DWh&3 zSCoqIW92uq)fH|j%ph5dr>bhPyrFc$@{BUfze0?t`Fc^$AWX)*L=+=BD}74bR&w3U zvdn5OzYO$9v(rgiOJXgxSqb>aQ(7qT83Ebg5Kf0(akZqhLtH2-;@wRiYkupkDl!8%)xH@z~9|Ar`T|oxdPW&S{j3!`kbv(WE zT%Er!Dm$h)7P2}-E@NSVqNy^4xYF!gfjm_-QR(I2l)`a?sX7p&DgoserVNkQDK&3b z3hzWuh8&WaErL~&$1I<0o<_vg3Sn@tnIhujLo`b}nEi0hXeYO*f^*|cB=vNoF8@hh zYCsiZHYdi#X)<9@E?GJVBW0i=7%%q3!abLjVLYOo@+ad-D!=wY`dy`_P4yrloJqCC zR}7xCK}o`##U>@v`H+)}!nEEs;Z#*^GQt6I{Ms#e1#0X-R)WA$5ha-M)pqeRI*s2c{n$t)TbF-02O;jRP zfy`HA{AEKh>$%vRm5AengD1s#MCfq{8*1=GB^brY7yGPE%+I0tSwJS4(oX}BzjF5Q z_Z$bPi+8eSeS_10beXCF<4%2I!cuY@232a)kbaiPVMd8}M)LZiI*FabG?C0fvHnB~ z)xlUF%pn=F>bx?z9Z7aeq$`X|QBDs8$=FP0SatwJ$grl7s1mOzxP_c)cF`x~pwI{1 z@`-CamZSo*dDc{G@=}nW&GKB&TK#5`_jZV4AVaxfhHFOba0V>HobAMH2?22!yxXONZ zDwuhwPZsWPpUjkwJ8A6c@~hXDDTk}tS<0D+TAa)(#C1+oDo4B(!JXt7pZJYs|M(56 z+3XZ+WJ(1&q!K6}K~l1Td}j7EMNo5PQPOUN9i_fBBXx586U2^<9Q~w!Bl)`zI}>Ua zDvhkfb3rj!nEWn*WjTar;#iV{B7UI=Ckitg(A)jpp@5J$v;D3o^`eBON3qkls?8b2 z8i57Dk7ocOT2>NA$qDtXObz@3HzGtoh@?}I7u5cTk;QXi3Q%dRF$>h8_iv@s{_nuTC%XJB+8ouJm#gMnNs+Ptv<6lsYhy+yo%S#D+4YFU|;x|Wx6_xb*R7zeP;-P7T~JO4M|_q@-0 z{obFmD?|32SNQVwG=v}e_VM*^4U72etj#Z;C?rxnM5N9qnpH$pF^ecBov3Ch(e$Il zwk;+a(n3P1m1tTc360x{oKr~H(tz)4NZ5(}_I46pm`*f9N5ac)qC4Iu!%Ihi*Gi+J zBZ!QTQ9|`=(D5>j_dS$AH01=l_r4~Y)InEIKT4Do ztsuIOX!2A=nf411`CL(RZUNDV0>#@erx5k~DnwHN(n-5Q(!c3P#14fNt%r12LN;B0 zmuUQ}A)hF!h)So2oICm%QT!VrzAJN95sj`>DswIpC7w_Ys9r{tvPC&$6)Xz>K^gPa z<3!d(Syt>&COvQfmK7@tmV8GP@t(43+d({UR!;fND@2|WW#ir^c;=7Fd(WRE>f=(b z3|&MtteVB`SJ`*?t6p z3>9;=WDpgUFn1n2Q60*f7a=^;hOpK87IvPOjxk_AUtOh?ja~PJA?<8?I*fDQ+OmD z#HTuiCzj2`^C!Yn>UW8v1YvLE38L~3gu{2^dtc#p;p7GY#8;})25dnL*T~YjOqIVE z&!!Gl(HpNL2MSarZKn~Esj9|M3(?4W)!c-IMET29_bhviD4||;&-)-0(WZLvAL&H& zwJdYDs&+m*jc8`8>dp6nS94i)>eJms!^f!8uZ|@jrD@f!4W&eyEOpI3Y|!jiPcMSP zp-eq<0$fzJSlyI=9WGm^ZgRL_5mT=}vH-4|rG8ldFQPHC)lb@=Ckp*mz4gd9L<2Xd zx3%9-G|{d;^a${(-%%g?4k50{QJ*YpKrYNyU#yPDxkojr$Hw`H3~G(zYAaFLHO>9w z;S$xSnl)RI9L_EizvB6 zYc9Kt?7g7v6FQctb%u8NF(XlkN4sLpXRz$7_IVGIFyyy}H#t{vms*?qQb>$#It~W2Wl% zsYejy9Fk>ms&3yNxcZKtbY~y1AxH9cmx~#)eY;+fe2l1nnqJrr7e@}&>(}9V)J%OJ z_dX=)D1BtuX(Hj6zItsI(YT5FIrevnN=$n1>mWSmbG`4LB4mHvd-~_BhlsKYWjUcm z|J;`=QP-FB7n8Q(;2Q>({1MS@I}A2!J1j0X*v3G*e{U#x`YBj=-Y~8o2q{Bl8JBFh z!-UWbf5xyVrUg5k$A4jF&_UCh9=sL-~4z0x#8Pp3hh9LyDiF;x^x+l_Cr%H zPr9a)vTTkrE!0BM;EzmeukR*mi!(i8d=VB4rtK?^62-1J{dDCL>f3AXza1e;k2c2~ zhvj$nHIHt+K&0Pnp3s7jBqx|%+pF;XKJ&7}bqHOndE?WkQ3cWA<{h;iM0u-Z*|5R9 z>xZc-~3i}1L}UG`TA%m7&V{?=s$|K_|u)mnuxF@7RhWZjis;(vfz`Q zSy=&|idhz`Ku(~Z@N0Cr7g;LW++J~FM3@*FF=;{y8;ac-EFFIfC4?+UE6Zi&ET4^M zR-olzJr7v<*f&0a6WE~8II_Vc&d`P%b8wUsDg|7& z7^)ksu!`%`lLdWcZF{45D80}ked34Rt?ddW_|>st&@~2nQoy2ItkDiJrriW)PDYv` z_^`Mn^6%o#jCi4+gq>>bA2Xsm6hIt+wgNf}hFI~N#jK*q8hPW4-PY@jjis`2*qy@) zZ;HU3ZD&r&W!d6)IfKNjn0&|MAaQ->C~W{xOt8!w z(wkB~pb7w)As!tQDPFSlo!lcl0o%**scUy8PPteaOv%P-cmHLvF<47OTBSA++X1m zW3%HqZrQkBJZ0q(l=w>d(Tlkp<1BGgb`nSI++ev&VVuN5VM+$lBNwT(Ic7jO&LOw( zw*pq?;xET_unNvc$*W+~*c5(#c=S!f$NA^NXK4tW6J8G+-PGLN)H;WU-@p^7$SW^M zNtD$cgX_@qpz}lkl9)OyOuUjaT#!zR(Ycw~y)jaxst6REWH)DA2=ChQlmkXqW|y!g zIwF#!qAPCdXkXxUOC$=qlaK%cB_oE0C5o>)M)-Oi3uS|4WbQin47C`DxZ01;t?qTO zhtXuA5-H0wpjl3@Tu2U>P014dES5GHVHz92kMb8*iPO{I7S9(B@EN&pi@lzf$&Iyb zvR%RTg&^LV9zd-8TJdg-SXNiJP-Wsr~Ss z#^@x4iT=Neoz#tERgf=mM@bnUeB1I8v?C%m#-oEKAZ4ZlYc@QUqeDB<5LTBI3tH}C zadcUuQ7X)GPi;e$$I~n(#q7!Nb`MHA0#$`4xrN%Gg*QLD)HEDYZt&905_eT4CQ0a( z&9$v^LPtr>DitIOZhFKqF4EHDNJLLd#ebLg7uSso9jfEZD?Rn|-15D>BWUMDR>)hC zkNbhQe?En9wT0l9g|!?!7x?E1&OQt6rkii1JvP)ZZ$g|bzqq+wHZ;_(i$$*W0yYuY zXm%0~DqoWPl1bM{iqQzfgz;s*o`kpF@{N$*g#%DNOy$7YveWrp!*9I|tXLVplQ_Aq zTO=QJ^OzH-;Dm^-AwpW9aRFu1>^(0w$%OtsPcy8go=e7q?mUKxP z9?8!UBn{%l@`R?Ix@!FC!K20J2YK=fMv^bKu88t1c1c4KpE&ZMna>=BILEJjK6m)z zC#Kk}z1$xmS%#QmZ&Z&QNeQ$FL#1bayQR|WsmBDsdxbQy@I|R9l?Q=z(dtUH8#4hn zXc)K1#%EmU^LHrp={WyqelZuiQmx(L3vUfxTrxODJnR~o*!^@=P({dHBDg1%i)P%Ez0`R`PWeNC%h+gd62H(BF&TiDqh|I;xfKty*!0 zVYr#stA7lDsxK))T!?tBGFrSE+qd)bD7{+T zJ!!unMOwUja>@kh)8uylEm{2w+Jb$`6BNw@e|h`hjl?NBriF`@ZCcSjB{s7!@38zf zD0jD3%$_~p-)J*YE`h-OJVbmbKWf3*Iqi)W`8+S6-l(G8TT*Ns+tAd`PgK>`HB0kH zV579czm`gFF0;VHd|bc_5m67Iv-a#Jn9HklG{O}uBz>%o_FcA&{*b-lb= zW_!GrIbP3#HcZ?J^?2*z(t`I|i^n^swzX*qo-H1{JlD22d0M50B#mjedA#%L+yh(d z8~w9VH}>LM!$4P1mIV|K?WPz3Zs+(5+IYj8>#lDP3~e%g7knQUB_53*=+p7n_?t56 m+NnVU<1M*7ppx;V`Wf8+@gD&x!4qfi{{-|_(s`gdF6lqN+xDmc diff --git a/src/Mod/Path/Gui/Resources/translations/Path_ru.ts b/src/Mod/Path/Gui/Resources/translations/Path_ru.ts index 56f00c03e..c7fd89832 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_ru.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_ru.ts @@ -205,28 +205,36 @@ Базовая фигура для пути инструмента + + Pat_hHop + Path - + Project Setup Настройка проекта - - Prepatory Commands - Подготовительные команды - - - - New Operation - Новая операция - - - + Path Modification Изменения траектории + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ Если путь инструмента это замкнутая полилиния это значение Истина - - PathComment - - - Comment - Закомментировать - - - - Add a Comment to your CNC program - Добавить комментарий к вашей управляющей программе - - - - Create a Comment in your CNC program - Создать комментарий в вашей управляющей программе - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area Высота подъема инструмента над верхней поверхностью между объединенными операциями внутри области крепления - - - Compound - Соединить - - - - Creates a Path Compound object - Создать объект соединения путей - - - - Create Compound - Создать соединение - PathCopy @@ -294,21 +269,6 @@ The path to be copied Траектория для копирования - - - Copy - Скопировать - - - - Creates a linked copy of another path - Создать связанную копию другого пути - - - - Create Copy - Создать копию - PathDressup @@ -327,93 +287,6 @@ The modification to be added Модификация для добавления - - - Dress-up - Наряд - - - - Creates a Path Dess-up object from a selected path - Создать путь наряжающий объект из выбранного пути - - - - Please select one path object - - Пожалуйста выберете один объект пути - - - - - The selected object is not a path - - Выделенный объект не является траекторией - - - - Please select a Path object - Пожалуйста выберите траекторию - - - - Create Dress-up - Создать наряд - - - - PathDrilling - - - Drilling - Сверление - - - - Creates a Path Drilling object - Создать траекторию сверления - - - - Create Drilling - Создать сверловку - - - - PathFixture - - - Fixture - Крепление - - - - Creates a Fixture Offset object - Создать объект отступа крепления - - - - Create a Fixture Offset - создать отступ крепления - - - - PathFromShape - - - Gcode from a Shape - G-код из фигуры - - - - Creates GCode from a FreeCAD wire/curve - Создает Gкод из линий/кривых FreeCAD - - - - Create GCode from a wire/curve - Создать Gкод из линий/кривых - PathHop @@ -427,161 +300,35 @@ The Z height of the hop Наивысшее значение по оси Z для этого шага - - - Hop - Шаг - - - - Creates a Path Hop object - Создает объект шага пути - - - - Please select one path object - - Пожалуйста выберете один объект пути - - - - - The selected object is not a path - - Выделенный объект не является траекторией - - - - Create Hop - Создать шаг - - PathKurve + PathInspect - - Create a Profile operation using libarea - Создать операцию профиля используя libarea - - - - PathLoadTool - - - Tool Number to Load - Номер инструмента для загрузки + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Машинный объект - + Create a Machine object Создать машинный объект - - PathPlane - - - Selection Plane - Выбор плоскости - - - - Create a Selection Plane object - Создать объект выбора плоскости - - - - PathPocket - - - Pocket - Карман - - - - Creates a Path Pocket object from a loop of edges or a face - Создаёт траекторию обработки кармана используя контур состоящий из рёбер или из грани - - - - Please select an edges loop from one object, or a single face - - Пожалуйста выберете грани цикла принадлежащие одному объекту или одну поверхность - - - - - Please select only edges or a single face - - Пожалуйста выберете только грани или поверхность - - - - - The selected edges don't form a loop - - Выбранные грани не образуют замкнутый контур - - - - - Create Pocket - Создать Карман - - - - PathPost - - - Post Process - Пост Обработка - - - - Post Process the selected Project - Пост обработка выбранного проекта - - - - Post Process the Selected path(s) - Пост обработка выбранного пути (путей) - - PathProfile - - - Profile - Профиль - - - - Creates a Path Profile object from selected faces - Создать профиль пути объекта из выбранных поверхностей - - - - Create Profile - Создать профиль - The tool number in use Номер используемого инструмента - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Создать профиль пути объекта из выбранных граней используя libarea для определения отступов - PathProject @@ -655,21 +402,6 @@ An optional description for this project Необязательное описание для этого проекта - - - Project - Проект - - - - Creates a Path Project object - Создать объект проекта пути - - - - Create Project - Создать проект - PathStock @@ -685,7 +417,464 @@ - PathStop + Path_Array + + + Array + Массив + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Закомментировать + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Соединить + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Скопировать + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Дополнительно + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Сверление + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Профиль + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Номер инструмента для загрузки + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Карман + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Профиль + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Проект + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -698,57 +887,47 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset - Отступ на длину инструмента + Tool Length Offset Create a Tool Length Offset object - Создать объект отступа на длину инструмента + Create a Tool Length Offset object + + + + Create a Selection Plane object + Create a Selection Plane object - PathToolTableEdit + Path_ToolTableEdit EditToolTable - Редактор таблицы инструмента + EditToolTable Edits a Tool Table in a selected Project - Редактирование таблицы инструмент в выбранном проекте - - - - PathWorkbench - - - Commands for setting up Project - Команды создания проекта - - - - Prepatory Commands - Подготовительные команды - - - - Operations - Операции - - - - Commands for grouping,copying, and organizing operations - Команды для группировки, копирования и организации операций - - - - Path - Путь + Edits a Tool Table in a selected Project @@ -815,7 +994,7 @@ Shape Object - + The base Shape of this toolpath Базовая форма этой траектории diff --git a/src/Mod/Path/Gui/Resources/translations/Path_sk.qm b/src/Mod/Path/Gui/Resources/translations/Path_sk.qm index 6f76affc25003d83cc6931c3cf45153c096f24fa..2d8b5939dd3ce853c0d3b0ec1b32420140be6b6a 100644 GIT binary patch delta 5561 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 Pv6C!TchCBQ%_IK@cN#-RPNM`2DlCV@q3}ulj z>MI~+5rlG5K`aD30ppH68i)o<5Gx9W2q=OGDvLmS=e;q7b4q*W%=zxWynF9=@Auym zH$-oq68SPatb@CL*tE8LXyiN9+ur(WDj<6vkY@oio(9URftVIx)>A;`21s`<0tWYj zDa-(-b%1GT1F~#jwp-~u7R)ZXKcNrI8?$NsH!$zA|DC{y*T|!C?HjcbJr41nkwFW?>LYbCq5&p1g2aOUq1E? z5WimRyH)=TF#M)OGVwZnm?#-k)e0o_N+O;iMuS=;ao=qM(ii~?Pe_tie?ZLcNU|4S z1;XPcl{*gukCsUuUGgDd-7aZ3Xrsz}CwcnE%Ybg3WK}R#FM7IU_b*g2nOD+rPzQ{j zBXVpzqv1|b+v(nv3e+J5Wq#eu70aGia?|)9rha8lCr0N6WK9hc}C4UpO(u*s_ zw`QDWN@`qQ5QKj_uEf$#m4@P8ar=I@6$X?t+Jv+&S7Bx^Sx|pzX7f|&k zlM(dwNeIKZp&%BgQiJSkzyxcmM)>oL<<|j1+<5OfyTmJ-%I3`>AIVBXZA+uGxFKF6fm+>KDUfYR2C+;W!23sl*A2FW>UNnmvlM6>&i6D#f|SFA*M7 z+z7e|sP_w~3nlc?#@uwJBe-bS0CA7%S)bn+)1g{tQc>og2^h0U)hUk!GOh`jtyOh)P^o8RsV=QHQl$!1H}j>W z;zG43r56Z^Q8R5+;&8WG{UWW0k5CU_J4vL)>Zp)DfYGX}UKmev<%qg|@^K*hq}uf{ zB|K-J+P5^9)c;tUdS6Bt_2iEN=D)7q_w6bY%^LOf?FqJ4y^J}@4-fNRq5ltegzNA$o6VBbQRp|(8W3>9t56SUZ z?ZQV$YYEeqKKJFwjuXF1Y?bk@$^Ymp+)RM$Ty{WB|&iCnCKdGVC zY4jWS^a10BRO(-~EF{Az;Hc#g z8o#eSRPk7lD4es0g+D^wrzt5b(_l~LhbcWNe&v1v9xw#P(%DdO7Fq8J75_DI@!z)D3b+K-@*V$ef{d*C&EyEi) zj~rXbX!uz3$2JG7^JB+^@O!x~TVtcmUeB{h=Gpv^nH~5tBWq#6YR^g?$urEiE%bO@ zEPp){IeanwrDS110j(Xdg5_F_qkPdhF4p2<4Fx$4D{H88IhqU>LyOJDrqp^}&8*zt zAb(c*bW+h^aSA?75BPN7@0IL2iswKRSr+=|^U+!QVhVC;-2xlGlY&}!xwS@p@o*sr z_k&5~yI3}7O78zpCYC7G1}L334vP#fsJ)L1pL9PB?&#!6jGQmCHoGQZd9w|2ey`BM z88RIG_TPtG;kITp>jGy^zMN*h`Y}0fM#;OmlsjGMQK`dXt#mjV@9R-_%tp?f*EoQ` zX>PRGh3Z9fSIeWhOLn7n%B3O9bhf9c~ZzMM(trUhyzBFBr4SQDo>q6wuOl#d`wQmXhQLF4YXXE8@N`nZWfX1#tjH6anPP>w6&{C^n{8gq1o5RiWu6hRCQK^~SSzM&@bRbqQdU}O8reLnO(=? z%K|$I*e|;}emWRX&r8lr6T?Pl^+@6s;l!f;wO@?>uMGSb_58|)#esAGu9KdJi}txJ zyTa%0pHJg|8#RVHhs#j!a(JEe5|e7_`TNm8Q^??O)m!Yg#k4j!ew$?Oe$mZvxE9o~ z_Syzs8pi)Y!%Zo8=x0;$EDRt<+??Vt-;f8AaI+qdKbF^NpvKK-YdsH%6^inHTI7{T y+VLM|s{X0_uv`^1i2ZYe6NQJw^K;-qE)N;hiT`C#KO{pZXP6V#K7IPKgnt86Z>$Xf diff --git a/src/Mod/Path/Gui/Resources/translations/Path_sk.ts b/src/Mod/Path/Gui/Resources/translations/Path_sk.ts index 69ec853fe..f52e3d55a 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_sk.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_sk.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Komentár - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compound - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kópia - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Vtlač - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Projekt - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Pole + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Komentár + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compound + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kópia + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Custom + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Vtlač + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projekt + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_sl.qm b/src/Mod/Path/Gui/Resources/translations/Path_sl.qm index 914d86a3d287b300ac09a10185ef15eb45d07f97..e728694c3f01ff5adc67b4ea6ae367db676d9edf 100644 GIT binary patch delta 5685 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 O9c{6?J02?xOZ+d?GzWzM delta 3422 zcmaJ?32;S)c2M=s<8s>cC!Hn3nEP+0@SJOM0x2&n3Va>p{@ zPA$07bYRYYaE&{G>^b0Ga?p1hxZPww{g2=d-V59n1nzYnnExsaul18ZD<;N70fr?= ztbU8$(4oTjcp_lE4+{@$1~SfJ_Z1CLFd4_J98hA!+4nvN%3s6H!DoPpSu$WXQ1O(k zO#3MX@}O+t)plUa)3SG8PXR&~$~7|!$!?cC?OGV1w8#seB%F~Vf9}?4pzwMv%+BjTM3tgy$8p+kQrz{xn*jflqVcekD)X^o)t6TRGZbq>mI9-vD)xLs6;o|e z96D?QQqL%Q2N(r*+NYE+pp1hY$`N^#Sy_5lDL`hclFy<_ zSi6-iONpL2_bWH(TdCAR66O{t_awdy%-*j&wE7~DuU5WsmNJjtt9(m02*jROerP0r z(=RALT_YzyCzW5}YhaRZx$>L!+lae|lsAWXVD3LSnYD*FJ%M zM{s-9r-8`L+~LLxKv6&U&T{(h%i6*XY$6A7ajMDTFA;}Y3A2~0vJcbV7_KUO`vhrV zm8!%&NR(u%8bd6=*g92H;u2um7pj$A&jRBQt5%++fFk6o$392{&@188PSx&L?*^)? zRDXMq{LRZ!UHs<(z|y5oyIBMuCY@4SHh1m4fDs$iJG_rjg^sFEK282A zi_~YX6UC)a50p7b3#-*PswdFBziLv?l=}ePWli2q7ZB2=d8C3$qMEMRxShn2Jwmg& zpE$Sk64w1$^U@`1qcNXr_N<#lfn3-8Wjk>WNSGR?Ia%YT65pdacZBX$lxseo7fT6D z*Ic~k3gI)FZ-YMt^yeis)f4*YVDU7qBJo>_Y)GrD=>rm4wC1w!NWIT%gF=c()pN8D zpD_ZmA?=!tpAZ!l+Wi8FaBP_N>Y|CjeZ4x}+9p7IM8XuAE@#pZwP%LTkrf7noz|^* zfVyndK?%oR)NNRE36Kx!Hu(IDDXVo)S#=coH3?%5>3Y@Ufb=&c%)O-RJw&CRe^Gbk z(HyGOG2M5?N>cGSy)5|*X=aC>+esyk*sa%h(>^{)AH?@k$xrG>g$@E-g1-8R44Nx@ z^$oeFftlO%o)Z-CqG$EKm4&4Kh4uP<=_i3ShlIt=`hAzzQeO|~ZzS!Y!4YpzCZDI0 zhZ}Ozy_B)VkTZ?&-qnVZSN0O;dP8{_1tjl~FxF^TY$9sL$P7#6uTi@u8diP3of1_U z*32MrR+tRWy*dZD!{#$wI+sXdxn;O?c_fu+l;QhI2leYRqh>UTq&C*5Ng`a_Z`7Fx z9i2vV@0+CFd}GHQB(|bvV@Gly;Q`~dAC6HVzU!ut4w`V4>rJT-b&-_bHqG#huI3LC*8X5xqNRsMt}{Jx>i|&S zYuai&LY&@b+PUTwFmAEw$DyyOtqz(;>?Dekj+{g;AA;xUo zSw#bFrn&2#TACZ5n>W8QNbMV)V%}x%phbp+_na{A8suo=^_h={9;Y@uVD77SP~R^# z-%6kd;y!Z%je~4_-2R?$&AH%-0xS^Vh6i>mffFqdND91wtEH7GE0Hb+G=+>+Io&h1j|@day_TF*}aWyP4eWx z>h(`#A?zkY%n^Qb*F6=v0zHFh^wdM zi}?PON~3So0F_R1V6J3getX5zsCfnCZ@Fpe(p z@OCe6DJc*fJR6e}ZZi5GEA|Mj^BV1Lp1m;jzc0o3h{mSPXj7vvRMmO4Fra$UP;39t5Z{;PMy0$cENcy@ZkiB3^8wNxD^h0RM3Mbqt& zk~#|b_6uUD!%kUFZZ4Zc7 zvNov~Y(kq?j6X`!e7Ta%$~3WKWubbp&uku{-r2&A<{wm$##l!|b3lye%XS4;>&ugV zY1?BPdqO4~9dH-VG_k?#&I(75CU%>gZLApQKaee8yW=O^PPFGj{74nsHn%$v+=glrFi5wq~NNlk{kz|NScMq-OGqx3zw36lg;;Ll z>qJe8UHog;K~&gZj(PiV61w3L|9fGnV52H{#T)7VUk0V0yx++oj*NfvMOsnovna geometrija te poti orodja + + Pat_hHop + Path - + Project Setup Nastavitev projekta - - Prepatory Commands - Pripravljalni ukazi - - - - New Operation - Novo opravilo - - - + Path Modification Sprememba poti + + + Partial Commands + Delni ukazi + + + + New Operations + Nova opravila + + + + Path + Pot + Path Closed @@ -236,24 +244,6 @@ Če je pot orodja zaprta lomljenka, potem je to Prav - - PathComment - - - Comment - Pripomba - - - - Add a Comment to your CNC program - Dodaj pripombo programu CNC - - - - Create a Comment in your CNC program - Ustvari pripombo v programu CNC - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area Višina povratka nad zgornjo površino dela med sestavljenimi opravili v področju pripetja - - - Compound - Sestav - - - - Creates a Path Compound object - Ustvari objekt sestavljene poti - - - - Create Compound - Ustvari sestav - PathCopy @@ -294,21 +269,6 @@ The path to be copied Pot za kopiranje - - - Copy - Kopiraj - - - - Creates a linked copy of another path - Ustvari povezano kopijo druge poti - - - - Create Copy - Ustvari kopijo - PathDressup @@ -327,94 +287,6 @@ The modification to be added Sprememba za dodajanje - - - Dress-up - Prilagoditev - - - - Creates a Path Dess-up object from a selected path - Ustvari objekt prilagojene poti iz izbrane poti - - - - Please select one path object - - Izberite eno pot - - - - - The selected object is not a path - - Izbrani objekt ni veljavna pot - - - - - Please select a Path object - Izberite pot - - - - Create Dress-up - Ustvari prilagoditev - - - - PathDrilling - - - Drilling - Vrtanje - - - - Creates a Path Drilling object - Ustvari objekt poti vrtanja - - - - Create Drilling - Ustvari vrtanje - - - - PathFixture - - - Fixture - Pritrd. elem. - - - - Creates a Fixture Offset object - Ustvari objekt odmika pritrdilnega elementa - - - - Create a Fixture Offset - Ustvari odmik pritrdilnega elementa - - - - PathFromShape - - - Gcode from a Shape - G-koda iz oblike - - - - Creates GCode from a FreeCAD wire/curve - Ustvari G-kodo iz žice/krivulje FreeCAD - - - - Create GCode from a wire/curve - Ustvari G-kodo iz žice/krivulje - PathHop @@ -428,162 +300,35 @@ The Z height of the hop Višina Z skoka - - - Hop - Skok - - - - Creates a Path Hop object - Ustvari objekt skoka poti - - - - Please select one path object - - Izberite eno pot - - - - - The selected object is not a path - - Izbrani objekt ni veljavna pot - - - - - Create Hop - Ustvari skok - - PathKurve + PathInspect - - Create a Profile operation using libarea - Ustvari opravilo profila z uporabo knjižnice libarea - - - - PathLoadTool - - - Tool Number to Load - Številka orodja za nalaganje + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Opomba</b>: S pritiskom na V redu boste uveljavili spremembe zgornjega objekta, toda če je objekt parametričen, bo jih ponovni izračun preglasil. PathMachine - + Machine Object Strojni objekt - + Create a Machine object Ustvari strojni objekt - - PathPlane - - - Selection Plane - Izbirna ravnina - - - - Create a Selection Plane object - Ustvari objekt izbirne ravnine - - - - PathPocket - - - Pocket - Ugrez - - - - Creates a Path Pocket object from a loop of edges or a face - Ustvari objekt poti sloja iz zanke robov ali ploskve - - - - Please select an edges loop from one object, or a single face - - Izberite zanko robov iz enega objekta ali ene ploskve - - - - - Please select only edges or a single face - - Izberite samo robove ali eno ploskev - - - - - The selected edges don't form a loop - - Izbrani robovi ne tvorijo zanke - - - - - Create Pocket - Ustvari sloj - - - - PathPost - - - Post Process - Poobdelava - - - - Post Process the selected Project - Poobdelava izbranega projekta - - - - Post Process the Selected path(s) - Poobdelava izbranih poti - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Ustvari objekt profila poti iz izbranih ploskev - - - - Create Profile - Ustvari profil - The tool number in use Številka orodja - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Ustvari objekt profila poti iz izbranih robov z uporabo knjižnice libarea za algoritem odmika - PathProject @@ -645,7 +390,7 @@ Start pocketing at center or boundary - Začni odstranjevati sloj na sredini ali robu + Začni odstranjevati ugrez na sredini ali robu @@ -657,21 +402,6 @@ An optional description for this project Izbirni opis tega projekta - - - Project - Projekt - - - - Creates a Path Project object - Ustvari objekt projekta poti - - - - Create Project - Ustvari projekt - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Vzorec + + + + Creates an array from a selected path + Ustvari vzorec iz izbrane poti + + + + Please select exactly one path object + + Izberite natanko eno pot + + + + + Path_Comment + + + Comment + Pripomba + + + + Add a Comment to your CNC program + Dodaj pripombo programu CNC + + + + Create a Comment in your CNC program + Ustvari pripombo v programu CNC + + + + Path_CompoundExtended + + + Compound + Sestav + + + + Creates a Path Compound object + Ustvari objekt sestavljene poti + + + + Create Compound + Ustvari sestav + + + + Path_Copy + + + Copy + Kopiraj + + + + Creates a linked copy of another path + Ustvari povezano kopijo druge poti + + + + Create Copy + Ustvari kopijo + + + + Path_Custom + + + Custom + Po meri + + + + Creates a path object based on custom G-code + Ustvari objekt poti glede na G-kodo po meri + + + + Path_Dressup + + + Dress-up + Prilagoditev + + + + Creates a Path Dess-up object from a selected path + Ustvari objekt prilagojene poti iz izbrane poti + + + + Please select one path object + + Izberite eno pot + + + + + The selected object is not a path + + Izbrani objekt ni pot + + + + + Please select a Path object + Izberite pot + + + + Create Dress-up + Ustvari prilagoditev + + + + Path_Drilling + + + Drilling + Vrtanje + + + + Creates a Path Drilling object + Ustvari objekt poti vrtanja + + + + Create Drilling + Ustvari vrtanje + + + + Path_FacePocket + + + Face Pocket + Ugrez v ploskvi + + + + Creates a pocket inside a loop of edges or a face + Ustvari ugrez v zanki robov ali ploskvi + + + + Please select an edges loop from one object, or a single face + + Izberite zanko robov iz enega objekta ali eno ploskev + + + + + Please select only edges or a single face + + Izberite samo robove ali eno ploskev + + + + + The selected edges don't form a loop + + Izbrani robovi ne tvorijo zanke + + + + + Path_FaceProfile + + + Face Profile + Ploskovni profil + + + + Creates a profile object around a selected face + Ustvari objekt profila okoli izbrane ploskve + + + + Please select one face or wire + + Izberite eno ploskev ali žico + + + + + Please select only one face or wire + + Izberite samo eno ploskev ali žico + + + + + Please select only a face or a wire + + Izberite samo ploskev ali žico + + + + + Path_Fixture + + + Fixture + Pritrd. elem. + + + + Creates a Fixture Offset object + Ustvari objekt odmika pritrdilnega elementa + + + + Create a Fixture Offset + Ustvari odmik pritrdilnega elementa + + + + Path_FromShape + + + Path from a Shape + Pot iz oblike + + + + Creates a Path from a wire/curve + Ustvari pot iz žice/krivulje + + + + Please select exactly one Part-based object + + Izberite natanko en objekt, ki je osnovan na delu + + + + + Create path from shape + Ustvari pot iz oblike + + + + Path_Hop + + + Hop + Skok + + + + Creates a Path Hop object + Ustvari objekt skoka poti + + + + Please select one path object + + Izberite eno pot + + + + + The selected object is not a path + + Izbrani objekt ni pot + + + + + Create Hop + Ustvari skok + + + + Path_Inspect + + + Inspect G-code + Preglej G-kodo + + + + Inspects the G-code contents of a path + Pregleda G-kodo poti + + + + Please select exactly one path object + + Izberite natanko eno pot + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Ustvari objekt profila poti iz izbranih robov z uporabo knjižnice libarea za algoritem zamika + + + + Create a Profile operation using libarea + Ustvari opravilo profila z uporabo knjižnice libarea + + + + Path_LoadTool + + + Tool Number to Load + Številka orodja za nalaganje + + + + Path_Plane + + + Selection Plane + Izbirna ravnina + + + + Create a Selection Plane object + Ustvari objekt izbirne ravnine + + + + Path_Pocket + + + Pocket + Ugrez + + + + Creates a Path Pocket object from a loop of edges or a face + Ustvari objekt poti ugreza iz zanke robov ali ploskve + + + + Please select an edges loop from one object, or a single face + + Izberite zanko robov iz enega objekta ali eno ploskev + + + + + Please select only edges or a single face + + Izberite samo robove ali eno ploskev + + + + + The selected edges don't form a loop + + Izbrani robovi ne tvorijo zanke + + + + + Create Pocket + Ustvari ugrez + + + + Path_Post + + + Post Process + Poobdelava + + + + Post Process the selected Project + Poobdelava izbranega projekta + + + + Post Process the Selected path(s) + Poobdelava izbranih poti + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Ustvari objekt profila poti iz izbranih ploskev + + + + Create Profile + Ustvari profil + + + + Path_Project + + + Project + Projekt + + + + Creates a Path Project object + Ustvari objekt projekta poti + + + + Create Project + Ustvari projekt + + + + Path_SimpleCopy + + + Simple Copy + Preprosta kopija + + + + Creates a non-parametric copy of another path + Ustvari neparametrično kopijo druge poti + + + + Please select exactly one path object + + Izberite natanko eno pot + + + + + Path_Stop Stop @@ -700,20 +887,38 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Spremeni orodje + + + + Changes the current tool + Spremeni trenutno orodja + + + + Path_ToolLenOffset Tool Length Offset - Odmik dolžine orodja + Zamik dolžine orodja Create a Tool Length Offset object - Ustvari objekt odmika dolžine orodja + Ustvari objekt zamika dolžine orodja + + + + Create a Selection Plane object + Ustvari objekt izbirne ravnine - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Uredi preglednico orodij izbranega projekta - - PathWorkbench - - - Commands for setting up Project - Ukazi za nastavitev projekta - - - - Prepatory Commands - Pripravljalni ukazi - - - - Operations - Opravila - - - - Commands for grouping,copying, and organizing operations - Ukazi za združevanje, kopiranje in organizacijo opravil - - - - Path - Pot - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath Osnovna oblika te poti orodja diff --git a/src/Mod/Path/Gui/Resources/translations/Path_sr.qm b/src/Mod/Path/Gui/Resources/translations/Path_sr.qm index 868559ae29b30629a3fb256505276514f7572774..e342b5c4e8d9997b7c06628e3060c7e31e741036 100644 GIT binary patch delta 6060 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 diff --git a/src/Mod/Path/Gui/Resources/translations/Path_sr.ts b/src/Mod/Path/Gui/Resources/translations/Path_sr.ts index 36dc2cd2f..3cdcde7e8 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_sr.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_sr.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - Нова Операција - - - + Path Modification Модификација Путање + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Коментар - - - - Add a Comment to your CNC program - Додајте Коментар вашем CNC програму - - - - Create a Comment in your CNC program - Направите коментар у вашем CNC програму - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compound - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Умножи - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Направи Копију - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - Изабрани објекат није путања - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Бушење - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - Изабрани објекат није путања - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Удубљење - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Молим одаберите cамо рубове једне површи - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Профил - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Направи Профил - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project Опциони опиc за овај пројекат - - - Project - Projekt - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Направи Пројекат - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Распоред + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Коментар + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compound + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Умножи + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Прилагођено + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Бушење + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Профил + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Удубљење + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Профил + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projekt + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Операције - - - - Commands for grouping,copying, and organizing operations - Команде за групиcање,умножавање и организовање операција - - - - Path - Путања - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_sv-SE.qm b/src/Mod/Path/Gui/Resources/translations/Path_sv-SE.qm index d94f992b0781871a94e4d968eba6a5b7ac7ed596..083b582752c1503f86b165628451281e809dd933 100644 GIT binary patch delta 5581 zcmb7H2~WM5ESdQf=ar#`ga2=fP<4G&vl&|MKqs-TPnO z`a;%nPZr49>xex5-RrAQ#>c#0v+2N>&j4tO@HZR4VFxIy0T_}1FljyjI~SDOW&!jq z0#(sKfGHb5Rlgk|Q~=c$2i|KywG+P|u>(}^Rpb7TpgP0>*zbVxU<=Ay34OcA02njC zTKOS>`U(^U)-46-^$L`%vI0EohDq3@= zV&UPH*8rXwBLjE=_cvt2hkgJsbhxZocO4Dq^&^H>-Kf}|i=L;RQS9Ak28cVX zlviOyLgdQMdFb)r1IoBR{1qdjQTF;~I6%pEWzN6Rpn_A%(uM&5#p{$@7DnpXO-k3y zRj6o+a;2dGQ=_7ERF!g<^-WA`;HYxf&dC5t*Ohx;_!{$Fs66sHhGyUmppum~V`#rpsbAfQ zIp3!WFRsTF9#BPKc#w0a~dGITD7nKOMnW4>TEW8GU!Fs#kI(veV@{z z#p=+7Bk}yaI(y$11l=Wd!HJImCY)D~@La*vC8_H}83;h+Y4tSg41k3B>II8_2ax_J zN^|$97krL}MXXh?tiFnZ+#h0>k|_0HWBF{fwLAD=}9H3m)phr=-<4o&IW zBCMct&7}Q!uDPVCEysz?BsI9L1ivp10*)86ZJ9l-DorRH!-r-$q0QzrooV08-XJv3;& zPFZsjAZxVFQhXo4GEx^3iV^aBrhDm(2|)I9c<&tXv@)k-1|% z_2|ealnyD;@7MGM=#fw9XwV1t@5N9%82!!VIap46_4f;vi0**~S?U=Kd4WNmI2X(2 ztU{2Y%}6~8lV$%002y_rrY;D|vA;Dnr6yo58!3%BW19P&3hy_VwrSBot`2EWr1wqD zwnTtV0aHsa+)s6y&fUOB1p1Aki@f=!+y6d_;7T|BXZdz~0}h)*o3OQ3Z!o9NUxd*7 z)SO9B>~c`*UT-c*#mM!$VxFNxLn5^1S023!;LS6?VLE^wUovlBata{xJ@Z$u{~cTK zMf0tq6o9B|^Un`{z;az=Q76=6{SRGb>AW2=5X)K;&bkY8l;txz4Y! zlx`n~t@S0#qEBpCzYi?y-@bw!a*<^R+XT?_Fr{@DEIY2C=fyu*j)fh=NLE=+RywfJ zG*})bq5PafP5^(M0?TX~j0P5_0|$(dIe1HRwPs=`T?~}s!Av~5lpkv~mvS?iG7slv z{Z8KP(;%0!ob}hs2tNbm$nOO|IFY)9nu6%4kaE`Rcd{-fpKoYj-HtXEA*vu=xEWa~ ztctoTs~0{Um@fPrEi~_lJuegHG1Yr|%$L2|Loc-Sxe$;Ig)Fc^4qC#aa1M8=;(n;8 z(u*fP{BeRC>hPotO7QPY+`I6H0XuRv;Exk|88pldv&7SSaa~8;#Sc!s%AQ&z&vbh=!O9n<6VGpu_SW3Ol3bsRH`Z)6(S=^Vq__!$9? z@$-zoo@031G|uj~GPXuPnhXwF>i5B{pQA!Fjz-hl6u7 zyqocIsMpiz=TZog3C^3=ja+;)(zRPldzjorM?ULoyTcy&UW3 zd>99YC32WrFWS2|zJEL=e zV3^>QK(4(G2sl~9D~EuTz-UJZ`tVyC;}MW7LK6YomMUvow1Z>8*f3rWf)0D5&yUd` zk!@(}sNDAEB~aI^_m)2}F7JC`6!h!SoyiBfc<<9AETQ}O+! zrLMb6TF&m?C@uXx7f8#8J&V*P8nqD#GoW|Ix6kR|gn235Vl1MjLe|cei+7^b2q;8{?ZT$ysICTb z$IwgSaXW*sDdn_2XgfP~UGTOrZD~aNZIJXS#AcaCSl%zzLaK(eN4J<=v0B(#qB|&; zsX_L8`C6w->J(Tch%s+f=guS1G=yF0uX5w?U}s6FQCBK>9s-x1O})m)Y>k92a7&Q9?|wTnY1RuO?}E zp;uaf_MJj!lfTi+iJ7yuwQKT7)Ax?{iuPXX6W=#a5ON|Ya%c+>+pVvj^@sp5Q-EL# zt{_LElH67$!rqKXA+vYiXP9>6k*@-=pIt4R}>ImLC zvY?8z`lQENJvu98L>hsT+gqaWe4nU6*2l3B{1A{4DY>=liLa{&M5wD;q5 z;`Zaq=VSO9~Tiv z)#5)d9&x06l1KP%*m^0-FX#5kpi!>yx0Yub_NvFnd8s1Ea70E?u>^$lu&_X6zBqPM z*kj-FBHnT4=3NBoR4;)N{YngY1dPLA^Wy(FL3-Mnfq{I_P===p$&uRWIjbWqRO~Z^ yZ4~D&tF85Me&Jy5Y&AU>vhyZL%h&RXq~$kxuLUuVV{I;OxWnmh{(Zs9KK}*o2>jsy delta 3265 zcmaJ?3sh8f8vo7X&YkxNf&roq$U|}DA%dEKATT@yR6@n)z+7MyxYIC$pw*<<`pU}g z`Y0@Kv^_+_k7AZM8C`G+*ng`6@m8&AlUMJ*|7@%>2IZ|M;H2??0Wl zW!q27ylH#wAxHo9#;Rix;Rk2Ez5m;>fa(>1O$R2m0Hw2l$Y+7d=YjH-P;PDoLQa6m zPXWg71XH&KNPim4Mmz0?gV{>wM_mN7dm8Bnz#QVp4h#K(PQnd{iwpTxYzv}5a*Hsi%5SUE6`j3LUUx5 zS3E$(BH8DM5`n<8a&=}7ox3hiz8VB5)$*KGgrf`PZ$3B<a z@x4HSUGOU9lPTj~a%FH9Wfs{-8S_&vkg;Ex@f!t@C|8y=3*rE? z#y2Tf=o+YERtd*6D7RVu42(Oe+`H%;Fm|f)!xNPGfP>0UwB11TN#%D2viD@L^1>21 z*}1N~j$eSG-owgUFK(cWik0{7a=?Ty8Cgj?_4GEQdi5>p*=I~pK^?W?OD43`1yr;% zDgB5K1?!ojGZgT+`Hbi7BfwxcvjF7Su#Q>Y_8~B_idmaXftPJ%*0;?d{U>HSdmQLn z%j~QB7O!5&qnH@AYuA?Rr)^C^=DK$fBzIHyr#-?b_2m@ zRds=8U|_3iwxt;unW9?I_Bt@=glfSF3MjNw_0l)V0RAdr>LJzE_oq;cE~@_VHQAeJ zR-OCd1Hk+=n|v=9Uc?V%OV;EQL}5^M@`2AiJ+w^74PZ)kcyShY6k)M<>a)Y*mjRI2cNSGO{?bu7Do|K}!v^;|*+L}_Yt`vqB|SD?*Nf{Ql1|X|>)j1723^I4_kA}@^3S{y#gi(~3!O&hc2ng^RI%7zm@SNe~&y?ukjfShg zeMFq_T8)7%^um?yG$uXYMpXLTINC?LnXMAq-ZM69$WchXapi*#0ItHg-msra-eugf zYG}s#LP3_adWHP~;;9_)THg}zHAYr&)x|6V2FRuBHa*b|b za^IuE%EVZqykD4*n%YY^muL~?xFm-U+atqI$%GwA5sX^2)RiugTR zM9Cv2n*Q4e$u(r2M*~SV`dUS29Nox54(W5@5LXgV4G&4p;Ck8}D>-kHyqjytsX5hV zwz@bjJ1fUL*Wuz4sy(h|j`eZl_i;s0GS&WMZe|P&56r8kEF?QNvlxHRP2rzoMl-Bf z*1nll7E#LQonnbp$R{h#p12gW;k)QRB*dri>_hph0au0CtY-B?1Hu#8FESd@?%kXT zQj>~#o4uUp>xEsByM!6J_5S_NT&rISw`K-teRsN%WS45C>mOAi(@leEGL>z^2L zSFnsc?w1VtYyHyJ{5Zd~ZPZe~G`k?f&(ws%p~9(xk{)foUwW@_tWKmxnTxM+)VFWX z4wCsS zg)NPd#$uwI2Bp4i9upu|=5pC2zf>?j-!H8h|C(3a^;N3eR#ngC+8t6UoFYXVh*LH+ z5>zZss4pRZTrao5Z{3RB?^f zbz)aD{!c1RffR?EK2j!TUsl4L!cgykM}lbL+-{#QkJC)eo6S|bALA}yHiO?w|P7iIbn$S4-KZ_}z4*&oF diff --git a/src/Mod/Path/Gui/Resources/translations/Path_sv-SE.ts b/src/Mod/Path/Gui/Resources/translations/Path_sv-SE.ts index 8bb90a63b..8cc42293f 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_sv-SE.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_sv-SE.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Kommentar - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Förening - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopiera - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Ficka - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Profil - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Projekt - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Matris + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Kommentar + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Förening + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopiera + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Anpassad + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Profil + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Ficka + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Profil + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Projekt + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_tr.qm b/src/Mod/Path/Gui/Resources/translations/Path_tr.qm index 170f6ba3dad200a2a1cd733230ad0ce1998a2ad4..893f705f55843b505c6821309dd74eb8781ec2fd 100644 GIT binary patch delta 5510 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 delta 3248 zcmah}2UJv78vdrdd2c$+0tyZwU_lWn8U+ODpaUqe#V7;wfHA;~!;GMAb}UJ3F($sX zBqZio*5ipKn~-GHgDGmVN`jDG)a;rltJq>mu|<=(`_G#vCm!SOnKS46|9kJd_xt|# z_8r+vU&}lxd#!z2zk7XMTX_GE$~GVPW;~#J8DLX^sbxSB{UhAKj731{Vko!I2l}>y z$x8xCwt%VL0i;%e*=nVI9hjYT{)uidAIv0w515a6V9F2Beb_oMc~Ci*ZCJFjp+rWuFK43JxblP9hMg@bUf`&D2_r3`qE{F}0T^(7!U zMKp0$o}Y`Xl7`<*~`q`XU33S?ZBU;FYr z5WPqICOV;K?|}lM6outcw-Z`)m}Mzblsfa1Ai5SF8wV0K$qDyKYm&RBpxIeFk9U zI7Q1Dfry>{;6Pr0ihMY@iFGLsTPsZ>1axK1^MwO5I1ku1l5m`B9+Yf-2Y14fOh# zsye^~M9x*siJb?Gj#DjO`Wi5(UA6cm5ehz{dg-4D0QUPZdB1AsJJTseovJTR(0!Br zROkNvK47x33HP$$!SHa_ydjS&zL=fSLI>C`c4ihm*uQ|CHIYIzu@7rYy-%GG#@aH> zq-Z9)uER~CTf(l_-lSZ1vRlTzM=89+ZtJ*C1beaDUCW5@V77H5-BmCF5_MuDQCH5g%lE1FK*2?Dvs0`uBn4^Ue?QpkHBAdU5J>vbhv`~P%U%lg)Nsv}RcREdT+L58N~+>9 zT3Ot2ATUD9?4S^b%++ewk{=VT_2XNpNb|Izf!zS3*G_q5G|iQx+NyD#K>7)-^C%I1 z`em(WaTZno^cS@6Cbd#d{^Y})-P(6Aub`rttGzLNJCK#DQ^tKwA?I{yNiI^Hs7o6~ z_|zs{?w;MGaD}cQhzQB&`7p{~H`_p|F`d^n$UmfZHR+c8yp4p8)-4}P#aZakz41;7 z&6k@V-NjR}6w-3t#mjvuM3K6mi>%bI&*-@@Dw49JdTu!3thIWLfv^I4W6P&>aiYGl z4;5SXoBGDMC`ygnhr`$Ew{t{fnw4-M;Vpf0`5?gGqwk0&e^Q0FiM5oHp_NASj#AqHz_|2SId#>2 zW7D2)VAOy~#DOCN8_lMF0(Oov6$|_i+ z-)#=!ru)l6gu396K9qgx9Qy0ce1oaT!8W@36S+&iSTHdu^?y&RX9*Gejm6#>Y7sZL!5wE$okrm8`3A%XH$J_b6ZI5~lTQ z6`mgvBb0`Q2!9)qB4Sv)&5O+u{ZGk+E%D(DC*E>2{s~UBGVKl_ba;pmHFA#n!NPpu zr%;O!ksKsEmoO+md?L%q*VnrpG6m_e3V!JWgwqMn3r7a{3+}|2M~@^6;Yp#w7m4E~ zszFI^A64m|=F+g|WkOSuTiWlPoX6-yV%Fq&lGT-*s2A6=oVJ=8TV0jVkuqI6AD7xF zS-Vq53=tXT*cx4KCoeKgL8cg9Z*X~-kW0QDR`9~yv|*mGOeb$~@uu8NyOlRpI_blpTin8$G-E-Gk3;>#ByyZQpP7;M|H%v_NfnZ$uC&Ph0l5{w(IS%Wks*9GZY;x! z!DZ9SCCi>}V#T#QyAYCO@3H?e;JOf)F^`k>9D*YAMMf=t{9V>0Up^+-E!I-Iy@v7; zEVM;538mRJ(wWb)b0jMuC!NuV-%ZQ;T(Sn|c1qUm(HkXeb6&J$wdJjlteN>~QkjMq z3=`V&%{|^i$=XsdUMpt3*lDk{)il4F86=Ym;@g5flC`OD^h1ZrBY%|%mkOT{j>q~7 z2@@*4*gQMxX}Pd-f=P5*V#cb33iEpDmH(I{d_6JQMO{)>ynyi+6?GL)m8{f~Jjq&B z@~TJN^+u-DQeMMnTWv0}8XaQw)lzj>P)Akht({7-=}o8->&8ukz(#vjh!xZ7!2BNH zTT$MxOyU<+qG!VbY2Ul*pc;45y2nL}b~;?&GkQipm?EZ1yVF$Vw7VVDNU;@m$9ylE zXuz24&MHftZ2|cv`-34>-%~wP?apV)`MQc~QA*nXkWwE&JY4kiDKUXm38zbfJp&#h zQO~The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Yorum - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Compound - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - Kopyala - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Cep - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Yan görünüm - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Proje - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Dizi + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Yorum + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Compound + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Kopyala + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Özel + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Yan görünüm + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Cep + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Yan görünüm + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Proje + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_uk.qm b/src/Mod/Path/Gui/Resources/translations/Path_uk.qm index 2a61b5f3aded4f74ea19901b807e35a6ccf5eac6..3865f087d12a6e615868694eea75650b581e7faf 100644 GIT binary patch delta 5869 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 KIxQ0l)BX>aRU6p= delta 3574 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 b5!{aOsY?EpPt^z(JVI?kcu(xysHFb@-(tKK diff --git a/src/Mod/Path/Gui/Resources/translations/Path_uk.ts b/src/Mod/Path/Gui/Resources/translations/Path_uk.ts index 75f229adb..55e418b46 100644 --- a/src/Mod/Path/Gui/Resources/translations/Path_uk.ts +++ b/src/Mod/Path/Gui/Resources/translations/Path_uk.ts @@ -205,28 +205,36 @@ The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - Нова операція - - - + Path Modification Модифікація траєкторії + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - Коментар - - - - Add a Comment to your CNC program - Додати коментар до програми ЧПК - - - - Create a Comment in your CNC program - Створити коментар у програмі ЧПК - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - Суміш - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied Траєкторія для копіювання - - - Copy - Копіювати - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Створити копію - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Свердління - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Створити свердління - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode з форми - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Обробка об'єкту - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Площина виділення - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - Поглиблення - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - Профіль - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Створити профіль - The tool number in use Використовується номер інструмента - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - Проект - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Створити проект - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + Масив + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + Коментар + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + Суміш + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + Копіювати + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Підлаштувати + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Свердління + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + Профіль + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + Поглиблення + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + Профіль + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + Проект + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Операції - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Траєкторія - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_zh-CN.qm b/src/Mod/Path/Gui/Resources/translations/Path_zh-CN.qm index f42bbc542a6648e28a3151450bec46294aea6585..8fc7942b061404a3422bd4259e825d4a62a1227d 100644 GIT binary patch delta 5458 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 delta 3249 zcmaJ?2~ zzG_S`F)pQ4ji)-8gE_cG>`_w_(txJ1MuVhcjV4ubjkf>1d2;kvdpPj@_r81o?fdSJ z^Pb@2ivmYNr^)y1&)YVi8yk46WXF+9GXNy-0+5LS1-AimO8|lw0u;UlkRJfzwnhNo zBS7fm0A?oxQP~cV7z4yE6TsXyAok+K9VUX?X6mFy@vIfS3}dZAP4~5PtZy7a;9t;T1tX zKuV|Z=GQ+0gf$8s4=dIJgnuUzO}m2^NzurHCIIaLQNUWPXk@V{^k3TmqAs~n|FI}y z-ASy>CQ4rR3xGc*%5Uq&^(oQ3<);8l-lEFGX6#IrXw|=O0;sl#)_BzejE)uUyN4Z< z*hQU(RRFJfi@GkenAjeNShxTy_7I9kq+n%ZZ;QkJnGT?Hh;_eW0+GF9Lv<{`v@$WB zfSoW{#8vf3&umZe26;8MTII&1Nbx@H9{^^3AnttoD!_~&@#hz?@-eOA)3O18&<^qU zO7u7Nf_Sh+h<^5oZ^ID4WCtt0w|*ybcV7JHAq_C6h!7Z@$mwB1vgsq_Oi%b^RU#F? zC;W1)$Yl%>7qkK(%Shy0!Gvce680V402A_vm4Jbjt;D*f&(Y6M#MT&0JdY-}H!VT` z7UC1K7a$;&I9z!NAibaXas_^OB-n_{@1cXxr;^u3?m`Y(Hzpb-iHC8mxFSjW;tXow zpd`~W05GCgQt71u7&lL{R9gq|`V+~@rVjwdJ0&YGU_yTTB)|K63;=xQ#`qS=-UBG$ zc}pdKJ&*q8?2%mk;Shjk78&y>9UL%uh%~&XN5$ung*=g(afu) zIq@mBY>+gk7_g!+a&wOzTW2D-$nPST?c~m+4y5otxx42UCa5OcY|YrAA@b~2^p_h> z_Wgns>$T+NEE8&B6?vy%0^a+EitfvH0LV^IDUWKfa*}G!!InryQ19$UaU|TKT6>W5 z;y=34_&v4j8a|`3oz%XyGcl1rQzv#K=KyYu&Zo|nSg^%%>f#Z+m(xJ?&ke-_=2BM| z-9T)m?t2ab$UEGq@xb2+}U zp#5$fcS*LP z5)>aEn2qzL-=Vm6QHw2&P+Yt2i!CA*k8@4<8giA?XcS4wA|(}pxFkd=Qz4daQmVU7 zp<`cV!zdJ6`WwoI$WWxl?#766WgCTw%)f^i0aQ>rri29>JFP zsoGn<1_&uuJ$X2U?>ksMq8%xUxUCNT7AvQ(swdUp{|{NQdR8@3GD)vCwCCeMTdQvR zvJ~gWX?5%V0erq=;?;YM4QS}xSXiyzGeF?PJErdT?#5@xs?QaeuvJp^(@7X0tlJDw zevdVU9d!Co3q1w?Y>l7)C}baB4*n_)biF3mLR*bCGgHHQ_!oMIKpt3u1`8O$1`OJb z>@mLpZ?8NnZ86#yYojKWsjfEGm};Fx{sIB3i?kB*Jfp3W{WLO+xB4TS72KZdC|zS? z7X+MTmq!J#`9c1yB;JEP5vAp9D%$KqXK>&}0lPkW6hU#G{uDixw+5q|rQBXBV`*d` z1R3$V4_g^Co{zL8<^X$oj3>J=Hk{vC9b3g)4`S`^EYhrWZLQtn%pd(*0qcmf^WPuE z=?MiFPaj{$Tix-oN^URBYObm>*Ho|_2@Co2-iZyowJ|YjB3ECAxxr?)(gG1SGXYY$ z&bj(Vg9b8j&43ALcAjpsa&)SdHri-SW-4Q%*^Ro94y7w}hLx$FTWPeoT^L?)QTx0T zw9C;w1J!65@i&7DM&peXNW*nKn7N%uC<8lMbwCgE9PSQY>yEA|$Do>cqb9>j)2S(G zntHR9jx4iV>uAy?ikI^W!D7nzV!CzX0=+WJunM;yqlU|W_$Iq2X*xl2ZM~6Hs^u&_ zW8qpP0X=%L4Cf`n53Y;+A@*r3Lq4;=8FP!hpIk>hbHHAkv7V4}eov*%ag#KYF`Duj zri$$d?qIj)R`K7rrDyQgV0tnk`;+@1|_!t$KY3Z|%^p;jO4F9WTP6 ztjTP?+G|rR$$pjCSS($Qkm2*X^kAN4-(d_-te_~tHLY`kcOUFGy zMP`p=r)7Jvy*b`&pVpIom{aaTXL0CaA^V$|{@kJ~e7b}kXV}8WJZ8|i-^E-TV_`?< zEh9X+GC#_j&s&f4^t_cd`+W!Z)zzweV`&wgZZg|ALM)s{t5H-&s6nl|Bv+0USrIGn zFN0FDps;FirR5}GfyUvrONg#p8tz5~w=%;r{<~|}f-k{}`wkm!GI+RlnENTu#)zhz zv1%%;jNO9IOAVBwO*Kq z4S(E~Xk1mX(b;~EF)t)hOWSO&SaypBsa#5z*The base geometry of this toolpath + + Pat_hHop + Path - + Project Setup Project Setup - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification Path Modification + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - 注释 - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - 组合 - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - 复制 - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - Create Copy - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - 凹槽 - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - 配置文件 - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - 项目 - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - Create Project - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + 阵列 + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + 注释 + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + 组合 + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + 复制 + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + Custom + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + 配置文件 + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + 凹槽 + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + 配置文件 + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + 项目 + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - Path - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Path/Gui/Resources/translations/Path_zh-TW.qm b/src/Mod/Path/Gui/Resources/translations/Path_zh-TW.qm index 07ee6c0a330bc4688c35c4e1b7d484b1b0e1db60..c80c731e69357cfe9abf10d8b6761cf3b8f70caa 100644 GIT binary patch delta 5672 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 delta 3316 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 base geometry of this toolpath + + Pat_hHop + Path - + Project Setup 專案建立 - - Prepatory Commands - Prepatory Commands - - - - New Operation - New Operation - - - + Path Modification 路徑修正 + + + Partial Commands + Partial Commands + + + + New Operations + New Operations + + + + Path + Path + Path Closed @@ -236,24 +244,6 @@ If the toolpath is a closed polyline this is True - - PathComment - - - Comment - 評論 - - - - Add a Comment to your CNC program - Add a Comment to your CNC program - - - - Create a Comment in your CNC program - Create a Comment in your CNC program - - PathCompoundExtended @@ -271,21 +261,6 @@ The retract height, above top surface of part, between compounded operations inside clamping area The retract height, above top surface of part, between compounded operations inside clamping area - - - Compound - 複合 - - - - Creates a Path Compound object - Creates a Path Compound object - - - - Create Compound - Create Compound - PathCopy @@ -294,21 +269,6 @@ The path to be copied The path to be copied - - - Copy - 複製 - - - - Creates a linked copy of another path - Creates a linked copy of another path - - - - Create Copy - 複製 - PathDressup @@ -327,94 +287,6 @@ The modification to be added The modification to be added - - - Dress-up - Dress-up - - - - Creates a Path Dess-up object from a selected path - Creates a Path Dess-up object from a selected path - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Please select a Path object - Please select a Path object - - - - Create Dress-up - Create Dress-up - - - - PathDrilling - - - Drilling - Drilling - - - - Creates a Path Drilling object - Creates a Path Drilling object - - - - Create Drilling - Create Drilling - - - - PathFixture - - - Fixture - Fixture - - - - Creates a Fixture Offset object - Creates a Fixture Offset object - - - - Create a Fixture Offset - Create a Fixture Offset - - - - PathFromShape - - - Gcode from a Shape - Gcode from a Shape - - - - Creates GCode from a FreeCAD wire/curve - Creates GCode from a FreeCAD wire/curve - - - - Create GCode from a wire/curve - Create GCode from a wire/curve - PathHop @@ -428,162 +300,35 @@ The Z height of the hop The Z height of the hop - - - Hop - Hop - - - - Creates a Path Hop object - Creates a Path Hop object - - - - Please select one path object - - Please select one path object - - - - - The selected object is not a path - - The selected object is not a path - - - - - Create Hop - Create Hop - - PathKurve + PathInspect - - Create a Profile operation using libarea - Create a Profile operation using libarea - - - - PathLoadTool - - - Tool Number to Load - Tool Number to Load + + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. + <b>Note</b>: Pressing OK will commit any change you make above to the object, but if the object is parametric, these changes will be overridden on recompute. PathMachine - + Machine Object Machine Object - + Create a Machine object Create a Machine object - - PathPlane - - - Selection Plane - Selection Plane - - - - Create a Selection Plane object - Create a Selection Plane object - - - - PathPocket - - - Pocket - 凹陷 - - - - Creates a Path Pocket object from a loop of edges or a face - Creates a Path Pocket object from a loop of edges or a face - - - - Please select an edges loop from one object, or a single face - - Please select an edges loop from one object, or a single face - - - - - Please select only edges or a single face - - Please select only edges or a single face - - - - - The selected edges don't form a loop - - The selected edges don't form a loop - - - - - Create Pocket - Create Pocket - - - - PathPost - - - Post Process - Post Process - - - - Post Process the selected Project - Post Process the selected Project - - - - Post Process the Selected path(s) - Post Process the Selected path(s) - - PathProfile - - - Profile - 外觀 - - - - Creates a Path Profile object from selected faces - Creates a Path Profile object from selected faces - - - - Create Profile - Create Profile - The tool number in use The tool number in use - - - Creates a Path Profile object from selected edges, using libarea for offset algorithm - Creates a Path Profile object from selected edges, using libarea for offset algorithm - PathProject @@ -657,21 +402,6 @@ An optional description for this project An optional description for this project - - - Project - 專案 - - - - Creates a Path Project object - Creates a Path Project object - - - - Create Project - 建立專案 - PathStock @@ -687,7 +417,464 @@ - PathStop + Path_Array + + + Array + 矩陣 + + + + Creates an array from a selected path + Creates an array from a selected path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Comment + + + Comment + 評論 + + + + Add a Comment to your CNC program + Add a Comment to your CNC program + + + + Create a Comment in your CNC program + Create a Comment in your CNC program + + + + Path_CompoundExtended + + + Compound + 複合 + + + + Creates a Path Compound object + Creates a Path Compound object + + + + Create Compound + Create Compound + + + + Path_Copy + + + Copy + 複製 + + + + Creates a linked copy of another path + Creates a linked copy of another path + + + + Create Copy + Create Copy + + + + Path_Custom + + + Custom + 自訂 + + + + Creates a path object based on custom G-code + Creates a path object based on custom G-code + + + + Path_Dressup + + + Dress-up + Dress-up + + + + Creates a Path Dess-up object from a selected path + Creates a Path Dess-up object from a selected path + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Please select a Path object + Please select a Path object + + + + Create Dress-up + Create Dress-up + + + + Path_Drilling + + + Drilling + Drilling + + + + Creates a Path Drilling object + Creates a Path Drilling object + + + + Create Drilling + Create Drilling + + + + Path_FacePocket + + + Face Pocket + Face Pocket + + + + Creates a pocket inside a loop of edges or a face + Creates a pocket inside a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Path_FaceProfile + + + Face Profile + Face Profile + + + + Creates a profile object around a selected face + Creates a profile object around a selected face + + + + Please select one face or wire + + Please select one face or wire + + + + + Please select only one face or wire + + Please select only one face or wire + + + + + Please select only a face or a wire + + Please select only a face or a wire + + + + + Path_Fixture + + + Fixture + Fixture + + + + Creates a Fixture Offset object + Creates a Fixture Offset object + + + + Create a Fixture Offset + Create a Fixture Offset + + + + Path_FromShape + + + Path from a Shape + Path from a Shape + + + + Creates a Path from a wire/curve + Creates a Path from a wire/curve + + + + Please select exactly one Part-based object + + Please select exactly one Part-based object + + + + + Create path from shape + Create path from shape + + + + Path_Hop + + + Hop + Hop + + + + Creates a Path Hop object + Creates a Path Hop object + + + + Please select one path object + + Please select one path object + + + + + The selected object is not a path + + The selected object is not a path + + + + + Create Hop + Create Hop + + + + Path_Inspect + + + Inspect G-code + Inspect G-code + + + + Inspects the G-code contents of a path + Inspects the G-code contents of a path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Kurve + + + Profile + 外觀 + + + + Creates a Path Profile object from selected edges, using libarea for offset algorithm + Creates a Path Profile object from selected edges, using libarea for offset algorithm + + + + Create a Profile operation using libarea + Create a Profile operation using libarea + + + + Path_LoadTool + + + Tool Number to Load + Tool Number to Load + + + + Path_Plane + + + Selection Plane + Selection Plane + + + + Create a Selection Plane object + Create a Selection Plane object + + + + Path_Pocket + + + Pocket + 凹陷 + + + + Creates a Path Pocket object from a loop of edges or a face + Creates a Path Pocket object from a loop of edges or a face + + + + Please select an edges loop from one object, or a single face + + Please select an edges loop from one object, or a single face + + + + + Please select only edges or a single face + + Please select only edges or a single face + + + + + The selected edges don't form a loop + + The selected edges don't form a loop + + + + + Create Pocket + Create Pocket + + + + Path_Post + + + Post Process + Post Process + + + + Post Process the selected Project + Post Process the selected Project + + + + Post Process the Selected path(s) + Post Process the Selected path(s) + + + + Path_Profile + + + Profile + 外觀 + + + + Creates a Path Profile object from selected faces + Creates a Path Profile object from selected faces + + + + Create Profile + Create Profile + + + + Path_Project + + + Project + 專案 + + + + Creates a Path Project object + Creates a Path Project object + + + + Create Project + Create Project + + + + Path_SimpleCopy + + + Simple Copy + Simple Copy + + + + Creates a non-parametric copy of another path + Creates a non-parametric copy of another path + + + + Please select exactly one path object + + Please select exactly one path object + + + + + Path_Stop Stop @@ -700,7 +887,20 @@ - PathToolLenOffset + Path_ToolChange + + + Tool Change + Tool Change + + + + Changes the current tool + Changes the current tool + + + + Path_ToolLenOffset Tool Length Offset @@ -711,9 +911,14 @@ Create a Tool Length Offset object Create a Tool Length Offset object + + + Create a Selection Plane object + Create a Selection Plane object + - PathToolTableEdit + Path_ToolTableEdit EditToolTable @@ -725,34 +930,6 @@ Edits a Tool Table in a selected Project - - PathWorkbench - - - Commands for setting up Project - Commands for setting up Project - - - - Prepatory Commands - Prepatory Commands - - - - Operations - Operations - - - - Commands for grouping,copying, and organizing operations - Commands for grouping,copying, and organizing operations - - - - Path - 路徑 - - PeckDepth @@ -817,7 +994,7 @@ Shape Object - + The base Shape of this toolpath The base Shape of this toolpath diff --git a/src/Mod/Plot/resources/translations/Plot_af.ts b/src/Mod/Plot/resources/translations/Plot_af.ts index 8f7b79a24..86afe0acb 100644 --- a/src/Mod/Plot/resources/translations/Plot_af.ts +++ b/src/Mod/Plot/resources/translations/Plot_af.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib not found, so Plot module can not be loaded diff --git a/src/Mod/Plot/resources/translations/Plot_cs.ts b/src/Mod/Plot/resources/translations/Plot_cs.ts index a4fd038ad..f9891d644 100644 --- a/src/Mod/Plot/resources/translations/Plot_cs.ts +++ b/src/Mod/Plot/resources/translations/Plot_cs.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded modul Grafy nemohl být načten, protože knihovna matplotlib nebyla nalezena diff --git a/src/Mod/Plot/resources/translations/Plot_de.ts b/src/Mod/Plot/resources/translations/Plot_de.ts index f80952fe7..2b205f690 100644 --- a/src/Mod/Plot/resources/translations/Plot_de.ts +++ b/src/Mod/Plot/resources/translations/Plot_de.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib nicht gefunden, daher kann das Modul Plot nicht geladen werden diff --git a/src/Mod/Plot/resources/translations/Plot_el.ts b/src/Mod/Plot/resources/translations/Plot_el.ts index 30f577de5..b4c34e259 100644 --- a/src/Mod/Plot/resources/translations/Plot_el.ts +++ b/src/Mod/Plot/resources/translations/Plot_el.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib not found, so Plot module can not be loaded diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts index e734a831f..a6168ceac 100644 --- a/src/Mod/Plot/resources/translations/Plot_es-ES.ts +++ b/src/Mod/Plot/resources/translations/Plot_es-ES.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded Matplotlib que no se ha encontrado, por lo que no se puede cargar el módulo de graficado diff --git a/src/Mod/Plot/resources/translations/Plot_fi.ts b/src/Mod/Plot/resources/translations/Plot_fi.ts index c05937f8c..72499aed5 100644 --- a/src/Mod/Plot/resources/translations/Plot_fi.ts +++ b/src/Mod/Plot/resources/translations/Plot_fi.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib Python pakettia ei löydy joten käyrien tulostusmoduulia ei voi ladata diff --git a/src/Mod/Plot/resources/translations/Plot_fr.ts b/src/Mod/Plot/resources/translations/Plot_fr.ts index 151802146..b08866b70 100644 --- a/src/Mod/Plot/resources/translations/Plot_fr.ts +++ b/src/Mod/Plot/resources/translations/Plot_fr.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib est introuvable, donc le module Plot ne peut pas être chargé diff --git a/src/Mod/Plot/resources/translations/Plot_hr.ts b/src/Mod/Plot/resources/translations/Plot_hr.ts index 958b080e4..0f0d0f2b6 100644 --- a/src/Mod/Plot/resources/translations/Plot_hr.ts +++ b/src/Mod/Plot/resources/translations/Plot_hr.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib not found, so Plot module can not be loaded diff --git a/src/Mod/Plot/resources/translations/Plot_hu.qm b/src/Mod/Plot/resources/translations/Plot_hu.qm index ddb11f2c734095635e9938f3457230c6a3f95584..481665a0784f1ca60bc9d7d6a205269bd2ed69e7 100644 GIT binary patch delta 964 zcmb_a=}S~`6g{)N_r`f|-eitTX=-MrMumlxZP-FsW(8@B5#-J^lgT)h5jJHZ6;Z}m zkRMvd_AIi@7E3b_i71g4f4z?_MCnpj$BY0}xxHb3}Fl<_9`g#aG6Sx}91q zFV*KG0f;Qt+oQ4p;g!BAvKO#!(+?g_A@8>#Z94T~sfM(L#PB#n_chk_Nae=hdFKEn zOE8{nqd|%g)l~!NiiPM0Av6jLV8jh!=F!JM%#cv>emP+2B<=##ufmB+>Xc^T{Gsd2 zrwjEv%K&|g(5S^~zG&-v4MfF@83yu4tr0Vf8eR}Vm&(a;@0n@>upVxtN^+Bn7`T^7JpqD?qfHYuU={=bT9Ihe6y8@-&=+r6JcvXWhX T|A5Bs@7eu-t2A7)-M9V)r6~C_ delta 1066 zcmcgq`Abw`6g{)N_r`f|-eituX*O*XfmyWMf@G0VS(Gi%LQfsXq0wZP5~9Wyq@co> z2ohQ-4QwY{jIzaws0b2?iU_PMBElA%iZ(j$P0N4K58s@*-*@jh=id8X=5^%N42TTC z?2IWu_vu(H4+LDDxLZw3d59-ECci~jXB0>^nI>nw0Nj4linKPse%%yU`-bsp(;7XN z=bDQ!7)bM&ed+T7;kLOctpjkbGsm`%V%{f9&Is10jIre85_`BU?Z>Dak*chTlMVvP z62ZFn8VN=S>1{g!(_$gxViJk$aZEifjNQ=!^oa@O&+-AsBjP$h{V43-z&hoIaA@lZ z-p>(^uL%O?)52LjR#%9wcMpK{e&P%Z^Lx%0XIOQt7k6HDA%eteao6$~g&&Lij|^p} zVexx=f54hAImXafpKVgV)OjQji*_BuPV?3N-m z9=>0Ys>bX1&6eo!1L7WAQ)?Y3^1*hcE=)t6wtIEq2>%>S7`MI)ur(*#e;Wm)@Aie! zBF37%1NHSM2NEtqmlaj{8G3mXsbU}nd2`$R%nH?N;m2#jjchxsvId_;uO3cyi zasfNabQFG~F}dCG^cLgpKh^9ICxeMNgSukIzOfR-zmw@WG2P z0`S0%5K0ZyP)Q8(rUDw@G?Xz8@dOZTd~Rv5PMm;wyk2Fb|0%10pQIs{X-2U|0XGH8 z7<-LOUCs|r;~86vJyME--+Es1`cTZ|GI|Lb6op2Ch9X8j3TcMEo}>HLy{@D?Ju2a^ z#`90Un72h_(p{G$WaBI#@{BAf^|-wOU$MI^9E^TVniTQ>^*~#O$@2f;W3=wW@9}yX In_UggUor{?0{{R3 diff --git a/src/Mod/Plot/resources/translations/Plot_hu.ts b/src/Mod/Plot/resources/translations/Plot_hu.ts index 011f24ab3..29768cba3 100644 --- a/src/Mod/Plot/resources/translations/Plot_hu.ts +++ b/src/Mod/Plot/resources/translations/Plot_hu.ts @@ -24,7 +24,7 @@ Configure the axes parameters - Configure the axes parameters + Tengelyek paramétereinek beállítása @@ -89,7 +89,7 @@ Save the plot as an image file - Save the plot as an image file + Nyomtatás kép fájlba @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib nem található, így a tervrajz nyomtatási modult nem lehet betölteni @@ -238,12 +238,12 @@ The grid must be activated on top of a plot document - The grid must be activated on top of a plot document + A rácsot a nyomtatott dokumentum felett kell aktiválni The legend must be activated on top of a plot document - The legend must be activated on top of a plot document + A feliratot a nyomtatott dokumentum felett kell aktiválni diff --git a/src/Mod/Plot/resources/translations/Plot_it.ts b/src/Mod/Plot/resources/translations/Plot_it.ts index e45cce732..7244b9f73 100644 --- a/src/Mod/Plot/resources/translations/Plot_it.ts +++ b/src/Mod/Plot/resources/translations/Plot_it.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib non trovato, il modulo Plot non può essere caricato diff --git a/src/Mod/Plot/resources/translations/Plot_ja.ts b/src/Mod/Plot/resources/translations/Plot_ja.ts index 14e2857c7..20ec7b69d 100644 --- a/src/Mod/Plot/resources/translations/Plot_ja.ts +++ b/src/Mod/Plot/resources/translations/Plot_ja.ts @@ -217,7 +217,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlibが見つからないためプロットモジュールをロードできません diff --git a/src/Mod/Plot/resources/translations/Plot_nl.qm b/src/Mod/Plot/resources/translations/Plot_nl.qm index c1a2685d72c34c36292c63c400c9a6354626841e..9beb90d325c23d6383285d50b6fb04096b0f1f90 100644 GIT binary patch delta 1395 zcmcIiYiv_x7=C&=JzdXfx6yW+u4_9t0$Ef*!bUJL;}#b#avKN%iM!%~($$`pP1#mZ zgN6Xk956zn66r`71AYL&$ivPN9|3R3Y0FiYoXPE^qzg7^fur-YQMj47I~wN+L??G-gMN?Cl(Dl zMozG9MqchLeC7zCd?`6UxXc7WDKxwvu&tNE7yW>9#KMw z1;Wz7*BGZ(NJsaaBKAusx9fmCE1eOx_n0ei?^__`aV>U`|46B8u~Xnq*Zxlf$e`e& z>)jXcv+x(L!^fWlN@`qxj#RL4rR=R?W05ZTv659xxYEKvl{~eVjf6MI({ck$^rPJI z)lcNjmAgLYM2G+}rrO zK_NDJZ(X5dQnznTiu2yi748zmERQ44TwWWD?Lg28cbdb zbYrh4WJEl9d4knKZo-&Rh+NQgPlr&a+UUo&OlN@H?SMnsGv6ZM@MKPn*XXjr0q?7&FO} z&QW8g_8KiKLn|~7Lp9tL6yw*>o~27L&m^a~FEPE&pf+x9;&q8f(PnOKB5j%s(S#@> qBBJ=Gw9!}AQ8NeiW`xj1+z1`5+~OfU{N$S14WAX-a?giXN`C`RjzOgW delta 1306 zcmcIiT})eL7=HS5dJ5hC-XRxNbOW zbYWho!IZF{i)D;rRG21fq8N!kn-O6#aUo{O5)3RXS&UH+`+W0_A3Qy>J)J_UZy(^QM3+(pcr<)JOe}I@Nk?xj)_=_a#RpA$Yi|P;-QbLMc_vw(EQJX5*~Xot)j@6?gkY^mSHcyH8F-#{#C zvn*d?-L%|hbv-o!C^M4v{8c76EtM^f0;Vp>H|qwh%LbO1rQPpdVFNAFz^(m&qk#A- zaZNh=I^$HA^xj(^6VFK>4J80`R{BJ@9YZ$H+6|yIVr#OHUvkOTWFqNr>88Cye(gye19q1q0@xDvnd@0@WZC{zb`U7rWB(yLXl3D_GLxo? zbVGhT#f5r*R2t{LVA?B6&&oQ(DhwOljQt()4)8xR{t62@hoWJ=^#)ruEi!Ogu0-`vbrEs+Bxs#Ay#8fgaw)(N8N$ zc2xN8M?}ciBU8+n$emZ7u+}|>=eAs7hWq&skPsn3Ck~2Y30k@*a4%`5+Bwb0ga17; zSLJ%e6b_+NOyx%}yA31AMExw5U;#glY!x@ky)0(w794#ZW11K-%4zi`{bCPM5gVj8 zz)bzjF@R*o=kDx}{9R2SqF3DfZxwUDxi{_U;O* diff --git a/src/Mod/Plot/resources/translations/Plot_nl.ts b/src/Mod/Plot/resources/translations/Plot_nl.ts index af079c326..bae108e40 100644 --- a/src/Mod/Plot/resources/translations/Plot_nl.ts +++ b/src/Mod/Plot/resources/translations/Plot_nl.ts @@ -170,7 +170,7 @@ Check it to apply transformations to all axes - Check it to apply transformations to all axes + Activeer om transformaties op alle assen toe te passen @@ -205,18 +205,18 @@ X axis scale autoselection - X axis scale autoselection + Automatische selectie van de X-as schaal Y axis scale autoselection - Y axis scale autoselection + Automatische selectie van de Y-as schaal plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib kon niet worden gevonden, en dus kan de Plot module niet worden geladen @@ -238,12 +238,12 @@ The grid must be activated on top of a plot document - The grid must be activated on top of a plot document + Het raster moet bovenop een 'plot' document geactiveerd worden The legend must be activated on top of a plot document - The legend must be activated on top of a plot document + De legende moet bovenop een 'plot' document geactiveerd worden @@ -367,12 +367,12 @@ Output image file path - Output image file path + Bestandslocatie voor resulterend beeld Show a file selection dialog - Show a file selection dialog + Toon bestand selectie dialoog @@ -387,7 +387,7 @@ Dots per point, with size will define output image resolution - Dots per point, with size will define output image resolution + Stippen per punt, dewelke de uiteindelijke beeld resolutie definiëren diff --git a/src/Mod/Plot/resources/translations/Plot_no.ts b/src/Mod/Plot/resources/translations/Plot_no.ts index 1a1194a6f..1f8258e32 100644 --- a/src/Mod/Plot/resources/translations/Plot_no.ts +++ b/src/Mod/Plot/resources/translations/Plot_no.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib not found, so Plot module can not be loaded diff --git a/src/Mod/Plot/resources/translations/Plot_pl.ts b/src/Mod/Plot/resources/translations/Plot_pl.ts index 23419f524..c5ffc5c8c 100644 --- a/src/Mod/Plot/resources/translations/Plot_pl.ts +++ b/src/Mod/Plot/resources/translations/Plot_pl.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded nie odnaleziono biblioteki matplotlib, więc moduł wydruku nie może zostać załadowany diff --git a/src/Mod/Plot/resources/translations/Plot_pt-BR.ts b/src/Mod/Plot/resources/translations/Plot_pt-BR.ts index b9d7f05d1..093a41f46 100644 --- a/src/Mod/Plot/resources/translations/Plot_pt-BR.ts +++ b/src/Mod/Plot/resources/translations/Plot_pt-BR.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib não encontrado, o módulo plot não pode ser carregado diff --git a/src/Mod/Plot/resources/translations/Plot_pt-PT.qm b/src/Mod/Plot/resources/translations/Plot_pt-PT.qm index 450d47efc2c1f2e8a9e3484b29b4684208c3a01c..70604f2b11febbd198fbd89fd3bb5ee14cff8c67 100644 GIT binary patch delta 343 zcmXAhy-Pw-7{;G->Uu7TeNd2jZ};9L)S(X=l%gSu28X6hg0_nqMSg@S1R?bYWN61J zXbJrX65y7|)wZowh3)DnY+hEgm3mAD~`w#Dc9$|(1WuPm?4oeA<-?5{4 zLER}2xRQV)DqD>z(3g{Ms(C>DmLF|i@ETblOZ=7i$s%`AKZ)}oT_+V@q~pY@U(zWL zIpZbOw}L%Pz(5Qcqy%#?1x=)}B^(3W$f9juaU`%QblUa|(J@4p5dRq@k;fa_ykDEC I$45UM|E-!<*#H0l delta 384 zcmXAgy-Nad7{|ZAU!8XZ7EzFSrY4aNy$qrBGPF22SJEtHC7pVlCxszKbB6M3Xixuv zq;O~mX=}-(p}iomr67m~>+xKk&-d;5j5H&qjU|Kat1VzaXGZ=5@HW_y<$w4V0)QIi z30D-53|?1Xfx!;{J`2*WQ!Y;XoPUz5bq=tY>z6?W!f z*J759#qzSxu@3OH9!EoRph`>kvOHg_1LH69;ln$9F39=&FwmEj3#B;qm-6vSmu+R( zt^u~FQg2p(Ayc`lWC7Qc@@VlyRM{%?i8tnFlfusZEG&Y2lbNE(r`Sd9iqAO plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib não encontrado, então o módulo de traçagem não pode ser carregado @@ -387,7 +387,7 @@ Dots per point, with size will define output image resolution - Dots per point, with size will define output image resolution + Pontos por polegadas, com tamanho irão definir a resolução de imagem de saída diff --git a/src/Mod/Plot/resources/translations/Plot_ro.ts b/src/Mod/Plot/resources/translations/Plot_ro.ts index 3642ec9e5..26d82f2c0 100644 --- a/src/Mod/Plot/resources/translations/Plot_ro.ts +++ b/src/Mod/Plot/resources/translations/Plot_ro.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib nu a fost gait, astfel ca modulul Plot nu poate fi incarcat diff --git a/src/Mod/Plot/resources/translations/Plot_ru.ts b/src/Mod/Plot/resources/translations/Plot_ru.ts index 08a93737c..b8f9914f3 100644 --- a/src/Mod/Plot/resources/translations/Plot_ru.ts +++ b/src/Mod/Plot/resources/translations/Plot_ru.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded Библиотека matplotlib, не найдена, поэтому модуль диаграмм не может быть загружен diff --git a/src/Mod/Plot/resources/translations/Plot_sk.ts b/src/Mod/Plot/resources/translations/Plot_sk.ts index 34c0a49c9..ae5977701 100644 --- a/src/Mod/Plot/resources/translations/Plot_sk.ts +++ b/src/Mod/Plot/resources/translations/Plot_sk.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded modul Graf nemohol byť načítaný, pretože knižnica matplotlib nebola nájdená diff --git a/src/Mod/Plot/resources/translations/Plot_sl.ts b/src/Mod/Plot/resources/translations/Plot_sl.ts index 5bad51145..e4bcf67ef 100644 --- a/src/Mod/Plot/resources/translations/Plot_sl.ts +++ b/src/Mod/Plot/resources/translations/Plot_sl.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded Knjižnica matplotlib ni bila najdena, tako da modula za izris ni mogoče naložiti diff --git a/src/Mod/Plot/resources/translations/Plot_sr.ts b/src/Mod/Plot/resources/translations/Plot_sr.ts index 2c474404b..2b26ea911 100644 --- a/src/Mod/Plot/resources/translations/Plot_sr.ts +++ b/src/Mod/Plot/resources/translations/Plot_sr.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib није пронађен, па Диаграм модул није могуће учитати diff --git a/src/Mod/Plot/resources/translations/Plot_sv-SE.ts b/src/Mod/Plot/resources/translations/Plot_sv-SE.ts index 5a86df350..477573ae6 100644 --- a/src/Mod/Plot/resources/translations/Plot_sv-SE.ts +++ b/src/Mod/Plot/resources/translations/Plot_sv-SE.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib hittades inte, så Plot-modulen kan inte läsas in diff --git a/src/Mod/Plot/resources/translations/Plot_tr.ts b/src/Mod/Plot/resources/translations/Plot_tr.ts index fd4aca525..e3219df31 100644 --- a/src/Mod/Plot/resources/translations/Plot_tr.ts +++ b/src/Mod/Plot/resources/translations/Plot_tr.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib not found, so Plot module can not be loaded diff --git a/src/Mod/Plot/resources/translations/Plot_uk.ts b/src/Mod/Plot/resources/translations/Plot_uk.ts index 7f260e249..41e974f37 100644 --- a/src/Mod/Plot/resources/translations/Plot_uk.ts +++ b/src/Mod/Plot/resources/translations/Plot_uk.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded matplotlib не знайдено, тому модуль Діаграма не можливо завантажити diff --git a/src/Mod/Plot/resources/translations/Plot_zh-CN.ts b/src/Mod/Plot/resources/translations/Plot_zh-CN.ts index fe0b57b45..83cc0213f 100644 --- a/src/Mod/Plot/resources/translations/Plot_zh-CN.ts +++ b/src/Mod/Plot/resources/translations/Plot_zh-CN.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded 未找到matplotlib,因此绘图模块未能加载 diff --git a/src/Mod/Plot/resources/translations/Plot_zh-TW.ts b/src/Mod/Plot/resources/translations/Plot_zh-TW.ts index 8335b596e..7a26fb1e6 100644 --- a/src/Mod/Plot/resources/translations/Plot_zh-TW.ts +++ b/src/Mod/Plot/resources/translations/Plot_zh-TW.ts @@ -216,7 +216,7 @@ plot_console - + matplotlib not found, so Plot module can not be loaded 無matplotlib而無法載入製圖模組 diff --git a/src/Mod/Points/Gui/Resources/translations/Points_cs.qm b/src/Mod/Points/Gui/Resources/translations/Points_cs.qm index 7efec9ba9b2fa5ecc10bf84c1b472672775485dc..b62f97b66b8f9e1aa6fe152fe11d40e0bd6dd3d0 100644 GIT binary patch delta 114 zcmX>hcR_AK2xI@mP<_VgiLLUC+b1qv&X_RSmr;f5GBX1MgA9W!L&ao4HsQ(nO#GYY zG79p@%Q1v8CNiWlBr{|%T=nAQ<&KNP-mr;f5G&2JOgA9W!L&ao4HsQ(nO#GYY zG79nt3o$q{ Ascii Points - Ascii Points + ASCII body All Files - All Files + Všechny soubory diff --git a/src/Mod/Points/Gui/Resources/translations/Points_hu.qm b/src/Mod/Points/Gui/Resources/translations/Points_hu.qm index 0aab24f88f3e3e537e601f6862a5b7309bf52903..f6930f288ba899e462f0bb403b1d685f3434eaf3 100644 GIT binary patch delta 408 zcmX9(ODF_!9RB|EpV`^jv9pJjX(cu}DVsKu_FylIHk?rMh$4|!o8*!9AP3fgrjTcG zCN)YaMKtZVTv!fTdFH3R{J#2reXpPNNXBGZxDilOr$85fH4$~K@Bh`-gN zfZQnAwgxCDS?ZHaGTcib+fAVGo zpwz2qIS`VMLUwbU(aM~p2>EIK4^RK+*Yh=3_EWl85^Dm`00`TF&J8GO!a5+Y5OCKJ zKLYgGhz~>RZY91A#=&X8c!4sH9bj+hD=DJ;4nm#vq)jt(?J2;g*xTzDAhxjY37&N4 zoNp;YSp%GJ_l$I1{BisVh#6G=%=JlzqF|d$0rG7c!yIzi9P)OZ$5=%Lj&v{ae?OySzYdUYOq#!4rJP1-!HXws zQnV23VQP{Us2T2&^{PSMu4edRO(*DOOFo)0Os^bX1PJ{Is}&}f(t%O>k064uHe{+~ Ee~OM@@c;k- diff --git a/src/Mod/Points/Gui/Resources/translations/Points_hu.ts b/src/Mod/Points/Gui/Resources/translations/Points_hu.ts index a406b5c1a..4382e03d7 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_hu.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_hu.ts @@ -38,7 +38,7 @@ Imports a point cloud - Pontfelhő importálása + Egy pontfelhő importálása @@ -58,7 +58,7 @@ Cuts a point cloud with a picked polygon - Pontfelhő kivágása egy kiválaszott polygonnal + Pontfelhő kivágása egy kiválasztott polygonnal @@ -236,13 +236,13 @@ Ascii Points - Ascii Points + Ascii pontok All Files - All Files + Minden Fájl diff --git a/src/Mod/Points/Gui/Resources/translations/Points_ru.qm b/src/Mod/Points/Gui/Resources/translations/Points_ru.qm index 9266dbe871112c75b264dafc5e903d2d744ae77e..5dda9a5a8b2952ca23858e2e2502629a8b762894 100644 GIT binary patch delta 31 mcmZ3iuvlTkL_Q%FAr?m#Qw9YV7Zw8+OBQPu@6C((8W;g{9|p(( delta 31 kcmZ3iuvlTkL_Q$~M}{0ARA6vp$OO`<48@xl^EEI60E3YS`2YX_ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_ru.ts b/src/Mod/Points/Gui/Resources/translations/Points_ru.ts index 2da7177ca..e187d6725 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_ru.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_ru.ts @@ -242,7 +242,7 @@ All Files - All Files + Все файлы diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.qm index b4238a934557fbb8ad98a5493f9f5b88e81e0ffd..ddf856915fd7f818c28aa938bd633d8a01a725f1 100644 GIT binary patch delta 697 zcmXAmYe4ifwC&rs1D;x|<=mD!5A(1*krbhlwTuyL(l7CVrGbXJSQ0f6$}|b% zs~-mX$CM0Rhb5(8geXcuX%Z4qq9(&XLPVL0qX+u)KD<2deLeT{-n0Hie~&GY#(|$t z1ek}&vi<~8r!eT<1foNj`?d&VhOr!W1N+=qkz)Zqin&uk{iFpZc>4ihjIfylZ%KE9 zJ@UQ;P)x9A6l*}vJ=T-A1SGs*t7AUU`!2Tq+z#N_=Jcgcf&C87G~SN@tUk^&O+tQ_ ztNu#^%qO_c`I|u07PmLIL4bPR8utiLe&Vgm9w2**cRmXODM5bJb01)D@k@qOAZ>#G z)!9f!@`cm(FQh9Fx?NMWK%X!$?gh{w3>97ia#@8YMj%d;!nrb22ILPYims`F44)!k zivae1Woa7$9SWsO9irNyoOA|&Sikb)TrIsXQXR`_2gI<-=Zyz!O{%t%<76mXZeYxo zLDkNd4M-1&qVO5uT>q;|7SnphfJ1xoC}XgAMc?%}z!?^Y$7!itzqnjMEW1ISw6hK* zUX|CGWXqU(ucL)nPIYAc2avZQ375$FL4$PRKnh^0lO3$va#regt&*QgX~a+p6d0wY zS2M)ils1ZpX_}P#*yQ?Yjk~v(aft1lIUeOq6>3p~ XIy9mc324D(TtPLR&1ek;%|_Ede7U*$ delta 685 zcmXAmeMnPb6vm(3k8O8%A2_vT-JILn{G8faDp-Lgifb@}t-ngdn5k)hq#z+R5v(i= z>lR^PMApbiOV)=9MMOg>C`n?3lxT@q6iAdcadaTwKMpVNd7k%o&NI_K+1_Uh<*b66 zwgZZ5D73BsIgfEW@B=VLF!gZ;D450Ek`LJ6!@QgVa7l`DHT3R?Dn`y+0n!po!QgY! z9b>k?t^kx1%wFYZz}?OGi()`Vn5j#CL;WY2u6=R9`JFXX-3K;0S!w(_La;Wl{+A@= zCfT|_^nuyU_DpvJNvrJo)G`?yZ}i>%j0`JFKB>^{NQ*1Knou(Z6dJWN^LSvK0&2xKI#REuPVzsG(diX zGGt2tS(j8*on)97S9vrMBJNNXSP_W$`Un> z_#$9$mKPP7mLbjh=~nV`XcCKGfTF0#Hxc?~lUTng8;}mjPR3^`6MH=i#8WHYGgSd4 zIx+SnN}dbiayfZQqw)Zg**K>4_4iW_l6Ew5h}MvZEL1?cbS zyla$i;d$LyqLE0lb+gB70Ly^h_?Nbl|5fjOMfpm0{oyrww*>T&{T!`3p?@fRqWQeC zlQlbw4YhYK09*474YHeli5bo=P-vO;hTb%W?l(wU;$bP4JUC>t(G=-pMJd^cGBnf4 QKqVTf2GJUsFsDiX09`e>EC2ui diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.ts index 12964bd0b..d8bf98eee 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.ts @@ -316,7 +316,7 @@ Do you want to continue? Luxrender - Luxrender + Luxrender @@ -365,7 +365,7 @@ Do you want to continue? All Files - All Files + Všechny soubory diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.qm index c47d581dd37a1109ccca9fbdccb20cf27ee63f71..aaa25075fd50d6d1f5455d481e4a06dd117e2bd8 100644 GIT binary patch delta 677 zcmX9*YekZab)jt52!C`Vq}p)xK!4uD%k!M`oaZ^Au1MElvO5gUmjcKJ zk!$(^WZuU4y01X=D$Krn3FOXW;j;sXn?^v20XUiLxQptkmt+%1&j9g9n4HlE#M{T@ zKP?9o3{x%t2(0%q&O$$6R5FdxC~>8T9?*ob6?5$@YZE4#}#k|Dj+CQCGW zm7!l|z`9=$_<4Y}|3{@?$Q-;5B(zE6GQDw^(0MQx$PWq^rf8|c6T*Uvw9@{HmQWC| zWJy6;sxekv>DxnE7BLe11Z?=G;#1xfN*vQkFDtyIhpxvNq}uT_xw0wq}m4ifwC&rseM9G=Z0QajrZx}rkRlnGD5)XE>_>!zVKylt^^Zi%EKAKw z_zE(rA6iBSU9}EM7!jFvHad(b6Ri;vL=s_596b>4kDHh0eXi$z-aFJ1Z0U*jEP$U( z0GJ+RSm%M%JGfZ&12BeRV(JZ$@fy?LDuJjm%qS56&oD=;sh)I+8R|F%#2jYR`yWtW zBb)WC7*Mlpx#|m$<7HjBe!#-BHO80pK80=D6a>=dI76uyST@d?M$Q8s>nG0jh#L79 zT+JUE5ZA|bPPPN#Yq_O~Ilz36w?>sGFOXx0pNDCYj`bVk&)CmIx^+2v!r85e|DOWjX#!!yDQB~1CEs*X~ zd2AsdxkFvrO29Oz%d|eyz3Ne?2Z(s0el<}Ge`-+(-+ zuUMpfGY{&ALvA1;p#RuXO*ziX;eY8@(%;GzPbpv10l99G>XxgrZwpVlO}-_5rfH8A z2N#!^W7vM>I1vBduuI9NP&XR7W+^oLW<&RKmhMs1n&07TO All Files - All Files + Minden Fájl diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.qm index cf05ea56a88b7741b71a58cae0ddf392e6e3c9dc..3812fd425818217173c14a765d5d31f6bce0af9b 100644 GIT binary patch delta 14 VcmcbYdM|au5gEpy%|~S<#Q-%22B6} diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts index c349af7c6..7ffd8dea5 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts @@ -317,7 +317,7 @@ Do you want to continue? Luxrender - Luxrender + LuxRender diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-PT.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-PT.qm index 03eea4598443773e0b62192923bcfbeb60b288b7..2745cfd5c206b41a1bbb3f7404506886cf526ea9 100644 GIT binary patch delta 830 zcmX9+X-JcC82{}(w)fbfZEIPYy5*c(W}9b?`e31WpcFHZXr5rBIDkW2-{0QV28BbO}U~Xe7^-t)$m1$Tu3e1nNy8J7EFD9Lh?KlO@Im3D$ z&_yo7R{kM@g!gRIv;DxdW_G;i3lXg1%*L~TkieM-JV2&`bG2Uv=K8ryp5p)$`=NQU4Yx6%-t;k z&gDvXt4h zL#z-iqCim-LdZ)-^k0SU6NA)Qi_je;ovblo^tXk0D@2ihPD$AHlRuO!B07%V0OA8; zwv*QRuvpb@1fn~|Esf-S!CP_r9;&mF#0wp?pED*7cuCm)QL>JbfNh4f>|Z@#*clj6 zm{NMBhk4YO#Ff(cfo&u=Lz)=;M7GOizM2POSIg^XrT}p-0;x=L!HC>o$_HfM6h>uE zVRY>j8iuFPRVw=nKLFx+`Qqex_a(Xi7KK`{Q~r`mUS>N3Cz*KPK6ObgaoeiYr7bOl zo$9OMwLo^G`fgh{C48xI%hZDO0!`kMUx3c8DIWVy^=ZxRiA_LqpXPO~7qEo2)Be&E zINxZCduf>B4r@1z(Y|GiHoSr(G-$7j?@0B%w#Q4epdQzLwkH9LwSq1-c%S0L=^Q2W z*z=saHK8Mb^`>rPAcKahUU%>VU9j79{uqYpLSl7)V`)6>umg_fQl`DKtLK0J_xqm1`@M5@^L1@{XCqkYF_8Eh z+=LPE>qT<(PpSuTt7H)fti<@Iw}52{)AM@(oe?vxAb>OZU3O4E?uuXErFLM`b|$H7 zo#!-TeVGd=6-=Sx3y`T}?CDcLbPrP+_?phgGL6N{K=Kz>o7WFGL(^FO$W35NH)|iI zi`)!b`j-TvX4$5R3qU{z>mC121P8e2;BG*O;-aVRKpM+g2Ks=6R_>nt8o;=@DV-VE zdYAjvbdrq3@%gdufz1niOTkkL(8+g=lmIxv-?mkdv1WxTkcShgXBC#2XMinHky9%H zDRza^unNRiDD&!xFlj+qAbH5~KIKD;69~2{-;5stw!Id1q&5Olnov~|0T{=G`rK?X z#0&013gi!=*Fi=Ce+Xk8b2M3lFycz7U~h(^WAOXNIjTC6%pb-GEsGeZ4LuQ=@>Ve_06vrGc9VN&s00}xc>`r)UG zdnG;JMRVD_U-Di&Lvmr#>fBedy-(&VctC$hE)R=%{Q|V$ks?&z55BpiPXmLrpMlD z)gJ6^1!9J^$6TqjT<5jTvvk31*0zK)R2LDeZIPw*FeAp*84&DgW!pq{BNZX(k)CX| G$?_j_V%bXo diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-PT.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-PT.ts index 344d6c941..3016a4c1c 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-PT.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-PT.ts @@ -119,7 +119,7 @@ &Render - &Processador + &renderizar diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.qm index 45becab6d847893f66e6cb8d812df8f6137563b5..95d47aa84e09562c565aa300a4b5f9b3df53e622 100644 GIT binary patch delta 2026 zcmcgsZERCz6h8O%ZP(kb>+C++#x`0uH=v_yx2|iqcI&=mn-0jv4-5-Kw!t!qaTp~q zI!VAG3lgtHQD&C#k%)+pD?v;BT)C{fA$2rfexB+==R1>I!$ytmbDk>C##f82Y| z`=0ll=Q+5_ zb#b2%-Fsf#v0{>FX@kaG^Ey!|`IaW_?8`*90!`!l2xO-;>wW`3#&yl^i#v%d-I`k$ zt|5VqSrZNuMcrW5;YK1?H*=mmLA2-wd#&*~BC&@JB`qSd>)EfnH-SjEc3I9>M48vM zeYNkR0HgNM*(M_D(jN77fY=|p=r}Ef$T^~Oj(k8={GKkj)c|Jabs^g{QSJ{>H9bg} zw>GNQpx}Es>TPF;D1IX9(+jOQzg}Nju!G28({FA{CtA2h-&5%ap~v+DbtowIYyGii z5Q#gbAAEik%1Zjd0pJui=_ha6K=hI%X)mD?O&K?c^oq22-)W+BMJme2zP3wRe=>pS zp0}ijd%@h(E^Y3{x?sQb%31h}x~1V}0Oz(CvL^wMz00uT_LCs!lz$R37PK2~J=F!6 zUc>b0_lO=fYCE(RS;f%xk7M4D zz6IR0Y}aJi`^{^Q?Ip^}F>jCyFeClur>~sA5FR)8%@eV1L#Ve`gDyKMTfRR&LpJ)N zmBX6POrc(8XI@s$0?g0KSdcPRtB846H69PvUglsWtPtKhtURm;ZwGdRu$`)$HCm49mEDOp<;4Vxko*sp5ghr2SetS+al0UR<#j1rGdxJF5&{uFhnP!2o?4V5 zr=>ol9GQ2Th4!)}paj6UoYmi@D)9Wfs&bs0QN+)RvF0i{k)x26z$y&ufwdn>aNXR9 zE@5@5ca|!#vt)6wV&+qRPHz<~%)(P4Q6